<?xml version="1.0" encoding="UTF-8"?>
<rss  xmlns:atom="http://www.w3.org/2005/Atom" 
      xmlns:media="http://search.yahoo.com/mrss/" 
      xmlns:content="http://purl.org/rss/1.0/modules/content/" 
      xmlns:dc="http://purl.org/dc/elements/1.1/" 
      version="2.0">
<channel>
<title>blog.nshephard.dev</title>
<link>https://blog.nshephard.dev/</link>
<atom:link href="https://blog.nshephard.dev/index.xml" rel="self" type="application/rss+xml"/>
<description>Software development in a Research Environment</description>
<generator>quarto-1.6.11</generator>
<lastBuildDate>Wed, 24 Sep 2025 00:00:00 GMT</lastBuildDate>
<item>
  <title>Pytest testmon</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/pytest-testmon/</link>
  <description><![CDATA[ 





<p><a href="https://pytest.org" target="_blank">Pytest</a> is an excellent testing framework for Python with a wealth of <a href="https://docs.pytest.org/en/stable/reference/plugin_list.html" target="_blank">plugins</a> which extend the functionality. This blog post covers using the <a href="https://testmon.org/" target="_blank">pytest-testmon</a> to speed up the feedback loop whilst working on and developing your code.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/54800591152_f2509b5efb_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/54800591152/in/datetaken/" target="_blank">Pretty Stones by Me!</a></figcaption>
</figure>
</div>
<section id="test-test-test" class="level2">
<h2 class="anchored" data-anchor-id="test-test-test">Test, test, test</h2>
<p>It is good practice to have a comprehensive suite of both unit, integration and regression tests when writing and developing software. The former ensure at a fine-grained level that each of the functions or methods that you write work as expected whilst the later ensure that they all function together as expected.</p>
<p><a href="https://pytest.org" target="_blank">Pytest</a> is a popular alternative framework for writing and running your test suite to the standard libraries <a href="https://docs.python.org/3/library/unittest.html" target="_blank">unittests</a> and is easy to incorporate into your project. Including and configuring it via <code>pyproject.toml</code> might look something like the following which includes <code>pytest-cov</code> to summarise coverage and <code>pytest-mpl</code> for testing Matplotlib output. Configuration of coverage is included that omits certain files.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode toml code-with-copy"><code class="sourceCode toml"><span id="cb1-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[project.optional-dependencies]</span></span>
<span id="cb1-2"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">tests</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb1-3">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pytest"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb1-4">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pytest-cov"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb1-5">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pytest-mpl"</span></span>
<span id="cb1-6"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb1-7"></span>
<span id="cb1-8"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[tool.pytest.ini_options]</span></span>
<span id="cb1-9"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">minversion</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"8.0"</span></span>
<span id="cb1-10"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">addopts</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--cov"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--mpl"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-ra"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--strict-config"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--strict-markers"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb1-11"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">log_level</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"INFO"</span></span>
<span id="cb1-12"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">log_cli</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">true</span></span>
<span id="cb1-13"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">log_cli_level</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"INFO"</span></span>
<span id="cb1-14"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">testpaths</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb1-15">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"tests"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb1-16"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb1-17"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">filterwarnings</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb1-18">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ignore::DeprecationWarning"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb1-19">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ignore::PendingDeprecationWarning"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb1-20">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ignore::UserWarning"</span></span>
<span id="cb1-21"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb1-22"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">xfail_strict</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">true</span></span>
<span id="cb1-23"></span>
<span id="cb1-24"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[tool.coverage.run]</span></span>
<span id="cb1-25"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">source</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"src"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb1-26"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">omit</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb1-27">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"**/_version.py"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb1-28">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"*tests*"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb1-29">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"**/__init__*"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb1-30"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
<p>Tests are typically organised with a single file per Python sub-module with at least one test for each function. If you’re not familiar with <a href="https://pytest.org" target="_blank">pytest</a> check out its <a href="https://docs.pytest.org/en/stable/getting-started.html" target="_blank">documentation</a> for more on how to organise your test suite.</p>
</section>
<section id="development-cycle" class="level2">
<h2 class="anchored" data-anchor-id="development-cycle">Development cycle</h2>
<p>A typical development cycle to add a new feature might involve the following cycle if you are following the <a href="https://en.wikipedia.org/wiki/Test-driven_development" target="_blank">Test Drive Development</a> paradigm.</p>
<ol type="1">
<li>Write a unit test.</li>
<li>Write code to add functionality.</li>
<li>Run test suite to see if it passes.</li>
</ol>
<ol type="a">
<li>If it fails return to 2.</li>
<li>If it passes all is good.</li>
</ol>
<p>Alternatively if fixing bugs you might…</p>
<ol type="1">
<li>Add new test to cover the bug.</li>
<li>Run test to check new test fails.</li>
<li>Attempt to fix the bug</li>
<li>Run test suite to see if it passes.</li>
</ol>
<ol type="a">
<li>If it fails return to 3.</li>
<li>If it passes all is good.</li>
</ol>
<p>In either scenario you will typically iterate over the steps a few times until everything is working using <code>pytest</code> to run your test suite root of your packages directory.</p>
<pre class="shell"><code>pytest</code></pre>
<p>But if you’ve a large test suite you probably want to avoid running all tests each time and you can do so by telling <code>pytest</code> which file to run tests on by providing it as an argument. Here we run only the <code>test_submodule1.py</code> tests.</p>
<pre class="shell"><code>pytest tests/test_submodule1.py</code></pre>
<p>You can have even finer grained control over your tests. For example if you want to only run an individual test within <code>tests/test_submodules.py</code> you can do that too by specifying the name of the test you want to run after the test file name, so if you had <code>test_function1()</code> defined in <code>tests/test_submodules.py</code> you would run the following.</p>
<pre class="shell"><code>pytest tests/test_submodule1.py::test_function1</code></pre>
<p>Similarly if you were developing a new feature and writing <code>function2</code> in submodule1 you could have a test <code>test_function2()</code> and explicitly test it with.</p>
<pre class="shell"><code>pytest tests/test_submodule1.py::test_function2</code></pre>
<p>As you iterate through the development cycle you could manually run your unit tests to find out if they pass or fail, but that doesn’t account for any integration tests where your functions are used as part of a pipeline and knowing what tests are affected by changes can be challenging, particularly in a large code base where you would want to avoid running the whole test suite each time.</p>
</section>
<section id="commits-as-units-of-work" class="level2">
<h2 class="anchored" data-anchor-id="commits-as-units-of-work">Commits as Units of Work</h2>
<p>In software development small units of related work are typically aggregated into commits within Git (or other version control systems) which means we have a natural point at which to undertake testing, i.e.&nbsp;when we are ready to add our work to the Git history via a commit. Thus before making a commit we should make sure that our test suite completes. Naturally we could run the whole suite with <code>pytest</code> (and even parallelise it so it runs faster with <a href="https://pytest-xdist.readthedocs.io/en/latest/" target="_blank">pytest-xdist</a>) but as a software package grows so does the number of tests and it might take a while to run the test suite. We’ve seen already that it is possible to run individual tests as desired but this might take a little work if there are several tests that need running when fixing bugs and regression tests need to be run as well as unit tests.</p>
<p>Wouldn’t it be great if we could automatically run <em>only</em> the tests that are affected by the changes that we have made when making a commit?</p>
</section>
<section id="enter-pytest-testmon" class="level2">
<h2 class="anchored" data-anchor-id="enter-pytest-testmon">Enter <code>pytest-testmon</code></h2>
<p>This is where <a href="https://testmon.org/" target="_blank">pytest-testmon</a> comes in useful, it “<em>selects and executes only tests you need to run</em>” and achieves this by “<em>collecting dependencies between tests and all executed code and comparing the dependencies against changes.</em>”. Basically, given the dummy examples above it would identify the tests that involve either <code>function1()</code> or <code>function2()</code> and <em>only</em> run those tests.</p>
<section id="installation" class="level3">
<h3 class="anchored" data-anchor-id="installation">Installation</h3>
<p>You can install <code>pytest-testmon</code> in your <a href="https://blog.nshephard.dev/posts/virtualenvwrapper/" target="_blank">virtual environment</a> and run it manually. Before you can use it though you have to allow it to analyse your code base and build a database of how the tests relate to the packages modules, functions, classes and methods, so after installing it you should run <code>pytest --testmon</code> to create becomes useful it has to establish how functions, classes and methods relate to tests and you can use it thought <code>pytest-testmon</code> needs to analyse your code base and build a database of how the test relates to the packages modules and functions/methods.</p>
<pre class="shell"><code>pip install pytest-testmon
pytest --testmon</code></pre>
<p>This creates, by default, the files <code>.testmondata</code>, <code>.testmondata-shm</code> and <code>.testmondata-wal</code> which comprise is an SQLite database of the functions, classes and methods and how they relate to your test suite. Once you have installed and built your database subsequent calls to <code>pytest --testmon</code> will work out what tests are affected by changes and only run those.</p>
<div class="callout callout-style-simple callout-none no-icon">
<div class="callout-body d-flex">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-body-container">
<p>You will probably want to have git ignore these files and can do so by adding them to either the local <code>.gitignore</code> or your global <code>.gitignore</code></p>
<pre class="shell"><code>.testmondata*</code></pre>
</div>
</div>
</div>
<p>This is an improvement as you now can run <code>pytest --testmon</code> to ensure that <em>only</em> tests affected by the changes you are making are run and it helps shorten the feedback loop because you only have to wait for a subset of the tests to run. But it’s still running the tests manually before you make your <code>git commit</code>. We want to automate this step, how can we ensure <code>pytest --testmon</code> is run prior to commits to make sure tests pass on only the changed files?</p>
</section>
<section id="hello-pre-commit-my-old-friend" class="level3">
<h3 class="anchored" data-anchor-id="hello-pre-commit-my-old-friend">Hello pre-commit my old friend</h3>
<p>I’m a big fan of <a href="https://blog.nshephard.dev/#category=pre-commit" target="_blank">pre-commit</a> and have written about it many times. We can define a local <code>pre-commit</code> hook to run <code>pytest --testmon</code> automatically before each commit is made which not only removes the task of having to remember to run <code>pytest --testmon</code> manually but ensures that our test suite passes before we can make commits.</p>
<section id="configure-pre-commit" class="level4">
<h4 class="anchored" data-anchor-id="configure-pre-commit">Configure pre-commit</h4>
<p>We define the local hook in the repositories <code>.pre-commit-config.yaml</code> file which will run <code>pytest --testmon</code> on each commit. The <code>repo: local</code> is defined so that it only runs on local systems and not in Continuous Integration (CI), typically the whole test suite will be run in CI anywaym and give it appropriately named <code>ìd</code> and <code>name</code> values. The <code>entry</code> is the command we wish to run, i.e.&nbsp;<code>pytest --testmon</code> and we set the <code>language: system</code>. Finally we restrict it to <code>files</code> that end in <code>\.py$</code> so that it won’t run if you change say your documentation files that are written in Markdown (<code>.md</code>).</p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb8-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">repos</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb8-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">repo</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> local</span></span>
<span id="cb8-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">hooks</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb8-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">id</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pytest</span></span>
<span id="cb8-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">name</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> Pytest (testmon)</span></span>
<span id="cb8-6"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">entry</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pytest --testmon</span></span>
<span id="cb8-7"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">language</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> system</span></span>
<span id="cb8-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">files</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> \.py$</span></span></code></pre></div>
</section>
<section id="package-upgrades" class="level4">
<h4 class="anchored" data-anchor-id="package-upgrades">Package Upgrades</h4>
<p>You may find periodically that <code>pytest-testmon</code> reports that the installed packages have changed and the database needs updating. If this is the case simply run <code>pytest --testmon</code> again manually and it should update the database.</p>
</section>
<section id="add-pytest-testmon-to-package-dependencies" class="level4">
<h4 class="anchored" data-anchor-id="add-pytest-testmon-to-package-dependencies">Add <code>pytest-testmon</code> to package dependencies</h4>
<p>You will want to make sure that anyone else who wishes to contribute to your code also uses <code>pytest-testmon</code> to help ensure that pull requests that are made against your repository continue to pass all tests.Here we add it under the <code>dev</code> subset of optional dependencies in the projects <code>pyproject.toml</code> as only those developing the software will want to install it, and we want to avoid installing it unnecessarily in say Continuous Integration.</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode toml code-with-copy"><code class="sourceCode toml"><span id="cb9-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[project.optional-dependencies]</span></span>
<span id="cb9-2"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">dev</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb9-3">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pytest-testmon"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb9-4"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
<p>If you don’t already have a <code>tool.pytest.ini_options</code> section in your <code>pyproject.toml</code> now would be a good time to add one (see the example at the start of this article). You don’t need any specific configuration for <code>pytest --testmon</code> adding, just make sure its an optional dependency as above.</p>
<div class="callout callout-style-simple callout-none no-icon callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Update your documentation
</div>
</div>
<div class="callout-body-container callout-body">
<p>It is recommended to add a section to your documentations <em>Contributing</em> section that advises how to install the <code>dev</code>eloper dependencies and use <code>pytest-testmon</code> including which files to ignore.</p>
<pre class="shell"><code>pip install -e .[dev]</code></pre>
</div>
</div>
</section>
</section>
<section id="test-it-out" class="level3">
<h3 class="anchored" data-anchor-id="test-it-out">Test It Out</h3>
<p>Add a new test, fix a bug or add a new feature (with a test of course!) and <code>git add -u . &amp;&amp; git commit -m "bug: Fixing bug 5"</code> and you should find that only the tests that affect the changed code are run as part of the <code>pre-commit</code> hook. 🪄</p>
</section>
</section>
<section id="summary" class="level2">
<h2 class="anchored" data-anchor-id="summary">Summary</h2>
<p>Speeding up the feedback loop for software development by pushing the identification of errors in your code further “left”, i.e.&nbsp;earlier in the development cycle is really useful and leveraging <a href="https://testmon.org/" target="_blank">pytest-testmon</a> as a <a href="https://blog.nshephard.dev/#category=pre-commit" target="_blank">pre-commit</a> hook is a simple way of achieving this. It helps you capture and fix changes that break your test suite before making commits to your Git history which helps remove the <code>fixing tests</code> commits that litter many projects.</p>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2025,
  author = {Shephard, Neil},
  title = {Pytest Testmon},
  date = {2025-09-24},
  url = {https://blog.nshephard.dev/posts/pytest-testmon/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2025" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2025. <span>“Pytest Testmon.”</span> September 24, 2025.
<a href="https://blog.nshephard.dev/posts/pytest-testmon/">https://blog.nshephard.dev/posts/pytest-testmon/</a>.
</div></div></section></div> ]]></description>
  <category>python</category>
  <category>pytest</category>
  <category>testing</category>
  <category>pre-commit</category>
  <guid>https://blog.nshephard.dev/posts/pytest-testmon/</guid>
  <pubDate>Wed, 24 Sep 2025 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/54800591152_f2509b5efb_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Emacs Tips &amp; Tweaks (2025-09-05)- vundo, regex builder and more</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/emacs_202509/</link>
  <description><![CDATA[ 





<p>Improving my Emacs configuration is an open-ended hobby. Recently I discovered a couple of things that I’ve incorporated into my daily usage that I’ve found really useful and thought I’d document and share them here.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/54764888522_1269a889a5_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/54764888522/in/datetaken/" target="_blank">Taking Time to Reflect by Me</a></figcaption>
</figure>
</div>
<section id="vundo" class="level2">
<h2 class="anchored" data-anchor-id="vundo"><code>vundo</code></h2>
<p>Emacs has a <a href="https://archive.casouri.cc/note/2021/visual-undo-tree/index.html" target="_blank">complicated undo history</a> and I often find myself going round in circles. Enter <a href="https://github.com/casouri/vundo" target="_blank">vundo</a> which is a really neat little package that makes navigating the undo history much easier by providing a graphical overview of the sometimes branching undo history. By default it comes with the key-binding <code>C-c v</code> which will popup a buffer at the bottom showing a graph of your undo history. Switch to this buffer and you can use keys to navigate to older points in the undo history. If you want to know what differs just hit <code>d</code>. If you enable <code>vundo-popup-mode</code> then the buffer will appear whenever you hit the traditional <code>C-x u</code> to undo some changes. I have this set as a hook for a couple of modes.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode lisp code-with-copy"><code class="sourceCode commonlisp"><span id="cb1-1">(<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">use-package</span> vundo</span>
<span id="cb1-2">  :ensure <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">t</span></span>
<span id="cb1-3">  :hook</span>
<span id="cb1-4">  (prog-mode . vundo-popup-mode)</span>
<span id="cb1-5">  (text-mode . vundo-popup-mode))</span></code></pre></div>
</section>
<section id="regex-builder" class="level2">
<h2 class="anchored" data-anchor-id="regex-builder">Regex Builder</h2>
<p>I’m not great at writing <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Regular-Expressions.html" target="_blank">Regular Expressions (aka regex)</a> and regularly resort to online builders (e.g.&nbsp;<a href="https://regexr.com/" target="_blank">regexr</a> or <a href="https://regex101.com/" target="_blank">regex101</a>) but these a) lack Emacs’ flavour of regex’s; b) don’t contain what is in the buffer I’m editing and want to search/replace.</p>
<p>Enter <a href="https://www.masteringemacs.org/article/re-builder-interactive-regexp-builder" target="_blank"><code>re-builder</code></a> which when invoked brings up a buffer into which you can start typing your regular expression and matches in the buffer you are editing are highlighted. Pretty handy for finding things at least, but what about replacing regex matches, which is my typical recourse for using a regex?</p>
<p>Well as with most things, someone else has already thought about this and I found this excellent post on <a href="https://karthinks.com/software/bridging-islands-in-emacs-1/" target="_blank">Bridging Islands in Emacs by Karthink</a>. I won’t repeat the contents here and recommend you read the article and absorb it into your configuration. You can see mine <a href="https://gitlab.com/nshephard/emacs/-/blob/master/settings/regex.el?ref_type=heads" target="_blank">here</a>.</p>
<p>Now when I use <code>C-M-%</code> which is the default for <code>query-replace-rexp</code> it instead calls <code>re-builder</code> and I can start writing my regular expression and see matches. Once I’ve got the regex correct simply hit <code>Ret</code> and I’m prompted to enter what I want to replace matches with.</p>
<p>One thing I’ve not quite sussed out yet is the different input methods of regex’s this takes, it seems more backslashes are required in one method than “standard” but <code>re-builder</code> translates things back to the standard notation on saving.</p>
<p>Tony Aldon has made a good <a href="https://www.youtube.com/watch?v=tZh6ueo9pKk" target="_blank">video</a> that shows how to use <code>re-builder</code>.</p>
</section>
<section id="yank-from-kill-ring" class="level2">
<h2 class="anchored" data-anchor-id="yank-from-kill-ring">Yank from kill ring</h2>
<p>Copying (yanking) and pasting (insert) is a common task in Emacs and a history of what you have copied is kept in the “kill-ring”. You can insert older items if you know their position in this history by preceding <code>C-y</code> with <code>C-#</code> (where <code>#</code>) represents the Nth most recent yank. But what if you can’t remember how many yanks back the item you want to insert is?</p>
<p>Obviously Emacs has your back as you can use <code>M-y</code> which pops up a buffer containing the kill-ring history which you can easily move through and hit <code>Ret</code> to insert the item you want. Simple but a game changer that I now use on a daily basis.</p>
</section>
<section id="use-package" class="level2">
<h2 class="anchored" data-anchor-id="use-package"><code>use-package</code></h2>
<p><a href="https://jwiegley.github.io/use-package/" target="_blank">use-package</a> is a commonly used package that helps simplify installing and configuring packages. I have the following snippet early in my <code>init.el</code> to ensure it is installed and can be used subsequently to load and configure all packages.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode lisp code-with-copy"><code class="sourceCode commonlisp"><span id="cb2-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">;;   https://ianyepan.github.io/posts/setting-up-use-package/</span></span>
<span id="cb2-2">(<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">unless</span> (package-installed-p <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">'use-package</span>)</span>
<span id="cb2-3">  (package-refresh-contents)</span>
<span id="cb2-4">  (package-install <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">'use-package</span>))</span></code></pre></div>
<p>I noticed recently that the <a href="https://github.com/jwiegley/use-package" target="_blank">GitHub repo</a> was archived in 2025-08-23 and the notice in the <code>README.md</code> indicates that it is now a core Emacs package meaning I can simply configure the package with the following instead (configuration details are already in the <a href="https://www.gnu.org/software/emacs/manual/html_mono/use-package.html" target="_blank">official documentation</a>).</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode lisp code-with-copy"><code class="sourceCode commonlisp"><span id="cb3-1">(<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">use-package</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">use-package</span></span>
<span id="cb3-2">  :config</span>
<span id="cb3-3">  (<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">setq</span> use-package-always-ensure <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">t</span>)</span>
<span id="cb3-4">  (<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">setq</span> use-package-expand-minimally <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">t</span>))</span></code></pre></div>
</section>
<section id="emacs-pre-commit" class="level2">
<h2 class="anchored" data-anchor-id="emacs-pre-commit">Emacs pre-commit</h2>
<p>I’m a big fan of <a href="https://www.pre-commit.com/" target="_blank">pre-commit</a> (see <a href="https://blog.nshephard.dev/#category=pre-commit" target="_blank">previous posts</a>) and already use the <a href="https://github.com/eschulte/lisp-format" target="_blank">lisp-format</a> hook on my configuration files. Recently I clocked there was a new linter in the form of <a href="https://github.com/eschulte/lisp-format" target="_blank">pre-commit-elisp</a> which I’ve added to the hooks I use on my configuration repository. Configuration is simple by adding the following to <code>.pre-commit-config.yaml</code>.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb4-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">repo</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> https://github.com/jamescherti/pre-commit-elisp</span></span>
<span id="cb4-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">rev</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> v1.0.0</span></span>
<span id="cb4-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">hooks</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb4-4"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">      # Validate that all parentheses in .el files are correctly balanced</span></span>
<span id="cb4-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">id</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> elisp-check-parens</span></span>
<span id="cb4-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">      # Byte-compile .el files to identify compilation errors early</span></span>
<span id="cb4-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">      # - id: elisp-byte-compile</span></span>
<span id="cb4-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">      # Optional:</span></span>
<span id="cb4-9"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">      # </span><span class="al" style="color: #AD0000;
background-color: null;
font-style: inherit;">NOTE</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">: This change the indentation.</span></span>
<span id="cb4-10"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">id</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> elisp-indent</span></span></code></pre></div>
<p>As you can see I opted not to byte-compile all files by commenting that line out.</p>
</section>
<section id="summary" class="level2">
<h2 class="anchored" data-anchor-id="summary">Summary</h2>
<p>Emacs is a <span class="emoji" data-emoji="rabbit">🐰</span> <span class="emoji" data-emoji="hole">🕳️</span> but that is part of the fun and I always enjoy discovering new features and packages that make my life that little bit easier. Now all I need to do is go through and re-write my Emacs configuration as a <a href="https://leanpub.com/lit-config/read" target="_blank">literate org-mode</a> and make sure I’m <a href="https://batsov.com/articles/2025/04/17/using-use-package-the-right-way/" target="_blank">Using use-package the right way</a>.</p>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2025,
  author = {Shephard, Neil},
  title = {Emacs {Tips} \&amp; {Tweaks} (2025-09-05)- Vundo, Regex Builder
    and More},
  date = {2025-09-05},
  url = {https://blog.nshephard.dev/posts/emacs_202509/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2025" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2025. <span>“Emacs Tips &amp; Tweaks (2025-09-05)-
Vundo, Regex Builder and More.”</span> September 5, 2025. <a href="https://blog.nshephard.dev/posts/emacs_202509/">https://blog.nshephard.dev/posts/emacs_202509/</a>.
</div></div></section></div> ]]></description>
  <category>emacs</category>
  <category>undo</category>
  <category>regex</category>
  <category>pre-commit</category>
  <guid>https://blog.nshephard.dev/posts/emacs_202509/</guid>
  <pubDate>Fri, 05 Sep 2025 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/54764888522_1269a889a5_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Debugging GitHub Actions with tmate</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/tmate/</link>
  <description><![CDATA[ 





<p>If you work with remote computer systems regularly you are probably familiar with <a href="privacy_ssh.md" target="_blank">SSH</a> for making your connections. You might also have come across <a href="https://github.com/tmux/tmux/wiki" target="_blank">tmux</a>, its fork<a href="https://tmate.io/" target="_blank">tmate</a> or the GNU programme <a href="https://www.gnu.org/software/screen/" target="_blank">screen</a> all of which allow you to maintain and/or share a session on a remote system.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/54529600682_763b548c4f_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/54529600682/in/datetaken/" target="_blank">Returning from Bowfell Buttress by Me</a></figcaption>
</figure>
</div>
<p>The ability to connect remotely to a machine is invaluable, but what does that have to do with debugging GitHub Actions? You have your development environment on your local computer where you have made sure all tests pass and the documentation builds. Well often tests are run on a multitiude of operating systems and you may not always have access to these locally, even with the availability of emulators, for example licensing issues may prevent you from emulating some systems.</p>
<p>This is where <code>tmate</code> comes in handy because there is a <a href="github_actions.md" target="_blank">GitHub Actions</a> which sets up <code>tmate</code> on the runner that was spun on the GitHub servers and if you’ve setup your SSH keys correctly then you can connect to this machine and set about debugging errors.</p>
<p>The <a href="https://mxschmitt.github.io/action-tmate/" target="_blank">official documentation</a> is comprehensive and well written and I would recommend you read through it if you want to know more. Here I give a brief overview of how I use <code>tmate</code> in my work. Its pretty basic but has been invaluable.</p>
<section id="setup-and-configuration" class="level2">
<h2 class="anchored" data-anchor-id="setup-and-configuration">Setup and Configuration</h2>
<section id="ssh-keys" class="level3">
<h3 class="anchored" data-anchor-id="ssh-keys">SSH Keys</h3>
<p>It is essential that you have your public SSH key stored in your GitHub account. A while back GitHub started enforcing this for development so chances are you have already got this setup, if not follow the instructions . GitHub have an excellent series of posts on <a href="https://docs.github.com/en/authentication/connecting-to-github-with-ssh/" target="_blank">connecting to GitHub with SSH</a>.</p>
<p>Work through those if you need to setup SSH. Once you have setup your SSH keys you are ready to add the <code>tmate</code> step to your GitHub Action.</p>
</section>
<section id="testing-on-multiple-oss-and-versions" class="level3">
<h3 class="anchored" data-anchor-id="testing-on-multiple-oss-and-versions">Testing on multiple OS’s and versions</h3>
<p>You can configure your GitHub Action to run on a range of operating systems by setting up single or multi-dimension <code>matrix</code> under the <code>strategy</code>. The example below<sup>1</sup> tests multiple operating systems and multiple versions of Python.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb1-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">jobs</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">build</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">name</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> Test (${{ matrix.python-version }}, ${{ matrix.os }})</span></span>
<span id="cb1-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">runs-on</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> ${{ matrix.os }}</span></span>
<span id="cb1-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">strategy</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-6"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">matrix</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-7"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">os</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ubuntu-22.04"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ubuntu-20.04"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ubuntu-latest"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"macos-latest"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"windows-latest"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">]</span></span>
<span id="cb1-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">python-version</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"3.10"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"3.11"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"3.12"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">,</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"3.13"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">]</span></span>
<span id="cb1-9"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">steps</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-10"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">uses</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> actions/checkout@v4</span></span>
<span id="cb1-11"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">name</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> Set up Python</span></span>
<span id="cb1-12"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">uses</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> actions/setup-python@v5</span></span>
<span id="cb1-13"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">with</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-14"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">          </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">python-version</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> ${{ matrix.python-version }}</span></span>
<span id="cb1-15"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    ...</span></span></code></pre></div>
</section>
<section id="tmate-github-action" class="level3">
<h3 class="anchored" data-anchor-id="tmate-github-action"><code>tmate</code> GitHub Action</h3>
<p>To use <code>tmate</code> to debug your workflow you need to add the <a href="https://mxschmitt.github.io/action-tmate/" target="_blank">action-tmate</a> to the <code>.github/workflows/&lt;action&gt;.yaml</code> you wish to debug. There are a lot of options available but a very basic configuration is shown below and you should add this as the last step in your workflow.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb2-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">steps</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb2-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  ...</span></span>
<span id="cb2-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">name</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> Setup tmate session</span></span>
<span id="cb2-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">if</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> ${{ failure() }}</span></span>
<span id="cb2-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">uses</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> mxschmitt/action-tmate@v3</span></span>
<span id="cb2-6"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">timeout-minutes</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span></span></code></pre></div>
<p>This will use the <code>mxschmitt/action-tmate</code> step <em>only</em> if there is a failure and will make the SSH session on the runner available for just 5 minutes. Its quite likely that it will take me than 5 minutes to work out what is causing the error and so after have encountered an error I typically increase this amount to allow me longer to work on debugging the problem.</p>
</section>
</section>
<section id="usage" class="level2">
<h2 class="anchored" data-anchor-id="usage">Usage</h2>
<p>Once you have staged and committed the changes to you have made to your workflow to include the <code>action-tmate</code> step using it is pretty straight-forward. If everything runs ok you will see this in your workflows log because the step only runs on failure.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://blog.nshephard.dev/posts/tmate/img/tmate_skipped.png" class="img-fluid figure-img"></p>
<figcaption>No errors so the tmate action did not run</figcaption>
</figure>
</div>
<p>If however there <em>is</em> a failure in one of the preceding steps of your workflow then the <code>tmate</code> job kicks in and you will see the following in your jobs logs.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://blog.nshephard.dev/posts/tmate/img/tmate_kicks_in.png" class="img-fluid figure-img"></p>
<figcaption><code>tmate</code> kicks in on failure of a preceding job</figcaption>
</figure>
</div>
<p>The key bit of information here are the lines at the bottom which are repeated…</p>
<pre class="shell"><code>2025-06-03T15:29:21.4815179Z openssh-client is already the newest version (1:9.6p1-3ubuntu13.11).
2025-06-03T15:29:21.4816354Z xz-utils is already the newest version (5.6.1+really5.4.5-1ubuntu0.2).
2025-06-03T15:29:21.4817296Z 0 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
2025-06-03T15:29:22.4080716Z ssh 7Nus3JTkxyGCmscUBKKV8fp3z@nyc1.tmate.io
2025-06-03T15:29:22.4113791Z
2025-06-03T15:29:22.4125076Z SSH: ssh 7Nus3JTkxyGCmscUBKKV8fp3z@nyc1.tmate.io
2025-06-03T15:29:22.4125623Z or: ssh -i &lt;path-to-private-SSH-key&gt; 7Nus3JTkxyGCmscUBKKV8fp3z@nyc1.tmate.io
2025-06-03T15:29:27.4141023Z SSH: ssh 7Nus3JTkxyGCmscUBKKV8fp3z@nyc1.tmate.io
2025-06-03T15:29:27.4141669Z or: ssh -i &lt;path-to-private-SSH-key&gt; 7Nus3JTkxyGCmscUBKKV8fp3z@nyc1.tmate.io</code></pre>
<p>These messages are shown after the <code>mxschmitt/action-tmate</code> job has installed <code>tmate</code> on the GitHub runner (/remote server) and it is now available for you to connect to using SSH. If you have your SSH key loaded in a <a href="https://www.funtoo.org/Funtoo:Keychain" target="_blank">Keychain</a><sup>2</sup> or other SSH key manager then you can use the first form.</p>
<pre class="shell"><code>ssh 7Nus3JTkxyGCmscUBKKV8fp3z@nyc1.tmate.io</code></pre>
<p>If you get a <code>Permission Denied</code> error then try the second form, substituting <code>&lt;path-to-private-SSH-key&gt;</code> for the private key that corresponds to the one you have on your GitHub account.</p>
<pre class="shell"><code>ssh -i &lt;path-to-private-SSH-key&gt; 7Nus3JTkxyGCmscUBKKV8fp3z@nyc1.tmate.io</code></pre>
<p>Once connected you have all the tools in the current version of the host operating system along with those your job installed, including the package and its dependencies you are testing or using in the workflow that has failed (remember this is the machine on which the job failed and your workflow sets up the environment for testing/building <span class="emoji" data-emoji="wink">😉</span>).</p>
<p>You can now set about debugging why the job failed in more detail. You may want to run <code>pytest --lf -x</code> to re-run the last failed jobs and start poking around. If you use <a href="https://docs.python.org/3/library/pdb.html" target="_blank"><code>pdb</code></a> to debug then you can add <code>breakpoint()</code> at the point you want to start debugging.</p>
<p>Astute readers will have noticed that you are time-limited as the configuration for this step in the workflow specified <code>timeout-minutes: 5</code> which means the runner and your SSH connection will terminate after five minutes. Typically it’s going to take you longer to solve your problem so you should tweak your <code>/.github/workflow/&lt;job&gt;.yaml</code> to increase this value on your local copy, commit and push the changes to your remote branch on GitHub where they will trigger another run of your jobs which should fail and you will have longer to spend connected debugging. Once you’ve solved the problem reduce it back to a few minutes.</p>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>Being able to remotely connect to GitHub runners allows you to investigate what went wrong quickly on operating systems you may not have at your disposal locally. Its a quick and efficient way to investigate in finer detail why tests and builds might be failing on a specific operating system or version of the software you are testing.</p>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<ul>
<li><a href="https://github.com/mxschmitt/action-tmate" target="_blank">mxschmitt/action-tmate</a> GitHub page for the <code>tmate</code> action.</li>
<li><a href="https://mxschmitt.github.io/action-tmate/" target="_blank">Debug your GitHub Actions by using tmate | action-tmate</a> documentation for the <code>tmate</code> action.</li>
<li><a href="https://github.com/lhotari/action-upterm" target="_blank">lhotari/action-upterm</a> a fork of the <code>tmate</code> action.</li>
</ul>
<section id="ssh-and-github" class="level3">
<h3 class="anchored" data-anchor-id="ssh-and-github">SSH and GitHub</h3>
<ul>
<li><a href="https://docs.github.com/en/authentication/connecting-to-github-with-ssh/checking-for-existing-ssh-keys" target="_blank">Check for existing SSH keys</a></li>
<li><a href="https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent" target="_blank">Generating a new SSH key and adding it to the ssh-agent</a></li>
<li><a href="https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" target="_blank">Adding a new SSH key to your GitHub account</a></li>
<li><a href="https://docs.github.com/en/authentication/connecting-to-github-with-ssh/testing-your-ssh-connection" target="_blank">Testing your SSH connection</a></li>
<li><a href="https://docs.github.com/en/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases" target="_blank">Working with SSH key passphrases</a></li>
<li><a href="https://www.funtoo.org/Funtoo:Keychain" target="_blank">Keychain Project</a></li>
</ul>



</section>
</section>


<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section id="footnotes" class="footnotes footnotes-end-of-document"><h2 class="anchored quarto-appendix-heading">Footnotes</h2>

<ol>
<li id="fn1"><p>This is based on the <a href="https://github.com/AFM-SPM/TopoStats/blob/main/.github/workflows/tests.yaml" target="_blank">TopoStats <code>tests.yaml</code></a> package that I work on.↩︎</p></li>
<li id="fn2"><p>Keychain’s are a convenience programmes for managing <code>ssh-agent</code> that are long-running. They mean you can enter your SSH password once, typically on login, and your private keys are held in memory and used whenever you attempt to connect via SSH to a remote machine.↩︎</p></li>
</ol>
</section><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2025,
  author = {Shephard, Neil},
  title = {Debugging {GitHub} {Actions} with Tmate},
  date = {2025-06-10},
  url = {https://blog.nshephard.dev/posts/tmate/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2025" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2025. <span>“Debugging GitHub Actions with
Tmate.”</span> June 10, 2025. <a href="https://blog.nshephard.dev/posts/tmate/">https://blog.nshephard.dev/posts/tmate/</a>.
</div></div></section></div> ]]></description>
  <category>git</category>
  <category>version control</category>
  <category>github</category>
  <category>tmate</category>
  <category>ssh</category>
  <guid>https://blog.nshephard.dev/posts/tmate/</guid>
  <pubDate>Tue, 10 Jun 2025 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/54529600682_763b548c4f_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Emacs Yasnippet</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/emacs-yasnippet/</link>
  <description><![CDATA[ 





<p>I’ve used <a href="https://www.gnu.org/software/emacs/" target="_blank">Emacs</a> for around 20 years but it wasn’t until about 8 years ago that it all started to click and I realised the benefit of having a highly customisable environment for doing all your development work, note taking, agenda organising (and much more) because its much more fun tinkering with your configuration than it is getting work done!</p>
<p>Recently I revisited <a href="http://joaotavora.github.io/yasnippet/" target="_blank">Yasnippet</a> and it finally clicked with me so I thought I’d write a short post as much to help me solidify my understanding as to perhaps help others.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/54109503727_fc5de51c9b_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/54109503727/" target="_blank">Autumn Colours by Me</a></figcaption>
</figure>
</div>
<section id="yasnippet" class="level2">
<h2 class="anchored" data-anchor-id="yasnippet">Yasnippet</h2>
<p>What is <a href="http://joaotavora.github.io/yasnippet/" target="_blank">YASnippet</a>? Its a templating system for <a href="https://www.gnu.org/software/emacs/" target="_blank">Emacs</a> which saves you time on writing <a href="https://en.wikipedia.org/wiki/Boilerplate_code" target="_blank">boiler-plate</a> code/text. Whilst all the cool-kids these days might be “vibe-coding” with Large Language Models and paying Microsoft for the privilege of accessing Co-Pilot there is a lot to be said for understanding and crafting your own tools.</p>
</section>
<section id="installation" class="level2">
<h2 class="anchored" data-anchor-id="installation">Installation</h2>
<p><a href="http://joaotavora.github.io/yasnippet/" target="_blank">YASnippet</a> is a frame work to make it useful you will want to also install <a href="https://github.com/AndreaCrotti/yasnippet-snippets" target="_blank">yasnippet-templates</a>.</p>
<p>Installation is pretty straight-forward and the same for all Emacs packages. Ideally you should have <a href="https://melpa.org/" target="_blank">MELPA</a> configured as a repository and you can then <code>M-: package-install yasnippet</code> and <code>M-: package-install yasnippet-templates</code>. I use <a href="https://www.gnu.org/software/emacs/manual/html_mono/use-package.html" target="_blank">use-package</a> for installing and managing my packages so somewhere deep in my <a href="https://gitlab.com/nshephard/emacs/" target="_blank">Emacs config</a> I have the following.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode lisp code-with-copy"><code class="sourceCode commonlisp"><span id="cb1-1">(<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">use-package</span> yasnippet</span>
<span id="cb1-2">  :ensure <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">t</span></span>
<span id="cb1-3">  :config</span>
<span id="cb1-4">  (yas-reload-all)</span>
<span id="cb1-5">  (add-hook <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">'prog-mode-hook</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#'</span>yas-minor-mode)</span>
<span id="cb1-6">  (add-hook <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">'markdown-mode-hook</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#'</span>yas-minor-mode))</span>
<span id="cb1-7"></span>
<span id="cb1-8">(<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">use-package</span> yasnippet-snippets</span>
<span id="cb1-9">  :ensure <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">t</span>)</span></code></pre></div>
<p>This installs both packages and adds a <a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Hooks.html" target="_blank">hook</a> so that whenever the <code>prog-mode-hook</code> is called <code>yas-minor-mode</code> is enabled which is also enabled.</p>
</section>
<section id="inserting-templates" class="level2">
<h2 class="anchored" data-anchor-id="inserting-templates">Inserting templates</h2>
<p>Until you learn the muscle memory for the key-bindings for the various templates available in each mode your easiest option is to use the <code>YASnippet</code> menu that is available when <code>yas-minor-mode</code> is enabled in a buffer as there are too many snippets for to learn instantly (for me anyway).</p>
<p>As an example we will use <a href="https://www.python.org/" target="_blank">Python</a>, but most languages have an abundance of templates. You must of course have a buffer(/file) open in <code>python-mode</code> which is simple, just open <code>anything.py</code> and it <em>should</em> be in the correct mode. Lets open <code>C-x C-f ~/tmp/example.py</code>, if you don’t have <code>YASnippet</code> in your menu bar you can <code>M-x yas-snippet-mode</code> and it should appear.</p>
<p>Start by adding a module description to the top of the file.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""This is an example Python file that we have populated with YASnippet templates."""</span></span>
<span id="cb2-2"></span>
<span id="cb2-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> dataclasses <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> dataclass</span></code></pre></div>
<p>We now want to add a class definition. We could write it but lets use a template instead. As we don’t know the key-bindings (yet) we go use the menu and select <em>YASnippet &gt; python-mode &gt; object orientated &gt; dataclass</em> and it will insert a class definition with the <code>@dataclass</code> decorator.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""This is an example Python file that we have populated with YASnippet templates."""</span></span>
<span id="cb3-2"></span>
<span id="cb3-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> dataclasses <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> dataclass</span>
<span id="cb3-4"></span>
<span id="cb3-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@dataclass</span></span>
<span id="cb3-6"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">class</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">class</span>:</span></code></pre></div>
<p>The class name (<code>class:</code>) is highlighted but probably isn’t the name you want for your class, but start typing and it will be replaced. Here we enter <code>person</code></p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""This is an example Python file that we have populated with YASnippet templates."""</span></span>
<span id="cb4-2"></span>
<span id="cb4-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> dataclasses <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> dataclass</span>
<span id="cb4-4"></span>
<span id="cb4-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@dataclass</span></span>
<span id="cb4-6"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">class</span> person:</span></code></pre></div>
<section id="using-key-bindings-to-insert" class="level3">
<h3 class="anchored" data-anchor-id="using-key-bindings-to-insert">Using Key-bindings to insert</h3>
<p>You might have noticed that the menu you opened and navigated through had a bunch of characters on the right-hand-side next to each command, these are the key-bindings you can use to insert the template automatically so it’s worth paying attention to these (for inserting this dataclass template the key-binding was <code>dc</code> but more on those below)</p>
<p>Once you are familiar with some of the snippets that you want to use you can learn the key-bindings to insert them. These are all documented in the snippets themselves so you can browse the <a href="https://github.com/AndreaCrotti/yasnippet-snippets" target="_blank">YASnippet Templates</a> repository and looking at each to find out the key-bindings.</p>
<p>We’ll add a <a href="https://www.pythonmorsels.com/every-dunder-method/" target="_blank">dunder</a> <code>__eq__</code> method to the class but rather than go through the menus I’ll tell you the key-binding to use, type <code>_eq</code> and then hit <code>&lt;Tab&gt;</code> and the template will be inserted. This is how you can type key-sequences and not always have them replaced by the template, you have to hit <code>&lt;Tab&gt;</code> afterwards.</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""This is an example Python file that we have populated with YASnippet templates."""</span></span>
<span id="cb5-2"></span>
<span id="cb5-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> dataclasses <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> dataclass</span>
<span id="cb5-4"></span>
<span id="cb5-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@dataclass</span></span>
<span id="cb5-6"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">class</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">class</span>:</span>
<span id="cb5-7"></span>
<span id="cb5-8">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">__eq__</span>(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, other):</span>
<span id="cb5-9">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span></span></code></pre></div>
<p>You now have a template with a skeleton for the <code>__eq__</code> dunder method! Obviously the templating can’t know how you want to test for equality so you have to define that yourself which will be dependent on what your class is. For simplicity in this example we’ll just test that <code>self == other</code> which should return <code>True</code> or <code>False</code>.</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""This is an example Python file that we have populated with YASnippet templates."""</span></span>
<span id="cb6-2"></span>
<span id="cb6-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> dataclasses <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> dataclass</span>
<span id="cb6-4"></span>
<span id="cb6-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@dataclass</span></span>
<span id="cb6-6"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">class</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">class</span>:</span>
<span id="cb6-7"></span>
<span id="cb6-8">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">__eq__</span>(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, other):</span>
<span id="cb6-9">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> other</span></code></pre></div>
</section>
</section>
<section id="creating-your-own-templates" class="level2">
<h2 class="anchored" data-anchor-id="creating-your-own-templates">Creating your own templates</h2>
<p>My main motivation for looking at this system was that I made a dumb mistake when writing some Python code. I was using the <a href="https://realpython.com/python-getter-setter/" target="_blank">getter/setter</a> design pattern in Python to make attributes using the <code>@property</code> fixture and stupidly didn’t include a <code>return self._some_attribute</code> in the getter and wasted too much time looking for my error before a colleague kindly pointed out my error (thanks Sylvia <span class="emoji" data-emoji="pray">🙏</span>).</p>
<p>I therefore set about writing my own template to insert a decorated getter and associated setter method for Python classes and it was incredibly easy. I place the following code in <code>~/.config/emacs/snippets/python-mode/setter</code> which binds to the <code>sg</code> key sequence and it “Just Worked(TM)”!</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode lisp code-with-copy"><code class="sourceCode commonlisp"><span id="cb7-1"># -*- mode: snippet -*-</span>
<span id="cb7-2"># name: setter-getter</span>
<span id="cb7-3"># key: sg</span>
<span id="cb7-4"># expand-env: ((yas-indent-line <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">'fixed</span>))</span>
<span id="cb7-5"># --</span>
<span id="cb7-6">    @property</span>
<span id="cb7-7">    def ${<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>:attribute}(self) -&gt; ${<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>:type}:</span>
<span id="cb7-8">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb7-9"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        Greeter for the ''${1}'' attribute.</span></span>
<span id="cb7-10"></span>
<span id="cb7-11"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        Returns</span></span>
<span id="cb7-12"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        -------</span></span>
<span id="cb7-13"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        ${2}</span></span>
<span id="cb7-14"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">            Returns the value of ''${1}''.</span></span>
<span id="cb7-15"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        """</span></span>
<span id="cb7-16">        <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> self._${<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>}</span>
<span id="cb7-17"></span>
<span id="cb7-18">    @${<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>}.setter</span>
<span id="cb7-19">    def ${<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>}(self, value: ${<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>}) -&gt; None:</span>
<span id="cb7-20">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb7-21"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        Setter for the ''${1}'' attribute.</span></span>
<span id="cb7-22"></span>
<span id="cb7-23"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        Parameters</span></span>
<span id="cb7-24"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        ----------</span></span>
<span id="cb7-25"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        value : ${2}</span></span>
<span id="cb7-26"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">            Value to set for ${1}.</span></span>
<span id="cb7-27"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        """</span></span>
<span id="cb7-28">self._${<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>} <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> value</span></code></pre></div>
<p>There is a lot going on here, there is a header (lines starting with <code>#</code>) and then the snippet itself.</p>
<p>The header has some key/value pairs, the <code>name</code> is <code>setter-getter</code> and this is bound to the <code>key</code>-sequence <code>sg</code> so we know that we can type <code>sg&lt;Tab&gt;</code> to insert the template. I’ve not yet sussed out the <code>expand-env</code> as I copied it from an existing template but I think it preserves the indenting.</p>
<p>The template then follows and it’s a bit more complex than the examples so far. What does <code>${1:attribute}</code>, <code>${2:type}</code> and the related <code>${1}</code> and <code>${2}</code> mean/do? Well these are ways of inserting names of your own choosing to and having them filled in automatically so you don’t have to find/replace them after inserting the template.</p>
<p>Lets give it a go. Insert the template by hitting <code>sg&lt;Tab&gt;</code>, you should have the following inserted under your Class definition.</p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1">        <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@property</span></span>
<span id="cb8-2">        <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> attribute(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">type</span>:</span>
<span id="cb8-3">            <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb8-4"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            Greeter for the ''attribute'' attribute.</span></span>
<span id="cb8-5"></span>
<span id="cb8-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            Returns</span></span>
<span id="cb8-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            -------</span></span>
<span id="cb8-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            type</span></span>
<span id="cb8-9"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">                Returns the value of ''attribute''.</span></span>
<span id="cb8-10"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            """</span></span>
<span id="cb8-11">            <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>._attribute</span>
<span id="cb8-12"></span>
<span id="cb8-13">        <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@attribute.setter</span></span>
<span id="cb8-14">        <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> attribute(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, value: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">type</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb8-15">            <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb8-16"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            Setter for the ''attribute'' attribute.</span></span>
<span id="cb8-17"></span>
<span id="cb8-18"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            Parameters</span></span>
<span id="cb8-19"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            ----------</span></span>
<span id="cb8-20"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            value : type</span></span>
<span id="cb8-21"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">                Value to set for attribute.</span></span>
<span id="cb8-22"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            """</span></span>
<span id="cb8-23">            <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>._attribute <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> value</span></code></pre></div>
<p>This template is as it appears in the definition, but two words are highlighted, the <code>attribute</code> and <code>type</code> which if we look back at our template are the values associated with <code>${1}</code> and <code>${2}</code> respectively. As with inserting the class earlier we can start typing where the cursor is, adjacent to the first occurrence of <code>attribute</code> and Emacs/YASnippet will auto-magically replace all occurrences with what you type, here I’ve typed <code>age</code>…</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@property</span></span>
<span id="cb9-2">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> age(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">type</span>:</span>
<span id="cb9-3">        <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb9-4"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Greeter for the ''age'' attribute.</span></span>
<span id="cb9-5"></span>
<span id="cb9-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Returns</span></span>
<span id="cb9-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        -------</span></span>
<span id="cb9-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        type</span></span>
<span id="cb9-9"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            Returns the value of ''age''.</span></span>
<span id="cb9-10"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        """</span></span>
<span id="cb9-11">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>._age</span>
<span id="cb9-12"></span>
<span id="cb9-13">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@age.setter</span></span>
<span id="cb9-14">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> age(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, value: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">type</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb9-15">        <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb9-16"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Setter for the ''age'' attribute.</span></span>
<span id="cb9-17"></span>
<span id="cb9-18"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Parameters</span></span>
<span id="cb9-19"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        ----------</span></span>
<span id="cb9-20"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        value : type</span></span>
<span id="cb9-21"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            Value to set for age.</span></span>
<span id="cb9-22"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        """</span></span>
<span id="cb9-23">        <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>._age <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> value</span></code></pre></div>
<p>Hit <code>&lt;Tab&gt;</code> again and the cursor moves to the next “parameter” in our template, in this example <code>type</code> and you can again start typing and Emacs/YASnippet will replace it with whatever you type, I’ve opted for <code>int | float</code>.</p>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@property</span></span>
<span id="cb10-2">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> age(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>:</span>
<span id="cb10-3">        <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb10-4"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Greeter for the ''age'' attribute.</span></span>
<span id="cb10-5"></span>
<span id="cb10-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Returns</span></span>
<span id="cb10-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        -------</span></span>
<span id="cb10-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        int | float</span></span>
<span id="cb10-9"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            Returns the value of ''age''.</span></span>
<span id="cb10-10"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        """</span></span>
<span id="cb10-11">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>._age</span>
<span id="cb10-12"></span>
<span id="cb10-13">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@age.setter</span></span>
<span id="cb10-14">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> age(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, value: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb10-15">        <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb10-16"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Setter for the ''age'' attribute.</span></span>
<span id="cb10-17"></span>
<span id="cb10-18"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Parameters</span></span>
<span id="cb10-19"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        ----------</span></span>
<span id="cb10-20"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        value : int | float</span></span>
<span id="cb10-21"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">            Value to set for age.</span></span>
<span id="cb10-22"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        """</span></span>
<span id="cb10-23">        <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>._age <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> value</span></code></pre></div>
<p>Hit <code>&lt;Tab&gt;</code> again and the cursor moves to the end of the template and you are done. You can go back and edit the <a href="https://gitlab.com/nshephard/emacs" target="_blank">docstrings</a> if you want to make them more informative if you want.</p>
</section>
<section id="more-templates" class="level2">
<h2 class="anchored" data-anchor-id="more-templates">More Templates</h2>
<p><a href="https://github.com/AndreaCrotti/yasnippet-snippets" target="_blank">YASnippet templates</a> are not the only resource, there are others listed on the <a href="https://github.com/joaotavora/yasnippet" target="_blank">YASnippet GitHub Page</a> page under <a href="https://github.com/joaotavora/yasnippet#where-are-the-snippets" target="_blank">Where are the snippets?</a> which I haven’t investigated yet as I’ve only so much time to spend in front of a computer.</p>
</section>
<section id="summary" class="level2">
<h2 class="anchored" data-anchor-id="summary">Summary</h2>
<p><a href="http://joaotavora.github.io/yasnippet/" target="_blank">YASnippet</a> are a really powerful tool for templating common <a href="https://en.wikipedia.org/wiki/Boilerplate_code" target="_blank">boiler plate code</a> and can save you a considerable number of key-strokes by using a <a href="https://github.com/AndreaCrotti/yasnippet-snippets" target="_blank">templates</a>. Whilst there may be an overhead in learning and memorising the keystrokes for doing so the menu system is a saviour (as the author of <a href="https://www.masteringemacs.org/" target="_blank">Mastering Emacs</a> advocates for learning Emacs). Best of all you are free to create your own templates that are customised to your own requirements and I would advocate that learning this is a better way of spending your time than asking a statistical model ever more refined questions until you get the answer you want (aka “prompt engineering” or <a href="https://www.youtube.com/watch?v=JeNS1ZNHQs8" target="_blank">“vibe coding”</a>).</p>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<ul>
<li><a href="https://www.gnu.org/software/emacs/" target="_blank">Emacs</a></li>
<li><a href="https://melpa.org/" target="_blank">MELPA</a></li>
<li><a href="https://www.gnu.org/software/emacs/manual/html_mono/use-package.html" target="_blank">use-package</a></li>
<li><a href="http://joaotavora.github.io/yasnippet/" target="_blank">YASnippet</a></li>
<li><a href="https://github.com/joaotavora/yasnippet" target="_blank">YASnippet (GitHub)</a></li>
<li><a href="https://github.com/AndreaCrotti/yasnippet-snippets" target="_blank">YASnippet Templates</a></li>
</ul>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2025,
  author = {Shephard, Neil},
  title = {Emacs {Yasnippet}},
  date = {2025-05-07},
  url = {https://blog.nshephard.dev/posts/emacs-yasnippet/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2025" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2025. <span>“Emacs Yasnippet.”</span> May 7, 2025. <a href="https://blog.nshephard.dev/posts/emacs-yasnippet/">https://blog.nshephard.dev/posts/emacs-yasnippet/</a>.
</div></div></section></div> ]]></description>
  <category>emacs</category>
  <category>templates</category>
  <category>yasnippet</category>
  <category>python</category>
  <guid>https://blog.nshephard.dev/posts/emacs-yasnippet/</guid>
  <pubDate>Wed, 07 May 2025 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/54109503727_fc5de51c9b_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Version Control with Jujutsu</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/jujutsu/</link>
  <description><![CDATA[ 





<p>I’d bread about and heard a good things about <a href="https://martinvonz.github.io/jj/latest/" target="_blank">Jujutsu</a>, a new Version Control System developed by Martin von Zweigbergk at Google, although it is not an official Google product and is Open Source Software licensed under the Apache 2.0 license. It has its own internal/native backend but also supports using <a href="https://git-scm.com/" target="_blank">Git</a> in the background to undertake all tasks. As such it can be used as a drop-in replacement for <a href="https://git-scm.com/" target="_blank">Git</a>. A big difference from the familiar Git model is that the working copy is automatically committed. If you check out a commit this introduces a new working-copy commit where changes are recorded (no more <code>detached HEAD</code> state!). I recently purchased a refurbished ThinkPad T490s and decided to give <a href="https://nixos.org" target="_blank">NixOS</a> a whirl so what better opportunity to try Jujutsu than to use it to version control my <code>/etc/nixos</code> directory.</p>
<p>This post covers my experience of getting started with Jujutsu.</p>
<section id="installation" class="level2">
<h2 class="anchored" data-anchor-id="installation">Installation</h2>
<p>Whilst notionally installing and using it on NixOS I use both <a href="https://gentoo.org/" target="_blank">Gentoo</a> and <a href="https://archlinux.org" target="_blank">Arch</a> Linux so have installed it on those systems too.</p>
<section id="gentoo" class="level3">
<h3 class="anchored" data-anchor-id="gentoo">Gentoo</h3>
<p><code>jj</code> is available in the <a href="https://overlays.gentoo.org/" target="_blank">Gentoo Overlays</a> <code>guru</code>.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">eselect</span> repository enable guru</span>
<span id="cb1-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">eix-sync</span></span>
<span id="cb1-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">emerge</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-av</span> dev-vcs/jj</span></code></pre></div>
</section>
<section id="nixos" class="level3">
<h3 class="anchored" data-anchor-id="nixos">NixOS</h3>
<p><code>jj</code> is also available for <a href="https://nixos.org" target="_blank">NixOS</a>. You can use <a href="https://wiki.nixos.org/wiki/Flakes" target="_blank">flake</a> or <a href="https://wiki.nixos.org/wiki/Home_Manager" target="_blank">HomeManager</a>, I opted for the former and added the following to <code>/etc/nixos/flake.nix</code>. Just add the following to <code>/etc/nixos/configuration.nix</code> to install the most recent release system wide.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">environment.systemPackages</span> = with pkgs{</span>
<span id="cb2-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">...</span></span>
<span id="cb2-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jujutsu</span></span>
<span id="cb2-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">...</span></span>
<span id="cb2-5"><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">}</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span></span></code></pre></div>
<p>Then either <code>nixos-rebuild test</code> to install and test the installation (you should now have <code>jj</code> in your command line) and if happy <code>nixos-rebuild switch</code> to make the change permanent and available on the next boot.</p>
</section>
<section id="arch-linux" class="level3">
<h3 class="anchored" data-anchor-id="arch-linux">Arch Linux</h3>
<p>Stable version is included in <a href="https://aur.archlinux.org/packages/jj" target="_blank">packages</a>, although you can keep track of development using the <a href="https://aur.archlinux.org/packages/jj-git" target="_blank">AUR <sub>jj-git</sub></a> package.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pacman</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-Syu</span> jj</span></code></pre></div>
</section>
<section id="shell-integration" class="level3">
<h3 class="anchored" data-anchor-id="shell-integration">Shell Integration</h3>
<p>There is integration with both <a href="https://www.gnu.org/software/bash/" target="_blank">Bash</a> and <a href="https://www.zsh.org/" target="_blank">ZSH</a> as well as <a href="https://jj-vcs.github.io/jj/latest/install-and-setup/#command-line-completion" target="_blank">other shells</a>.</p>
<section id="bash" class="level4">
<h4 class="anchored" data-anchor-id="bash">Bash</h4>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">source</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> util completion bash<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">)</span></span></code></pre></div>
</section>
<section id="zsh" class="level4">
<h4 class="anchored" data-anchor-id="zsh">ZSH</h4>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb5-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">autoload</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-U</span> compinit</span>
<span id="cb5-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">compinit</span></span>
<span id="cb5-3"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">source</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> util completion zsh<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">)</span></span></code></pre></div>
</section>
</section>
<section id="initial-configuration" class="level3">
<h3 class="anchored" data-anchor-id="initial-configuration">Initial Configuration</h3>
<p>As with Git you need to add your <code>user.name</code> and <code>user.email</code> to the configuration.</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb6-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> config set <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--user</span> user.name <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Your Name"</span></span>
<span id="cb6-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> config set <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--user</span> user.email <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"your@email.address"</span></span>
<span id="cb6-3"></span>
<span id="cb6-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">We</span> can check the configuration…</span>
<span id="cb6-5"></span>
<span id="cb6-6"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">```</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">sh</span></span>
<span id="cb6-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> config list</span>
<span id="cb6-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">ui.editor</span> = <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"/usr/bin/nano"</span></span>
<span id="cb6-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">ui.pager</span> = <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"less"</span></span>
<span id="cb6-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">user.email</span> = <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"nshephard@protonmail.com"</span></span>
<span id="cb6-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">user.name</span> = <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Neil Shephard"</span></span></code></pre></div>
<p>This looks ok but I found that <code>/usr/bin/nano</code> is <em>wrong</em> for a NixOS system….</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb7-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">which</span> nano</span>
<span id="cb7-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/run/current-system-sw/bin/nano</span></span></code></pre></div>
<p>..so updated that along with a switch from <code>less</code> to <code>most</code> for paging.</p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb8-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> config set <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--user</span> ui.editor <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"/run/current-system/sw/bin/nano"</span></span>
<span id="cb8-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">config</span> set <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--user</span> ui.pager <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"/run/current-system/sw/bin/most"</span></span></code></pre></div>
</section>
</section>
<section id="usage" class="level2">
<h2 class="anchored" data-anchor-id="usage">Usage</h2>
<p>I wanted to keep <code>/etc/nixos</code> under version control using <code>jj</code> and as advised in <a href="https://steveklabnik.github.io/jujutsu-tutorial/introduction/introduction.html" target="_blank">Steve’s Jujutsu Tutorial</a> opted to use the Git backend.</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb9-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> /etc/nixos</span>
<span id="cb9-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> git init</span>
<span id="cb9-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> st</span>
<span id="cb9-4">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy changes:</span>
<span id="cb9-5">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> agenix.nix</span>
<span id="cb9-6">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> audio.nix</span>
<span id="cb9-7">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> bluetooth.nix</span>
<span id="cb9-8">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> configuration.nix</span>
<span id="cb9-9">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> configuration.nix~</span>
<span id="cb9-10">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> flake.lock</span>
<span id="cb9-11">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> flake.nix</span>
<span id="cb9-12">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> flake.nix~</span>
<span id="cb9-13">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> hardware-configuration.nix</span>
<span id="cb9-14">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> home.nix</span>
<span id="cb9-15">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> home.nix~</span>
<span id="cb9-16">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> luks.nix</span>
<span id="cb9-17">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> secrets/secrets.nix</span>
<span id="cb9-18">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> secrets/slack-vpn.age</span>
<span id="cb9-19">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> xfce.nix</span>
<span id="cb9-20">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> xfce.nix~</span>
<span id="cb9-21">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy : vpqtltus 35cc03d2 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb9-22">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit: zzzzzzzz 00000000 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">empty</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>First things first, I’d already edited some files using Emacs and didn’t want the temporary files it leaves behind included. According to the <a href="https://jj-vcs.github.io/jj/latest/working-copy/#ignored-files" target="_blank">documentation</a> there is no <code>.jjignore</code> yet so we use <code>.gitignore</code> instead listing our files and patterns there.</p>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb10-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">*~</span></span>
<span id="cb10-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">\#*</span></span></code></pre></div>
<p>…but the files are already being tracked because they were present when the repository was initialised. We therefore need to untrack them with…</p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb11-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> file untrack</span></code></pre></div>
<p>This failed because <code>~</code> is used in the syntax for <a href="https://jj-vcs.github.io/jj/latest/filesets/" target="_blank">jj filesets</a> which is a method of defining patterns of files. I tried a few things but in the end couldn’t suss it out in the five minutes so took the brute force option of <code>rm -rf .jj</code> and initialising the repository anew. We can look at the status with <code>jj st</code> and it will use our configured pager (which I’ve set to <code>most</code>) to show the changes.</p>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb12-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> st</span>
<span id="cb12-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy changes:</span>
<span id="cb12-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> .gitignore</span>
<span id="cb12-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> agenix.nix</span>
<span id="cb12-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> audio.nix</span>
<span id="cb12-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> bluetooth.nix</span>
<span id="cb12-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> configuration.nix</span>
<span id="cb12-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> flake.lock</span>
<span id="cb12-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> flake.nix</span>
<span id="cb12-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> hardware-configuration.nix</span>
<span id="cb12-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> home.nix</span>
<span id="cb12-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> luks.nix</span>
<span id="cb12-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> secrets/secrets.nix</span>
<span id="cb12-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> secrets/slack-vpn.age</span>
<span id="cb12-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> xfce.nix</span>
<span id="cb12-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy : nxzzlvzo 43e6338e <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb12-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit: zzzzzzzz 00000000 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">empty</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>We can see the changes (i.e.&nbsp;all new files) are already noted as being under the working copy. We can also use <code>jj describe</code> to look at the changes and add a description. If we use the <code>-m "A message"</code> flag and value we can add a message and it will replace the <code>no description set</code> shown by <code>jj st</code>. With <code>jj describe</code> the information is opened up in an editor, and if a message has already been set it will be shown at the top. Note that lines beginning with <code>JJ</code> will be removed (i.e.&nbsp;they are comment lines). On adding a message or changing it the commit ID changes, the change ID remains the same but the commit ID changes over time allowing us to refer to individual commits rather than a whole change set.</p>
<div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb13-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> describe <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Initial commit with jj :)"</span></span>
<span id="cb13-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy now at: nxzzlvzo d2d192ec Initial commit with jj :<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">)</span></span>
<span id="cb13-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit      : zzzzzzzz 00000000 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">empty</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<section id="new-commits" class="level3">
<h3 class="anchored" data-anchor-id="new-commits">New commits</h3>
<p>We’re ready to make some changes, but unlike Git we can make our commit <em>first</em> rather than after having made the changes. We do this with <code>jj new</code></p>
<div class="sourceCode" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb14-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> new</span>
<span id="cb14-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy now at: mkrknnyv d20e2368 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">empty</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb14-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit      : nxzzlvzo d2d192ec Initial commit with jj :<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">)</span></span></code></pre></div>
<p>We can now modify a file, in this case I tidied up <code>/etc/nixos/configuration.nix</code> and put all <code>network.*</code> options within a <code>network = {...};</code> block and similar aggregated all <code>nix.*</code> options into a <code>nix = {...};</code> block.</p>
<div class="sourceCode" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb15-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> st</span>
<span id="cb15-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy changes:</span>
<span id="cb15-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">M</span> configuration.nix</span>
<span id="cb15-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy : mkrknnyv 31f1c759 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb15-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit: nxzzlvzo d2d192ec Initial commit with jj :<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">)</span></span></code></pre></div>
<p>We can see the full commit history with <code>jj log</code> (no surprisese there!)</p>
<div class="sourceCode" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb16-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">@</span>  mkrknnyv nshephard@protonmail.com 2024-12-21 16:20:53 31f1c759</span>
<span id="cb16-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>  <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb16-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span>  nxzzlvzo nshephard@protonmail.com 2024-12-21 15:48:47 d2d192ec</span>
<span id="cb16-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>  Initial commit with jj :<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">)</span></span>
<span id="cb16-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span>  zzzzzzzz root<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">00000000</span></span></code></pre></div>
<p>It’s interesting to note that the bold/highlighting of the start of commit hashes gives you an indication of the unique component of that hash (but you’ll have to take my word for that as I’ve not bothered to copy that over to the blog!).</p>
<p>It is important to note that there is no need to explicitly make a commit, the work done/changes are already part of the current commit. When you are ready to start the next piece of work you <code>jj new</code> (optionally with <code>-m "&lt;message&gt;"</code>) to start a new piece of work.</p>
<p>This naturally leads to the question of how to undo work that you have done With <code>jj</code> you can move back to commits using <code>jj edit @-</code> or referring to the commit directly with <code>jj edit &lt;hash&gt;</code> and then use</p>
<div class="sourceCode" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb17-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> edit @-</span>
<span id="cb17-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> abandon <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>hash_of_latest_commit<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span></span></code></pre></div>
</section>
</section>
<section id="diffing" class="level2">
<h2 class="anchored" data-anchor-id="diffing">Diffing</h2>
<p>You can view differences with <code>jj diff</code> and it will show the differences between the current “<code>HEAD</code>” and the previous commit. I use <code>difftastic</code> (see Configuration section below) so have colourized output which isn’t shown below.</p>
<div class="sourceCode" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode diff code-with-copy"><code class="sourceCode diff"><span id="cb18-1">    home.nix --- Nix</span>
<span id="cb18-2">    152 152       urldecode = "python3 -c 'import sys, urllib.parse as ul; print(ul.unquote_plus(sys.stdin.read()))'";</span>
<span id="cb18-3">    153 153       urlencode = "python3 -c 'import sys, urllib.parse as ul; print(ul.quote_plus(sys.stdin.read()))'";</span>
<span id="cb18-4">    154 154     };</span>
<span id="cb18-5">    ... 155     # initExtra = ''</span>
<span id="cb18-6">    ... 156     #   if command -v keychain &gt; /dev/null 2&gt;&amp;1; then eval $(keychain --eval --nogui ${keyFilename} --quiet); fi</span>
<span id="cb18-7">    ... 157     # '';</span>
<span id="cb18-8">    155 158   };</span>
<span id="cb18-9">    156 159</span>
<span id="cb18-10">    157 160   programs.emacs = {</span>
<span id="cb18-11"></span>
<span id="cb18-12">    configuration.nix --- 1/2 --- Nix</span>
<span id="cb18-13">    177   # Some programs need SUID wrappers, can be configured further or are      177   # Some programs need SUID wrappers, can be configured further or are</span>
<span id="cb18-14">    178   # started in user sessions.                                               178   # started in user sessions.</span>
<span id="cb18-15">    179   # programs.mtr.enable = true;                                             179   # programs.mtr.enable = true;</span>
<span id="cb18-16">    180   programs.gnupg.agent = {                                                  180   programs = {</span>
<span id="cb18-17">    ...                                                                             181     gnupg.agent = {</span>
<span id="cb18-18">    181     enable = true;                                                          182       enable = true;</span>
<span id="cb18-19">    ...                                                                             183       # enableSSHSupport = true;</span>
<span id="cb18-20">    ...                                                                             184     };</span>
<span id="cb18-21">    182     enableSSHSupport = true;                                                185     ssh.startAgent = true;</span>
<span id="cb18-22">    183   };                                                                        186   };</span>
<span id="cb18-23">    184                                                                             187</span>
<span id="cb18-24">    185   # List services that you want to enable:                                  188   # List services that you want to enable:</span>
<span id="cb18-25">    186   services = {                                                              189   services = {</span>
<span id="cb18-26"></span>
<span id="cb18-27">    configuration.nix --- 2/2 --- Nix</span>
<span id="cb18-28">    210 213     fprintd = {</span>
<span id="cb18-29">    211 214       enable = true;</span>
<span id="cb18-30">    212 215     };</span>
<span id="cb18-31">    ... 216     # yubikey</span>
<span id="cb18-32">    ... 217     yubikey-agent = {</span>
<span id="cb18-33">    ... 218       enable = true;</span>
<span id="cb18-34">    ... 219     };</span>
<span id="cb18-35">    213 220   };</span>
<span id="cb18-36">    214 221   # Open ports in the firewall.</span>
<span id="cb18-37">    215 222   # networking.firewall.allowedTCPPorts = [ ... ];</span></code></pre></div>
<p>If you want to look at differences between two specific commits you can use the <code>--from</code> and <code>--to</code> options (the former likely being more useful than the later).</p>
</section>
<section id="remotes" class="level2">
<h2 class="anchored" data-anchor-id="remotes">Remotes</h2>
<p>I wanted to back my work up remotely and have a few options the ubiquitous <a href="https://github.com/" target="_blank">GitHub</a>, <a href="https://gitlab.com/" target="_blank">GitLab</a>, or my self-hosted <a href="https://forgejo.org/" target="_blank">Forgejo</a>. I opted for the later which is hosted on the VPS I pay for with <a href="https://ovh.co.uk" target="_blank">OVH</a>.</p>
<div class="sourceCode" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb19-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> git remote add origin <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>git@forgejo.nshephard.dev<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span>:nshephard/crow.git</span></code></pre></div>
<p>However trying to push failed with a rather cryptic and unhelpful message.</p>
<div class="sourceCode" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb20-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> git push</span>
<span id="cb20-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Changes</span> to push to origin:</span>
<span id="cb20-3">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Add</span> bookmark trunk to bfce9c9ab2aa</span>
<span id="cb20-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Error:</span> failed to connect to forgejo.nshephard.dev: Invalid argument<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">class</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>Os <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">2</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>I use a non-standard port for SSH on my server (i.e.&nbsp;not <code>22</code> ). The “trick” here was to use the <code>scp</code> like syntax to specifying the <code>url</code> under the <code>remote</code> in the <code>git</code> configuration which resides in <code>.jj/repo/store/git/config</code></p>
<div class="sourceCode" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb21-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"origin"</span>]</span>
<span id="cb21-2">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">url</span> = ssh://git@forgejo.nshephard.dev:2222/~/nshephard/crow.git</span></code></pre></div>
<p>Success, I can reach the remote, but it fails to authenticate.</p>
<div class="sourceCode" id="cb22" style="background: #f1f3f5;"><pre class="sourceCode conf code-with-copy"><code class="sourceCode toml"><span id="cb22-1"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">jj</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">git</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">push</span></span>
<span id="cb22-2"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">Changes</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">to</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">push</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">to</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">origin</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">:</span></span>
<span id="cb22-3">  <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">Add</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">bookmark</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">trunk</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">to</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">bfce9c9ab2aa</span></span>
<span id="cb22-4"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">Error</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">:</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">failed</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">to</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">authenticate</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">SSH</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">session</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">:</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">Unable</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">to</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">extract</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">public</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">key</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">from</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">private</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">key</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">file</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">:</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">Wrong</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">passphrase</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">or</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">invalid</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">/</span><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">unrecognized</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">private</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">key</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">file</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">format</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">;</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">class</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">Ssh</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">23</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">)</span></span>
<span id="cb22-5"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">Hint</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">:</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">Jujutsu</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">uses</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">libssh2</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">,</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">which</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">doesn't respect ~/.ssh/config. Does `ssh -F /dev/null` to the host work?</span></span></code></pre></div>
<p>Checking my <code>~/.ssh/config</code> and my <a href="https://forgejo.org/" target="_blank">Forgejo</a> configuration and I realised that I have it configured to run as user <code>forgejo</code>.</p>
<div class="sourceCode" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode conf code-with-copy"><code class="sourceCode toml"><span id="cb23-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[remote</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">"</span><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">origin"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">]</span></span>
<span id="cb23-2">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">url</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">ssh</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">://</span><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">forgejo</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">@</span><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">forgejo.nshephard.dev</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">:</span><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">2222</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">/</span><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">nshephard</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">/</span><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">crow.git</span></span></code></pre></div>
</section>
<section id="bookmarks-aka-branches" class="level2">
<h2 class="anchored" data-anchor-id="bookmarks-aka-branches">Bookmarks (aka branches)</h2>
<p>These are mainly for compatibility with Git, <code>jj</code> actually prefers to use anonymous rather than named branches (sometimes called a “branchless” workflow). You create a bookmark at a given point and it stays there until you move it. This is kind of weird compared to Git where commits are stacked on top of each other to make branches and you are always checked out on the <code>HEAD</code> commit at the top or otherwise in a “detached” status.</p>
<p>Create a bookmark with…</p>
<div class="sourceCode" id="cb24" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb24-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> bookmark create <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span></span></code></pre></div>
<p>If you want to move a bookmark after its creation you can do so…</p>
<div class="sourceCode" id="cb25" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb25-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> bookmark move <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>bookmark_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> --to <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>revision<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span></span></code></pre></div>
<p>Note that the default <code>--to</code> is <code>@</code> so <code>jj bookrmark move &lt;bookmark_name&gt;</code> will move it to your current location, whether that is the tip or not.</p>
</section>
<section id="merging-branches" class="level2">
<h2 class="anchored" data-anchor-id="merging-branches">Merging Branches</h2>
<p>I found when it came to pushing to my <a href="https://forgejo.org/" target="_blank">Forgejo</a> instance where I had created the repository I had to first <code>jj git pull</code> to get the initial commit there and then setup remote tracking.</p>
<div class="sourceCode" id="cb26" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb26-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> git push</span>
<span id="cb26-2">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Warning:</span> Non-tracking remote bookmark trunk@origin exists</span>
<span id="cb26-3">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Hint:</span> Run <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">`</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> bookmark track trunk@origin<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">`</span> to import the remote bookmark.</span>
<span id="cb26-4">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Nothing</span> changed.</span>
<span id="cb26-5"></span>
<span id="cb26-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> git fetch</span>
<span id="cb26-7">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">bookmark:</span> trunk@origin <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">new</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span> untracked</span>
<span id="cb26-8"></span>
<span id="cb26-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> bookmark track trunk@origin</span>
<span id="cb26-10"></span>
<span id="cb26-11">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> log</span>
<span id="cb26-12">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span>  myqxkksp nshephard@noreply.forgejo.nshephard.dev 2024-12-21 15:47:13 trunk@origin 12c4747e</span>
<span id="cb26-13">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>  Initial commit</span>
<span id="cb26-14">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> @  tossulss nshephard@protonmail.com 2024-12-23 07:28:16 trunk bfce9c9a</span>
<span id="cb26-15">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Add pcscd to services for GnuPG pinentry</span>
<span id="cb26-16">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ○  olrmoynt nshephard@protonmail.com 2024-12-22 23:03:58 dcd199d9</span>
<span id="cb26-17">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Adding tree to systemPackages</span>
<span id="cb26-18">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ○  wpttsonz nshephard@protonmail.com 2024-12-22 22:39:32 ca5be2ed</span>
<span id="cb26-19">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  ZSH home.nix configuration</span>
<span id="cb26-20">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ○  twrvtqty nshephard@protonmail.com 2024-12-22 12:27:39 bb4c6bca</span>
<span id="cb26-21">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  system: emacs daemon for user</span>
<span id="cb26-22">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ○  xuzumvqs nshephard@protonmail.com 2024-12-21 22:56:16 ee5dd297</span>
<span id="cb26-23">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Add btop and htop to system.Packages</span>
<span id="cb26-24">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ○  zrxyptxn nshephard@protonmail.com 2024-12-21 22:47:29 75fbf987</span>
<span id="cb26-25">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Minor tweaks to mark ends of blocks in xfce.nix</span>
<span id="cb26-26">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ○  zkowzsvy nshephard@protonmail.com 2024-12-21 20:41:10 c20e2a66</span>
<span id="cb26-27">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Adding difftastic</span>
<span id="cb26-28">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ○  mkrknnyv nshephard@protonmail.com 2024-12-21 16:31:47 18b4e7b1</span>
<span id="cb26-29">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Tidying up nix and network sections</span>
<span id="cb26-30">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ○  nxzzlvzo nshephard@protonmail.com 2024-12-21 15:48:47 d2d192ec</span>
<span id="cb26-31">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├─╯</span>  Initial commit with jj :<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">)</span></span>
<span id="cb26-32">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span>  zzzzzzzz root<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">00000000</span></span>
<span id="cb26-33">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#+end_</span></span></code></pre></div>
<p>At this point the two “branches” (<code>trunk@origin</code> and the local <code>trunk</code>) have diverged and are in conflict, preventing me from pushing</p>
<p>jj git push Warning: Bookmark trunk is conflicted Hint: Run <code>jj bookmark list</code> to inspect, and use <code>jj bookmark set</code> to fix it up. Nothing changed.</p>
<p>There is an old command in Jujutsu to <code>jj merge</code> but, as the help informs you, it has been deprecated in favour of <code>jj new</code>. This isn’t too dissimilar to Git though since “merges” are just commits that bring two branches together. The syntax for this is <code>jj new [OPTIONS] [REVISIONS]</code>, by default the <code>REVISIONS</code> is simply <code>@</code> the current “<code>HEAD</code>”, but specifying more than one will merge the two together. You can of course include <code>-m "Message about merging"</code>. Taking the above output from <code>jj log</code> I can make a merge with the following (the minimal hashes are highlighted in the terminal but not above and here the <code>to my</code> refers to merging to the latest commit).</p>
<div class="sourceCode" id="cb27" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb27-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> new <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"merge: local work with remote init"</span> to my</span>
<span id="cb27-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy now at: oupkqwzo da0ebd37 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">conflict</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">empty</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">merge:</span> local work with remote init</span>
<span id="cb27-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit      : tossulss bfce9c9a trunk<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">??</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Add</span> pcscd to services for GnuPG pinentry</span>
<span id="cb27-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit      : myqxkksp 12c4747e trunk<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">??</span> trunk@origin <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Initial</span> commit</span>
<span id="cb27-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Added</span> 2 files, modified 1 files, removed 0 files</span>
<span id="cb27-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">There</span> are unresolved conflicts at these paths:</span>
<span id="cb27-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">.gitignore</span>    2-sided conflict</span></code></pre></div>
<section id="conflicts" class="level3">
<h3 class="anchored" data-anchor-id="conflicts">Conflicts</h3>
<p>The manual covers <a href="https://jj-vcs.github.io/jj/latest/conflicts/" target="_blank">conflict</a> resolution and its worth reading that. That I encountered merge conflicts isn’t entirely unexpected I had created <code>.gitignore</code> both locally and on the remote so bringing them together the is natural. Lets look at this…</p>
<div class="sourceCode" id="cb28" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb28-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">cat</span> .gitignore</span>
<span id="cb28-2"></span>
<span id="cb28-3"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;&lt;&lt;&lt;&lt;&lt;&lt;</span> Conflict <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">1</span> of 1</span>
<span id="cb28-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">%%%%%%%</span> Changes from base to side <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#1</span></span>
<span id="cb28-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">+##</span> Emacs temporary files</span>
<span id="cb28-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">+*~</span></span>
<span id="cb28-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">+\#*</span></span>
<span id="cb28-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">+++++++</span> Contents of side <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#2</span></span>
<span id="cb28-9"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># ---&gt; Nix</span></span>
<span id="cb28-10"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Ignore build outputs from performing a nix-build or `nix build` command</span></span>
<span id="cb28-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">result</span></span>
<span id="cb28-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">result-*</span></span>
<span id="cb28-13"></span>
<span id="cb28-14"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;&gt;&gt;&gt;&gt;&gt;&gt;</span> Conflict <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">1</span> of 1 ends</span></code></pre></div>
<p>This is fairly similar to Git merge conflicts, but I like the <code>side 1~/~side 2</code> notation (you get the same in Git by default but its occluded and you have to read up to understand that first bit delimited by ‘&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;’ is from the current branch and the other bit is from the branch that is being merged).</p>
<p>I know I want both of these included in <code>.gitignore</code> so I make the changes, removing all the conflict markup and save the file. This tidies up the current commit, there is no need to make another commit to take a snapshot of those changes as there is in Git. However the bookmarks are still in conflict so we need to set that to the correct commit.</p>
<div class="sourceCode" id="cb29" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb29-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> st</span>
<span id="cb29-2"></span>
<span id="cb29-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy changes:</span>
<span id="cb29-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">M</span> .gitignore</span>
<span id="cb29-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy : oupkqwzo f10df751 merge: local work with remote init</span>
<span id="cb29-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit: tossulss bfce9c9a trunk<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">??</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Add</span> pcscd to services for GnuPG pinentry</span>
<span id="cb29-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit: myqxkksp 12c4747e trunk<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">??</span> trunk@origin <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Initial</span> commit</span>
<span id="cb29-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">These</span> bookmarks have conflicts:</span>
<span id="cb29-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">trunk</span></span>
<span id="cb29-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Use</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">`</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> bookmark list<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">`</span> to see details. Use <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">`</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> bookmark set <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> -r <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>rev<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">`</span> to resolve.</span>
<span id="cb29-11"></span>
<span id="cb29-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> bookmark set trunk <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-r</span> ou</span>
<span id="cb29-13"></span>
<span id="cb29-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> st</span>
<span id="cb29-15"></span>
<span id="cb29-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy changes:</span>
<span id="cb29-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">M</span> .gitignore</span>
<span id="cb29-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy : oupkqwzo f10df751 trunk<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">merge:</span> local work with remo</span>
<span id="cb29-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit: tossulss bfce9c9a Add pcscd to services for GnuPG pine</span>
<span id="cb29-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit: myqxkksp 12c4747e trunk@origin <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Initial</span> commit</span>
<span id="cb29-21"></span>
<span id="cb29-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> log</span>
<span id="cb29-23"></span>
<span id="cb29-24">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">@</span>    oupkqwzo nshephard@protonmail.com 2024-12-23 11:51:49 trunk<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span> f10df751</span>
<span id="cb29-25">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├─╮</span>  merge: local work with remote init</span>
<span id="cb29-26">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ◆  myqxkksp nshephard@noreply.forgejo.nshephard.dev 2024-12-21 15:47:13 trunk@origin 12c4747e</span>
<span id="cb29-27">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Initial commit</span>
<span id="cb29-28">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span> │  tossulss nshephard@protonmail.com 2024-12-23 07:28:16 bfce9c9a</span>
<span id="cb29-29">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Add pcscd to services for GnuPG pinentry</span>
<span id="cb29-30">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span> │  olrmoynt nshephard@protonmail.com 2024-12-22 23:03:58 dcd199d9</span>
<span id="cb29-31">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Adding tree to systemPackages</span>
<span id="cb29-32">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span> │  wpttsonz nshephard@protonmail.com 2024-12-22 22:39:32 ca5be2ed</span>
<span id="cb29-33">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  ZSH home.nix configuration</span>
<span id="cb29-34">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span> │  twrvtqty nshephard@protonmail.com 2024-12-22 12:27:39 bb4c6bca</span>
<span id="cb29-35">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  system: emacs daemon for user</span>
<span id="cb29-36">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span> │  xuzumvqs nshephard@protonmail.com 2024-12-21 22:56:16 ee5dd297</span>
<span id="cb29-37">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Add btop and htop to system.Packages</span>
<span id="cb29-38">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span> │  zrxyptxn nshephard@protonmail.com 2024-12-21 22:47:29 75fbf987</span>
<span id="cb29-39">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Minor tweaks to mark ends of blocks in xfce.nix</span>
<span id="cb29-40">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span> │  zkowzsvy nshephard@protonmail.com 2024-12-21 20:41:10 c20e2a66</span>
<span id="cb29-41">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Adding difftastic</span>
<span id="cb29-42">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span> │  mkrknnyv nshephard@protonmail.com 2024-12-21 16:31:47 18b4e7b1</span>
<span id="cb29-43">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Tidying up nix and network sections</span>
<span id="cb29-44">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">○</span> │  nxzzlvzo nshephard@protonmail.com 2024-12-21 15:48:47 d2d192ec</span>
<span id="cb29-45">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├─╯</span>  Initial commit with jj :<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">)</span></span>
<span id="cb29-46">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span>  zzzzzzzz root<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">00000000</span></span></code></pre></div>
<p>We’ve merged out branches but <code>trunk@origin</code> is behind that merge we can bring that up-to-date by pushing</p>
<div class="sourceCode" id="cb30" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb30-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> git push</span>
<span id="cb30-2"></span>
<span id="cb30-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Changes</span> to push to origin:</span>
<span id="cb30-4">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Move</span> forward bookmark trunk from 12c4747edb21 to f10df751ab04</span>
<span id="cb30-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Warning:</span> The working-copy commit in workspace <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'default'</span> became immutable, so a new commit has been created on top of it.</span>
<span id="cb30-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Working</span> copy now at: tuwxwnqw 4e3890c1 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">empty</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb30-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Parent</span> commit      : oupkqwzo f10df751 trunk <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">merge:</span> local work with remote init</span>
<span id="cb30-8"></span>
<span id="cb30-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> log</span>
<span id="cb30-10"></span>
<span id="cb30-11">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">@</span>  tuwxwnqw nshephard@protonmail.com 2024-12-23 11:58:36 4e3890c1</span>
<span id="cb30-12">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>  <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">empty</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb30-13">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span>  oupkqwzo nshephard@protonmail.com 2024-12-23 11:51:49 trunk f10df751</span>
<span id="cb30-14">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>  merge: local work with remote init</span>
<span id="cb30-15">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">~</span></span></code></pre></div>
<p>Not sure where the rest of the commit history is but it is showing up on the ForgeJo repository <a href="https://forgejo.nshephard.dev/nshephard/crow/commits/branch/trunk" target="_blank">commit history</a>. I’ll return to that later.</p>
</section>
</section>
<section id="revisions-and-revsets" class="level2">
<h2 class="anchored" data-anchor-id="revisions-and-revsets">Revisions and Revsets</h2>
<p>A revision set or “revset” is a range of commits and <code>jj</code> has its own language for describing refsets.</p>
<section id="symbols" class="level3">
<h3 class="anchored" data-anchor-id="symbols">Symbols</h3>
<p>We’ve already encountered <code>@</code> which points to our current working copy that we have checked out (sometimes “<code>HEAD</code>” but could be elsewhere in history).</p>
</section>
<section id="operators" class="level3">
<h3 class="anchored" data-anchor-id="operators">Operators</h3>
<p>The tutorial notes the following common operators.</p>
<ul>
<li><code>x &amp; y</code>: changes that are in both <code>x</code> and <code>y</code>.</li>
<li><code>x | y</code>: changes that are in either <code>x</code> or <code>y</code>.</li>
<li><code>::x</code> Ancestors of <code>x</code>.</li>
<li><code>x::</code> Descendants of <code>x</code>.</li>
</ul>
<p>We found that we couldn’t review the history of the current checked out commit (<code>@</code>) any more but lets see if we can use this new knowledge to find view the log history. We want to look at all ancestors so we can use <code>::t</code> to view the ancestors of the most recent, empty, commit.</p>
<p>****NB**** It might be worth adding a description with <code>jj describe</code> before undertaking work, remember that the changes in the working directory are always part of the current commit.</p>
<div class="sourceCode" id="cb31" style="background: #f1f3f5;"><pre class="sourceCode sh code-with-copy"><code class="sourceCode bash"><span id="cb31-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">jj</span> log <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-r</span> ::t</span>
<span id="cb31-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">@</span>  tuwxwnqw nshephard@protonmail.com 2024-12-23 11:58:36 4e3890c1</span>
<span id="cb31-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>  <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">empty</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> description set<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb31-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span>    oupkqwzo nshephard@protonmail.com 2024-12-23 11:51:49 trunk f10df751</span>
<span id="cb31-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├─╮</span>  merge: local work with remote init</span>
<span id="cb31-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> ◆  myqxkksp nshephard@noreply.forgejo.nshephard.dev 2024-12-21 15:47:13 12c4747e</span>
<span id="cb31-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Initial commit</span>
<span id="cb31-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span> │  tossulss nshephard@protonmail.com 2024-12-23 07:28:16 bfce9c9a</span>
<span id="cb31-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Add pcscd to services for GnuPG pinentry</span>
<span id="cb31-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span> │  olrmoynt nshephard@protonmail.com 2024-12-22 23:03:58 dcd199d9</span>
<span id="cb31-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Adding tree to systemPackages</span>
<span id="cb31-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span> │  wpttsonz nshephard@protonmail.com 2024-12-22 22:39:32 ca5be2ed</span>
<span id="cb31-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  ZSH home.nix configuration</span>
<span id="cb31-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span> │  twrvtqty nshephard@protonmail.com 2024-12-22 12:27:39 bb4c6bca</span>
<span id="cb31-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  system: emacs daemon for user</span>
<span id="cb31-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span> │  xuzumvqs nshephard@protonmail.com 2024-12-21 22:56:16 ee5dd297</span>
<span id="cb31-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Add btop and htop to system.Packages</span>
<span id="cb31-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span> │  zrxyptxn nshephard@protonmail.com 2024-12-21 22:47:29 75fbf987</span>
<span id="cb31-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Minor tweaks to mark ends of blocks in xfce.nix</span>
<span id="cb31-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span> │  zkowzsvy nshephard@protonmail.com 2024-12-21 20:41:10 c20e2a66</span>
<span id="cb31-21"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Adding difftastic</span>
<span id="cb31-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span> │  mkrknnyv nshephard@protonmail.com 2024-12-21 16:31:47 18b4e7b1</span>
<span id="cb31-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span> │  Tidying up nix and network sections</span>
<span id="cb31-24"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span> │  nxzzlvzo nshephard@protonmail.com 2024-12-21 15:48:47 d2d192ec</span>
<span id="cb31-25"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├─╯</span>  Initial commit with jj :<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">)</span></span>
<span id="cb31-26"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">◆</span>  zzzzzzzz root<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">00000000</span></span></code></pre></div>
</section>
<section id="functions" class="level3">
<h3 class="anchored" data-anchor-id="functions">Functions</h3>
<p>The revset language also includes a number of functions that help filter log messages such as <code>author()</code>, <code>description()</code>, <code>ancestors(x, depth)</code> (an extended version of <code>::x</code>) and <code>parents()</code>.</p>
<p>I’m not going to dig too deep into these at the moment as I have limited use for them right now but see the <a href="https://steveklabnik.github.io/jujutsu-tutorial/branching-merging-and-conflicts/revsets.html" target="_blank">Figuring out where our changes are with revsets - Steve’s Jujutsu Tutorial</a> and the <a href="https://jj-vcs.github.io/jj/latest/revsets/" target="_blank">Revset language</a> of the official documentation.</p>
</section>
</section>
<section id="configuration" class="level2">
<h2 class="anchored" data-anchor-id="configuration">Configuration</h2>
<p>You can edit the <a href="https://jj-vcs.github.io/jj/latest/config/" target="_blank">configuration</a> either at the <code>--user</code> or <code>--repo</code> level with <code>jj config edit --[user|repo]</code> (to find the path of the users configuration file use <code>jj config path --user</code>, repository configuration is in <code>.jj/repo/config.toml</code>). These are <a href="id:80ebb47c-7c3e-4aa4-93c4-bb15f0ee7a01" target="_blank">TOML</a> files.</p>
<p>I enabled color using the brilliant <a href="https://difftastic.wilfred.me.uk/" target="_blank">difftastic</a></p>
<div class="sourceCode" id="cb32" style="background: #f1f3f5;"><pre class="sourceCode conf code-with-copy"><code class="sourceCode toml"><span id="cb32-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[user]</span></span>
<span id="cb32-2">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">name</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Neil Shephard"</span></span>
<span id="cb32-3">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">email</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"nshephard@protonmail.com"</span></span>
<span id="cb32-4"></span>
<span id="cb32-5"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[ui]</span></span>
<span id="cb32-6">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">editor</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"/run/current-system/sw/bin/nano"</span></span>
<span id="cb32-7">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">pager</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"/run/current-system/sw/bin/most"</span></span>
<span id="cb32-8">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">color</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"always"</span></span>
<span id="cb32-9">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">## Use Difftastic by default</span></span>
<span id="cb32-10">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">diff.tool</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"difft"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--color=always"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"$left"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"$right"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
<p>…there are a lot more configuration options available (see <a href="https://jj-vcs.github.io/jj/latest/config/" target="_blank">configuration</a> documentation for full details).</p>
</section>
<section id="workflow" class="level2">
<h2 class="anchored" data-anchor-id="workflow">Workflow</h2>
<p>Two popular workflows are described in the <a href="https://steveklabnik.github.io/jujutsu-tutorial/real-world-workflows/" target="_blank">tutorial</a>, the <a href="https://steveklabnik.github.io/jujutsu-tutorial/real-world-workflows/the-squash-workflow.html" target="_blank">Squash Workflow</a> and the <a href="https://steveklabnik.github.io/jujutsu-tutorial/real-world-workflows/the-edit-workflow.html" target="_blank">Edit Workflow</a>.</p>
<section id="squash-workflow" class="level3">
<h3 class="anchored" data-anchor-id="squash-workflow">Squash Workflow</h3>
<p>This is kind of link <code>git commit --amend</code> where changes are added to the existing <code>HEAD</code> commit of the branch. The <code>jj</code> workflow has at it’s head (denoted by <code>@</code> in the <code>jj log</code> output) the “unstaged” changes and <code>jj squash</code> adds them to the previous commit, which is typically created <em>before</em> making any changes with a description of the intended work (you could do this with <code>git commit -a --allow-empty -m "bug: I'm going to squash a bug!"</code> ) and then repeatedly <code>git commit --amend</code> as we complete the work. With <code>jj</code> squash workflow though it encourages making smaller more atomic commits and reduces the amount of “/fixing an error/typo” commits by those averse to using <code>--amend</code>. By default all files are included but you can specify just those files you want to include by listing them.</p>
<p>Jujutsu also allows interactive selection of lines to edit via the <code>-i</code> flag. A terminal interface opens and it is possible to select which lines to include prior to making the commit. After having selected all the changes simply hit `c` to confirm them.</p>
<p>If you decide you don’t want to keep the work you can <code>jj abandon</code> the work in progress and it reverts all changes. In fact <code>jj squash</code> offers much of the functionality of <code>git rebase -i</code>.</p>
</section>
<section id="edit-workflow" class="level3">
<h3 class="anchored" data-anchor-id="edit-workflow">Edit Workflow</h3>
<p>Continuing from the previous example we make some more changes, but rather than using <code>new</code>, because there is already an empty change there as we squashed the existing changes into the previous commit leaving <code>@</code> empty, we use <code>jj describe -m "message"</code> to add a message to the empty commit that we are <em>not</em> going to squash. Now make the changes and when ready to start a new piece of work you can use <code>jj new -m ""</code>.</p>
<section id="editing-older-commits" class="level4">
<h4 class="anchored" data-anchor-id="editing-older-commits">Editing older commits</h4>
<p>In Git this can be done either by adding a <code>git commit --fixup</code> or using <code>git rebase -i</code> tp interactively squash commits. In <code>jj</code> though we can use <code>jj new -B @ -m "a new message"</code> and what this does is add a new commit before the <code>~@</code> commit (other references can be used if you want to modify a commit further back in the commit history). You get for free a rebase of descendant commits, of course conflicts can arise but this command <em>will</em> always complete without resolving the conflicts (yet!).</p>
<p>The “<code>HEAD</code>” of the “branch” has been moved to this commit and changes can be made and saved (they’re already included as there is no staging in Jujutsu). When done you can return to the “<code>HEAD</code>” using <code>jj edit &lt;minimal_hash&gt;</code> or the convenience shortcut <code>jj next --edit</code> which moves <code>@</code> to the “child” commit and allows editing.</p>
<p>You can edit earlier commits with <code>jj edit @-</code> for the previous commit or <code>jj edit &lt;commit&gt;</code></p>
</section>
</section>
</section>
<section id="ideinterfaces" class="level2">
<h2 class="anchored" data-anchor-id="ideinterfaces">IDE/Interfaces</h2>
<p>Being an Emacs user I naturally wanted to use Jujutsu via Emacs and was hoping for a <a href="https://magit.vc/" target="_blank">Magit</a> equivalent. Being considerably newer there isn’t anything quite as powerful as Magit just yet but there is work in progress in the form of <a href="https://git.sr.ht/~puercopop/jujutsushi" target="_blank">jujutsushi - A emacs interface to jujutsu</a> and <a href="https://github.com/bennyandresen/jujutsu.el" target="_blank">jujutsu.el: An Emacs interface for jujutsu</a> (although the former’s author has stated they have deprioritized development in light of the later, see <a href="https://www.reddit.com/r/emacs/comments/1hbmpub/comment/m1inz3i/" target="_blank">here</a>).</p>
<p>The <a href="https://github.com/jj-vcs/jj/wiki/" target="_blank">wiki</a> is a useful resource on IDE integration</p>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>After a few weeks or so tinkering with Jujutsu/<sub>jj</sub> I’ve found there are a number of features that differ from my Git experience to date. Having a mental model of Version Control is important for these to make sense. Obviously I need to spend longer working with the system to have a deeper understanding and appreciation of how it works and a better comparison to Git, but first impressions are good, although switching full scale would mean abandoning the amazing <a href="https://magit.vc/" target="_blank">Magit</a> which is one of the best <a href="https://www.gnu.org/software/emacs/" target="_blank">Emacs</a> packages going, but there are some Emacs packages for working with Jujutsu in the pipeline.</p>
<ul>
<li>All changes are “staged”.</li>
<li>Branch names are redundant but are available (as “bookmarks”) for compatibility with Git and these need updating to the most recent commit.</li>
<li>Moving around commits seems more intuitive and there is no warning about the dangers of being in a “detached HEAD” state.</li>
<li>As a consequence it’s easy to update changes that should have been in older commits.</li>
<li>When this happens rebasing descendent commits is free, even if conflicts arise, they are still committed. They will need resolving eventually but you can do this once on the commit you wish to rather than repeatedly and having to rely on <a href="https://git-scm.com/book/en/v2/Git-Tools-Rerere" target="_blank"><code>git rerere</code></a></li>
</ul>
<p>I’d highly recommend reading some other people’s blogs on Jujutsu for a more technical understanding and broader view. In particular I liked the post <a href="https://kubamartin.com/posts/introduction-to-the-jujutsu-vcs/" target="_blank">Jujutsu VCS Introduction and Patterns | Kuba Martin</a>.</p>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<ul>
<li><a href="https://martinvonz.github.io/jj/latest/" target="_blank">Jujutsu Documentation</a></li>
<li><a href="https://github.com/martinvonz/jj#command-line-completion" target="_blank">martinvonz/jj: A Git-compatible VCS that is both simple and powerful</a></li>
</ul>
<section id="tutorials" class="level3">
<h3 class="anchored" data-anchor-id="tutorials">Tutorials</h3>
<ul>
<li><a href="https://steveklabnik.github.io/jujutsu-tutorial/introduction/introduction.html" target="_blank">Steve’s Jujutsu Tutorial</a></li>
</ul>
</section>
<section id="emacs-packages" class="level3">
<h3 class="anchored" data-anchor-id="emacs-packages">Emacs Packages</h3>
<ul>
<li><a href="https://git.sr.ht/~puercopop/jujutsushi" target="_blank">jujutsushi - A emacs interface to jujutsu</a></li>
<li><a href="https://github.com/bennyandresen/jujutsu.el" target="_blank">jujutsu.el: An Emacs interface for jujutsu, inspired by magit and humbly not attempting to match it in scope.</a></li>
<li><a href="https://codeberg.org/vifon/vc-jj.el" target="_blank">vc-jj.el</a></li>
</ul>
</section>
<section id="blogs" class="level3">
<h3 class="anchored" data-anchor-id="blogs">Blogs</h3>
<ul>
<li><a href="https://v5.chriskrycho.com/essays/jj-init/" target="_blank">jj init — Sympolymathesy, by Chris Krycho</a></li>
<li><a href="https://reasonablypolymorphic.com/blog/jj-strategy/index.html" target="_blank">Jujutsu Strategies :: Reasonably Polymorphic</a></li>
<li><a href="https://ofcr.se/jujutsu-merge-workflow" target="_blank">A Better Merge Workflow with Jujutsu | ofcrse by Benjamin Tan</a></li>
<li><a href="https://tonyfinn.com/blog/jj/" target="_blank">Jujutsu (jj), a git compatible VCS - Tony Finn</a></li>
<li><a href="https://www.felesatra.moe/blog/2024/12/23/jj-is-great-for-the-wrong-reason" target="_blank">Jujutsu is great for the wrong reason</a></li>
<li><a href="https://kubamartin.com/posts/introduction-to-the-jujutsu-vcs/" target="_blank">Jujutsu VCS Introduction and Patterns | Kuba Martin</a></li>
</ul>



</section>
</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2025,
  author = {Shephard, Neil},
  title = {Version {Control} with {Jujutsu}},
  date = {2025-02-08},
  url = {https://blog.nshephard.dev/posts/jujutsu/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2025" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2025. <span>“Version Control with Jujutsu.”</span>
February 8, 2025. <a href="https://blog.nshephard.dev/posts/jujutsu/">https://blog.nshephard.dev/posts/jujutsu/</a>.
</div></div></section></div> ]]></description>
  <category>jujutsu</category>
  <category>git</category>
  <category>version control</category>
  <guid>https://blog.nshephard.dev/posts/jujutsu/</guid>
  <pubDate>Sat, 08 Feb 2025 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/54119567525_4e969d081a_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Quarto Custom domain on GitHub Pages</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/quarto-cname/</link>
  <description><![CDATA[ 





<p>This blog is published using the excellent <a href="https://quarto.org/" target="_blank">Quarto</a> framework to <a href="https://pages.github.com/" target="_blank">GitHub Pages</a> which offers free website hosting. However, astute readers familiar with this sort of setup will have noticed that the domain is no the usual <code>[github-user].github.io</code> and instead it resolves to <code>blog.nshephard.dev</code>. This post explains how to achieve that as it took me a little bit of work to sort out properly.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/54121847365_b57db38358_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/54121847365/" target="_blank">The Bernia Ridge by Me</a></figcaption>
</figure>
</div>
<section id="why" class="level2">
<h2 class="anchored" data-anchor-id="why">Why?</h2>
<p>I found that despite setting a custom domain in the GitHub pages Settings (<em>Settings &gt; Pages &gt; Custom domain</em>) each time I published the site (e.g.&nbsp;on a new blog post) the <code>CNAME</code> file disappeared from the <code>gh-pages</code> branch and the domain didn’t resolve. I searched but couldn’t find a solution to this so raised an <a href="https://github.com/quarto-dev/quarto-actions/issues/118" target="_blank">issue</a> to include it in the <code>quarto-actions</code>.</p>
<p>In the meantime I added a custom step to the <code>publish.yaml</code> to add the <code>CNAME</code> file to the <code>gh-pages</code> branch after <code>Render and Publish</code> which worked, but I was subsequently pointed to a cleaner existing way of achieving the same result.</p>
</section>
<section id="what-isnt-covered" class="level2">
<h2 class="anchored" data-anchor-id="what-isnt-covered">What isn’t covered</h2>
<p>This post doesn’t cover…</p>
<ul>
<li>How to setup a blog/website using Quarto.</li>
<li>How to write Quarto Markdown.</li>
<li>How to publish a blog or website using Quarto, they have <a href="https://github.com/quarto-dev/quarto-actions" target="_blank">excellent documentation</a></li>
<li>Setting a <code>CNAME</code> with your DNS registrar.</li>
</ul>
<p>On this last point, how you set your <code>CNAME</code> to redirect your custom domain to that of the GitHub Pages is dependent on the domain registrar service you use. I use <a href="https://www.ovhcloud.com/en-gb/" target="_blank">OVH</a>.</p>
</section>
<section id="what-is-covered" class="level2">
<h2 class="anchored" data-anchor-id="what-is-covered">What is covered</h2>
<ul>
<li>How to add a <code>CNAME</code> file to the <code>gh-pages</code> branch that is produced by the <a href="https://github.com/quarto-dev/quarto-actions" target="_blank"><code>quarto-dev/quarto-actions/publish</code> GitHub Action</a> so that the pages resolve to a custom domain.</li>
</ul>
</section>
<section id="the-problem" class="level2">
<h2 class="anchored" data-anchor-id="the-problem">The Problem</h2>
<p>If you use plain <a href="https://pages.github.com/" target="_blank">GitHub Pages</a> then you can set a custom <code>CNAME</code> by going to <em>Settings &gt; Pages &gt; Custom Domain</em> and entering the address there. However, as <a href="https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain" target="_blank">documented</a> (see item 4) this doesn’t work if you use a custom GitHub Action to publish your website, which is the case when you use the <a href="https://github.com/quarto-dev/quarto-actions" target="_blank"><code>quarto-dev/quarto-actions/publish</code> GitHub Action</a> to publish using Quarto.</p>
<p>Why? Because each time the action runs it regenerates the content of the <code>gh-pages</code> branch on the runner and pushes it to your repository and <em>doesn’t</em> include a custom <code>CNAME</code> file.</p>
</section>
<section id="solution-1" class="level2">
<h2 class="anchored" data-anchor-id="solution-1">Solution 1</h2>
<p>The solution I initially hit upon was to add an extra step to my <code>.github/workflows/publish.yaml</code> that…</p>
<ol type="1">
<li>Checks out the <code>gh-pages</code> branch.</li>
<li>Creates the <code>CNAME</code> file with the domain I use.</li>
<li>Adds this to the <code>gh-pages</code> branch.</li>
<li>Pushes back up-stream.</li>
</ol>
<p>You should already have added a <a href="https://github.com/quarto-dev/quarto-actions" target="_blank">publish action</a> to your repository which runs the <a href="https://github.com/quarto-dev/quarto-actions" target="_blank"><code>quarto-dev/quarto-actions/publish</code> GitHub Action</a>. This runs <code>quarto publish $TARGET</code> where <code>$TARGET</code> is set by the chosen output configured in the <code>target</code> argument. In this example <code>gh-pages</code></p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb1-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">name</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> Render and Publish</span></span>
<span id="cb1-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">uses</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> quarto-dev/quarto-actions/publish@v2</span></span>
<span id="cb1-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">with</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">          </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">target</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> gh-pages</span></span>
<span id="cb1-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">env</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-6"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">          </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">GITHUB_TOKEN</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> ${{ secrets.GITHUB_TOKEN }}</span></span></code></pre></div>
<p>After this you should add the following, substituting <code>blog.nshephard.dev</code> for your own domain.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb2-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">name</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> Add CNAME file to gh-pages branch</span></span>
<span id="cb2-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">        run</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">: </span><span class="ch" style="color: #20794D;
background-color: null;
font-style: inherit;">|</span></span>
<span id="cb2-3">          rm renv/activate.R</span>
<span id="cb2-4">          git switch gh-pages</span>
<span id="cb2-5">          git pull</span>
<span id="cb2-6">          echo 'blog.nshephard.dev &gt; CNAME</span>
<span id="cb2-7">          git add CNAME</span>
<span id="cb2-8">          git commit -m "Adding CNAME"</span>
<span id="cb2-9">          git push</span></code></pre></div>
<p>This…</p>
<ol type="1">
<li>Removes the lingering <code>renv/activate.R</code> which prevents switching branches.</li>
<li>Switches branches to <code>gh-pages</code>.</li>
<li><code>git pull</code> to get the just published version of the branch.</li>
<li>Creates the <code>CNAME</code> file with the domain you specify.</li>
<li>Adds (stages) the <code>CNAME</code> file to the <code>gh-pages</code> branch.</li>
<li>Commits the change.</li>
<li>Pushes the commit to <code>origin</code> (i.e.&nbsp;the <code>gh-pages</code> branch on GitHub)</li>
</ol>
<p>This worked as the <code>CNAME</code> file is added each time the workflow runs but, unsurprisingly, there is a simpler solution.</p>
</section>
<section id="solution-2---the-correct-way-of-doing-this" class="level2">
<h2 class="anchored" data-anchor-id="solution-2---the-correct-way-of-doing-this">Solution 2 - The correct way of doing this</h2>
<p>Turns out the <a href="https://github.com/quarto-dev/quarto-actions/issues/118#issuecomment-2445375569" target="_blank">answer</a> provided by <code>@cscheid</code> is, unsurprisingly, much simpler.</p>
<p>You need to add <code>CNAME</code> in the <code>_quarto.yaml</code> so that it is included in the project.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">project</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">type</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> website</span></span>
<span id="cb3-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">resources</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    ...</span></span>
<span id="cb3-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"CNAME"</span></span></code></pre></div>
<p>You <em>also</em> have to create and add the <code>CNAME</code> file with your domain to the repository.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'blog.nshephard.dev` &gt; CNAME</span></span>
<span id="cb4-2"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">git add CNAME _quarto.yaml</span></span>
<span id="cb4-3"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">git commit -m "Adding CNAME to repository"</span></span>
<span id="cb4-4"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">git push</span></span></code></pre></div>
<p>Then, because it’s included in the resources, the file will carry through/persist when the publishing action runs to create the <code>gh-pages</code> branch with each new update and run on GitHub Actions :magic:.</p>
</section>
<section id="related" class="level2">
<h2 class="anchored" data-anchor-id="related">Related</h2>
<p>This feature was introduced in <a href="https://quarto.org/docs/download/changelog/1.2/index.html#publishing" target="_blank">Quarto 1.2</a> and others have encountered <a href="https://stackoverflow.com/questions/79172839/quarto-publish-resets-cname" target="_blank">problems</a> with the file being deleted on first running <code>quarto publish gh-pages</code> (if you’re having problems perhaps worth keeping an eye on that thread).</p>
<p>There is a <a href="https://github.com/quarto-dev/quarto-web/pull/1091/files" target="_blank">draft Pull Request</a> to add it to the documentation its not been merged which is perhaps why I couldn’t find how to do this in the documentation (see also discussion in <a href="https://github.com/quarto-dev/quarto-cli/issues/4941" target="_blank">this issue</a>).</p>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2024,
  author = {Shephard, Neil},
  title = {Quarto {Custom} Domain on {GitHub} {Pages}},
  date = {2024-11-14},
  url = {https://blog.nshephard.dev/posts/quarto-cname/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2024" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2024. <span>“Quarto Custom Domain on GitHub
Pages.”</span> November 14, 2024. <a href="https://blog.nshephard.dev/posts/quarto-cname/">https://blog.nshephard.dev/posts/quarto-cname/</a>.
</div></div></section></div> ]]></description>
  <category>quarto</category>
  <category>github</category>
  <category>website</category>
  <category>domain</category>
  <guid>https://blog.nshephard.dev/posts/quarto-cname/</guid>
  <pubDate>Thu, 14 Nov 2024 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/54121847365_b57db38358_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Pytest Matplotlib</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/pytest-mpl/</link>
  <description><![CDATA[ 





<p><a href="https://docs.pytest.org/en/latest/" target="_blank">Pytest</a> is an excellent framework for writing tests in <a href="https://python.org" target="_blank">Python</a>. Sometimes the code you want to test will generate images using <a href="https://matplotlib.org/" target="_blank">Matplotlib</a> or related libraries based around it such as <a href="https://seaborn.pydata.org" target="_blank">Seaborn</a> or <a href="https://plotnine.org" target="_blank">plotnine</a> and ideally your <a href="https://docs.pytest.org/en/latest/" target="_blank">pytest</a> suite should check that your functions generate the images you expect. There is an excellent <a href="https://docs.pytest.org/en/stable/reference/plugin_list.html" target="_blank">pytest plugin</a> to help with this <a href="https://pytest-mpl.readthedocs.io/en/stable/" target="_blank">pytest-mpl</a> and this post covers how to use it and a <em>very</em> useful feature to help you investigate differences in images when your tests of images fail.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/54027972058_d8dec0acca_3k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qjgtMC" target="_blank">Histograms (not plotted using Matplotlib!) by Me.</a></figcaption>
</figure>
</div>
<section id="installation" class="level2">
<h2 class="anchored" data-anchor-id="installation">Installation</h2>
<p>Setup a new virtual environment, here I use virtualenvwrapper to create a temporary virtual environment (which will be deleted on deactivation) and install the <a href="https://pytest-mpl.readthedocs.io/en/stable/" target="_blank">pytest-mpl</a> package (it pulls in <a href="https://matplotlib.org/" target="_blank">matplotlib</a>, <a href="https://docs.pytest.org/en/latest/" target="_blank">pytest</a> and a bunch of other dependencies).</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">mktmpenv</span></span>
<span id="cb1-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install pytest-mpl</span></code></pre></div>
</section>
<section id="function-and-test" class="level2">
<h2 class="anchored" data-anchor-id="function-and-test">Function and Test</h2>
<p>We need a simple example to write tests for. As with previous posts I’ve made the code available in the <a href="https://github.com/ns-rse/pytest-examples" target="_blank">pytest-examples</a> repository. You can clone this repository to follow along and play around with this worked example.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> clone git@github.com:ns-rse/pytest-examples.git</span>
<span id="cb2-2"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> pytest-examples</span></code></pre></div>
<section id="scatter" class="level3">
<h3 class="anchored" data-anchor-id="scatter"><code>scatter()</code></h3>
<p>This repository contains the module <code>pytestexample/mpl_example.py</code> and the function <code>scatter()</code> to plot a scatter-plot of two random variables along with a few common options.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#| label: python-test</span></span>
<span id="cb3-2"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#| code-fold: true</span></span>
<span id="cb3-3"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#| code-link: true</span></span>
<span id="cb3-4"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#| code-tools: true</span></span>
<span id="cb3-5"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#| eval: false</span></span>
<span id="cb3-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#| echo: true</span></span>
<span id="cb3-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Example code for pytest-mpl exposition."""</span></span>
<span id="cb3-8"></span>
<span id="cb3-9"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> numpy <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> np</span>
<span id="cb3-10"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> numpy.typing <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> npt</span>
<span id="cb3-11"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> matplotlib.pyplot <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> plt</span>
<span id="cb3-12"></span>
<span id="cb3-13"></span>
<span id="cb3-14"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> scatter(</span>
<span id="cb3-15">    n_obs: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>,</span>
<span id="cb3-16">    figsize: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">tuple</span>[<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>],</span>
<span id="cb3-17">    title: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>,</span>
<span id="cb3-18">    seed: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3513387</span>,</span>
<span id="cb3-19">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">tuple</span>:</span>
<span id="cb3-20">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb3-21"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Generate a scatter plot of two random variables.</span></span>
<span id="cb3-22"></span>
<span id="cb3-23"></span>
<span id="cb3-24"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Parameters</span></span>
<span id="cb3-25"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    ----------</span></span>
<span id="cb3-26"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    n_obs : int</span></span>
<span id="cb3-27"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Number of random observations to generate.</span></span>
<span id="cb3-28"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    figsize : tuple[int, int]</span></span>
<span id="cb3-29"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Shape to plot.</span></span>
<span id="cb3-30"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    seed : int</span></span>
<span id="cb3-31"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Seed for pseudo-random number generation.</span></span>
<span id="cb3-32"></span>
<span id="cb3-33"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Returns</span></span>
<span id="cb3-34"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    -------</span></span>
<span id="cb3-35"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    tuple(fig, ax)</span></span>
<span id="cb3-36"></span>
<span id="cb3-37"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb3-38">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Generate two random sets of numbers</span></span>
<span id="cb3-39">    rng <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> np.random.default_rng(seed)</span>
<span id="cb3-40">    x <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> np.random.randn(n_obs)</span>
<span id="cb3-41">    y <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> np.random.randn(n_obs)</span>
<span id="cb3-42">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Create the figure</span></span>
<span id="cb3-43">    fig <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> plt.figure(figsize<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>figsize)</span>
<span id="cb3-44">    ax <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> fig.add_subplot()</span>
<span id="cb3-45">    ax.scatter(x, y)</span>
<span id="cb3-46">    plt.title(title)</span>
<span id="cb3-47"></span>
<span id="cb3-48">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> (fig, ax)</span></code></pre></div>
</section>
<section id="defining-a-test" class="level3">
<h3 class="anchored" data-anchor-id="defining-a-test">Defining a test</h3>
<p>We now need a test to check that, for a given set of inputs, the same output is always returned. Following the naming conventions used by <a href="https://docs.pytest.org/en/latest/" target="_blank">pytest</a> we create this at <code>tests/test_mpl_example.py</code>. Matplotlib provides its own <a href="https://matplotlib.org/devdocs/devel/testing.html#writing-an-image-comparison-test" target="_blank"><code>image_comparison</code></a> decorator from Matplotlib itself which requires at a bare minimum the <code>baseline_image</code>. I’m going to skip over its usage and instead introduce the <a href="https://pytest-mpl.readthedocs.io/en/stable/" target="_blank"><code>pytest-mpl</code></a> extension as it offers a few extra features which are really neat. Instead of using the <code>@image_comparsion()</code> decorator we can add the <code>pytest-mpl</code> package to the optional <code>test</code> dependencies in <code>pyproject.toml</code>.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode toml code-with-copy"><code class="sourceCode toml"><span id="cb4-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[project.optional-dependencies]</span></span>
<span id="cb4-2"><span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">tests</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span></span>
<span id="cb4-3">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"py"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-4">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pytest"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-5">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pytest-cov"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-6">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pytest-mpl"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-7">  <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pytest-tmp-files"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-8"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
<p>We use the <code>@pytest.mark.mpl_image_compare()</code> decorator to mark a test as having Matplotlib output to indicate that we want to compare images. We need to set the <code>baseline_dir</code> which is where the images against which tests will be compared are stored here it is set to <code>baseline</code> which is relative to the position of the file. We then call our function, in this case <code>mpl_example.scatter()</code> with different sets of parameters (courtesy of <a href="https://blog.nshephard.dev/posts/pytest-param/" target="_blank">pytest parameterisation</a>).</p>
<p>The test itself must <code>return fig</code> of the desired plot so that it can be compared to the reference image each time the test is run.</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>We also use the <a href="https://blog.nshephard.dev/posts/pytest-param/" target="_blank">pytest.mark.parametrize()</a> to setup two test scenarios.</p>
</div>
</div>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Tests of the mpl_example module."""</span></span>
<span id="cb5-2"></span>
<span id="cb5-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pytest</span>
<span id="cb5-4"></span>
<span id="cb5-5"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pytest_examples <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> mpl_example</span>
<span id="cb5-6"></span>
<span id="cb5-7"></span>
<span id="cb5-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.mpl_image_compare</span>(baseline_dir<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"baseline"</span>)</span>
<span id="cb5-9"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parametrize</span>(</span>
<span id="cb5-10">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n_obs"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"figsize"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"title"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"seed"</span>),</span>
<span id="cb5-11">    [</span>
<span id="cb5-12">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">300</span>, (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">""</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3513387</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"300 points; 6x6; no title"</span>),</span>
<span id="cb5-13">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3000</span>, (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Lots of points!"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3513387</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"3000 points; 6x6; Lots of points"</span>),</span>
<span id="cb5-14">    ],</span>
<span id="cb5-15">)</span>
<span id="cb5-16"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_scatter(n_obs: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, figsize: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">tuple</span>[<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>], title: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>, seed: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb5-17">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test of the scatter() function."""</span></span>
<span id="cb5-18">    fig, _ <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> mpl_example.scatter(n_obs, figsize, title, seed)</span>
<span id="cb5-19">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> fig</span></code></pre></div>
<p>Once you have decorated your test you need to generate the images against which subsequent tests are to be compared to. This is done using the <code>--mpl-generate-path=</code> flag and providing an appropriate argument. The path is relative to where <code>pytest</code> is running from, in this example we use <code>tests/baseline</code>. We can restrict the test to the specific one we are working by specifying the path to the file and optionally the test within the file as in the below example where the path to the test file (<code>tests/test_mpl_example.py</code>) and the test name (<code>test_scatter_hist</code>) are separated by double colons (<code>::</code>).</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb6-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mkdir</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-p</span> tests/resources/img</span>
<span id="cb6-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytest</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--mpl-generate-path</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>tests/baseline <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">`</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tests/test_mpl_example.py::test_scatter</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">`</span></span></code></pre></div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>There is subtle difference between the <code>baseline_dir</code> parameter specified in the fixture itself (<code>baseline</code>) and the argument given to <code>--mpl-generate-path=</code> (<code>tests/baseline</code>).</p>
<p>This is because <code>pytest</code> searches for all files beginning with <code>test_</code> in the directory <code>tests</code> and when running <code>pytest</code> you do so from the directory level above where <code>tests</code> resides which is typically the root of your package. Because the test files reside <em>within</em> the <code>tests/</code> directory the relative path to the directory the parameter <code>baseline_dir</code> argument must omit this leading directory.</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb7-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> ./tests</span>
<span id="cb7-2"> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">&nbsp;&nbsp;</span> ├── ./tests/baseline</span>
<span id="cb7-3"> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">&nbsp;&nbsp;</span> └── ./tests/test_mpl_example.py</span></code></pre></div>
</div>
</div>
<p>The tests are skipped “<em>since generating image.</em>”</p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb8-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> pytest <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--mpl</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--mpl-generate-path</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>baseline tests/test_mpl_example.py</span>
<span id="cb8-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">========================</span> test session starts ==========================</span>
<span id="cb8-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">platform</span> linux <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--</span> Python 3.12.7, pytest-8.3.3, pluggy-1.5.0</span>
<span id="cb8-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Matplotlib:</span> 3.9.2</span>
<span id="cb8-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Freetype:</span> 2.6.1</span>
<span id="cb8-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">rootdir:</span> /mnt/work/git/hub/ns-rse/pytest-examples/main</span>
<span id="cb8-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">configfile:</span> pyproject.toml</span>
<span id="cb8-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">plugins:</span> regtest-2.1.1, anyio-4.6.0, icdiff-0.9, pylint-0.21.0, pytest_tmp_files-0.0.2, syrupy-4.7.1, mpl-0.17.0, cov-5.0.0, mock-3.14.0, xdist-3.6.1, durations-1.3.1</span>
<span id="cb8-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">collected</span> 2 items</span>
<span id="cb8-10"></span>
<span id="cb8-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tests/test_mpl_example.py</span> ss                                                                                                                            <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">100%</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb8-12"></span>
<span id="cb8-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">----------</span> coverage: platform linux, python 3.12.7-final-0 <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-----------</span></span>
<span id="cb8-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Name</span>                            Stmts   Miss  Cover</span>
<span id="cb8-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">---------------------------------------------------</span></span>
<span id="cb8-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/divide.py</span>           16     16     0%</span>
<span id="cb8-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/mpl_example.py</span>      13      0   100%</span>
<span id="cb8-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/shapes.py</span>            5      5     0%</span>
<span id="cb8-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">---------------------------------------------------</span></span>
<span id="cb8-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">TOTAL</span>                              34     21    38%</span>
<span id="cb8-21"></span>
<span id="cb8-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">========================</span> short test summary info =====================</span>
<span id="cb8-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">SKIPPED</span> <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">2</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span> ../../../../../../../home/neil/.virtualenvs/pytest-examples/lib/python3.12/site-packages/pytest_mpl/plugin.py:925: Skipped test, since generating image.</span>
<span id="cb8-24"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">========================</span> 2 skipped in 2.46s ===========================</span></code></pre></div>
<p>We can look at the generated images, nothing fancy just some random dots.</p>
<p><img src="https://blog.nshephard.dev/posts/pytest-mpl/img/test_scatter_hist_300_points_baseline.png" style="height:50.0%" alt="First test image of 300 points"> <img src="https://blog.nshephard.dev/posts/pytest-mpl/img/test_scatter_hist_3000_points_baseline.png" style="height:50.0%" alt="Second test image of 3000 points"></p>
<p>The generated images reside within the <code>tests/baseline/</code> directory and as the <code>baseline_dir=baseline</code> argument to the <code>@pytest.mark.mpl_image_compare()</code> is <em>relative</em> to the location of the test file itself which is in <code>test</code> we are good to go. We can re-run the tests with the <code>--mpl</code> flag to check they pass.</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb9-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytest</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--mpl</span> tests/test_mpl_example::test_scatter</span></code></pre></div>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb10-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">========================</span> test session starts ==========================</span>
<span id="cb10-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">platform</span> linux <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--</span> Python 3.12.7, pytest-8.3.3, pluggy-1.5.0</span>
<span id="cb10-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Matplotlib:</span> 3.9.2</span>
<span id="cb10-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Freetype:</span> 2.6.1</span>
<span id="cb10-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">rootdir:</span> /mnt/work/git/hub/ns-rse/pytest-examples/main</span>
<span id="cb10-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">configfile:</span> pyproject.toml</span>
<span id="cb10-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">plugins:</span> regtest-2.1.1, anyio-4.6.0, icdiff-0.9, pylint-0.21.0, pytest_tmp_files-0.0.2, syrupy-4.7.1, mpl-0.17.0, cov-5.0.0, mock-3.14.0, xdist-3.6.1, durations-1.3.1</span>
<span id="cb10-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">collected</span> 2 items</span>
<span id="cb10-9"></span>
<span id="cb10-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tests/test_mpl_example.py</span> ..                                                                                                                            <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">100%</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb10-11"></span>
<span id="cb10-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">----------</span> coverage: platform linux, python 3.12.7-final-0 <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-----------</span></span>
<span id="cb10-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Name</span>                            Stmts   Miss  Cover</span>
<span id="cb10-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">---------------------------------------------------</span></span>
<span id="cb10-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/divide.py</span>           16     16     0%</span>
<span id="cb10-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/mpl_example.py</span>      13      0   100%</span>
<span id="cb10-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/shapes.py</span>            5      5     0%</span>
<span id="cb10-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">---------------------------------------------------</span></span>
<span id="cb10-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">TOTAL</span>                              34     21    38%</span>
<span id="cb10-20"></span>
<span id="cb10-21"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">===========================</span> 2 passed in 2.56s ===========================</span></code></pre></div>
</section>
<section id="update-pytest-options" class="level3">
<h3 class="anchored" data-anchor-id="update-pytest-options">Update <code>pytest</code> options</h3>
<p>We don’t want to have to remember to use the <code>--mpl</code> flag each time we run the test and we also want to make sure its used in Continuous Integration. This can be achieved by adding the <code>--mpl</code> flag to the <code>pytest</code> options that are defined in <code>pyproject.toml</code>.</p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode toml code-with-copy"><code class="sourceCode toml"><span id="cb11-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">[tool.pytest.ini_options]</span></span>
<span id="cb11-2">  <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">...</span></span>
<span id="cb11-3">  <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">addopts</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">[</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--cov"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--mpl"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-ra"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--showlocals"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--strict-config"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">,</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"--strict-markers"</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb11-4">  <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">...</span></span></code></pre></div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>Don’t forget to stage and commit these changes to your repository.</p>
</div>
</div>
<p>Now each time you run your test suite the output of calling the test is compared to the reference images that reside under <code>tests/baseline/</code> (or whatever directory you specified).</p>
</section>
</section>
<section id="failing-tests" class="level2">
<h2 class="anchored" data-anchor-id="failing-tests">Failing tests</h2>
<p>Sometimes your tests might fail. To demonstrate this we change one of the title parameters in the tests to <code>Another title</code> in <code>tests/test_mpl_example.py</code> and re-run the tests, sure enough the test fails. We are told the <code>RMS Value</code> (the Root Mean Square difference value) along with the location of the test files of which there are three images, a copy of the baseline, the result and a difference between the two.</p>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb12-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> pytest <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--mpl</span>  tests/test_mpl_example.py</span>
<span id="cb12-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==========================</span> test session starts =======================</span>
<span id="cb12-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">platform</span> linux <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--</span> Python 3.12.7, pytest-8.3.3, pluggy-1.5.0</span>
<span id="cb12-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Matplotlib:</span> 3.9.2</span>
<span id="cb12-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Freetype:</span> 2.6.1</span>
<span id="cb12-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">rootdir:</span> /mnt/work/git/hub/ns-rse/pytest-examples/main</span>
<span id="cb12-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">configfile:</span> pyproject.toml</span>
<span id="cb12-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">plugins:</span> regtest-2.1.1, anyio-4.6.0, icdiff-0.9, pylint-0.21.0, pytest_tmp_files-0.0.2, syrupy-4.7.1, mpl-0.17.0, cov-5.0.0, mock-3.14.0, xdist-3.6.1, durations-1.3.1</span>
<span id="cb12-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">collected</span> 2 items</span>
<span id="cb12-10"></span>
<span id="cb12-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tests/test_mpl_example.py</span> F.                                                                                                                            <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">100%</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb12-12"></span>
<span id="cb12-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==========================</span> FAILURES ==================================</span>
<span id="cb12-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">________________</span> test_scatter[300 points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title] ______</span>
<span id="cb12-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Error:</span> Image files did not match.</span>
<span id="cb12-16">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">RMS</span> Value: 8.551853600243634</span>
<span id="cb12-17">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Expected:</span></span>
<span id="cb12-18">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/tmp/tmpn9ucgc47/tests.test_mpl_example.test_scatter_300</span> points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title/baseline.png</span>
<span id="cb12-19">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Actual:</span></span>
<span id="cb12-20">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/tmp/tmpn9ucgc47/tests.test_mpl_example.test_scatter_300</span> points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title/result.png</span>
<span id="cb12-21">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Difference:</span></span>
<span id="cb12-22">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/tmp/tmpn9ucgc47/tests.test_mpl_example.test_scatter_300</span> points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title/result-failed-diff.png</span>
<span id="cb12-23">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Tolerance:</span></span>
<span id="cb12-24">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">2</span></span>
<span id="cb12-25"></span>
<span id="cb12-26"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">----------</span> coverage: platform linux, python 3.12.7-final-0 <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-----------</span></span>
<span id="cb12-27"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Name</span>                            Stmts   Miss  Cover</span>
<span id="cb12-28"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">---------------------------------------------------</span></span>
<span id="cb12-29"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/divide.py</span>           16     16     0%</span>
<span id="cb12-30"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/mpl_example.py</span>      13      0   100%</span>
<span id="cb12-31"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/shapes.py</span>            5      5     0%</span>
<span id="cb12-32"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">---------------------------------------------------</span></span>
<span id="cb12-33"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">TOTAL</span>                              34     21    38%</span>
<span id="cb12-34"></span>
<span id="cb12-35"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==========================</span> short test summary info ======================</span>
<span id="cb12-36"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">FAILED</span> tests/test_mpl_example.py::test_scatter[300 points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title] <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span> Failed: Error: Image files did not match.</span>
<span id="cb12-37"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==========================</span> 1 failed, 1 passed in 2.45s ==================</span></code></pre></div>
<p>Navigating to and viewing these files is pretty easy when there is only one test that has failed but when more than one test fails they are all in their own directory and navigating and viewing them takes a bit longer.</p>
<section id="mpl-generate-summary" class="level3">
<h3 class="anchored" data-anchor-id="mpl-generate-summary"><code>--mpl-generate-summary</code></h3>
<p>This is where the <code>--mpl-generate-summary</code> option comes in really handy as it will generate a report of the differences in either <code>html</code>, <code>json</code> or <code>basic-html</code>. Here I’ll show the use of the <code>html</code> option and what it produces.</p>
<p>By default the report is created under <code>/tmp/</code> but with the <code>--mpl-results-path</code> you can specify a location relative to where the tests are being run from. You do not need to create the directory/path it will be created for you. That said I’m not that bothered about keeping the test image comparisons though so I typically omit the <code>--mpl-generate-path</code> option and instead the output and use the <code>/tmp/</code> directory, that way my project directory doesn’t get cluttered with files as this is wiped when the computer is rebooted.</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>If you do use <code>--mpl-results-path</code> to specify a nested directory within your repository you would probably want to exclude it from being included in version control though so add the path to <code>.gitignore</code>.</p>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>Remember we have added the <code>--mpl</code> flag to the general <code>tool.pytest.ini_options</code> in <code>pyproject.toml</code> to ensure <code>pytest-mpl</code> extension is enabled and run.</p>
</div>
</div>
<p>Lets run the tests, which we know will fail, with the <code>--mpl-generate-summary=html</code> option enabled (and not using <code>--mpl-results-path</code>) .</p>
<div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb13-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytest</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--mpl-generate-summary</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>html tests/test_mpl_example.py</span></code></pre></div>
<p>The output is virtually identical but there is an additional line at the end…</p>
<div class="sourceCode" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb14-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> pytest <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--mpl</span>  <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--mpl-generate-summary</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>html tests/test_mpl_example.py</span>
<span id="cb14-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==========================</span> test session starts =======================</span>
<span id="cb14-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">platform</span> linux <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--</span> Python 3.12.7, pytest-8.3.3, pluggy-1.5.0</span>
<span id="cb14-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Matplotlib:</span> 3.9.2</span>
<span id="cb14-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Freetype:</span> 2.6.1</span>
<span id="cb14-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">rootdir:</span> /mnt/work/git/hub/ns-rse/pytest-examples/main</span>
<span id="cb14-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">configfile:</span> pyproject.toml</span>
<span id="cb14-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">plugins:</span> regtest-2.1.1, anyio-4.6.0, icdiff-0.9, pylint-0.21.0, pytest_tmp_files-0.0.2, syrupy-4.7.1, mpl-0.17.0, cov-5.0.0, mock-3.14.0, xdist-3.6.1, durations-1.3.1</span>
<span id="cb14-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">collected</span> 2 items</span>
<span id="cb14-10"></span>
<span id="cb14-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tests/test_mpl_example.py</span> F.                                                                                                                            <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">100%</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb14-12"></span>
<span id="cb14-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==========================</span> FAILURES ==================================</span>
<span id="cb14-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">_________________</span> test_scatter[300 points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">green]</span> _____</span>
<span id="cb14-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Error:</span> Image files did not match.</span>
<span id="cb14-16">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">RMS</span> Value: 8.551853600243634</span>
<span id="cb14-17">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Expected:</span></span>
<span id="cb14-18">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/tmp/tmp1bzvguuq/tests.test_mpl_example.test_scatter_300</span> points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">green/baseline.png</span></span>
<span id="cb14-19">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Actual:</span></span>
<span id="cb14-20">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/tmp/tmp1bzvguuq/tests.test_mpl_example.test_scatter_300</span> points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">green/result.png</span></span>
<span id="cb14-21">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Difference:</span></span>
<span id="cb14-22">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/tmp/tmp1bzvguuq/tests.test_mpl_example.test_scatter_300</span> points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">green/result-failed-diff.png</span></span>
<span id="cb14-23">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Tolerance:</span></span>
<span id="cb14-24">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">2</span></span>
<span id="cb14-25"></span>
<span id="cb14-26"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">----------</span> coverage: platform linux, python 3.12.7-final-0 <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-----------</span></span>
<span id="cb14-27"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Name</span>                            Stmts   Miss  Cover</span>
<span id="cb14-28"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">---------------------------------------------------</span></span>
<span id="cb14-29"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/divide.py</span>           16     16     0%</span>
<span id="cb14-30"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/mpl_example.py</span>      13      0   100%</span>
<span id="cb14-31"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytestexamples/shapes.py</span>            5      5     0%</span>
<span id="cb14-32"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">---------------------------------------------------</span></span>
<span id="cb14-33"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">TOTAL</span>                              34     21    38%</span>
<span id="cb14-34"></span>
<span id="cb14-35"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==========================</span> short test summary info ======================</span>
<span id="cb14-36"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">FAILED</span> tests/test_mpl_example.py::test_scatter[300 points<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6x6</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">no</span> title<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">green]</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span> Failed: Error: Image files did not match.</span>
<span id="cb14-37"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">==========================</span> 1 failed, 1 passed in 2.50s ==================</span>
<span id="cb14-38"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">A</span> summary of test results can be found at: /tmp/tmp1bzvguuq/fig_comparison.html</span></code></pre></div>
<p>If we open the test results in our browser we have a nice summary of the tests that have passed and failed.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://blog.nshephard.dev/posts/pytest-mpl/img/mpl_generate_summary_overview.png" class="img-fluid figure-img"></p>
<figcaption>Overview generated by <code>pytest --mpl-generate-summary=html</code></figcaption>
</figure>
</div>
<p>If we want to look at a specific failed test we can, on the left we see the baseline image, on the right the test image and in-between a plot showing the differences between the two. We also have the “Root Mean Square Error” reported for the test.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://blog.nshephard.dev/posts/pytest-mpl/img/mpl_generate_summary_failed_detail.png" class="img-fluid figure-img"></p>
<figcaption>Detailed view of a failed test generated by <code>pytest --mpl-generate-summary=html</code></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://blog.nshephard.dev/posts/pytest-mpl/img/mpl_generate_summary_pass_detail.png" class="img-fluid figure-img"></p>
<figcaption>Detailed view of a pass test generated by <code>pytest --mpl-generate-summary=html</code></figcaption>
</figure>
</div>
</section>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>If your package produces plots its easy to write tests that check they are correctly generated using the <a href="https://pytest-mpl.readthedocs.io/en/stable/" target="_blank">pytest-mpl</a> extension and there is a neat convenience option to generate summaries of tests to make viewing the failures and differences in your browser convenient.</p>
<section id="key-points" class="level3">
<h3 class="anchored" data-anchor-id="key-points">Key Points</h3>
<ul>
<li>You have to generate reference images against which the tests are run.</li>
<li>You should add the <code>--mpl</code> option to the <code>tools.pytest.ini_options</code> section of your <code>pyproject.toml</code> under <code>addopts</code> to ensure the extension is used whenever tests are run, be that locally or in Continuous Integration.</li>
<li>If you find tests are failing you can easily generate a web-page summarising the passes and failures using the <code>--mpl-generate-summary=html</code> flag when invoking <code>pytest</code> to get an HTML summary that is easy to navigate.</li>
</ul>



</section>
</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2024,
  author = {Shephard, Neil},
  title = {Pytest {Matplotlib}},
  date = {2024-09-24},
  url = {https://blog.nshephard.dev/posts/pytest-mpl/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2024" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2024. <span>“Pytest Matplotlib .”</span> September 24,
2024. <a href="https://blog.nshephard.dev/posts/pytest-mpl/">https://blog.nshephard.dev/posts/pytest-mpl/</a>.
</div></div></section></div> ]]></description>
  <category>python</category>
  <category>testing</category>
  <category>pytest</category>
  <category>matplotlib</category>
  <category>pytest-mpl</category>
  <guid>https://blog.nshephard.dev/posts/pytest-mpl/</guid>
  <pubDate>Tue, 24 Sep 2024 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/54027972058_a393643e56_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Pennine Way 2024</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/pennine-way/</link>
  <description><![CDATA[ 





<!-- markdownlint-disable MD024 -->
<p>This summer I decided to hike the iconic <a href="https://www.nationaltrail.co.uk/en_GB/trails/pennine-way/" target="_blank">Pennine Way</a> a 431 kilometre (261 miles) national trail stretching between <a href="https://en.wikipedia.org/wiki/Kirk_Yetholm" target="_blank">Kirk Yetholm</a> in the North and <a href="https://en.wikipedia.org/wiki/Edale" target="_blank">Edale</a> in the South. Traditionally the route is hiked from South to North but as I live in Sheffield and have hiked around Kinder, Bleaklow and Blackhill I decided to hike from North to South as even if I didn’t complete the route I would get to see places I wasn’t familiar with and it was also cheaper to buy an advance rail ticket than have to purchase one on the day of return as I had no idea how long it would take.</p>
<p>NB - In order to provide some relevance to the computing theme of this blog I include examples of how to plot GPX points in both <a href="https://www.r-project.org/" target="_blank">R</a> using the <a href="https://rstudio.github.io/leaflet/" target="_blank">leaflet R package</a> and <a href="https://www.python.org/" target="_blank">python</a> using the <a href="https://python-visualization.github.io/folium/latest/getting_started.html" target="_blank">folium package</a> make using the <a href="https://leafletjs.com/" target="_blank">leaflet</a> JavaScript framework very simple.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930940490_d331111f4f_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53930940490/" target="_blank">Not Pennine Way</a> by Me</figcaption>
</figure>
</div>
<section id="planning" class="level2">
<h2 class="anchored" data-anchor-id="planning">Planning</h2>
<p>A number of years ago I attempted to hike the Pennine Way from Edale and having set off from Edale and reached Crowden in good time decided I could combine the first two days and continued to Standedge. This was a mistake as I wasn’t used to hiking with such weight and its a rough section up over Laddow Rocks. Half way there my knee didn’t like this and I hobbled the rest of the way and called my wife to come and collect me, heading home with my tail between my legs.</p>
<p>I didn’t want to repeat this but I had no idea how long this would take me so booked two and a half weeks off of work allowing me 18 days to complete. I use <a href="https://www.openstreetmap.org/" target="_blank">OpenStreetMap</a> and the excellent <a href="https://brouter.m11n.de/" target="_blank">BRouter WebUI</a> to plan days of upto 35km hiking although one day came in at 44km which I was wary of as I typically don’t enjoy hiking more than 30km without carrying significant weight so didn’t want to push myself too hard. But I figured I could be flexible and go slower if needed, and it wouldn’t be a problem if I was faster I could just drink more beer!</p>
<p>A kit list of what I took is at the end along with details of what I used and didn’t, but I took everything I needed for camping along with clothes, a stove for boiling water, six dehydrated meals, maps, battery pack and a guide which I would have to read backwards as it covered the route from South to North over 20 days.</p>
</section>
<section id="tracking" class="level2">
<h2 class="anchored" data-anchor-id="tracking">Tracking</h2>
<p>I use <a href="https://opentracksapp.com/" target="_blank">OpenTracks</a> to privately record <a href="https://en.wikipedia.org/wiki/GPS_Exchange_Format" target="_blank">GPX</a> tracks of my hiking, running and cycling as it stores them only on the device on which they are recorded, although you can of course copy them elsewhere and use them as you like. I did this each day I hiked recording almost complete traces for the whole trip. I had one short drop out and missed restarting after having a meal but after that often left it running whilst stopped for lunch or dinner sto avoid forgetting to restart.</p>
<p>I uploaded each track to an instance of <a href="https://samr1.github.io/FitTrackee/en/index.html" target="_blank">FitTrackee</a> that I host myself which provided a neat way of reviewing the statistics for each days hiking which I have exported and saved to CSV and used in the tables and figures of this write-up.</p>
<p>Details and more information about these and other Open Source tools for self-research that <strong>protect the users privacy from the pernicious intrusions made by Big Tech</strong> can be found on the <a href="https://wiki.openhumans.org/wiki/Personal_Science_Wiki" target="_blank">Personal Science Wiki</a>.</p>
</section>
<section id="pictures" class="level2">
<h2 class="anchored" data-anchor-id="pictures">Pictures</h2>
<p>I carried my phone, a <a href="https://www.gsmarena.com/motorola_moto_g100-10791.php" target="_blank">Motorola GT100</a> and a <a href="https://www.sony.co.uk/electronics/cyber-shot-compact-cameras/dsc-rx100m4" target="_blank">Sony RX100 Mk IV</a> with me along the route. I take a <em>lot</em> of pictures, most are crap but some are half decent and I’ve included in this post the better ones or those that accompany the story well. You can find the full set of pictures on my <a href="https://www.flickr.com/photos/slackline/albums/72177720319516582/" target="_blank">Pennine Way Flickr album</a>.</p>
</section>
<section id="using-gpx-tracks" class="level2">
<h2 class="anchored" data-anchor-id="using-gpx-tracks">Using GPX Tracks</h2>
<p>I’ve opted to provide solutions to plotting GPX tracks in both <a href="https://www.r-project.org/" target="_blank">R</a> and <a href="https://www.python.org/" target="_blank">Python</a> since I use both in my day to day work. Each code chunk outputs a map and the code can be viewed if you want to learn how to create maps using either language.</p>
<p>This requires…</p>
<ol type="1">
<li>Finding files with the <code>.gpx</code> extension.</li>
<li>Loading each file GPX file.</li>
<li>Extracting the GPS points (latitude and longitude), speed, elevation and date/time.</li>
<li>Plotting the points on a <a href="https://leafletjs.com/" target="_blank">Leaflet</a> map.</li>
</ol>
<p>To simplify this process I define functions to carry out the task (rather than copying and pasting the code for each day). Both <a href="https://www.r-project.org/" target="_blank">R</a> and <a href="https://www.python.org/" target="_blank">Python</a> have libraries for working with the <a href="https://leafletjs.com/" target="_blank">Leaflet</a> library. Currently I’ve got slightly further with the Python library than the R but I intend to update that and will write a separate blog post on mapping with each of the libraries. Things to do on the maps…</p>
<ul>
<li>Consistent zoom level on both.</li>
<li>Correctly colouring points by <code>speed</code> or <code>elevation</code> in R.</li>
<li>Start and End markers.</li>
<li>Add pop-ups on hovering over any point to show the metrics (lat/lon, date/time, speed, elevation, accuracy).</li>
<li>Plot the whole journey as one.</li>
</ul>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-1-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-1" aria-controls="tabset-1-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-2" aria-controls="tabset-1-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-1-1" class="tab-pane active" aria-labelledby="tabset-1-1-tab">
<p>The R library is named after the Javascript library, i.e.&nbsp;<a href="https://rstudio.github.io/leaflet/" target="_blank">leaflet</a></p>
<div class="cell" data-code-link="true" data-code-tools="true">
<div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb1-1"><span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">## https://rstudio.github.io/leaflet/</span></span>
<span id="cb1-2"><span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">## https://www.r-bloggers.com/2022/10/r-and-gpx-how-to-read-and-visualize-gpx-files-in-r/</span></span>
<span id="cb1-3"><span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">## https://mastodon.social/@yabellini@fosstodon.org/113181640784237866</span></span>
<span id="cb1-4"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(htmlwidgets)</span>
<span id="cb1-5"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(leaflet)</span>
<span id="cb1-6"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">library</span>(gpx)</span>
<span id="cb1-7"><span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">## List GPX files</span></span>
<span id="cb1-8">gpx_files <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">list.files</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">pattern =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">\\</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">.gpx$"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">recursive =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>)</span>
<span id="cb1-9"><span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">## Remove the 'pennine_way' gpx as we will concatenate the others</span></span>
<span id="cb1-10">gpx_files <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">head</span>(gpx_files, <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb1-11"><span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">## Strip the common path and extract the date</span></span>
<span id="cb1-12">dates <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> stringr<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">str_split</span>(gpx_files, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"/"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">simplify =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>)[,<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>]</span>
<span id="cb1-13">dates <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> stringr<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">str_split</span>(dates, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"_"</span>, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">simplify =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>)[,<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>]</span>
<span id="cb1-14"></span>
<span id="cb1-15">gps <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">lapply</span>(gpx_files, gpx<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span>read_gpx)</span>
<span id="cb1-16"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">names</span>(gps) <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> dates</span>
<span id="cb1-17"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#gps &lt;- lapply(gps, function(df) df[[1]]$tracks)</span></span>
<span id="cb1-18"></span>
<span id="cb1-19"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' Convert GPS points to data frame</span></span>
<span id="cb1-20"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#'</span></span>
<span id="cb1-21"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' @params</span></span>
<span id="cb1-22"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#'</span></span>
<span id="cb1-23"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' gps list GPS track read by gpx::read_gpx().</span></span>
<span id="cb1-24"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' columns list Column names.</span></span>
<span id="cb1-25"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#'</span></span>
<span id="cb1-26"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' @returns Data Frame of GPS points.</span></span>
<span id="cb1-27">gps_to_df <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">function</span>(gps, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">columns =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"elevation"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"time"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"lat"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"lng"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"accuracy"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"segment_id"</span>)) {</span>
<span id="cb1-28">    df <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.data.frame</span>(gps<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">$</span>tracks[[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>]])</span>
<span id="cb1-29">    <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">colnames</span>(df) <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> columns</span>
<span id="cb1-30">    df <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> df <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb1-31">          dplyr<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mutate</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">speed =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.numeric</span>(speed),</span>
<span id="cb1-32">                        <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">elevation =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.numeric</span>(elevation),</span>
<span id="cb1-33">                        <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">accuracy =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.numeric</span>(accuracy),</span>
<span id="cb1-34">                        <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">lat =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.numeric</span>(lat),</span>
<span id="cb1-35">                        <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">lng =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.numeric</span>(lng),</span>
<span id="cb1-36">                        <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">accuracy =</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as.numeric</span>(accuracy),</span>
<span id="cb1-37">                        <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">time =</span> lubridate<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">as_datetime</span>(time),</span>
<span id="cb1-38">          )</span>
<span id="cb1-39">    df</span>
<span id="cb1-40">}</span>
<span id="cb1-41">gps_df <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">lapply</span>(gps, gps_to_df)</span>
<span id="cb1-42"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">names</span>(gps_df) <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> dates</span>
<span id="cb1-43"></span>
<span id="cb1-44"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' Plot a gps dataframe</span></span>
<span id="cb1-45"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#'</span></span>
<span id="cb1-46"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' @params</span></span>
<span id="cb1-47"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#'</span></span>
<span id="cb1-48"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' gps_df list List of GPS Dataframes.</span></span>
<span id="cb1-49"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' date str Date of track to plot</span></span>
<span id="cb1-50"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' color str Variable to colour points as, default 'speed' but 'elevation' also possible</span></span>
<span id="cb1-51"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#'</span></span>
<span id="cb1-52"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#' @returns Leaflet map</span></span>
<span id="cb1-53">plot_day <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">&lt;-</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">function</span>(gps_df, date, <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">color =</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>) {</span>
<span id="cb1-54">    <span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">## Palette not working...yet!</span></span>
<span id="cb1-55">    <span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">## pal &lt;- leaflet::colorNumeric(palette = c("green", "red"),</span></span>
<span id="cb1-56">    <span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">##                             domain = gps_df[date][[color]])</span></span>
<span id="cb1-57">    leaflet<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">leaflet</span>() <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb1-58">        leaflet<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">addTiles</span>() <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|&gt;</span></span>
<span id="cb1-59">        leaflet<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">addPolylines</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">data =</span> gps_df[date][[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>]],</span>
<span id="cb1-60">                              <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">lat =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span>lat,</span>
<span id="cb1-61">                              <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">lng =</span> <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span>lng,</span>
<span id="cb1-62">                              <span class="do" style="color: #5E5E5E;
background-color: null;
font-style: italic;">## color = ~pal(color)</span></span>
<span id="cb1-63">                              )</span>
<span id="cb1-64">}</span></code></pre></div>
</div>
</div>
<div id="tabset-1-2" class="tab-pane" aria-labelledby="tabset-1-2-tab">
<p>The <a href="https://gpxplotter.readthedocs.io/en/latest/" target="_blank">gpxplotter</a> package provides wrappers around <a href="https://python-visualization.github.io/folium/latest/getting_started.html" target="_blank">folium</a> for plotting GPX traces, but I opted to do this manually so I could learn more about Folium (I used to use it in a previous job, just need to remember what I used to do!).</p>
<div class="cell" data-code-link="true" data-code-tools="true">
<div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># https://towardsdatascience.com/build-interactive-gps-activity-maps-from-gpx-files-using-folium-cf9eebba1fe7</span></span>
<span id="cb2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pathlib <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Path</span>
<span id="cb2-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pandas <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pd</span>
<span id="cb2-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> folium</span>
<span id="cb2-5"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> gpxpy</span>
<span id="cb2-6">gpx_files <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sorted</span>(Path(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"."</span>).glob(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"**/*.gpx"</span>))</span>
<span id="cb2-7"></span>
<span id="cb2-8"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> gpx_to_df(filename: Path <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> pd.DataFrame:</span>
<span id="cb2-9">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb2-10"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Load a GPX track and extract data.</span></span>
<span id="cb2-11"></span>
<span id="cb2-12"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Parameters</span></span>
<span id="cb2-13"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    ----------</span></span>
<span id="cb2-14"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    filename: Path | str</span></span>
<span id="cb2-15"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Path to a .gpx file.</span></span>
<span id="cb2-16"></span>
<span id="cb2-17"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Returns</span></span>
<span id="cb2-18"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    -------</span></span>
<span id="cb2-19"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    pd.DataFrame</span></span>
<span id="cb2-20"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb2-21">    gpx <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> gpxpy.parse(filename.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">open</span>())</span>
<span id="cb2-22">    gpx_segments <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>(gpx.tracks[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>].segments)</span>
<span id="cb2-23">    data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> []</span>
<span id="cb2-24">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> segment <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> gpx_segments:</span>
<span id="cb2-25">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> point_id, point <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">enumerate</span>(segment.points):</span>
<span id="cb2-26">            data.append([point.latitude,</span>
<span id="cb2-27">                         point.longitude,</span>
<span id="cb2-28">                         point.elevation,</span>
<span id="cb2-29">                         point.time,</span>
<span id="cb2-30">                         segment.get_speed(point_id)</span>
<span id="cb2-31">                       ])</span>
<span id="cb2-32">    columns <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"latitude"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"longitude"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"elevation"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"time"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>]</span>
<span id="cb2-33">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> pd.DataFrame(data, columns <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> columns)</span>
<span id="cb2-34"></span>
<span id="cb2-35"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> tidy_speed(df: pd.DataFrame, speed: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>, threshold: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">3.5</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> pd.DataFrame:</span>
<span id="cb2-36">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb2-37"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Remove extreme speed values from a GPS dataframe.</span></span>
<span id="cb2-38"></span>
<span id="cb2-39"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Parameters</span></span>
<span id="cb2-40"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    ----------</span></span>
<span id="cb2-41"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    df: pd.DataFrame</span></span>
<span id="cb2-42"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Pandas DataFrame of GPS points.</span></span>
<span id="cb2-43"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    speed: str</span></span>
<span id="cb2-44"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Variable holding speed, default is 'speed' and shouldn't need changing.</span></span>
<span id="cb2-45"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    threshold: float</span></span>
<span id="cb2-46"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Threshold for defining extreme speed</span></span>
<span id="cb2-47"></span>
<span id="cb2-48"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Returns</span></span>
<span id="cb2-49"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    -------</span></span>
<span id="cb2-50"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    pd.DataFrame</span></span>
<span id="cb2-51"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Pandas Dataframe with values of 'speed' &gt; 'threshold' set to 'threshold'.</span></span>
<span id="cb2-52"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb2-53">    df.loc[df[speed] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> threshold, speed] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> threshold</span>
<span id="cb2-54">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> df</span>
<span id="cb2-55"></span>
<span id="cb2-56"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> extract_lat_lon(gps_df: pd.DataFrame, lat: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"latitude"</span>, lon: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"longitude"</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>[<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">tuple</span>]:</span>
<span id="cb2-57">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb2-58"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Extract latitude and longitude from GPX data frame.</span></span>
<span id="cb2-59"></span>
<span id="cb2-60"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Parameters</span></span>
<span id="cb2-61"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    ----------</span></span>
<span id="cb2-62"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    gps_df: pd.DataFrame</span></span>
<span id="cb2-63"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Pandas Dataframe with latitude and longitude columns.</span></span>
<span id="cb2-64"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    lat: str</span></span>
<span id="cb2-65"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Name of latitude column.</span></span>
<span id="cb2-66"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    lon: str</span></span>
<span id="cb2-67"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Name of longitude column.</span></span>
<span id="cb2-68"></span>
<span id="cb2-69"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Returns</span></span>
<span id="cb2-70"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    -------</span></span>
<span id="cb2-71"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    list[tuple]</span></span>
<span id="cb2-72"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Returns a list of tuples each of which is the latitude and longitude.</span></span>
<span id="cb2-73"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb2-74">    _array <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> gps_df[[lat, lon]].to_numpy()</span>
<span id="cb2-75">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> [<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">tuple</span>(point) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> point <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> _array]</span>
<span id="cb2-76"></span>
<span id="cb2-77"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> plot_gpx_df(gps_df: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>[<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">tuple</span>],</span>
<span id="cb2-78">                lat: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"latitude"</span>,</span>
<span id="cb2-79">                lon: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"longitude"</span>,</span>
<span id="cb2-80">                colors: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>,</span>
<span id="cb2-81">                colormap: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"viridis"</span>,</span>
<span id="cb2-82">                speed_threshold: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">3.5</span>,</span>
<span id="cb2-83">                default_tile: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"openstreetmap"</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> folium.Map:</span>
<span id="cb2-84">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb2-85"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Plot gps points on a map.</span></span>
<span id="cb2-86"></span>
<span id="cb2-87"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Parameters</span></span>
<span id="cb2-88"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    ----------</span></span>
<span id="cb2-89"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    gps_df: list[tuple]</span></span>
<span id="cb2-90"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        A list of tuples of GPS points</span></span>
<span id="cb2-91"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    lat: str</span></span>
<span id="cb2-92"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Name of latitude column.</span></span>
<span id="cb2-93"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    lon: str</span></span>
<span id="cb2-94"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Name of longitude column.</span></span>
<span id="cb2-95"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    colors: str</span></span>
<span id="cb2-96"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        What to plot the colour of the line as, options are 'elevation' and 'speed' (default).</span></span>
<span id="cb2-97"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    colormap: str</span></span>
<span id="cb2-98"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Colormap to use when plotting points.</span></span>
<span id="cb2-99"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    speed_threshold: float</span></span>
<span id="cb2-100"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Speed threshold for defining and resetting extreme values, default is '3.5'.</span></span>
<span id="cb2-101"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    default_tile: str</span></span>
<span id="cb2-102"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Default map tile to use</span></span>
<span id="cb2-103"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb2-104">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> speed_threshold <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.0</span>:</span>
<span id="cb2-105">        gps_df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> tidy_speed(gps_df, threshold<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>speed_threshold)</span>
<span id="cb2-106">    <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">map</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> folium.Map(location<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[gps_df[lat].mean(),</span>
<span id="cb2-107">                               gps_df[lon].mean()],</span>
<span id="cb2-108">                     tiles <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>)</span>
<span id="cb2-109"></span>
<span id="cb2-110">    folium.TileLayer(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"openstreetmap"</span>, name <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"OpenStreetMap"</span>).add_to(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">map</span>)</span>
<span id="cb2-111">    folium.TileLayer(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"http://tile.stamen.com/terrain/</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{z}</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">/</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{x}</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">/</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{y}</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">.jpg"</span>,</span>
<span id="cb2-112">                     attr<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"terrain-bcg"</span>,</span>
<span id="cb2-113">                     name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Terrain Map"</span>).add_to(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">map</span>)</span>
<span id="cb2-114">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Add layer control (not working)</span></span>
<span id="cb2-115">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># folium.LayerControl(collapsed = True).add_to(map)</span></span>
<span id="cb2-116">    points <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> extract_lat_lon(gps_df, lat, lon)</span>
<span id="cb2-117">    folium.ColorLine(points, weight<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>, colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gps_df[colors]).add_to(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">map</span>)</span>
<span id="cb2-118">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Calculate bounding box (not working)</span></span>
<span id="cb2-119">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># south_west = gps_df[[lat, lon]].min().values.tolist()</span></span>
<span id="cb2-120">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># north_east = gps_df[[lat, lon]].min().values.tolist()</span></span>
<span id="cb2-121">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># map.fit_bounds([south_west, north_east])</span></span>
<span id="cb2-122">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">map</span></span>
<span id="cb2-123"></span>
<span id="cb2-124"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">## Get a list of all GPX points</span></span>
<span id="cb2-125">gpx <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {Path(_file.stem).stem.split(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"_"</span>)[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>]: gpx_to_df(_file) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> _file <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> gpx_files }</span></code></pre></div>
</div>
</div>
</div>
</div>
</section>
<section id="day-by-day" class="level2">
<h2 class="anchored" data-anchor-id="day-by-day">Day by Day</h2>
<section id="day-1---sheffield-to-kirk-yetholm" class="level3">
<h3 class="anchored" data-anchor-id="day-1---sheffield-to-kirk-yetholm">Day 1 - Sheffield to Kirk Yetholm</h3>
<p>Having packed over the previous few days I weighed the rucksack with 2 litres of water attached, 17.4kg.</p>
<p>This was a walking holiday so I waved goodbye to my wife and daughter around 07:30 feeling fresh and walked to the train station to catch the 08:22 train to Berwick-Upon-Tweed. Being Sheffield this involved a hill but it wasn’t too bad carrying the extra weight of the rucksack. I had poles but hadn’t put them to good use just yet.</p>
<p>The train journey was uneventful, but gave me time to sit and read a book on the Kobo I bought with me. I had bought the Kobo for hiking in the Julian Alps of Slovenia the previous year as I didn’t want to carry multiple books. Having recently started reading Johann Harri’s <a href="https://www.goodreads.com/book/show/57933306-stolen-focus" target="_blank"><em>Stolen Focus : Why You Can’t Pay Attention</em></a> I expected to get through it and had some fiction to read as well (Haruki Murakami’s <a href="https://www.goodreads.com/book/show/61170765-iq84" target="_blank"><em>IQ84</em></a>). The countryside passed by as did the first couple of chapters and before long I was getting off at Berwick-Upon-Tweed.</p>
<p>I’d checked the schedule and had a short wait before the bus to Kelso arrived. There was a gentleman trying to straighten one of two buckled wheels on his bike outside the station. Its quite hard to buckle wheels and I figured he’d therefore been in an accident recently so went and asked if he was ok. He said he was but that he’d been knocked off by a car turning across him. He was lucky and only had a few bruises but his bike was not ride-able and he was supposed to be cycling to Wales. He asked me to stand on one side of the wheel whilst he stood on the other to try and straighten it. Unsurprisingly this didn’t work. He then noticed some fence railings and tried levering it straight…unsuccessfully. Not only were both his wheels buckled but the built-in pannier rack that was part of the frame had sheered off so he would have trouble carrying his bags. He wasn’t hurt so I left him to his own devices and explored Castle Vale Park which led down to the River Tweed by the Royal Border Bridge and the remains of Berwick Castle.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957436114_f54e2d4177_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53957436114/in/datetaken/" target="_blank">Royal Border Bridge, Berwick Upon Tweed | Flickr</a></figcaption>
</figure>
</div>
<p>A nice way to kill some time but I didn’t want to miss my bus so headed back through Castle Vale Park to wait at the bus stop. It arrived and set-off on time and I bounced through some nice farmland towards Kelso, spying The Cheviot hills in the distance which I would be hiking up in a few hours.</p>
<p>Didn’t have masses of time to explore Kelso but grabbed a baguette and had a pint around the town square and purchased a bottle of <a href="https://www.traquair.co.uk/product/traquair-jacobite-ale/" target="_blank">Traquair Jacobite Ale (8% ABV)</a> to drink before bed (with limited weight I wanted something strong!).</p>
<p>Another bus journey and I arrived in Kirk Yetholm. I’d clocked someone who looked like they were hiking and as we got of asked where he was heading. He said he was supposed to have been doing an Ultrar-marathon through the area but had injured himself a few days before the start so was taking active recovery by walking and bussing his way along the route. He kindly offered to snap a picture of me next to the Pennine Way map on the bus-stop, bid me farewell and headed off whilst I went for another pint in <a href="https://www.borderhotel.co.uk/" target="_blank">The Border</a>, the pub that marks the “end” (or start) of the Pennine Way.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957365903_dbc8889de8_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53957365903/in/datetaken/" target="_blank">The Border Inn | Flickr</a></figcaption>
</figure>
</div>
<p>Had a nice chat with a local who had lived in Sheffield in the past and was joined by what seemed the proprietor of the pub who said me I should sign the log-book behind the bar even though I was leaving. I duly did so to log the start date somewhere and considered purchasing a t-shirt but a) it was in the wrong direction and b) I hadn’t even started, let alone finished hiking at that point. One of them kindly offered to snap a picture of me in front of the pub’s display of the end of The Way.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53922320792_0dbf0ca511_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53922320792/in/datetaken/" target="_blank">Beer at The Border | Having a pint at The Border Inn in Kirk Yetholm | Flickr</a></figcaption>
</figure>
</div>
</section>
<section id="day-1---2024-08-14-kirk-yetholm-to-clennell-street" class="level3">
<h3 class="anchored" data-anchor-id="day-1---2024-08-14-kirk-yetholm-to-clennell-street">Day 1 - 2024-08-14 Kirk Yetholm to Clennell Street</h3>
<p>Beer drunk I said farewell, shouldered my pack and started the GPS tracker, setting off up the lane in the heat of the afternoon. Not ideal conditions for hiking but I had a schedule to follow.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957116986_2f287b5fb9_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53957116986/in/datetaken/" target="_blank">Above Kirk Yetholm</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957365433_2875252fee_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53957365433/in/datetaken/" target="_blank">Follow The Path</a></figcaption>
</figure>
</div>
<p>There are two options to this section of The Way, a high option going over various hills and low option for when weather is foul. I didn’t have that excuse and had been planning on stopping for the night at the <a href="https://northumberlandcottage.holiday/auchope-refuge-hut/" target="_blank">Auchope Refuge Hut</a> which was on the high route so up the hills I went. These undulated but the path was good and I made good time arriving at the hut in around three hours.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957116901_b04800cb4f_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qd1k1Z" target="_blank">College Burn</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957365283_8955e170d8_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53957365283/in/datetaken/" target="_blank">Auchope Refuge</a></figcaption>
</figure>
</div>
<p>With a few more hours of daylight left I decided to push on and find somewhere else to wild camp as my legs weren’t tired and I had plenty of time, even though this involved a steep climb from Auchope Rigg up most of Cairn Hill. I decided in doing so not to do the dog-leg extension of The Way across the flat-ish moor to the summit of The Cheviot, the hill after which the area is named as it added an extra 4km to the journey and would have taken about an hour and I was now on the lookout for somewhere to stop.</p>
<p>Heading downhill there weren’t many options forthcoming, lots of heather with a path through it but as things levelled out I came to a cross-roads with a path marked Clennell Street with a sign indicating that motor vehicles were not allowed between 1st April and 1st May. Quite how anything but motorbikes could get up there I’ve no idea, but there was a flat patch of grass so I donned a long-sleeve top to keep the midges away and setup the tent and bed for the night. That done I had my dinner of some ciabatta and pate along with the bottle of Traquair Jacobite I’d carried along and as the sunset I snuggled down for the first night under canvas feeling pleased to have gone a little further than planned and had no problems hiking up the hills with the weight of my pack.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53923626465_6a76fe5f8a_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53923626465/in/datetaken/" target="_blank">Clennell Street | Flickr</a></figcaption>
</figure>
</div>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-2-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-1" aria-controls="tabset-2-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-2-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-2" aria-controls="tabset-2-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-2-1" class="tab-pane active" aria-labelledby="tabset-2-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-14"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-47334709bb403aa50481" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-47334709bb403aa50481">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.275047,-2.275328,-2.275209,-2.275068,-2.274925,-2.27479,-2.274672,-2.274544,-2.274471,-2.27439,-2.274282,-2.274165,-2.274073,-2.27401,-2.273998,-2.273978,-2.273971,-2.273942,-2.273883,-2.273795,-2.273686,-2.27357,-2.273445,-2.273291,-2.273277,-2.273141,-2.272971,-2.272816,-2.272652,-2.272476,-2.272325,-2.272163,-2.272002,-2.271837,-2.271683,-2.271513,-2.271342,-2.271182,-2.271001,-2.270825,-2.270669,-2.270491,-2.270335,-2.270165,-2.270032,-2.269872,-2.269732,-2.269571,-2.269417,-2.269237,-2.269072,-2.268893,-2.268722,-2.268581,-2.268422,-2.268258,-2.268086,-2.267921,-2.267753,-2.267598,-2.267438,-2.267269,-2.267094,-2.266917,-2.266746,-2.266594,-2.26645,-2.266301,-2.26615,-2.265992,-2.265838,-2.265677,-2.265523,-2.26536,-2.265199,-2.265025,-2.264862,-2.264703,-2.264541,-2.264371,-2.264194,-2.264038,-2.263866,-2.263695,-2.263523,-2.26335,-2.263199,-2.263049,-2.262906,-2.262759,-2.262617,-2.262478,-2.262326,-2.262176,-2.262034,-2.261877,-2.261718,-2.261572,-2.261432,-2.261296,-2.261128,-2.260955,-2.260782,-2.260606,-2.260446,-2.260284,-2.26011,-2.259946,-2.259784,-2.259608,-2.25945,-2.259283,-2.259117,-2.258958,-2.258808,-2.258675,-2.258543,-2.258405,-2.258255,-2.258112,-2.257965,-2.257826,-2.257694,-2.257559,-2.257412,-2.257271,-2.257135,-2.257,-2.256868,-2.256733,-2.256583,-2.256434,-2.256275,-2.256114,-2.255976,-2.255838,-2.255741,-2.255754,-2.255597,-2.255421,-2.255256,-2.255078,-2.254918,-2.25477,-2.254676,-2.254538,-2.254513,-2.254434,-2.254319,-2.254146,-2.253994,-2.253993,-2.253825,-2.253656,-2.25349,-2.25333,-2.253169,-2.253004,-2.252845,-2.252683,-2.252524,-2.252371,-2.252198,-2.252036,-2.251881,-2.251771,-2.251658,-2.251537,-2.251542,-2.251396,-2.251263,-2.251156,-2.251059,-2.250963,-2.250846,-2.250716,-2.250597,-2.250462,-2.250356,-2.250225,-2.250097,-2.249961,-2.249836,-2.2497,-2.249575,-2.249446,-2.249307,-2.249166,-2.249033,-2.248905,-2.248753,-2.248611,-2.248456,-2.24832,-2.24818,-2.248035,-2.247889,-2.247756,-2.247619,-2.247472,-2.247321,-2.247166,-2.247009,-2.246844,-2.246683,-2.246525,-2.246355,-2.246196,-2.24603,-2.245861,-2.245694,-2.245528,-2.245353,-2.245177,-2.245016,-2.244862,-2.244691,-2.244521,-2.24436,-2.244209,-2.244041,-2.243881,-2.243713,-2.243542,-2.24338,-2.24322,-2.243056,-2.242882,-2.242714,-2.242543,-2.242384,-2.242226,-2.24206,-2.241893,-2.241734,-2.241569,-2.241407,-2.241247,-2.241083,-2.240922,-2.240757,-2.240614,-2.2405,-2.240393,-2.240284,-2.240196,-2.240105,-2.240005,-2.239911,-2.239824,-2.239748,-2.23967,-2.239598,-2.239547,-2.239496,-2.239441,-2.239384,-2.239317,-2.239222,-2.239094,-2.238964,-2.238831,-2.238685,-2.238536,-2.238383,-2.238231,-2.23807,-2.237909,-2.237751,-2.237607,-2.23746,-2.237338,-2.237229,-2.237166,-2.237096,-2.237006,-2.236886,-2.236751,-2.236601,-2.236444,-2.236306,-2.23617,-2.236039,-2.235914,-2.2358,-2.235685,-2.235618,-2.235506,-2.235383,-2.235267,-2.235139,-2.235041,-2.234947,-2.234842,-2.234711,-2.234605,-2.23451,-2.234438,-2.234339,-2.234228,-2.234134,-2.234015,-2.23389,-2.233777,-2.23371,-2.233686,-2.233687,-2.233704,-2.233703,-2.233706,-2.233689,-2.233652,-2.233611,-2.233584,-2.233557,-2.233536,-2.233486,-2.23346,-2.233434,-2.233423,-2.233412,-2.233439,-2.233452,-2.233451,-2.233444,-2.233445,-2.233422,-2.233435,-2.233397,-2.233499,-2.233624,-2.233707,-2.233697,-2.233689,-2.233638,-2.233637,-2.233615,-2.23359,-2.233594,-2.233609,-2.23358,-2.233616,-2.233625,-2.233579,-2.233544,-2.233551,-2.233528,-2.233517,-2.23352,-2.233497,-2.233395,-2.233394,-2.233407,-2.233374,-2.233355,-2.233364,-2.233352,-2.233371,-2.233359,-2.233336,-2.233335,-2.233316,-2.233332,-2.233318,-2.233298,-2.233276,-2.233304,-2.233298,-2.233271,-2.233272,-2.233228,-2.233183,-2.233124,-2.233005,-2.232845,-2.232681,-2.232527,-2.232382,-2.232226,-2.232074,-2.231923,-2.23177,-2.231621,-2.231462,-2.231313,-2.231148,-2.231001,-2.23085,-2.230696,-2.230531,-2.23037,-2.230209,-2.230058,-2.22991,-2.229755,-2.229605,-2.229455,-2.229298,-2.229151,-2.229003,-2.228843,-2.228686,-2.228544,-2.228387,-2.228237,-2.228086,-2.227923,-2.22777,-2.227613,-2.227511,-2.227487,-2.227462,-2.227423,-2.227352,-2.227292,-2.227228,-2.227172,-2.227115,-2.227063,-2.227004,-2.226946,-2.226891,-2.226842,-2.22679,-2.22673,-2.226664,-2.226597,-2.22653,-2.226477,-2.2264,-2.226367,-2.226333,-2.226303,-2.226248,-2.226202,-2.226175,-2.226124,-2.22609,-2.226035,-2.22597,-2.225919,-2.225877,-2.225842,-2.225781,-2.22575,-2.225694,-2.225655,-2.225618,-2.225573,-2.225528,-2.225479,-2.225443,-2.225375,-2.225332,-2.225293,-2.225307,-2.225201,-2.22514,-2.225091,-2.225042,-2.224978,-2.224911,-2.224855,-2.224798,-2.224741,-2.224681,-2.224616,-2.224555,-2.224496,-2.224433,-2.224366,-2.224363,-2.224395,-2.224466,-2.224535,-2.224594,-2.224625,-2.224698,-2.224761,-2.224813,-2.224868,-2.224922,-2.224955,-2.224996,-2.225027,-2.225057,-2.225092,-2.225142,-2.225174,-2.22523,-2.225312,-2.225392,-2.225471,-2.225552,-2.225651,-2.225741,-2.225836,-2.225909,-2.225979,-2.226049,-2.226105,-2.226161,-2.226223,-2.226276,-2.226333,-2.226393,-2.226438,-2.226478,-2.226536,-2.226577,-2.226617,-2.226617,-2.226659,-2.226695,-2.226693,-2.226699,-2.226726,-2.226742,-2.226751,-2.226765,-2.226784,-2.226794,-2.226806,-2.226809,-2.226803,-2.226798,-2.22681,-2.22683,-2.226839,-2.22685,-2.226887,-2.226912,-2.226945,-2.226978,-2.22702,-2.22706,-2.227095,-2.227132,-2.227171,-2.227203,-2.227249,-2.227288,-2.227323,-2.227357,-2.227392,-2.22743,-2.227471,-2.227512,-2.22754,-2.227578,-2.227618,-2.22763,-2.227632,-2.227627,-2.227648,-2.227663,-2.227694,-2.227703,-2.227718,-2.227726,-2.227755,-2.227766,-2.227709,-2.227667,-2.227612,-2.227553,-2.227545,-2.227567,-2.227628,-2.22771,-2.227765,-2.227844,-2.227894,-2.227948,-2.228002,-2.228041,-2.228089,-2.228138,-2.228205,-2.228222,-2.228269,-2.228278,-2.228292,-2.228306,-2.228303,-2.228297,-2.228322,-2.228327,-2.228336,-2.228357,-2.228375,-2.228399,-2.228432,-2.228476,-2.228506,-2.228533,-2.22857,-2.228594,-2.228626,-2.228665,-2.228695,-2.228706,-2.228734,-2.228752,-2.228784,-2.228789,-2.228807,-2.228847,-2.228872,-2.22889,-2.228904,-2.228922,-2.228934,-2.228952,-2.228959,-2.228907,-2.22887,-2.228818,-2.228764,-2.228719,-2.228658,-2.228599,-2.228547,-2.228527,-2.228467,-2.228423,-2.228377,-2.22832,-2.228267,-2.228234,-2.228192,-2.228133,-2.228089,-2.228035,-2.22798,-2.227884,-2.227789,-2.227672,-2.22758,-2.227485,-2.227365,-2.227257,-2.227141,-2.22705,-2.226962,-2.226831,-2.226695,-2.226584,-2.226488,-2.226379,-2.22637,-2.226299,-2.226233,-2.226145,-2.226037,-2.225934,-2.225838,-2.225713,-2.225602,-2.225475,-2.225378,-2.2253,-2.225223,-2.225147,-2.225026,-2.224944,-2.224822,-2.224698,-2.224593,-2.224479,-2.224372,-2.224249,-2.224155,-2.224115,-2.223993,-2.223861,-2.223737,-2.223611,-2.223507,-2.22339,-2.223262,-2.223126,-2.222995,-2.222872,-2.222761,-2.222643,-2.222524,-2.222374,-2.222211,-2.222076,-2.221946,-2.221805,-2.221681,-2.221561,-2.221429,-2.221264,-2.221123,-2.220959,-2.220792,-2.220638,-2.220474,-2.220315,-2.220157,-2.220007,-2.219857,-2.219715,-2.219559,-2.219406,-2.219243,-2.219071,-2.218904,-2.218726,-2.218556,-2.218383,-2.218212,-2.218052,-2.217885,-2.217731,-2.217561,-2.217427,-2.217288,-2.217197,-2.217098,-2.217014,-2.216925,-2.216851,-2.216769,-2.2167,-2.216605,-2.216493,-2.216378,-2.216286,-2.216204,-2.216109,-2.216,-2.215888,-2.215779,-2.215655,-2.215589,-2.215484,-2.215379,-2.215267,-2.215163,-2.215058,-2.214972,-2.214863,-2.214785,-2.214685,-2.214566,-2.214455,-2.214346,-2.214234,-2.214106,-2.213989,-2.213876,-2.213769,-2.213649,-2.213529,-2.213422,-2.21331,-2.213197,-2.213062,-2.212927,-2.212797,-2.212736,-2.212617,-2.212488,-2.212381,-2.212284,-2.212167,-2.212046,-2.211929,-2.211817,-2.211711,-2.211621,-2.21151,-2.211409,-2.211385,-2.211308,-2.211219,-2.211123,-2.211042,-2.210977,-2.21096,-2.210906,-2.210805,-2.210735,-2.210632,-2.210544,-2.210543,-2.210502,-2.210367,-2.210255,-2.210251,-2.210196,-2.210163,-2.210155,-2.210144,-2.210126,-2.210055,-2.209958,-2.209928,-2.209815,-2.209779,-2.209749,-2.209755,-2.209697,-2.20969,-2.209663,-2.209586,-2.209522,-2.209443,-2.20941,-2.209379,-2.20936,-2.209296,-2.209267,-2.209211,-2.209157,-2.209044,-2.208936,-2.208843,-2.208786,-2.2087,-2.208611,-2.208545,-2.208441,-2.208339,-2.208243,-2.208141,-2.208019,-2.207936,-2.207844,-2.207774,-2.207712,-2.207629,-2.20769,-2.207698,-2.207719,-2.207795,-2.207795,-2.207752,-2.207725,-2.207649,-2.207567,-2.207469,-2.207346,-2.207233,-2.207194,-2.20716,-2.207049,-2.207005,-2.206901,-2.206776,-2.20665,-2.206596,-2.20652,-2.206421,-2.206314,-2.206244,-2.206177,-2.206098,-2.205999,-2.205899,-2.205818,-2.205745,-2.205658,-2.205571,-2.205493,-2.205417,-2.205354,-2.205277,-2.205186,-2.205138,-2.205039,-2.204948,-2.20488,-2.204776,-2.20468,-2.204596,-2.204513,-2.20444,-2.204353,-2.204263,-2.204185,-2.204115,-2.204038,-2.203972,-2.203977,-2.204107,-2.203978,-2.20392,-2.203795,-2.203719,-2.203643,-2.203584,-2.203502,-2.203406,-2.203305,-2.20325,-2.203139,-2.203077,-2.202996,-2.202929,-2.202831,-2.20282,-2.202778,-2.202755,-2.202654,-2.202549,-2.202493,-2.202434,-2.202343,-2.202278,-2.202208,-2.202228,-2.202279,-2.202314,-2.202335,-2.202429,-2.202444,-2.202498,-2.202607,-2.202687,-2.202773,-2.202863,-2.202888,-2.202963,-2.203028,-2.203063,-2.203135,-2.203241,-2.203335,-2.203364,-2.203424,-2.203489,-2.203565,-2.203652,-2.203686,-2.203773,-2.203869,-2.203907,-2.203998,-2.204041,-2.204096,-2.204144,-2.204212,-2.204255,-2.204338,-2.204375,-2.204436,-2.204465,-2.204519,-2.204556,-2.20459,-2.204548,-2.20466,-2.204758,-2.204811,-2.204883,-2.204919,-2.204942,-2.205031,-2.205042,-2.205048,-2.20515,-2.205256,-2.205314,-2.205359,-2.205416,-2.205445,-2.205486,-2.205549,-2.205594,-2.205659,-2.205661,-2.205712,-2.20576,-2.205807,-2.20588,-2.205947,-2.206,-2.206065,-2.206118,-2.20616,-2.206201,-2.206193,-2.206216,-2.206181,-2.206153,-2.206134,-2.206131,-2.206037,-2.205971,-2.205966,-2.205962,-2.205912,-2.205876,-2.205803,-2.205697,-2.205597,-2.205506,-2.205461,-2.205436,-2.205384,-2.205332,-2.205264,-2.205197,-2.205089,-2.204984,-2.204854,-2.204696,-2.204599,-2.204523,-2.204451,-2.204355,-2.20423,-2.204166,-2.204094,-2.203999,-2.203892,-2.203757,-2.203649,-2.203589,-2.20363,-2.203581,-2.203477,-2.203369,-2.203266,-2.203137,-2.203019,-2.202986,-2.202935,-2.202867,-2.202805,-2.202737,-2.202667,-2.202597,-2.202522,-2.202446,-2.202455,-2.202396,-2.202273,-2.202194,-2.202105,-2.202089,-2.202049,-2.201987,-2.201955,-2.201961,-2.201852,-2.201776,-2.201679,-2.201557,-2.201503,-2.201393,-2.201298,-2.201204,-2.20111,-2.201034,-2.200909,-2.200813,-2.20073,-2.200666,-2.20058,-2.200423,-2.200258,-2.200086,-2.199916,-2.199753,-2.199589,-2.199422,-2.199278,-2.199112,-2.198962,-2.198796,-2.198629,-2.198458,-2.198308,-2.198142,-2.197972,-2.197795,-2.197624,-2.197458,-2.197298,-2.197124,-2.196946,-2.196798,-2.196625,-2.196453,-2.196293,-2.196125,-2.195962,-2.195996,-2.195834,-2.19567,-2.195497,-2.195354,-2.195272,-2.195103,-2.194942,-2.194776,-2.194626,-2.194484,-2.194316,-2.194141,-2.193986,-2.193838,-2.193668,-2.193504,-2.193352,-2.193194,-2.193018,-2.192871,-2.192707,-2.192548,-2.192392,-2.192229,-2.192085,-2.191941,-2.191783,-2.191622,-2.191501,-2.191377,-2.191244,-2.191083,-2.190915,-2.190786,-2.190637,-2.190498,-2.190336,-2.190172,-2.190033,-2.189866,-2.189707,-2.189549,-2.189391,-2.189235,-2.189159,-2.189009,-2.188841,-2.188684,-2.18855,-2.188386,-2.188223,-2.188065,-2.187898,-2.18774,-2.187568,-2.187401,-2.187245,-2.187091,-2.186922,-2.186774,-2.186612,-2.186464,-2.186306,-2.186147,-2.186003,-2.185838,-2.185698,-2.185539,-2.185373,-2.185216,-2.185085,-2.184931,-2.184805,-2.184643,-2.184543,-2.184396,-2.184246,-2.184087,-2.183976,-2.18382,-2.183761,-2.183603,-2.183436,-2.183342,-2.183184,-2.18302,-2.182905,-2.18279,-2.182838,-2.182833,-2.182744,-2.182643,-2.182556,-2.182431,-2.182319,-2.182194,-2.182133,-2.181982,-2.181921,-2.181784,-2.18164,-2.18148,-2.181378,-2.181222,-2.181111,-2.180953,-2.180812,-2.180653,-2.180527,-2.180369,-2.180259,-2.180119,-2.179975,-2.179857,-2.179693,-2.179539,-2.17938,-2.179236,-2.17907,-2.178915,-2.178758,-2.178602,-2.178469,-2.178313,-2.178215,-2.17806,-2.177931,-2.177769,-2.177611,-2.17745,-2.17729,-2.177134,-2.177015,-2.176883,-2.176718,-2.176628,-2.176499,-2.176336,-2.176184,-2.176022,-2.175878,-2.175714,-2.175611,-2.175455,-2.175345,-2.175183,-2.175018,-2.174859,-2.174694,-2.17453,-2.174403,-2.174241,-2.174163,-2.174026,-2.173923,-2.173833,-2.173728,-2.173589,-2.173471,-2.173342,-2.173236,-2.17313,-2.173015,-2.172901,-2.172794,-2.172696,-2.172576,-2.172445,-2.172314,-2.172189,-2.172085,-2.171993,-2.171885,-2.171753,-2.171631,-2.171512,-2.171357,-2.171196,-2.171045,-2.170916,-2.170785,-2.17067,-2.170553,-2.170423,-2.170289,-2.170152,-2.170009,-2.169918,-2.169886,-2.169835,-2.169748,-2.169646,-2.169521,-2.169362,-2.169215,-2.169046,-2.168957,-2.16882,-2.168669,-2.168555,-2.168443,-2.168317,-2.168235,-2.168133,-2.168008,-2.167866,-2.167749,-2.167636,-2.167519,-2.167424,-2.167328,-2.16722,-2.167129,-2.167059,-2.166952,-2.166825,-2.166659,-2.166579,-2.166485,-2.166351,-2.166251,-2.166379,-2.166533,-2.166696,-2.166854,-2.166989,-2.167139,-2.167307,-2.167459,-2.167606,-2.167737,-2.167875,-2.168015,-2.168159,-2.168313,-2.168465,-2.168635,-2.168773,-2.168907,-2.169036,-2.169192,-2.169338,-2.169479,-2.169614,-2.169763,-2.169899,-2.170055,-2.170203,-2.170349,-2.170511,-2.170661,-2.17074,-2.170904,-2.171075,-2.171233,-2.171392,-2.171556,-2.171726,-2.171893,-2.172058,-2.172227,-2.172398,-2.172574,-2.172739,-2.172855,-2.173023,-2.173169,-2.173336,-2.173495,-2.173669,-2.173832,-2.174009,-2.174165,-2.17434,-2.174504,-2.174656,-2.17482,-2.174977,-2.175146,-2.175297,-2.17544,-2.175436,-2.175601,-2.175766,-2.175919,-2.176085,-2.176254,-2.17641,-2.176574,-2.176729,-2.176881,-2.177037,-2.177176,-2.177327,-2.177477,-2.177646,-2.177781,-2.177949,-2.178113,-2.178143,-2.17822,-2.178394,-2.178542,-2.178702,-2.178865,-2.17902,-2.179157,-2.179301,-2.179459,-2.179481,-2.17965,-2.179802,-2.179963,-2.180115,-2.180279,-2.180429,-2.180566,-2.180715,-2.18084,-2.180988,-2.181155,-2.1813,-2.181473,-2.181602,-2.181748,-2.181897,-2.182056,-2.182202,-2.182346,-2.182493,-2.182648,-2.182806,-2.182923,-2.18302,-2.183159,-2.183327,-2.183485,-2.183631,-2.183767,-2.183872,-2.184032,-2.184106,-2.184205,-2.184334,-2.184433,-2.184529,-2.184661,-2.184811,-2.184963,-2.185096,-2.185159,-2.185278,-2.185393,-2.185429,-2.185462,-2.185538,-2.185674,-2.185797,-2.185955,-2.18609,-2.186172,-2.186227,-2.186334,-2.186451,-2.186553,-2.186638,-2.186691,-2.186757,-2.18683,-2.186922,-2.18703,-2.187109,-2.187193,-2.187308,-2.187417,-2.18753,-2.1876,-2.187659,-2.187689,-2.187764,-2.187805,-2.187823,-2.187816,-2.187838,-2.187895,-2.18793,-2.187933,-2.187948,-2.187947,-2.188007,-2.188068,-2.188084,-2.188091,-2.188129,-2.188133,-2.188197,-2.188222,-2.188175,-2.188194,-2.188196,-2.188208,-2.188235,-2.188263,-2.188267,-2.188277,-2.188309,-2.188347,-2.188389,-2.188414,-2.188454,-2.188488,-2.18853,-2.188543,-2.188582,-2.188609,-2.188628,-2.188669,-2.188704,-2.188734,-2.188762,-2.188777,-2.18881,-2.18885,-2.188856,-2.188897,-2.188918,-2.188953,-2.188969,-2.188952,-2.188984,-2.189005,-2.189032,-2.18906,-2.189094,-2.189142,-2.189171,-2.189199,-2.189221,-2.189218,-2.189194,-2.189234,-2.189258,-2.189281,-2.189327,-2.189371,-2.189412,-2.189458,-2.189503,-2.189546,-2.189573,-2.189666,-2.189794,-2.18988,-2.18998,-2.189985,-2.190096,-2.190191,-2.190251,-2.19034,-2.190425,-2.190526,-2.19061,-2.190669,-2.19076,-2.190855,-2.190955,-2.191042,-2.191101,-2.191201,-2.191319,-2.191424,-2.191559,-2.191689,-2.191753,-2.191815,-2.191893,-2.191993,-2.192071,-2.192107,-2.19217,-2.192238,-2.192288,-2.19233,-2.19237,-2.192406,-2.192445,-2.192489,-2.192515,-2.192538,-2.192583,-2.192617,-2.19265,-2.192695,-2.192727,-2.19276,-2.192761,-2.19278,-2.192819,-2.192817,-2.192798,-2.192803,-2.19282,-2.192825,-2.192902,-2.19293,-2.192935,-2.192951,-2.192942,-2.192929,-2.192913,-2.192915,-2.192904,-2.192894,-2.192879,-2.192876,-2.192886,-2.192878,-2.192862,-2.192879,-2.192908,-2.192931,-2.192952,-2.192991,-2.193024,-2.193042,-2.193082,-2.19312,-2.193152,-2.193195,-2.193224,-2.193277,-2.193328,-2.193368,-2.193404,-2.19344,-2.19347,-2.193519,-2.193558,-2.193566,-2.193608,-2.193678,-2.19371,-2.193708,-2.193761,-2.193832,-2.193887,-2.19389,-2.193932,-2.193963,-2.19403,-2.194071,-2.194082,-2.194062,-2.1942,-2.194266,-2.194327,-2.194418,-2.194475,-2.194565,-2.194636,-2.194749,-2.194851,-2.194963,-2.195082,-2.195199,-2.195306,-2.195431,-2.19554,-2.195644,-2.195743,-2.195866,-2.195964,-2.196079,-2.196182,-2.196299,-2.196402,-2.196523,-2.196619,-2.196703,-2.196818,-2.196904,-2.196977,-2.197071,-2.197162,-2.197258,-2.197348,-2.197436,-2.19754,-2.197638,-2.197744,-2.197857,-2.197946,-2.198068,-2.198194,-2.198331,-2.198451,-2.198566,-2.198682,-2.198747,-2.198868,-2.19899,-2.199114,-2.199218,-2.199341,-2.19945,-2.199567,-2.199679,-2.199768,-2.19989,-2.200026,-2.200175,-2.200308,-2.200465,-2.20063,-2.20077,-2.20092,-2.201051,-2.201201,-2.201317,-2.201466,-2.201614,-2.201739,-2.201822,-2.201874,-2.201928,-2.201992,-2.202047,-2.202146,-2.202199,-2.202265,-2.202314,-2.20239,-2.202432,-2.202513,-2.202626,-2.202721,-2.202812,-2.202907,-2.202997,-2.20309,-2.203185,-2.203277,-2.203354,-2.203442,-2.203537,-2.20362,-2.203723,-2.203799,-2.203934,-2.204086,-2.20425,-2.204392,-2.204531,-2.204681,-2.204837,-2.204877,-2.204892],"lat":[55.546998,55.547146,55.547076,55.547027,55.546977,55.546912,55.546841,55.546775,55.546694,55.546606,55.546524,55.546458,55.546371,55.546278,55.546178,55.546079,55.545986,55.545892,55.545806,55.54572,55.545651,55.545589,55.545533,55.545497,55.545499,55.54544,55.545411,55.545376,55.54535,55.545331,55.545301,55.545285,55.545266,55.545229,55.545202,55.545189,55.545156,55.545147,55.545143,55.545169,55.545201,55.545203,55.545229,55.545266,55.545318,55.545353,55.54541,55.545432,55.545458,55.545448,55.54545,55.545444,55.545416,55.545372,55.545347,55.545308,55.545274,55.545242,55.54521,55.545178,55.545149,55.545136,55.545122,55.545102,55.545066,55.545026,55.544979,55.544942,55.544895,55.544852,55.544804,55.544772,55.544751,55.544721,55.544698,55.544689,55.544715,55.5447,55.544695,55.544701,55.544709,55.544735,55.544763,55.54477,55.544778,55.544767,55.544717,55.544662,55.544615,55.544563,55.54451,55.544463,55.544415,55.544362,55.544308,55.544266,55.544217,55.544174,55.544127,55.544068,55.544031,55.544,55.543987,55.543961,55.543937,55.543917,55.543895,55.543867,55.543851,55.543828,55.543806,55.543776,55.543734,55.543691,55.543636,55.543584,55.54353,55.543471,55.543416,55.543366,55.543308,55.543249,55.543196,55.543145,55.543085,55.54303,55.542972,55.542921,55.542865,55.542801,55.542744,55.542689,55.542645,55.542603,55.542553,55.542504,55.542423,55.54236,55.542397,55.5424,55.542401,55.542406,55.542419,55.542472,55.542546,55.542599,55.542608,55.54252,55.54259,55.542592,55.54263,55.542665,55.542651,55.542647,55.542657,55.54264,55.542623,55.542605,55.542608,55.542575,55.542559,55.54253,55.542524,55.542517,55.542475,55.542408,55.542336,55.542277,55.542274,55.54223,55.542166,55.54209,55.542006,55.541921,55.54185,55.541785,55.541712,55.541648,55.54158,55.541513,55.541445,55.541395,55.541331,55.541269,55.541201,55.541147,55.541096,55.541035,55.540973,55.540907,55.54088,55.540853,55.540812,55.540758,55.540713,55.540672,55.54062,55.540557,55.540505,55.540468,55.540423,55.540387,55.540368,55.540348,55.540326,55.540297,55.540283,55.540278,55.54029,55.540307,55.540314,55.540306,55.540309,55.54032,55.540325,55.540294,55.540287,55.540275,55.540251,55.540224,55.540191,55.540162,55.540163,55.540153,55.540145,55.540119,55.540102,55.540098,55.540096,55.540077,55.540058,55.540018,55.539996,55.53999,55.539979,55.539989,55.54001,55.54,55.539992,55.53996,55.539938,55.539888,55.539824,55.539752,55.539678,55.539596,55.539518,55.539441,55.539367,55.539286,55.539207,55.539117,55.539027,55.538939,55.538844,55.538759,55.538673,55.538592,55.538518,55.538448,55.538381,55.538322,55.538271,55.53822,55.53819,55.538164,55.538138,55.538118,55.538085,55.538033,55.537982,55.53792,55.53784,55.537747,55.537661,55.53758,55.53752,55.537461,55.537427,55.537395,55.537346,55.537284,55.537233,55.537171,55.537098,55.537025,55.536942,55.536873,55.536799,55.536728,55.53667,55.536588,55.536506,55.536436,55.536367,55.536291,55.536208,55.536125,55.536041,55.53597,55.535895,55.535827,55.535759,55.535696,55.535614,55.535582,55.53549,55.535391,55.535294,55.535194,55.535104,55.535007,55.53492,55.534825,55.534734,55.53464,55.534548,55.534453,55.534356,55.534265,55.534172,55.534083,55.533992,55.533897,55.533801,55.53371,55.53362,55.533528,55.533431,55.533356,55.533293,55.533214,55.533119,55.533021,55.53293,55.532837,55.532738,55.532649,55.532556,55.532458,55.532366,55.53227,55.532178,55.532086,55.531998,55.531906,55.531813,55.53172,55.53163,55.531532,55.531452,55.531357,55.531264,55.531174,55.531083,55.530988,55.530896,55.530808,55.530711,55.53062,55.530527,55.530433,55.53034,55.530246,55.530178,55.530086,55.530026,55.529934,55.529897,55.529804,55.529732,55.529642,55.529617,55.529547,55.529521,55.529494,55.529454,55.529417,55.529395,55.529353,55.529326,55.5293,55.529268,55.529234,55.529202,55.529186,55.529147,55.529105,55.529064,55.529053,55.529016,55.528986,55.528953,55.52892,55.528886,55.528852,55.528822,55.528797,55.528746,55.528705,55.528685,55.528657,55.528612,55.528582,55.528551,55.528522,55.52849,55.528454,55.528413,55.528344,55.528316,55.528223,55.528124,55.528038,55.527952,55.527862,55.527772,55.527685,55.527594,55.527496,55.527405,55.527313,55.52722,55.527135,55.527043,55.526955,55.526857,55.526772,55.526675,55.526595,55.526497,55.526402,55.526308,55.526222,55.526135,55.526043,55.525957,55.525869,55.525772,55.52569,55.525595,55.525508,55.525413,55.525327,55.525227,55.525133,55.525045,55.524952,55.524863,55.524773,55.524681,55.524585,55.524491,55.524399,55.524308,55.524212,55.524135,55.524051,55.52396,55.523867,55.52378,55.523698,55.523611,55.523523,55.523432,55.523349,55.523266,55.523174,55.523084,55.523001,55.522915,55.522823,55.522732,55.522642,55.52256,55.522472,55.522382,55.522298,55.522214,55.522124,55.522035,55.52195,55.521851,55.521763,55.521672,55.521577,55.521488,55.521402,55.521305,55.521209,55.52112,55.521038,55.520951,55.520872,55.520795,55.520716,55.520633,55.520548,55.520458,55.520372,55.520283,55.520197,55.520104,55.520018,55.519931,55.519846,55.519753,55.519666,55.51957,55.519474,55.519386,55.519293,55.519199,55.5191,55.519005,55.518907,55.518807,55.518714,55.518623,55.518523,55.518431,55.518335,55.518239,55.518144,55.518047,55.517955,55.517862,55.517768,55.517674,55.517573,55.517477,55.517382,55.517287,55.517197,55.517102,55.517009,55.516913,55.516816,55.516718,55.516628,55.516533,55.516436,55.516346,55.516254,55.51616,55.516071,55.515982,55.515885,55.515789,55.515698,55.515607,55.515514,55.515423,55.515332,55.515238,55.515145,55.515054,55.514963,55.514869,55.514774,55.514685,55.514587,55.514496,55.514408,55.514316,55.514221,55.51413,55.514034,55.513941,55.513906,55.513812,55.513724,55.513635,55.513539,55.513448,55.513358,55.513266,55.513179,55.513092,55.513019,55.512924,55.512828,55.51273,55.51264,55.512564,55.51247,55.512376,55.512285,55.512189,55.512099,55.512006,55.511908,55.511811,55.511719,55.511631,55.511541,55.51145,55.511353,55.511257,55.51117,55.511076,55.510982,55.510887,55.51079,55.5107,55.510608,55.510518,55.510426,55.510332,55.510233,55.510137,55.510047,55.509955,55.509862,55.509826,55.509739,55.509644,55.509555,55.509468,55.509374,55.509281,55.509197,55.509108,55.509017,55.508923,55.508834,55.508741,55.508653,55.508559,55.50847,55.508376,55.508289,55.5082,55.508108,55.508018,55.507938,55.507864,55.507792,55.507713,55.507637,55.507561,55.507488,55.507416,55.507336,55.507252,55.507187,55.507136,55.507065,55.507041,55.506973,55.506937,55.506847,55.506756,55.506666,55.506587,55.506504,55.506428,55.506357,55.506281,55.506214,55.506137,55.50605,55.505962,55.50587,55.505795,55.505718,55.50566,55.505586,55.505512,55.505436,55.505362,55.505288,55.505215,55.505126,55.505059,55.504998,55.504934,55.504876,55.504799,55.504736,55.504671,55.504608,55.504552,55.504491,55.504427,55.504357,55.504298,55.504247,55.504206,55.504155,55.504101,55.504048,55.503988,55.503925,55.503865,55.503835,55.503794,55.503756,55.503724,55.503697,55.503687,55.503673,55.503649,55.503613,55.503572,55.50353,55.5035,55.503474,55.503452,55.503433,55.503433,55.503431,55.503413,55.503395,55.503374,55.503357,55.503345,55.503314,55.50329,55.503287,55.503233,55.503153,55.503077,55.502996,55.502907,55.502826,55.502741,55.502651,55.502565,55.50249,55.502418,55.502339,55.502259,55.502186,55.502111,55.50204,55.501963,55.501902,55.501812,55.501737,55.501665,55.501621,55.501552,55.501478,55.501389,55.501317,55.501233,55.501157,55.501093,55.501013,55.500938,55.500864,55.5008,55.500728,55.500654,55.500576,55.500501,55.500432,55.500364,55.500299,55.500223,55.500166,55.500107,55.500035,55.499946,55.499885,55.499832,55.499753,55.499679,55.499615,55.499554,55.499491,55.499421,55.499353,55.49927,55.499199,55.499118,55.499026,55.498943,55.498858,55.498783,55.498697,55.498615,55.498545,55.498459,55.498388,55.498302,55.498227,55.498149,55.498055,55.497962,55.497903,55.497838,55.497766,55.49768,55.497607,55.497516,55.497459,55.497367,55.497308,55.497232,55.497173,55.497101,55.497038,55.496945,55.496866,55.496781,55.496688,55.496615,55.496536,55.49648,55.496398,55.496325,55.496235,55.496156,55.496072,55.495989,55.495904,55.495819,55.495746,55.49568,55.495615,55.495527,55.495447,55.495368,55.495283,55.495207,55.495133,55.495054,55.494973,55.494901,55.494818,55.494735,55.494652,55.494561,55.494474,55.494388,55.494374,55.494282,55.494194,55.494098,55.494009,55.493935,55.493848,55.493754,55.493675,55.493617,55.493548,55.493449,55.49336,55.493289,55.493198,55.493128,55.493067,55.493002,55.49291,55.492826,55.492749,55.492682,55.492601,55.492512,55.492434,55.492357,55.492283,55.492203,55.492123,55.49204,55.491964,55.491877,55.491787,55.491701,55.491612,55.491537,55.491449,55.491366,55.491289,55.491201,55.491133,55.491051,55.490966,55.490883,55.490795,55.49071,55.490625,55.490533,55.490451,55.49037,55.490287,55.490191,55.49013,55.490065,55.490052,55.48999,55.489904,55.489825,55.48974,55.489662,55.48958,55.489501,55.489416,55.489344,55.489256,55.489175,55.48909,55.48901,55.488914,55.488825,55.488734,55.488659,55.488585,55.488489,55.488398,55.488311,55.488229,55.488147,55.488056,55.48797,55.487876,55.487782,55.487709,55.487609,55.487523,55.487457,55.487376,55.487296,55.487218,55.48712,55.487028,55.48694,55.486846,55.48676,55.486678,55.486591,55.48649,55.486402,55.486318,55.486236,55.48615,55.486057,55.48597,55.485894,55.485806,55.485724,55.485631,55.485537,55.485448,55.485358,55.485268,55.485185,55.485092,55.485001,55.484904,55.484808,55.484718,55.484624,55.484533,55.484465,55.484394,55.484309,55.48422,55.48412,55.484028,55.48395,55.483855,55.483761,55.483678,55.483603,55.483519,55.483428,55.483343,55.483242,55.48315,55.483063,55.482975,55.482883,55.482788,55.4827,55.48261,55.482524,55.482437,55.482352,55.482266,55.482179,55.48209,55.481995,55.4819,55.481806,55.481712,55.481617,55.481523,55.48143,55.481337,55.481256,55.481163,55.481065,55.480975,55.48088,55.480789,55.480701,55.480623,55.480544,55.480466,55.480378,55.480289,55.480199,55.480105,55.480015,55.479933,55.479853,55.479778,55.47972,55.47969,55.479616,55.479531,55.479448,55.479376,55.479307,55.479215,55.479126,55.479045,55.478968,55.478907,55.47884,55.478752,55.478657,55.478562,55.478494,55.478417,55.478335,55.478266,55.478194,55.4781,55.478011,55.477926,55.477843,55.477754,55.477667,55.477579,55.477495,55.477407,55.477308,55.477222,55.477158,55.477071,55.476994,55.476897,55.476803,55.476718,55.476621,55.476527,55.476461,55.476382,55.476301,55.476243,55.476153,55.476084,55.476008,55.475931,55.475853,55.475766,55.475701,55.475626,55.47554,55.47545,55.475371,55.475362,55.475325,55.475302,55.475278,55.47525,55.475269,55.475242,55.475199,55.475188,55.475231,55.475225,55.475214,55.475219,55.475186,55.475152,55.475158,55.475151,55.475147,55.47516,55.475176,55.475179,55.475183,55.475148,55.475135,55.475149,55.475148,55.475148,55.475118,55.475106,55.475098,55.475089,55.475068,55.475013,55.474936,55.474914,55.474881,55.474855,55.474811,55.474747,55.47471,55.4747,55.474654,55.47461,55.474584,55.474594,55.474565,55.474558,55.474567,55.47451,55.474488,55.474464,55.474432,55.474407,55.474354,55.474314,55.474304,55.474272,55.474214,55.474156,55.474101,55.474135,55.474155,55.474099,55.474053,55.474001,55.473984,55.473964,55.47393,55.47393,55.473928,55.473952,55.473943,55.473912,55.473875,55.473844,55.473832,55.473821,55.473763,55.473738,55.473724,55.473701,55.473706,55.473681,55.473683,55.473685,55.473718,55.473698,55.473683,55.473643,55.473637,55.47363,55.473637,55.473619,55.473636,55.473622,55.473617,55.473604,55.473628,55.473659,55.473676,55.473706,55.47371,55.47372,55.4737,55.473737,55.473764,55.473779,55.473798,55.473814,55.473793,55.473804,55.473793,55.473787,55.473798,55.473812,55.473816,55.473882,55.47397,55.473964,55.47388,55.473806,55.473756,55.473692,55.473654,55.473598,55.473564,55.473535,55.473502,55.473451,55.473465,55.473448,55.473454,55.473437,55.473421,55.473412,55.47339,55.473368,55.473364,55.473339,55.473307,55.473257,55.47322,55.473196,55.473172,55.473138,55.473141,55.473149,55.473139,55.47312,55.473092,55.473063,55.473003,55.472982,55.472957,55.472932,55.472923,55.472926,55.472913,55.472923,55.472907,55.472871,55.472811,55.472755,55.472744,55.472667,55.472614,55.472587,55.472551,55.472529,55.47252,55.472522,55.472497,55.472472,55.472441,55.472432,55.472428,55.472436,55.472444,55.472458,55.472406,55.4724,55.472365,55.47231,55.472241,55.47216,55.472091,55.472025,55.471948,55.471886,55.471817,55.471748,55.471676,55.471607,55.471532,55.471451,55.471388,55.471322,55.471261,55.471205,55.471135,55.47105,55.470976,55.470906,55.470837,55.470775,55.470733,55.470729,55.470686,55.470632,55.470566,55.470492,55.470426,55.47037,55.470315,55.470267,55.470215,55.470129,55.47004,55.469948,55.469864,55.469786,55.469719,55.469728,55.469767,55.469744,55.469658,55.469595,55.469543,55.469475,55.469405,55.469345,55.469268,55.469198,55.46914,55.469093,55.469032,55.468966,55.4689,55.468823,55.46874,55.468668,55.468591,55.468502,55.468426,55.468369,55.468332,55.468244,55.468166,55.468112,55.468061,55.468006,55.467963,55.467915,55.467867,55.467806,55.46775,55.467716,55.467685,55.467633,55.467577,55.467526,55.46748,55.467433,55.467384,55.467355,55.467325,55.467279,55.467222,55.467169,55.467121,55.467077,55.467034,55.466983,55.466937,55.466883,55.466833,55.466779,55.466743,55.466725,55.466686,55.466688,55.466696,55.466681,55.46666,55.466658,55.466657,55.466653,55.466664,55.466668,55.46666,55.46664,55.466634,55.466642,55.46668,55.466659,55.466612,55.466579,55.466571,55.466567,55.466547,55.466542,55.466507,55.466535,55.466556,55.466525,55.466535,55.4665,55.46647,55.466434,55.466393,55.466393,55.466358,55.466329,55.466295,55.466272,55.466265,55.46624,55.466215,55.466194,55.466156,55.46614,55.466093,55.466056,55.46601,55.465985,55.465934,55.465918,55.465904,55.465915,55.465828,55.465802,55.465761,55.465724,55.46569,55.465651,55.465587,55.465536,55.46549,55.465448,55.465433,55.465392,55.465356,55.46531,55.465276,55.465225,55.465171,55.465128,55.46506,55.465005,55.464969,55.464923,55.464893,55.464838,55.464785,55.464733,55.464691,55.464647,55.464602,55.464546,55.464507,55.464474,55.464407,55.464334,55.464283,55.464255,55.464209,55.464155,55.464099,55.46403,55.463994,55.463914,55.463833,55.463778,55.463707,55.463628,55.463568,55.463532,55.463477,55.463419,55.463331,55.463261,55.463195,55.463097,55.463006,55.462917,55.462852,55.462778,55.462732,55.462669,55.462589,55.462499,55.462418,55.462346,55.462267,55.462189,55.462098,55.462015,55.461931,55.461848,55.461774,55.461687,55.461605,55.461538,55.461456,55.461376,55.461293,55.461198,55.4611,55.461016,55.460926,55.46083,55.46074,55.460648,55.460557,55.460464,55.460371,55.46028,55.460188,55.460101,55.460017,55.459919,55.459829,55.459731,55.459629,55.45954,55.459451,55.459362,55.459262,55.459209,55.459113,55.459019,55.458921,55.458824,55.458731,55.458631,55.458539,55.458445,55.45835,55.45825,55.458155,55.458065,55.45797,55.457873,55.457775,55.457683,55.457585,55.457488,55.457399,55.457297,55.457203,55.457105,55.457013,55.456922,55.456825,55.456729,55.456629,55.456537,55.456444,55.456349,55.456256,55.456163,55.45607,55.455969,55.455875,55.455773,55.455682,55.455583,55.455483,55.455389,55.455302,55.45521,55.455118,55.455027,55.454931,55.454831,55.454737,55.45464,55.454546,55.454457,55.454373,55.454319,55.454241,55.454171,55.454171,55.454093,55.454018,55.453966,55.45389,55.453806,55.453734,55.453654,55.453563,55.453485,55.45341,55.45334,55.453256,55.453169,55.453094,55.453032,55.452964,55.452912,55.452853,55.45277,55.452677,55.45259,55.452513,55.452426,55.452338,55.452247,55.45216,55.452066,55.451978,55.451881,55.45178,55.451687,55.451597,55.4515,55.451401,55.451313,55.451213,55.451116,55.451026,55.45093,55.450835,55.450743,55.450653,55.450559,55.450467,55.450371,55.450271,55.450175,55.450085,55.449999,55.449905,55.449811,55.449712,55.44961,55.449514,55.449415,55.449319,55.449216,55.449116,55.449024,55.448926,55.448828,55.448736,55.448644,55.448546,55.448444,55.448352,55.44826,55.448159,55.448066,55.447973,55.44788,55.447788,55.447693,55.447593,55.447497,55.447406,55.447312,55.447211,55.447117,55.447024,55.446929,55.446838,55.446745,55.446642,55.446545,55.446449,55.446359,55.446256,55.446167,55.446081,55.445984,55.445888,55.44579,55.445699,55.445607,55.445518,55.445422,55.445344,55.445297,55.445215,55.445121,55.445035,55.444941,55.444853,55.44476,55.444679,55.444604,55.444524,55.444452,55.444391,55.444313,55.444257,55.444178,55.44411,55.444038,55.443971,55.443895,55.443831,55.443751,55.443677,55.4436,55.443537,55.443452,55.443366,55.443293,55.443217,55.443133,55.443053,55.442975,55.442903,55.442825,55.44275,55.442668,55.442585,55.442511,55.442443,55.442361,55.442301,55.442226,55.442157,55.44209,55.442029,55.441965,55.441883,55.441808,55.441742,55.441671,55.441599,55.441526,55.441454,55.441392,55.441328,55.441244,55.441175,55.441128,55.441075,55.441021,55.440989,55.440958,55.440909,55.440855,55.440804,55.440774,55.440712,55.440665,55.44062,55.440553,55.440475,55.440389,55.440297,55.440205,55.440107,55.440036,55.439941,55.439856,55.439764,55.439675,55.439585,55.439506,55.439432,55.439359,55.439274,55.439202,55.439122,55.439042,55.438961,55.438881,55.438802,55.438724,55.438645,55.438564,55.43848,55.438394,55.438333,55.438294,55.438252,55.43821,55.438154,55.438109,55.438071,55.438026,55.438028]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[55.438026,55.547146],"lng":[-2.275328,-2.166251]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-2-2" class="tab-pane" aria-labelledby="tabset-2-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-14"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_d85d8cdef3aa0c06f83c6422ce651f57 {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_d85d8cdef3aa0c06f83c6422ce651f57&quot; ></div>
        
</body>
<script>
    
    
            var map_d85d8cdef3aa0c06f83c6422ce651f57 = L.map(
                &quot;map_d85d8cdef3aa0c06f83c6422ce651f57&quot;,
                {
                    center: [55.494623859508856, -2.2118483529411765],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_59a79da526a2b6dae048e6d7024ef66f = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_59a79da526a2b6dae048e6d7024ef66f.addTo(map_d85d8cdef3aa0c06f83c6422ce651f57);
        
    
            var tile_layer_6036fe793f95d96f7a03d247372fb0cc = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_6036fe793f95d96f7a03d247372fb0cc.addTo(map_d85d8cdef3aa0c06f83c6422ce651f57);
        
    
            var color_line_a52cce0f954612194c2f6164eda64268 = L.featureGroup(
                {
}
            );
        
    
            var poly_line_c60dd2d2489ba7fff9936919f8c8e653 = L.polyline(
                [[[55.546998, -2.275047], [55.547146, -2.275328]], [[55.547146, -2.275328], [55.547076, -2.275209]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_a52cce0f954612194c2f6164eda64268);
        
    
            var poly_line_5035dca81d14e02cc1539cbe930f0e17 = L.polyline(
                [[[55.547076, -2.275209], [55.547027, -2.275068]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_a52cce0f954612194c2f6164eda64268);
        
    
            var poly_line_7b30d7f363391f686d5a784b8d7b7e12 = L.polyline(
                [[[55.547027, -2.275068], [55.546977, -2.274925]], [[55.546977, -2.274925], [55.546912, -2.27479]], [[55.546912, -2.27479], [55.546841, -2.274672]], [[55.546694, -2.274471], [55.546606, -2.27439]], [[55.546606, -2.27439], [55.546524, -2.274282]], [[55.546371, -2.274073], [55.546278, -2.27401]], [[55.546278, -2.27401], [55.546178, -2.273998]], [[55.546178, -2.273998], [55.546079, -2.273978]], [[55.546079, -2.273978], [55.545986, -2.273971]], [[55.545986, -2.273971], [55.545892, -2.273942]], [[55.545892, -2.273942], [55.545806, -2.273883]], [[55.545806, -2.273883], [55.54572, -2.273795]], [[55.54572, -2.273795], [55.545651, -2.273686]], [[55.545651, -2.273686], [55.545589, -2.27357]], [[55.545589, -2.27357], [55.545533, -2.273445]], [[55.545533, -2.273445], [55.545497, -2.273291]], [[55.545411, -2.272971], [55.545376, -2.272816]], [[55.545376, -2.272816], [55.54535, -2.272652]], [[55.54535, -2.272652], [55.545331, -2.272476]], [[55.545331, -2.272476], [55.545301, -2.272325]], [[55.545301, -2.272325], [55.545285, -2.272163]], [[55.545285, -2.272163], [55.545266, -2.272002]], [[55.545266, -2.272002], [55.545229, -2.271837]], [[55.545201, -2.270669], [55.545203, -2.270491]], [[55.545203, -2.270491], [55.545229, -2.270335]], [[55.545229, -2.270335], [55.545266, -2.270165]], [[55.545266, -2.270165], [55.545318, -2.270032]], [[55.545318, -2.270032], [55.545353, -2.269872]], [[55.545432, -2.269571], [55.545458, -2.269417]], [[55.545458, -2.269417], [55.545448, -2.269237]], [[55.545448, -2.269237], [55.54545, -2.269072]], [[55.54545, -2.269072], [55.545444, -2.268893]], [[55.545347, -2.268422], [55.545308, -2.268258]], [[55.545178, -2.267598], [55.545149, -2.267438]], [[55.545149, -2.267438], [55.545136, -2.267269]], [[55.545136, -2.267269], [55.545122, -2.267094]], [[55.545122, -2.267094], [55.545102, -2.266917]], [[55.545102, -2.266917], [55.545066, -2.266746]], [[55.545026, -2.266594], [55.544979, -2.26645]], [[55.544979, -2.26645], [55.544942, -2.266301]], [[55.544852, -2.265992], [55.544804, -2.265838]], [[55.544804, -2.265838], [55.544772, -2.265677]], [[55.544772, -2.265677], [55.544751, -2.265523]], [[55.544751, -2.265523], [55.544721, -2.26536]], [[55.544721, -2.26536], [55.544698, -2.265199]], [[55.544689, -2.265025], [55.544715, -2.264862]], [[55.544715, -2.264862], [55.5447, -2.264703]], [[55.5447, -2.264703], [55.544695, -2.264541]], [[55.544695, -2.264541], [55.544701, -2.264371]], [[55.544701, -2.264371], [55.544709, -2.264194]], [[55.544709, -2.264194], [55.544735, -2.264038]], [[55.544717, -2.263199], [55.544662, -2.263049]], [[55.544662, -2.263049], [55.544615, -2.262906]], [[55.544615, -2.262906], [55.544563, -2.262759]], [[55.544563, -2.262759], [55.54451, -2.262617]], [[55.544127, -2.261432], [55.544068, -2.261296]], [[55.543734, -2.259117], [55.543691, -2.258958]], [[55.543636, -2.258808], [55.543584, -2.258675]], [[55.543584, -2.258675], [55.54353, -2.258543]], [[55.543308, -2.257965], [55.543249, -2.257826]], [[55.543249, -2.257826], [55.543196, -2.257694]], [[55.543145, -2.257559], [55.543085, -2.257412]], [[55.5424, -2.255421], [55.542401, -2.255256]], [[55.542419, -2.254918], [55.542472, -2.25477]], [[55.542472, -2.25477], [55.542546, -2.254676]], [[55.542546, -2.254676], [55.542599, -2.254538]], [[55.54259, -2.254319], [55.542592, -2.254146]], [[55.54209, -2.251156], [55.542006, -2.251059]], [[55.542006, -2.251059], [55.541921, -2.250963]], [[55.541921, -2.250963], [55.54185, -2.250846]], [[55.54185, -2.250846], [55.541785, -2.250716]], [[55.541785, -2.250716], [55.541712, -2.250597]], [[55.541712, -2.250597], [55.541648, -2.250462]], [[55.541648, -2.250462], [55.54158, -2.250356]], [[55.54158, -2.250356], [55.541513, -2.250225]], [[55.540557, -2.247756], [55.540505, -2.247619]], [[55.540423, -2.247321], [55.540387, -2.247166]], [[55.540307, -2.245861], [55.540314, -2.245694]], [[55.540314, -2.245694], [55.540306, -2.245528]], [[55.540306, -2.245528], [55.540309, -2.245353]], [[55.540309, -2.245353], [55.54032, -2.245177]], [[55.54032, -2.245177], [55.540325, -2.245016]], [[55.540191, -2.244041], [55.540162, -2.243881]], [[55.539596, -2.240196], [55.539518, -2.240105]], [[55.539518, -2.240105], [55.539441, -2.240005]], [[55.539286, -2.239824], [55.539207, -2.239748]], [[55.539207, -2.239748], [55.539117, -2.23967]], [[55.539117, -2.23967], [55.539027, -2.239598]], [[55.539027, -2.239598], [55.538939, -2.239547]], [[55.538939, -2.239547], [55.538844, -2.239496]], [[55.538844, -2.239496], [55.538759, -2.239441]], [[55.538759, -2.239441], [55.538673, -2.239384]], [[55.538673, -2.239384], [55.538592, -2.239317]], [[55.538592, -2.239317], [55.538518, -2.239222]], [[55.538518, -2.239222], [55.538448, -2.239094]], [[55.538448, -2.239094], [55.538381, -2.238964]], [[55.538381, -2.238964], [55.538322, -2.238831]], [[55.538322, -2.238831], [55.538271, -2.238685]], [[55.537747, -2.237166], [55.537661, -2.237096]], [[55.537661, -2.237096], [55.53758, -2.237006]], [[55.537171, -2.235914], [55.537098, -2.2358]], [[55.537098, -2.2358], [55.537025, -2.235685]], [[55.537025, -2.235685], [55.536942, -2.235618]], [[55.536942, -2.235618], [55.536873, -2.235506]], [[55.536873, -2.235506], [55.536799, -2.235383]], [[55.536799, -2.235383], [55.536728, -2.235267]], [[55.536728, -2.235267], [55.53667, -2.235139]], [[55.53667, -2.235139], [55.536588, -2.235041]], [[55.536588, -2.235041], [55.536506, -2.234947]], [[55.536506, -2.234947], [55.536436, -2.234842]], [[55.536436, -2.234842], [55.536367, -2.234711]], [[55.536367, -2.234711], [55.536291, -2.234605]], [[55.536291, -2.234605], [55.536208, -2.23451]], [[55.536208, -2.23451], [55.536125, -2.234438]], [[55.536125, -2.234438], [55.536041, -2.234339]], [[55.536041, -2.234339], [55.53597, -2.234228]], [[55.535696, -2.233777], [55.535614, -2.23371]], [[55.535104, -2.233689], [55.535007, -2.233652]], [[55.535007, -2.233652], [55.53492, -2.233611]], [[55.53492, -2.233611], [55.534825, -2.233584]], [[55.534825, -2.233584], [55.534734, -2.233557]], [[55.53464, -2.233536], [55.534548, -2.233486]], [[55.534548, -2.233486], [55.534453, -2.23346]], [[55.534453, -2.23346], [55.534356, -2.233434]], [[55.534356, -2.233434], [55.534265, -2.233423]], [[55.533992, -2.233452], [55.533897, -2.233451]], [[55.533897, -2.233451], [55.533801, -2.233444]], [[55.533801, -2.233444], [55.53371, -2.233445]], [[55.53371, -2.233445], [55.53362, -2.233422]], [[55.533528, -2.233435], [55.533431, -2.233397]], [[55.533214, -2.233707], [55.533119, -2.233697]], [[55.533119, -2.233697], [55.533021, -2.233689]], [[55.533021, -2.233689], [55.53293, -2.233638]], [[55.532738, -2.233615], [55.532649, -2.23359]], [[55.532556, -2.233594], [55.532458, -2.233609]], [[55.528986, -2.230209], [55.528953, -2.230058]], [[55.528953, -2.230058], [55.52892, -2.22991]], [[55.528852, -2.229605], [55.528822, -2.229455]], [[55.528822, -2.229455], [55.528797, -2.229298]], [[55.528797, -2.229298], [55.528746, -2.229151]], [[55.528746, -2.229151], [55.528705, -2.229003]], [[55.528705, -2.229003], [55.528685, -2.228843]], [[55.528551, -2.228237], [55.528522, -2.228086]], [[55.528522, -2.228086], [55.52849, -2.227923]], [[55.52849, -2.227923], [55.528454, -2.22777]], [[55.528454, -2.22777], [55.528413, -2.227613]], [[55.528413, -2.227613], [55.528344, -2.227511]], [[55.528223, -2.227462], [55.528124, -2.227423]], [[55.528124, -2.227423], [55.528038, -2.227352]], [[55.528038, -2.227352], [55.527952, -2.227292]], [[55.527862, -2.227228], [55.527772, -2.227172]], [[55.527772, -2.227172], [55.527685, -2.227115]], [[55.527685, -2.227115], [55.527594, -2.227063]], [[55.527594, -2.227063], [55.527496, -2.227004]], [[55.526772, -2.22653], [55.526675, -2.226477]], [[55.526675, -2.226477], [55.526595, -2.2264]], [[55.526595, -2.2264], [55.526497, -2.226367]], [[55.526497, -2.226367], [55.526402, -2.226333]], [[55.526402, -2.226333], [55.526308, -2.226303]], [[55.526308, -2.226303], [55.526222, -2.226248]], [[55.526222, -2.226248], [55.526135, -2.226202]], [[55.526135, -2.226202], [55.526043, -2.226175]], [[55.526043, -2.226175], [55.525957, -2.226124]], [[55.525869, -2.22609], [55.525772, -2.226035]], [[55.525772, -2.226035], [55.52569, -2.22597]], [[55.52569, -2.22597], [55.525595, -2.225919]], [[55.525595, -2.225919], [55.525508, -2.225877]], [[55.525508, -2.225877], [55.525413, -2.225842]], [[55.525413, -2.225842], [55.525327, -2.225781]], [[55.525327, -2.225781], [55.525227, -2.22575]], [[55.525227, -2.22575], [55.525133, -2.225694]], [[55.525133, -2.225694], [55.525045, -2.225655]], [[55.524773, -2.225528], [55.524681, -2.225479]], [[55.524681, -2.225479], [55.524585, -2.225443]], [[55.524585, -2.225443], [55.524491, -2.225375]], [[55.524491, -2.225375], [55.524399, -2.225332]], [[55.524308, -2.225293], [55.524212, -2.225307]], [[55.524212, -2.225307], [55.524135, -2.225201]], [[55.524135, -2.225201], [55.524051, -2.22514]], [[55.524051, -2.22514], [55.52396, -2.225091]], [[55.52396, -2.225091], [55.523867, -2.225042]], [[55.523867, -2.225042], [55.52378, -2.224978]], [[55.522124, -2.224813], [55.522035, -2.224868]], [[55.52195, -2.224922], [55.521851, -2.224955]], [[55.521851, -2.224955], [55.521763, -2.224996]], [[55.521763, -2.224996], [55.521672, -2.225027]], [[55.521672, -2.225027], [55.521577, -2.225057]], [[55.521577, -2.225057], [55.521488, -2.225092]], [[55.521488, -2.225092], [55.521402, -2.225142]], [[55.521209, -2.22523], [55.52112, -2.225312]], [[55.52112, -2.225312], [55.521038, -2.225392]], [[55.520716, -2.225741], [55.520633, -2.225836]], [[55.520633, -2.225836], [55.520548, -2.225909]], [[55.520548, -2.225909], [55.520458, -2.225979]], [[55.520458, -2.225979], [55.520372, -2.226049]], [[55.520372, -2.226049], [55.520283, -2.226105]], [[55.520283, -2.226105], [55.520197, -2.226161]], [[55.520197, -2.226161], [55.520104, -2.226223]], [[55.520104, -2.226223], [55.520018, -2.226276]], [[55.520018, -2.226276], [55.519931, -2.226333]], [[55.519666, -2.226478], [55.51957, -2.226536]], [[55.51957, -2.226536], [55.519474, -2.226577]], [[55.519474, -2.226577], [55.519386, -2.226617]], [[55.519386, -2.226617], [55.519293, -2.226617]], [[55.5191, -2.226695], [55.519005, -2.226693]], [[55.519005, -2.226693], [55.518907, -2.226699]], [[55.518907, -2.226699], [55.518807, -2.226726]], [[55.518807, -2.226726], [55.518714, -2.226742]], [[55.518714, -2.226742], [55.518623, -2.226751]], [[55.518623, -2.226751], [55.518523, -2.226765]], [[55.518523, -2.226765], [55.518431, -2.226784]], [[55.518335, -2.226794], [55.518239, -2.226806]], [[55.518239, -2.226806], [55.518144, -2.226809]], [[55.518144, -2.226809], [55.518047, -2.226803]], [[55.518047, -2.226803], [55.517955, -2.226798]], [[55.517955, -2.226798], [55.517862, -2.22681]], [[55.517862, -2.22681], [55.517768, -2.22683]], [[55.517477, -2.226887], [55.517382, -2.226912]], [[55.517382, -2.226912], [55.517287, -2.226945]], [[55.517287, -2.226945], [55.517197, -2.226978]], [[55.517197, -2.226978], [55.517102, -2.22702]], [[55.517102, -2.22702], [55.517009, -2.22706]], [[55.516816, -2.227132], [55.516718, -2.227171]], [[55.516533, -2.227249], [55.516436, -2.227288]], [[55.516436, -2.227288], [55.516346, -2.227323]], [[55.516346, -2.227323], [55.516254, -2.227357]], [[55.516254, -2.227357], [55.51616, -2.227392]], [[55.51616, -2.227392], [55.516071, -2.22743]], [[55.515982, -2.227471], [55.515885, -2.227512]], [[55.515885, -2.227512], [55.515789, -2.22754]], [[55.514316, -2.227612], [55.514221, -2.227553]], [[55.514221, -2.227553], [55.51413, -2.227545]], [[55.51413, -2.227545], [55.514034, -2.227567]], [[55.514034, -2.227567], [55.513941, -2.227628]], [[55.513724, -2.227844], [55.513635, -2.227894]], [[55.513635, -2.227894], [55.513539, -2.227948]], [[55.512099, -2.228357], [55.512006, -2.228375]], [[55.512006, -2.228375], [55.511908, -2.228399]], [[55.510426, -2.228847], [55.510332, -2.228872]], [[55.510332, -2.228872], [55.510233, -2.22889]], [[55.510233, -2.22889], [55.510137, -2.228904]], [[55.509644, -2.22887], [55.509555, -2.228818]], [[55.509374, -2.228719], [55.509281, -2.228658]], [[55.509281, -2.228658], [55.509197, -2.228599]], [[55.508923, -2.228467], [55.508834, -2.228423]], [[55.508018, -2.22798], [55.507938, -2.227884]], [[55.507938, -2.227884], [55.507864, -2.227789]], [[55.507864, -2.227789], [55.507792, -2.227672]], [[55.507792, -2.227672], [55.507713, -2.22758]], [[55.507713, -2.22758], [55.507637, -2.227485]], [[55.507637, -2.227485], [55.507561, -2.227365]], [[55.507561, -2.227365], [55.507488, -2.227257]], [[55.507488, -2.227257], [55.507416, -2.227141]], [[55.507416, -2.227141], [55.507336, -2.22705]], [[55.507336, -2.22705], [55.507252, -2.226962]], [[55.507252, -2.226962], [55.507187, -2.226831]], [[55.507187, -2.226831], [55.507136, -2.226695]], [[55.507136, -2.226695], [55.507065, -2.226584]], [[55.506756, -2.226233], [55.506666, -2.226145]], [[55.506666, -2.226145], [55.506587, -2.226037]], [[55.506587, -2.226037], [55.506504, -2.225934]], [[55.506428, -2.225838], [55.506357, -2.225713]], [[55.506281, -2.225602], [55.506214, -2.225475]], [[55.506214, -2.225475], [55.506137, -2.225378]], [[55.506137, -2.225378], [55.50605, -2.2253]], [[55.50587, -2.225147], [55.505795, -2.225026]], [[55.505795, -2.225026], [55.505718, -2.224944]], [[55.505718, -2.224944], [55.50566, -2.224822]], [[55.50566, -2.224822], [55.505586, -2.224698]], [[55.505512, -2.224593], [55.505436, -2.224479]], [[55.505436, -2.224479], [55.505362, -2.224372]], [[55.505215, -2.224155], [55.505126, -2.224115]], [[55.505059, -2.223993], [55.504998, -2.223861]], [[55.504998, -2.223861], [55.504934, -2.223737]], [[55.504876, -2.223611], [55.504799, -2.223507]], [[55.504799, -2.223507], [55.504736, -2.22339]], [[55.504608, -2.223126], [55.504552, -2.222995]], [[55.504298, -2.222524], [55.504247, -2.222374]], [[55.504247, -2.222374], [55.504206, -2.222211]], [[55.504206, -2.222211], [55.504155, -2.222076]], [[55.504155, -2.222076], [55.504101, -2.221946]], [[55.503988, -2.221681], [55.503925, -2.221561]], [[55.503925, -2.221561], [55.503865, -2.221429]], [[55.503865, -2.221429], [55.503835, -2.221264]], [[55.503835, -2.221264], [55.503794, -2.221123]], [[55.503794, -2.221123], [55.503756, -2.220959]], [[55.503756, -2.220959], [55.503724, -2.220792]], [[55.503724, -2.220792], [55.503697, -2.220638]], [[55.503697, -2.220638], [55.503687, -2.220474]], [[55.503687, -2.220474], [55.503673, -2.220315]], [[55.503673, -2.220315], [55.503649, -2.220157]], [[55.503649, -2.220157], [55.503613, -2.220007]], [[55.503613, -2.220007], [55.503572, -2.219857]], [[55.503572, -2.219857], [55.50353, -2.219715]], [[55.50353, -2.219715], [55.5035, -2.219559]], [[55.5035, -2.219559], [55.503474, -2.219406]], [[55.503452, -2.219243], [55.503433, -2.219071]], [[55.503433, -2.219071], [55.503433, -2.218904]], [[55.503433, -2.218904], [55.503431, -2.218726]], [[55.503431, -2.218726], [55.503413, -2.218556]], [[55.503413, -2.218556], [55.503395, -2.218383]], [[55.503395, -2.218383], [55.503374, -2.218212]], [[55.503374, -2.218212], [55.503357, -2.218052]], [[55.503357, -2.218052], [55.503345, -2.217885]], [[55.503345, -2.217885], [55.503314, -2.217731]], [[55.503314, -2.217731], [55.50329, -2.217561]], [[55.503153, -2.217197], [55.503077, -2.217098]], [[55.502996, -2.217014], [55.502907, -2.216925]], [[55.502907, -2.216925], [55.502826, -2.216851]], [[55.502826, -2.216851], [55.502741, -2.216769]], [[55.502741, -2.216769], [55.502651, -2.2167]], [[55.502651, -2.2167], [55.502565, -2.216605]], [[55.502565, -2.216605], [55.50249, -2.216493]], [[55.50249, -2.216493], [55.502418, -2.216378]], [[55.502418, -2.216378], [55.502339, -2.216286]], [[55.502339, -2.216286], [55.502259, -2.216204]], [[55.502259, -2.216204], [55.502186, -2.216109]], [[55.502186, -2.216109], [55.502111, -2.216]], [[55.502111, -2.216], [55.50204, -2.215888]], [[55.50204, -2.215888], [55.501963, -2.215779]], [[55.501963, -2.215779], [55.501902, -2.215655]], [[55.501902, -2.215655], [55.501812, -2.215589]], [[55.501812, -2.215589], [55.501737, -2.215484]], [[55.501737, -2.215484], [55.501665, -2.215379]], [[55.501478, -2.215058], [55.501389, -2.214972]], [[55.501389, -2.214972], [55.501317, -2.214863]], [[55.501093, -2.214566], [55.501013, -2.214455]], [[55.501013, -2.214455], [55.500938, -2.214346]], [[55.500938, -2.214346], [55.500864, -2.214234]], [[55.500864, -2.214234], [55.5008, -2.214106]], [[55.5008, -2.214106], [55.500728, -2.213989]], [[55.500728, -2.213989], [55.500654, -2.213876]], [[55.500654, -2.213876], [55.500576, -2.213769]], [[55.500576, -2.213769], [55.500501, -2.213649]], [[55.500501, -2.213649], [55.500432, -2.213529]], [[55.500432, -2.213529], [55.500364, -2.213422]], [[55.500364, -2.213422], [55.500299, -2.21331]], [[55.500299, -2.21331], [55.500223, -2.213197]], [[55.500223, -2.213197], [55.500166, -2.213062]], [[55.500166, -2.213062], [55.500107, -2.212927]], [[55.500107, -2.212927], [55.500035, -2.212797]], [[55.500035, -2.212797], [55.499946, -2.212736]], [[55.499946, -2.212736], [55.499885, -2.212617]], [[55.499885, -2.212617], [55.499832, -2.212488]], [[55.499832, -2.212488], [55.499753, -2.212381]], [[55.499753, -2.212381], [55.499679, -2.212284]], [[55.499679, -2.212284], [55.499615, -2.212167]], [[55.499615, -2.212167], [55.499554, -2.212046]], [[55.499554, -2.212046], [55.499491, -2.211929]], [[55.499421, -2.211817], [55.499353, -2.211711]], [[55.499353, -2.211711], [55.49927, -2.211621]], [[55.495054, -2.208243], [55.494973, -2.208141]], [[55.494973, -2.208141], [55.494901, -2.208019]], [[55.494901, -2.208019], [55.494818, -2.207936]], [[55.494818, -2.207936], [55.494735, -2.207844]], [[55.494652, -2.207774], [55.494561, -2.207712]], [[55.494194, -2.207795], [55.494098, -2.207795]], [[55.494098, -2.207795], [55.494009, -2.207752]], [[55.493848, -2.207649], [55.493754, -2.207567]], [[55.493675, -2.207469], [55.493617, -2.207346]], [[55.493289, -2.207049], [55.493198, -2.207005]], [[55.493198, -2.207005], [55.493128, -2.206901]], [[55.493002, -2.20665], [55.49291, -2.206596]], [[55.49291, -2.206596], [55.492826, -2.20652]], [[55.492826, -2.20652], [55.492749, -2.206421]], [[55.492749, -2.206421], [55.492682, -2.206314]], [[55.492601, -2.206244], [55.492512, -2.206177]], [[55.492512, -2.206177], [55.492434, -2.206098]], [[55.492434, -2.206098], [55.492357, -2.205999]], [[55.492357, -2.205999], [55.492283, -2.205899]], [[55.492283, -2.205899], [55.492203, -2.205818]], [[55.491612, -2.205277], [55.491537, -2.205186]], [[55.491537, -2.205186], [55.491449, -2.205138]], [[55.491449, -2.205138], [55.491366, -2.205039]], [[55.491366, -2.205039], [55.491289, -2.204948]], [[55.491289, -2.204948], [55.491201, -2.20488]], [[55.491201, -2.20488], [55.491133, -2.204776]], [[55.491133, -2.204776], [55.491051, -2.20468]], [[55.491051, -2.20468], [55.490966, -2.204596]], [[55.490966, -2.204596], [55.490883, -2.204513]], [[55.490883, -2.204513], [55.490795, -2.20444]], [[55.490795, -2.20444], [55.49071, -2.204353]], [[55.49071, -2.204353], [55.490625, -2.204263]], [[55.490625, -2.204263], [55.490533, -2.204185]], [[55.490533, -2.204185], [55.490451, -2.204115]], [[55.490451, -2.204115], [55.49037, -2.204038]], [[55.49037, -2.204038], [55.490287, -2.203972]], [[55.490287, -2.203972], [55.490191, -2.203977]], [[55.490191, -2.203977], [55.49013, -2.204107]], [[55.489904, -2.203719], [55.489825, -2.203643]], [[55.48974, -2.203584], [55.489662, -2.203502]], [[55.489662, -2.203502], [55.48958, -2.203406]], [[55.48958, -2.203406], [55.489501, -2.203305]], [[55.489501, -2.203305], [55.489416, -2.20325]], [[55.489416, -2.20325], [55.489344, -2.203139]], [[55.489344, -2.203139], [55.489256, -2.203077]], [[55.489256, -2.203077], [55.489175, -2.202996]], [[55.489175, -2.202996], [55.48909, -2.202929]], [[55.48909, -2.202929], [55.48901, -2.202831]], [[55.48901, -2.202831], [55.488914, -2.20282]], [[55.488914, -2.20282], [55.488825, -2.202778]], [[55.488659, -2.202654], [55.488585, -2.202549]], [[55.488585, -2.202549], [55.488489, -2.202493]], [[55.488489, -2.202493], [55.488398, -2.202434]], [[55.488398, -2.202434], [55.488311, -2.202343]], [[55.488311, -2.202343], [55.488229, -2.202278]], [[55.488229, -2.202278], [55.488147, -2.202208]], [[55.488147, -2.202208], [55.488056, -2.202228]], [[55.488056, -2.202228], [55.48797, -2.202279]], [[55.487876, -2.202314], [55.487782, -2.202335]], [[55.487782, -2.202335], [55.487709, -2.202429]], [[55.487709, -2.202429], [55.487609, -2.202444]], [[55.487609, -2.202444], [55.487523, -2.202498]], [[55.487523, -2.202498], [55.487457, -2.202607]], [[55.487457, -2.202607], [55.487376, -2.202687]], [[55.487218, -2.202863], [55.48712, -2.202888]], [[55.48712, -2.202888], [55.487028, -2.202963]], [[55.487028, -2.202963], [55.48694, -2.203028]], [[55.48694, -2.203028], [55.486846, -2.203063]], [[55.486846, -2.203063], [55.48676, -2.203135]], [[55.48676, -2.203135], [55.486678, -2.203241]], [[55.486678, -2.203241], [55.486591, -2.203335]], [[55.486591, -2.203335], [55.48649, -2.203364]], [[55.48649, -2.203364], [55.486402, -2.203424]], [[55.486402, -2.203424], [55.486318, -2.203489]], [[55.486318, -2.203489], [55.486236, -2.203565]], [[55.486236, -2.203565], [55.48615, -2.203652]], [[55.48615, -2.203652], [55.486057, -2.203686]], [[55.486057, -2.203686], [55.48597, -2.203773]], [[55.48597, -2.203773], [55.485894, -2.203869]], [[55.485894, -2.203869], [55.485806, -2.203907]], [[55.485806, -2.203907], [55.485724, -2.203998]], [[55.485724, -2.203998], [55.485631, -2.204041]], [[55.485631, -2.204041], [55.485537, -2.204096]], [[55.485537, -2.204096], [55.485448, -2.204144]], [[55.485448, -2.204144], [55.485358, -2.204212]], [[55.485358, -2.204212], [55.485268, -2.204255]], [[55.485268, -2.204255], [55.485185, -2.204338]], [[55.485185, -2.204338], [55.485092, -2.204375]], [[55.485092, -2.204375], [55.485001, -2.204436]], [[55.485001, -2.204436], [55.484904, -2.204465]], [[55.484904, -2.204465], [55.484808, -2.204519]], [[55.484808, -2.204519], [55.484718, -2.204556]], [[55.484718, -2.204556], [55.484624, -2.20459]], [[55.48422, -2.204883], [55.48412, -2.204919]], [[55.48395, -2.205031], [55.483855, -2.205042]], [[55.483855, -2.205042], [55.483761, -2.205048]], [[55.483761, -2.205048], [55.483678, -2.20515]], [[55.483678, -2.20515], [55.483603, -2.205256]], [[55.483603, -2.205256], [55.483519, -2.205314]], [[55.483519, -2.205314], [55.483428, -2.205359]], [[55.483428, -2.205359], [55.483343, -2.205416]], [[55.483343, -2.205416], [55.483242, -2.205445]], [[55.483242, -2.205445], [55.48315, -2.205486]], [[55.481065, -2.205966], [55.480975, -2.205962]], [[55.480975, -2.205962], [55.48088, -2.205912]], [[55.48088, -2.205912], [55.480789, -2.205876]], [[55.480789, -2.205876], [55.480701, -2.205803]], [[55.480701, -2.205803], [55.480623, -2.205697]], [[55.480623, -2.205697], [55.480544, -2.205597]], [[55.480544, -2.205597], [55.480466, -2.205506]], [[55.480466, -2.205506], [55.480378, -2.205461]], [[55.480378, -2.205461], [55.480289, -2.205436]], [[55.480289, -2.205436], [55.480199, -2.205384]], [[55.480199, -2.205384], [55.480105, -2.205332]], [[55.480105, -2.205332], [55.480015, -2.205264]], [[55.480015, -2.205264], [55.479933, -2.205197]], [[55.479933, -2.205197], [55.479853, -2.205089]], [[55.479853, -2.205089], [55.479778, -2.204984]], [[55.479778, -2.204984], [55.47972, -2.204854]], [[55.47972, -2.204854], [55.47969, -2.204696]], [[55.47969, -2.204696], [55.479616, -2.204599]], [[55.479616, -2.204599], [55.479531, -2.204523]], [[55.479531, -2.204523], [55.479448, -2.204451]], [[55.479448, -2.204451], [55.479376, -2.204355]], [[55.479376, -2.204355], [55.479307, -2.20423]], [[55.479307, -2.20423], [55.479215, -2.204166]], [[55.479215, -2.204166], [55.479126, -2.204094]], [[55.479126, -2.204094], [55.479045, -2.203999]], [[55.479045, -2.203999], [55.478968, -2.203892]], [[55.478968, -2.203892], [55.478907, -2.203757]], [[55.478907, -2.203757], [55.47884, -2.203649]], [[55.47884, -2.203649], [55.478752, -2.203589]], [[55.478752, -2.203589], [55.478657, -2.20363]], [[55.478657, -2.20363], [55.478562, -2.203581]], [[55.478562, -2.203581], [55.478494, -2.203477]], [[55.478494, -2.203477], [55.478417, -2.203369]], [[55.478417, -2.203369], [55.478335, -2.203266]], [[55.478335, -2.203266], [55.478266, -2.203137]], [[55.478266, -2.203137], [55.478194, -2.203019]], [[55.478194, -2.203019], [55.4781, -2.202986]], [[55.4781, -2.202986], [55.478011, -2.202935]], [[55.478011, -2.202935], [55.477926, -2.202867]], [[55.477926, -2.202867], [55.477843, -2.202805]], [[55.477843, -2.202805], [55.477754, -2.202737]], [[55.477754, -2.202737], [55.477667, -2.202667]], [[55.477667, -2.202667], [55.477579, -2.202597]], [[55.477579, -2.202597], [55.477495, -2.202522]], [[55.477495, -2.202522], [55.477407, -2.202446]], [[55.477407, -2.202446], [55.477308, -2.202455]], [[55.477158, -2.202273], [55.477071, -2.202194]], [[55.477071, -2.202194], [55.476994, -2.202105]], [[55.476994, -2.202105], [55.476897, -2.202089]], [[55.476897, -2.202089], [55.476803, -2.202049]], [[55.476803, -2.202049], [55.476718, -2.201987]], [[55.476718, -2.201987], [55.476621, -2.201955]], [[55.476621, -2.201955], [55.476527, -2.201961]], [[55.476527, -2.201961], [55.476461, -2.201852]], [[55.476382, -2.201776], [55.476301, -2.201679]], [[55.476301, -2.201679], [55.476243, -2.201557]], [[55.476243, -2.201557], [55.476153, -2.201503]], [[55.476153, -2.201503], [55.476084, -2.201393]], [[55.476084, -2.201393], [55.476008, -2.201298]], [[55.476008, -2.201298], [55.475931, -2.201204]], [[55.475931, -2.201204], [55.475853, -2.20111]], [[55.475853, -2.20111], [55.475766, -2.201034]], [[55.475766, -2.201034], [55.475701, -2.200909]], [[55.475701, -2.200909], [55.475626, -2.200813]], [[55.475626, -2.200813], [55.47554, -2.20073]], [[55.47554, -2.20073], [55.47545, -2.200666]], [[55.47545, -2.200666], [55.475371, -2.20058]], [[55.475371, -2.20058], [55.475362, -2.200423]], [[55.475362, -2.200423], [55.475325, -2.200258]], [[55.475325, -2.200258], [55.475302, -2.200086]], [[55.475302, -2.200086], [55.475278, -2.199916]], [[55.475278, -2.199916], [55.47525, -2.199753]], [[55.47525, -2.199753], [55.475269, -2.199589]], [[55.475269, -2.199589], [55.475242, -2.199422]], [[55.475242, -2.199422], [55.475199, -2.199278]], [[55.475199, -2.199278], [55.475188, -2.199112]], [[55.475188, -2.199112], [55.475231, -2.198962]], [[55.475231, -2.198962], [55.475225, -2.198796]], [[55.475186, -2.198308], [55.475152, -2.198142]], [[55.475149, -2.196453], [55.475148, -2.196293]], [[55.475148, -2.196293], [55.475148, -2.196125]], [[55.475148, -2.196125], [55.475118, -2.195962]], [[55.475089, -2.19567], [55.475068, -2.195497]], [[55.475068, -2.195497], [55.475013, -2.195354]], [[55.475013, -2.195354], [55.474936, -2.195272]], [[55.474936, -2.195272], [55.474914, -2.195103]], [[55.474914, -2.195103], [55.474881, -2.194942]], [[55.474881, -2.194942], [55.474855, -2.194776]], [[55.474855, -2.194776], [55.474811, -2.194626]], [[55.474811, -2.194626], [55.474747, -2.194484]], [[55.474747, -2.194484], [55.47471, -2.194316]], [[55.47471, -2.194316], [55.4747, -2.194141]], [[55.4747, -2.194141], [55.474654, -2.193986]], [[55.47461, -2.193838], [55.474584, -2.193668]], [[55.474584, -2.193668], [55.474594, -2.193504]], [[55.474565, -2.193352], [55.474558, -2.193194]], [[55.474558, -2.193194], [55.474567, -2.193018]], [[55.47451, -2.192871], [55.474488, -2.192707]], [[55.474488, -2.192707], [55.474464, -2.192548]], [[55.474464, -2.192548], [55.474432, -2.192392]], [[55.474432, -2.192392], [55.474407, -2.192229]], [[55.474407, -2.192229], [55.474354, -2.192085]], [[55.474354, -2.192085], [55.474314, -2.191941]], [[55.474314, -2.191941], [55.474304, -2.191783]], [[55.474272, -2.191622], [55.474214, -2.191501]], [[55.474214, -2.191501], [55.474156, -2.191377]], [[55.474156, -2.191377], [55.474101, -2.191244]], [[55.474101, -2.191244], [55.474135, -2.191083]], [[55.474135, -2.191083], [55.474155, -2.190915]], [[55.473928, -2.189707], [55.473952, -2.189549]], [[55.472091, -2.173728], [55.472025, -2.173589]], [[55.471817, -2.173236], [55.471748, -2.17313]], [[55.471748, -2.17313], [55.471676, -2.173015]], [[55.471676, -2.173015], [55.471607, -2.172901]], [[55.471532, -2.172794], [55.471451, -2.172696]], [[55.471451, -2.172696], [55.471388, -2.172576]], [[55.471205, -2.172189], [55.471135, -2.172085]], [[55.471135, -2.172085], [55.47105, -2.171993]], [[55.47105, -2.171993], [55.470976, -2.171885]], [[55.470906, -2.171753], [55.470837, -2.171631]], [[55.470837, -2.171631], [55.470775, -2.171512]], [[55.470775, -2.171512], [55.470733, -2.171357]], [[55.470733, -2.171357], [55.470729, -2.171196]], [[55.470729, -2.171196], [55.470686, -2.171045]], [[55.470686, -2.171045], [55.470632, -2.170916]], [[55.470632, -2.170916], [55.470566, -2.170785]], [[55.470566, -2.170785], [55.470492, -2.17067]], [[55.470492, -2.17067], [55.470426, -2.170553]], [[55.470426, -2.170553], [55.47037, -2.170423]], [[55.47037, -2.170423], [55.470315, -2.170289]], [[55.470315, -2.170289], [55.470267, -2.170152]], [[55.470267, -2.170152], [55.470215, -2.170009]], [[55.470215, -2.170009], [55.470129, -2.169918]], [[55.470129, -2.169918], [55.47004, -2.169886]], [[55.47004, -2.169886], [55.469948, -2.169835]], [[55.469948, -2.169835], [55.469864, -2.169748]], [[55.469864, -2.169748], [55.469786, -2.169646]], [[55.469786, -2.169646], [55.469719, -2.169521]], [[55.469719, -2.169521], [55.469728, -2.169362]], [[55.469728, -2.169362], [55.469767, -2.169215]], [[55.469595, -2.16882], [55.469543, -2.168669]], [[55.469543, -2.168669], [55.469475, -2.168555]], [[55.469475, -2.168555], [55.469405, -2.168443]], [[55.469345, -2.168317], [55.469268, -2.168235]], [[55.469268, -2.168235], [55.469198, -2.168133]], [[55.469198, -2.168133], [55.46914, -2.168008]], [[55.46914, -2.168008], [55.469093, -2.167866]], [[55.469093, -2.167866], [55.469032, -2.167749]], [[55.469032, -2.167749], [55.468966, -2.167636]], [[55.468966, -2.167636], [55.4689, -2.167519]], [[55.4689, -2.167519], [55.468823, -2.167424]], [[55.468823, -2.167424], [55.46874, -2.167328]], [[55.468591, -2.167129], [55.468502, -2.167059]], [[55.468502, -2.167059], [55.468426, -2.166952]], [[55.468332, -2.166659], [55.468244, -2.166579]], [[55.467867, -2.166854], [55.467806, -2.166989]], [[55.467806, -2.166989], [55.46775, -2.167139]], [[55.46775, -2.167139], [55.467716, -2.167307]], [[55.467716, -2.167307], [55.467685, -2.167459]], [[55.467685, -2.167459], [55.467633, -2.167606]], [[55.467633, -2.167606], [55.467577, -2.167737]], [[55.46748, -2.168015], [55.467433, -2.168159]], [[55.467433, -2.168159], [55.467384, -2.168313]], [[55.467355, -2.168465], [55.467325, -2.168635]], [[55.467325, -2.168635], [55.467279, -2.168773]], [[55.467279, -2.168773], [55.467222, -2.168907]], [[55.467222, -2.168907], [55.467169, -2.169036]], [[55.467169, -2.169036], [55.467121, -2.169192]], [[55.467121, -2.169192], [55.467077, -2.169338]], [[55.467077, -2.169338], [55.467034, -2.169479]], [[55.467034, -2.169479], [55.466983, -2.169614]], [[55.466883, -2.169899], [55.466833, -2.170055]], [[55.466833, -2.170055], [55.466779, -2.170203]], [[55.466779, -2.170203], [55.466743, -2.170349]], [[55.466743, -2.170349], [55.466725, -2.170511]], [[55.466681, -2.171075], [55.46666, -2.171233]], [[55.46666, -2.171233], [55.466658, -2.171392]], [[55.466653, -2.171726], [55.466664, -2.171893]], [[55.466664, -2.171893], [55.466668, -2.172058]], [[55.46666, -2.172227], [55.46664, -2.172398]], [[55.46664, -2.172398], [55.466634, -2.172574]], [[55.466634, -2.172574], [55.466642, -2.172739]], [[55.466579, -2.173336], [55.466571, -2.173495]], [[55.466571, -2.173495], [55.466567, -2.173669]], [[55.466542, -2.174009], [55.466507, -2.174165]], [[55.466507, -2.174165], [55.466535, -2.17434]], [[55.46647, -2.175146], [55.466434, -2.175297]], [[55.466295, -2.175919], [55.466272, -2.176085]], [[55.466272, -2.176085], [55.466265, -2.176254]], [[55.466265, -2.176254], [55.46624, -2.17641]], [[55.466194, -2.176729], [55.466156, -2.176881]], [[55.466156, -2.176881], [55.46614, -2.177037]], [[55.46614, -2.177037], [55.466093, -2.177176]], [[55.466093, -2.177176], [55.466056, -2.177327]], [[55.466056, -2.177327], [55.46601, -2.177477]], [[55.46601, -2.177477], [55.465985, -2.177646]], [[55.465985, -2.177646], [55.465934, -2.177781]], [[55.465934, -2.177781], [55.465918, -2.177949]], [[55.465918, -2.177949], [55.465904, -2.178113]], [[55.465802, -2.178394], [55.465761, -2.178542]], [[55.46569, -2.178865], [55.465651, -2.17902]], [[55.465651, -2.17902], [55.465587, -2.179157]], [[55.465587, -2.179157], [55.465536, -2.179301]], [[55.465536, -2.179301], [55.46549, -2.179459]], [[55.465392, -2.179802], [55.465356, -2.179963]], [[55.465356, -2.179963], [55.46531, -2.180115]], [[55.46531, -2.180115], [55.465276, -2.180279]], [[55.465276, -2.180279], [55.465225, -2.180429]], [[55.465225, -2.180429], [55.465171, -2.180566]], [[55.465171, -2.180566], [55.465128, -2.180715]], [[55.465128, -2.180715], [55.46506, -2.18084]], [[55.46506, -2.18084], [55.465005, -2.180988]], [[55.465005, -2.180988], [55.464969, -2.181155]], [[55.464969, -2.181155], [55.464923, -2.1813]], [[55.464923, -2.1813], [55.464893, -2.181473]], [[55.464893, -2.181473], [55.464838, -2.181602]], [[55.464838, -2.181602], [55.464785, -2.181748]], [[55.464785, -2.181748], [55.464733, -2.181897]], [[55.464733, -2.181897], [55.464691, -2.182056]], [[55.464691, -2.182056], [55.464647, -2.182202]], [[55.464647, -2.182202], [55.464602, -2.182346]], [[55.464546, -2.182493], [55.464507, -2.182648]], [[55.464507, -2.182648], [55.464474, -2.182806]], [[55.464474, -2.182806], [55.464407, -2.182923]], [[55.464407, -2.182923], [55.464334, -2.18302]], [[55.464334, -2.18302], [55.464283, -2.183159]], [[55.464283, -2.183159], [55.464255, -2.183327]], [[55.464255, -2.183327], [55.464209, -2.183485]], [[55.464209, -2.183485], [55.464155, -2.183631]], [[55.464155, -2.183631], [55.464099, -2.183767]], [[55.464099, -2.183767], [55.46403, -2.183872]], [[55.46403, -2.183872], [55.463994, -2.184032]], [[55.463994, -2.184032], [55.463914, -2.184106]], [[55.463914, -2.184106], [55.463833, -2.184205]], [[55.463778, -2.184334], [55.463707, -2.184433]], [[55.463532, -2.184811], [55.463477, -2.184963]], [[55.463477, -2.184963], [55.463419, -2.185096]], [[55.463331, -2.185159], [55.463261, -2.185278]], [[55.463261, -2.185278], [55.463195, -2.185393]], [[55.462778, -2.185797], [55.462732, -2.185955]], [[55.461774, -2.18703], [55.461687, -2.187109]], [[55.461687, -2.187109], [55.461605, -2.187193]], [[55.461538, -2.187308], [55.461456, -2.187417]], [[55.4611, -2.187689], [55.461016, -2.187764]], [[55.461016, -2.187764], [55.460926, -2.187805]], [[55.46074, -2.187816], [55.460648, -2.187838]], [[55.460648, -2.187838], [55.460557, -2.187895]], [[55.46028, -2.187948], [55.460188, -2.187947]], [[55.460017, -2.188068], [55.459919, -2.188084]], [[55.459919, -2.188084], [55.459829, -2.188091]], [[55.459829, -2.188091], [55.459731, -2.188129]], [[55.459731, -2.188129], [55.459629, -2.188133]], [[55.45954, -2.188197], [55.459451, -2.188222]], [[55.459451, -2.188222], [55.459362, -2.188175]], [[55.459362, -2.188175], [55.459262, -2.188194]], [[55.459019, -2.188235], [55.458921, -2.188263]], [[55.458155, -2.188488], [55.458065, -2.18853]], [[55.458065, -2.18853], [55.45797, -2.188543]], [[55.45797, -2.188543], [55.457873, -2.188582]], [[55.457873, -2.188582], [55.457775, -2.188609]], [[55.457399, -2.188734], [55.457297, -2.188762]], [[55.457203, -2.188777], [55.457105, -2.18881]], [[55.457105, -2.18881], [55.457013, -2.18885]], [[55.457013, -2.18885], [55.456922, -2.188856]], [[55.456629, -2.188953], [55.456537, -2.188969]], [[55.455682, -2.189199], [55.455583, -2.189221]], [[55.455583, -2.189221], [55.455483, -2.189218]], [[55.455302, -2.189234], [55.45521, -2.189258]], [[55.45521, -2.189258], [55.455118, -2.189281]], [[55.455027, -2.189327], [55.454931, -2.189371]], [[55.454931, -2.189371], [55.454831, -2.189412]], [[55.454319, -2.189794], [55.454241, -2.18988]], [[55.454241, -2.18988], [55.454171, -2.18998]], [[55.45389, -2.19034], [55.453806, -2.190425]], [[55.45341, -2.190855], [55.45334, -2.190955]], [[55.45334, -2.190955], [55.453256, -2.191042]], [[55.453256, -2.191042], [55.453169, -2.191101]], [[55.453032, -2.191319], [55.452964, -2.191424]], [[55.452964, -2.191424], [55.452912, -2.191559]], [[55.452338, -2.192107], [55.452247, -2.19217]], [[55.452247, -2.19217], [55.45216, -2.192238]], [[55.45216, -2.192238], [55.452066, -2.192288]], [[55.452066, -2.192288], [55.451978, -2.19233]], [[55.451313, -2.192583], [55.451213, -2.192617]], [[55.451213, -2.192617], [55.451116, -2.19265]], [[55.451116, -2.19265], [55.451026, -2.192695]], [[55.450743, -2.192761], [55.450653, -2.19278]], [[55.449999, -2.192902], [55.449905, -2.19293]], [[55.449905, -2.19293], [55.449811, -2.192935]], [[55.44826, -2.192952], [55.448159, -2.192991]], [[55.44788, -2.193082], [55.447788, -2.19312]], [[55.447788, -2.19312], [55.447693, -2.193152]], [[55.446167, -2.193761], [55.446081, -2.193832]], [[55.446081, -2.193832], [55.445984, -2.193887]], [[55.445607, -2.19403], [55.445518, -2.194071]], [[55.445518, -2.194071], [55.445422, -2.194082]], [[55.445215, -2.194266], [55.445121, -2.194327]], [[55.444941, -2.194475], [55.444853, -2.194565]], [[55.444604, -2.194851], [55.444524, -2.194963]], [[55.444524, -2.194963], [55.444452, -2.195082]], [[55.444452, -2.195082], [55.444391, -2.195199]], [[55.444391, -2.195199], [55.444313, -2.195306]], [[55.444313, -2.195306], [55.444257, -2.195431]], [[55.444257, -2.195431], [55.444178, -2.19554]], [[55.444178, -2.19554], [55.44411, -2.195644]], [[55.44411, -2.195644], [55.444038, -2.195743]], [[55.444038, -2.195743], [55.443971, -2.195866]], [[55.443971, -2.195866], [55.443895, -2.195964]], [[55.443895, -2.195964], [55.443831, -2.196079]], [[55.443831, -2.196079], [55.443751, -2.196182]], [[55.443751, -2.196182], [55.443677, -2.196299]], [[55.443677, -2.196299], [55.4436, -2.196402]], [[55.4436, -2.196402], [55.443537, -2.196523]], [[55.443537, -2.196523], [55.443452, -2.196619]], [[55.443452, -2.196619], [55.443366, -2.196703]], [[55.443366, -2.196703], [55.443293, -2.196818]], [[55.443293, -2.196818], [55.443217, -2.196904]], [[55.443217, -2.196904], [55.443133, -2.196977]], [[55.443133, -2.196977], [55.443053, -2.197071]], [[55.443053, -2.197071], [55.442975, -2.197162]], [[55.442975, -2.197162], [55.442903, -2.197258]], [[55.442903, -2.197258], [55.442825, -2.197348]], [[55.442825, -2.197348], [55.44275, -2.197436]], [[55.44275, -2.197436], [55.442668, -2.19754]], [[55.442668, -2.19754], [55.442585, -2.197638]], [[55.442585, -2.197638], [55.442511, -2.197744]], [[55.442301, -2.198068], [55.442226, -2.198194]], [[55.442029, -2.198566], [55.441965, -2.198682]], [[55.441965, -2.198682], [55.441883, -2.198747]], [[55.441883, -2.198747], [55.441808, -2.198868]], [[55.441808, -2.198868], [55.441742, -2.19899]], [[55.441742, -2.19899], [55.441671, -2.199114]], [[55.441671, -2.199114], [55.441599, -2.199218]], [[55.441599, -2.199218], [55.441526, -2.199341]], [[55.441526, -2.199341], [55.441454, -2.19945]], [[55.441454, -2.19945], [55.441392, -2.199567]], [[55.441392, -2.199567], [55.441328, -2.199679]], [[55.441244, -2.199768], [55.441175, -2.19989]], [[55.441175, -2.19989], [55.441128, -2.200026]], [[55.441128, -2.200026], [55.441075, -2.200175]], [[55.441075, -2.200175], [55.441021, -2.200308]], [[55.441021, -2.200308], [55.440989, -2.200465]], [[55.440989, -2.200465], [55.440958, -2.20063]], [[55.440958, -2.20063], [55.440909, -2.20077]], [[55.440909, -2.20077], [55.440855, -2.20092]], [[55.440855, -2.20092], [55.440804, -2.201051]], [[55.440804, -2.201051], [55.440774, -2.201201]], [[55.440774, -2.201201], [55.440712, -2.201317]], [[55.440665, -2.201466], [55.44062, -2.201614]], [[55.44062, -2.201614], [55.440553, -2.201739]], [[55.440553, -2.201739], [55.440475, -2.201822]], [[55.440475, -2.201822], [55.440389, -2.201874]], [[55.440389, -2.201874], [55.440297, -2.201928]], [[55.440297, -2.201928], [55.440205, -2.201992]], [[55.440205, -2.201992], [55.440107, -2.202047]], [[55.440107, -2.202047], [55.440036, -2.202146]], [[55.440036, -2.202146], [55.439941, -2.202199]], [[55.439941, -2.202199], [55.439856, -2.202265]], [[55.439856, -2.202265], [55.439764, -2.202314]], [[55.439764, -2.202314], [55.439675, -2.20239]], [[55.439675, -2.20239], [55.439585, -2.202432]], [[55.439585, -2.202432], [55.439506, -2.202513]], [[55.439506, -2.202513], [55.439432, -2.202626]], [[55.439432, -2.202626], [55.439359, -2.202721]], [[55.439359, -2.202721], [55.439274, -2.202812]], [[55.439274, -2.202812], [55.439202, -2.202907]], [[55.439202, -2.202907], [55.439122, -2.202997]], [[55.439122, -2.202997], [55.439042, -2.20309]], [[55.439042, -2.20309], [55.438961, -2.203185]], [[55.438961, -2.203185], [55.438881, -2.203277]], [[55.438881, -2.203277], [55.438802, -2.203354]], [[55.438802, -2.203354], [55.438724, -2.203442]], [[55.438724, -2.203442], [55.438645, -2.203537]], [[55.438645, -2.203537], [55.438564, -2.20362]], [[55.438564, -2.20362], [55.43848, -2.203723]], [[55.43848, -2.203723], [55.438394, -2.203799]], [[55.438394, -2.203799], [55.438333, -2.203934]], [[55.438333, -2.203934], [55.438294, -2.204086]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_a52cce0f954612194c2f6164eda64268);
        
    
            var poly_line_8cd2529faa731b07ba1e013861ab5dc4 = L.polyline(
                [[[55.546841, -2.274672], [55.546775, -2.274544]], [[55.546775, -2.274544], [55.546694, -2.274471]], [[55.546524, -2.274282], [55.546458, -2.274165]], [[55.546458, -2.274165], [55.546371, -2.274073]], [[55.545229, -2.271837], [55.545202, -2.271683]], [[55.545202, -2.271683], [55.545189, -2.271513]], [[55.545189, -2.271513], [55.545156, -2.271342]], [[55.545156, -2.271342], [55.545147, -2.271182]], [[55.545147, -2.271182], [55.545143, -2.271001]], [[55.545143, -2.271001], [55.545169, -2.270825]], [[55.545169, -2.270825], [55.545201, -2.270669]], [[55.545353, -2.269872], [55.54541, -2.269732]], [[55.54541, -2.269732], [55.545432, -2.269571]], [[55.545444, -2.268893], [55.545416, -2.268722]], [[55.545416, -2.268722], [55.545372, -2.268581]], [[55.545372, -2.268581], [55.545347, -2.268422]], [[55.545308, -2.268258], [55.545274, -2.268086]], [[55.545274, -2.268086], [55.545242, -2.267921]], [[55.545242, -2.267921], [55.54521, -2.267753]], [[55.54521, -2.267753], [55.545178, -2.267598]], [[55.545066, -2.266746], [55.545026, -2.266594]], [[55.544942, -2.266301], [55.544895, -2.26615]], [[55.544895, -2.26615], [55.544852, -2.265992]], [[55.544735, -2.264038], [55.544763, -2.263866]], [[55.544763, -2.263866], [55.54477, -2.263695]], [[55.54477, -2.263695], [55.544778, -2.263523]], [[55.544778, -2.263523], [55.544767, -2.26335]], [[55.544767, -2.26335], [55.544717, -2.263199]], [[55.54451, -2.262617], [55.544463, -2.262478]], [[55.544463, -2.262478], [55.544415, -2.262326]], [[55.544415, -2.262326], [55.544362, -2.262176]], [[55.544362, -2.262176], [55.544308, -2.262034]], [[55.544308, -2.262034], [55.544266, -2.261877]], [[55.544266, -2.261877], [55.544217, -2.261718]], [[55.544217, -2.261718], [55.544174, -2.261572]], [[55.544174, -2.261572], [55.544127, -2.261432]], [[55.544068, -2.261296], [55.544031, -2.261128]], [[55.544031, -2.261128], [55.544, -2.260955]], [[55.544, -2.260955], [55.543987, -2.260782]], [[55.543987, -2.260782], [55.543961, -2.260606]], [[55.543961, -2.260606], [55.543937, -2.260446]], [[55.543937, -2.260446], [55.543917, -2.260284]], [[55.543917, -2.260284], [55.543895, -2.26011]], [[55.543895, -2.26011], [55.543867, -2.259946]], [[55.543867, -2.259946], [55.543851, -2.259784]], [[55.543851, -2.259784], [55.543828, -2.259608]], [[55.543776, -2.259283], [55.543734, -2.259117]], [[55.54353, -2.258543], [55.543471, -2.258405]], [[55.543471, -2.258405], [55.543416, -2.258255]], [[55.543416, -2.258255], [55.543366, -2.258112]], [[55.543366, -2.258112], [55.543308, -2.257965]], [[55.543196, -2.257694], [55.543145, -2.257559]], [[55.543085, -2.257412], [55.54303, -2.257271]], [[55.54303, -2.257271], [55.542972, -2.257135]], [[55.542972, -2.257135], [55.542921, -2.257]], [[55.542921, -2.257], [55.542865, -2.256868]], [[55.542865, -2.256868], [55.542801, -2.256733]], [[55.542801, -2.256733], [55.542744, -2.256583]], [[55.542744, -2.256583], [55.542689, -2.256434]], [[55.542689, -2.256434], [55.542645, -2.256275]], [[55.542645, -2.256275], [55.542603, -2.256114]], [[55.542603, -2.256114], [55.542553, -2.255976]], [[55.542553, -2.255976], [55.542504, -2.255838]], [[55.542504, -2.255838], [55.542423, -2.255741]], [[55.542401, -2.255256], [55.542406, -2.255078]], [[55.542406, -2.255078], [55.542419, -2.254918]], [[55.53597, -2.234228], [55.535895, -2.234134]], [[55.535895, -2.234134], [55.535827, -2.234015]], [[55.535827, -2.234015], [55.535759, -2.23389]], [[55.535759, -2.23389], [55.535696, -2.233777]], [[55.53549, -2.233687], [55.535391, -2.233704]], [[55.535391, -2.233704], [55.535294, -2.233703]], [[55.535294, -2.233703], [55.535194, -2.233706]], [[55.535194, -2.233706], [55.535104, -2.233689]], [[55.534734, -2.233557], [55.53464, -2.233536]], [[55.53362, -2.233422], [55.533528, -2.233435]], [[55.527952, -2.227292], [55.527862, -2.227228]], [[55.527496, -2.227004], [55.527405, -2.226946]], [[55.527405, -2.226946], [55.527313, -2.226891]], [[55.527313, -2.226891], [55.52722, -2.226842]], [[55.52722, -2.226842], [55.527135, -2.22679]], [[55.527135, -2.22679], [55.527043, -2.22673]], [[55.527043, -2.22673], [55.526955, -2.226664]], [[55.526955, -2.226664], [55.526857, -2.226597]], [[55.526857, -2.226597], [55.526772, -2.22653]], [[55.525045, -2.225655], [55.524952, -2.225618]], [[55.524952, -2.225618], [55.524863, -2.225573]], [[55.524863, -2.225573], [55.524773, -2.225528]], [[55.524399, -2.225332], [55.524308, -2.225293]], [[55.521402, -2.225142], [55.521305, -2.225174]], [[55.521305, -2.225174], [55.521209, -2.22523]], [[55.518431, -2.226784], [55.518335, -2.226794]], [[55.506504, -2.225934], [55.506428, -2.225838]], [[55.506357, -2.225713], [55.506281, -2.225602]], [[55.50605, -2.2253], [55.505962, -2.225223]], [[55.505962, -2.225223], [55.50587, -2.225147]], [[55.505586, -2.224698], [55.505512, -2.224593]], [[55.505362, -2.224372], [55.505288, -2.224249]], [[55.505288, -2.224249], [55.505215, -2.224155]], [[55.505126, -2.224115], [55.505059, -2.223993]], [[55.504934, -2.223737], [55.504876, -2.223611]], [[55.504736, -2.22339], [55.504671, -2.223262]], [[55.504671, -2.223262], [55.504608, -2.223126]], [[55.504552, -2.222995], [55.504491, -2.222872]], [[55.504491, -2.222872], [55.504427, -2.222761]], [[55.504427, -2.222761], [55.504357, -2.222643]], [[55.504357, -2.222643], [55.504298, -2.222524]], [[55.504101, -2.221946], [55.504048, -2.221805]], [[55.504048, -2.221805], [55.503988, -2.221681]], [[55.503474, -2.219406], [55.503452, -2.219243]], [[55.493754, -2.207567], [55.493675, -2.207469]], [[55.487376, -2.202687], [55.487296, -2.202773]], [[55.487296, -2.202773], [55.487218, -2.202863]], [[55.48412, -2.204919], [55.484028, -2.204942]], [[55.484028, -2.204942], [55.48395, -2.205031]], [[55.474654, -2.193986], [55.47461, -2.193838]], [[55.474594, -2.193504], [55.474565, -2.193352]], [[55.474567, -2.193018], [55.47451, -2.192871]], [[55.472025, -2.173589], [55.471948, -2.173471]], [[55.471948, -2.173471], [55.471886, -2.173342]], [[55.471886, -2.173342], [55.471817, -2.173236]], [[55.471607, -2.172901], [55.471532, -2.172794]], [[55.471388, -2.172576], [55.471322, -2.172445]], [[55.471322, -2.172445], [55.471261, -2.172314]], [[55.471261, -2.172314], [55.471205, -2.172189]], [[55.470976, -2.171885], [55.470906, -2.171753]], [[55.467963, -2.166533], [55.467915, -2.166696]], [[55.467915, -2.166696], [55.467867, -2.166854]], [[55.467577, -2.167737], [55.467526, -2.167875]], [[55.467526, -2.167875], [55.46748, -2.168015]], [[55.467384, -2.168313], [55.467355, -2.168465]], [[55.466983, -2.169614], [55.466937, -2.169763]], [[55.466937, -2.169763], [55.466883, -2.169899]], [[55.466725, -2.170511], [55.466686, -2.170661]], [[55.466658, -2.171392], [55.466657, -2.171556]], [[55.466657, -2.171556], [55.466653, -2.171726]], [[55.466668, -2.172058], [55.46666, -2.172227]], [[55.466329, -2.175766], [55.466295, -2.175919]], [[55.465761, -2.178542], [55.465724, -2.178702]], [[55.465724, -2.178702], [55.46569, -2.178865]], [[55.463833, -2.184205], [55.463778, -2.184334]], [[55.463707, -2.184433], [55.463628, -2.184529]], [[55.463628, -2.184529], [55.463568, -2.184661]], [[55.463568, -2.184661], [55.463532, -2.184811]], [[55.463419, -2.185096], [55.463331, -2.185159]], [[55.463195, -2.185393], [55.463097, -2.185429]], [[55.463097, -2.185429], [55.463006, -2.185462]], [[55.463006, -2.185462], [55.462917, -2.185538]], [[55.462917, -2.185538], [55.462852, -2.185674]], [[55.462852, -2.185674], [55.462778, -2.185797]], [[55.462732, -2.185955], [55.462669, -2.18609]], [[55.462669, -2.18609], [55.462589, -2.186172]], [[55.462589, -2.186172], [55.462499, -2.186227]], [[55.462499, -2.186227], [55.462418, -2.186334]], [[55.462418, -2.186334], [55.462346, -2.186451]], [[55.462346, -2.186451], [55.462267, -2.186553]], [[55.462267, -2.186553], [55.462189, -2.186638]], [[55.462189, -2.186638], [55.462098, -2.186691]], [[55.462098, -2.186691], [55.462015, -2.186757]], [[55.462015, -2.186757], [55.461931, -2.18683]], [[55.461931, -2.18683], [55.461848, -2.186922]], [[55.461848, -2.186922], [55.461774, -2.18703]], [[55.461605, -2.187193], [55.461538, -2.187308]], [[55.461456, -2.187417], [55.461376, -2.18753]], [[55.461376, -2.18753], [55.461293, -2.1876]], [[55.461293, -2.1876], [55.461198, -2.187659]], [[55.461198, -2.187659], [55.4611, -2.187689]], [[55.460926, -2.187805], [55.46083, -2.187823]], [[55.46083, -2.187823], [55.46074, -2.187816]], [[55.460557, -2.187895], [55.460464, -2.18793]], [[55.460464, -2.18793], [55.460371, -2.187933]], [[55.460371, -2.187933], [55.46028, -2.187948]], [[55.460188, -2.187947], [55.460101, -2.188007]], [[55.460101, -2.188007], [55.460017, -2.188068]], [[55.459629, -2.188133], [55.45954, -2.188197]], [[55.458921, -2.188263], [55.458824, -2.188267]], [[55.458824, -2.188267], [55.458731, -2.188277]], [[55.458731, -2.188277], [55.458631, -2.188309]], [[55.458631, -2.188309], [55.458539, -2.188347]], [[55.458539, -2.188347], [55.458445, -2.188389]], [[55.458445, -2.188389], [55.45835, -2.188414]], [[55.45835, -2.188414], [55.45825, -2.188454]], [[55.45825, -2.188454], [55.458155, -2.188488]], [[55.457775, -2.188609], [55.457683, -2.188628]], [[55.457683, -2.188628], [55.457585, -2.188669]], [[55.457585, -2.188669], [55.457488, -2.188704]], [[55.457488, -2.188704], [55.457399, -2.188734]], [[55.457297, -2.188762], [55.457203, -2.188777]], [[55.456922, -2.188856], [55.456825, -2.188897]], [[55.456825, -2.188897], [55.456729, -2.188918]], [[55.456729, -2.188918], [55.456629, -2.188953]], [[55.456537, -2.188969], [55.456444, -2.188952]], [[55.456444, -2.188952], [55.456349, -2.188984]], [[55.456349, -2.188984], [55.456256, -2.189005]], [[55.456256, -2.189005], [55.456163, -2.189032]], [[55.456163, -2.189032], [55.45607, -2.18906]], [[55.45607, -2.18906], [55.455969, -2.189094]], [[55.455969, -2.189094], [55.455875, -2.189142]], [[55.455875, -2.189142], [55.455773, -2.189171]], [[55.455773, -2.189171], [55.455682, -2.189199]], [[55.455483, -2.189218], [55.455389, -2.189194]], [[55.455389, -2.189194], [55.455302, -2.189234]], [[55.455118, -2.189281], [55.455027, -2.189327]], [[55.454831, -2.189412], [55.454737, -2.189458]], [[55.454737, -2.189458], [55.45464, -2.189503]], [[55.45464, -2.189503], [55.454546, -2.189546]], [[55.454546, -2.189546], [55.454457, -2.189573]], [[55.454457, -2.189573], [55.454373, -2.189666]], [[55.454373, -2.189666], [55.454319, -2.189794]], [[55.453806, -2.190425], [55.453734, -2.190526]], [[55.453734, -2.190526], [55.453654, -2.19061]], [[55.453654, -2.19061], [55.453563, -2.190669]], [[55.453563, -2.190669], [55.453485, -2.19076]], [[55.453485, -2.19076], [55.45341, -2.190855]], [[55.453169, -2.191101], [55.453094, -2.191201]], [[55.453094, -2.191201], [55.453032, -2.191319]], [[55.452912, -2.191559], [55.452853, -2.191689]], [[55.452853, -2.191689], [55.45277, -2.191753]], [[55.45277, -2.191753], [55.452677, -2.191815]], [[55.452677, -2.191815], [55.45259, -2.191893]], [[55.45259, -2.191893], [55.452513, -2.191993]], [[55.452513, -2.191993], [55.452426, -2.192071]], [[55.452426, -2.192071], [55.452338, -2.192107]], [[55.451978, -2.19233], [55.451881, -2.19237]], [[55.451881, -2.19237], [55.45178, -2.192406]], [[55.45178, -2.192406], [55.451687, -2.192445]], [[55.451687, -2.192445], [55.451597, -2.192489]], [[55.451597, -2.192489], [55.4515, -2.192515]], [[55.4515, -2.192515], [55.451401, -2.192538]], [[55.451401, -2.192538], [55.451313, -2.192583]], [[55.451026, -2.192695], [55.45093, -2.192727]], [[55.45093, -2.192727], [55.450835, -2.19276]], [[55.450835, -2.19276], [55.450743, -2.192761]], [[55.450653, -2.19278], [55.450559, -2.192819]], [[55.450559, -2.192819], [55.450467, -2.192817]], [[55.450467, -2.192817], [55.450371, -2.192798]], [[55.450371, -2.192798], [55.450271, -2.192803]], [[55.450271, -2.192803], [55.450175, -2.19282]], [[55.450175, -2.19282], [55.450085, -2.192825]], [[55.450085, -2.192825], [55.449999, -2.192902]], [[55.449811, -2.192935], [55.449712, -2.192951]], [[55.449712, -2.192951], [55.44961, -2.192942]], [[55.44961, -2.192942], [55.449514, -2.192929]], [[55.449514, -2.192929], [55.449415, -2.192913]], [[55.449415, -2.192913], [55.449319, -2.192915]], [[55.449319, -2.192915], [55.449216, -2.192904]], [[55.449216, -2.192904], [55.449116, -2.192894]], [[55.449116, -2.192894], [55.449024, -2.192879]], [[55.449024, -2.192879], [55.448926, -2.192876]], [[55.448926, -2.192876], [55.448828, -2.192886]], [[55.448828, -2.192886], [55.448736, -2.192878]], [[55.448736, -2.192878], [55.448644, -2.192862]], [[55.448644, -2.192862], [55.448546, -2.192879]], [[55.448546, -2.192879], [55.448444, -2.192908]], [[55.448444, -2.192908], [55.448352, -2.192931]], [[55.448352, -2.192931], [55.44826, -2.192952]], [[55.448159, -2.192991], [55.448066, -2.193024]], [[55.448066, -2.193024], [55.447973, -2.193042]], [[55.447973, -2.193042], [55.44788, -2.193082]], [[55.447693, -2.193152], [55.447593, -2.193195]], [[55.447593, -2.193195], [55.447497, -2.193224]], [[55.447497, -2.193224], [55.447406, -2.193277]], [[55.447406, -2.193277], [55.447312, -2.193328]], [[55.447312, -2.193328], [55.447211, -2.193368]], [[55.447211, -2.193368], [55.447117, -2.193404]], [[55.447117, -2.193404], [55.447024, -2.19344]], [[55.447024, -2.19344], [55.446929, -2.19347]], [[55.446929, -2.19347], [55.446838, -2.193519]], [[55.446838, -2.193519], [55.446745, -2.193558]], [[55.446745, -2.193558], [55.446642, -2.193566]], [[55.446642, -2.193566], [55.446545, -2.193608]], [[55.446545, -2.193608], [55.446449, -2.193678]], [[55.446449, -2.193678], [55.446359, -2.19371]], [[55.446359, -2.19371], [55.446256, -2.193708]], [[55.446256, -2.193708], [55.446167, -2.193761]], [[55.445984, -2.193887], [55.445888, -2.19389]], [[55.445888, -2.19389], [55.44579, -2.193932]], [[55.44579, -2.193932], [55.445699, -2.193963]], [[55.445699, -2.193963], [55.445607, -2.19403]], [[55.445121, -2.194327], [55.445035, -2.194418]], [[55.445035, -2.194418], [55.444941, -2.194475]], [[55.444853, -2.194565], [55.44476, -2.194636]], [[55.44476, -2.194636], [55.444679, -2.194749]], [[55.444679, -2.194749], [55.444604, -2.194851]], [[55.442511, -2.197744], [55.442443, -2.197857]], [[55.442443, -2.197857], [55.442361, -2.197946]], [[55.442361, -2.197946], [55.442301, -2.198068]], [[55.442226, -2.198194], [55.442157, -2.198331]], [[55.442157, -2.198331], [55.44209, -2.198451]], [[55.44209, -2.198451], [55.442029, -2.198566]], [[55.440712, -2.201317], [55.440665, -2.201466]], [[55.438294, -2.204086], [55.438252, -2.20425]], [[55.438252, -2.20425], [55.43821, -2.204392]], [[55.43821, -2.204392], [55.438154, -2.204531]], [[55.438154, -2.204531], [55.438109, -2.204681]], [[55.438109, -2.204681], [55.438071, -2.204837]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_a52cce0f954612194c2f6164eda64268);
        
    
            var poly_line_1c3d5332544f99174d3748686e41c392 = L.polyline(
                [[[55.545497, -2.273291], [55.545499, -2.273277]], [[55.542397, -2.255597], [55.5424, -2.255421]], [[55.542599, -2.254538], [55.542608, -2.254513]], [[55.54263, -2.253994], [55.542665, -2.253993]], [[55.54088, -2.248753], [55.540853, -2.248611]], [[55.540853, -2.248611], [55.540812, -2.248456]], [[55.540018, -2.242226], [55.539996, -2.24206]], [[55.539979, -2.241734], [55.539989, -2.241569]], [[55.54, -2.241247], [55.539992, -2.241083]], [[55.539992, -2.241083], [55.53996, -2.240922]], [[55.535614, -2.23371], [55.535582, -2.233686]], [[55.535582, -2.233686], [55.53549, -2.233687]], [[55.533356, -2.233499], [55.533293, -2.233624]], [[55.53227, -2.233616], [55.532178, -2.233625]], [[55.532178, -2.233625], [55.532086, -2.233579]], [[55.532086, -2.233579], [55.531998, -2.233544]], [[55.531998, -2.233544], [55.531906, -2.233551]], [[55.531357, -2.233394], [55.531264, -2.233407]], [[55.531083, -2.233355], [55.530988, -2.233364]], [[55.530988, -2.233364], [55.530896, -2.233352]], [[55.530896, -2.233352], [55.530808, -2.233371]], [[55.530808, -2.233371], [55.530711, -2.233359]], [[55.530433, -2.233316], [55.53034, -2.233332]], [[55.53034, -2.233332], [55.530246, -2.233318]], [[55.530246, -2.233318], [55.530178, -2.233298]], [[55.529804, -2.233272], [55.529732, -2.233228]], [[55.529732, -2.233228], [55.529642, -2.233183]], [[55.529353, -2.232074], [55.529326, -2.231923]], [[55.529326, -2.231923], [55.5293, -2.23177]], [[55.5293, -2.23177], [55.529268, -2.231621]], [[55.529268, -2.231621], [55.529234, -2.231462]], [[55.529202, -2.231313], [55.529186, -2.231148]], [[55.529186, -2.231148], [55.529147, -2.231001]], [[55.529147, -2.231001], [55.529105, -2.23085]], [[55.528344, -2.227511], [55.528316, -2.227487]], [[55.513266, -2.228089], [55.513179, -2.228138]], [[55.513179, -2.228138], [55.513092, -2.228205]], [[55.513092, -2.228205], [55.513019, -2.228222]], [[55.513019, -2.228222], [55.512924, -2.228269]], [[55.512924, -2.228269], [55.512828, -2.228278]], [[55.512828, -2.228278], [55.51273, -2.228292]], [[55.51264, -2.228306], [55.512564, -2.228303]], [[55.512564, -2.228303], [55.51247, -2.228297]], [[55.509862, -2.228952], [55.509826, -2.228959]], [[55.509826, -2.228959], [55.509739, -2.228907]], [[55.507065, -2.226584], [55.507041, -2.226488]], [[55.506973, -2.226379], [55.506937, -2.22637]], [[55.506847, -2.226299], [55.506756, -2.226233]], [[55.503233, -2.217288], [55.503153, -2.217197]], [[55.501621, -2.215267], [55.501552, -2.215163]], [[55.498697, -2.211042], [55.498615, -2.210977]], [[55.498615, -2.210977], [55.498545, -2.21096]], [[55.498545, -2.21096], [55.498459, -2.210906]], [[55.498388, -2.210805], [55.498302, -2.210735]], [[55.498302, -2.210735], [55.498227, -2.210632]], [[55.498227, -2.210632], [55.498149, -2.210544]], [[55.498149, -2.210544], [55.498055, -2.210543]], [[55.498055, -2.210543], [55.497962, -2.210502]], [[55.497962, -2.210502], [55.497903, -2.210367]], [[55.497903, -2.210367], [55.497838, -2.210255]], [[55.497838, -2.210255], [55.497766, -2.210251]], [[55.49768, -2.210196], [55.497607, -2.210163]], [[55.497173, -2.209928], [55.497101, -2.209815]], [[55.497101, -2.209815], [55.497038, -2.209779]], [[55.496866, -2.209755], [55.496781, -2.209697]], [[55.496781, -2.209697], [55.496688, -2.20969]], [[55.496688, -2.20969], [55.496615, -2.209663]], [[55.496325, -2.20941], [55.496235, -2.209379]], [[55.496235, -2.209379], [55.496156, -2.20936]], [[55.496156, -2.20936], [55.496072, -2.209296]], [[55.496072, -2.209296], [55.495989, -2.209267]], [[55.495989, -2.209267], [55.495904, -2.209211]], [[55.495904, -2.209211], [55.495819, -2.209157]], [[55.49568, -2.208936], [55.495615, -2.208843]], [[55.495615, -2.208843], [55.495527, -2.208786]], [[55.495527, -2.208786], [55.495447, -2.2087]], [[55.494388, -2.20769], [55.494374, -2.207698]], [[55.494282, -2.207719], [55.494194, -2.207795]], [[55.493935, -2.207725], [55.493848, -2.207649]], [[55.490052, -2.20392], [55.48999, -2.203795]], [[55.4819, -2.206201], [55.481806, -2.206193]], [[55.481806, -2.206193], [55.481712, -2.206216]], [[55.475118, -2.195962], [55.475106, -2.195996]], [[55.475098, -2.195834], [55.475089, -2.19567]], [[55.473964, -2.190172], [55.47393, -2.190033]], [[55.47393, -2.190033], [55.47393, -2.189866]], [[55.473912, -2.189235], [55.473875, -2.189159]], [[55.473832, -2.188841], [55.473821, -2.188684]], [[55.473821, -2.188684], [55.473763, -2.18855]], [[55.473763, -2.18855], [55.473738, -2.188386]], [[55.473738, -2.188386], [55.473724, -2.188223]], [[55.473724, -2.188223], [55.473701, -2.188065]], [[55.473701, -2.188065], [55.473706, -2.187898]], [[55.473706, -2.187898], [55.473681, -2.18774]], [[55.473681, -2.18774], [55.473683, -2.187568]], [[55.473683, -2.187568], [55.473685, -2.187401]], [[55.473685, -2.187401], [55.473718, -2.187245]], [[55.473718, -2.187245], [55.473698, -2.187091]], [[55.473698, -2.187091], [55.473683, -2.186922]], [[55.473683, -2.186922], [55.473643, -2.186774]], [[55.473637, -2.186612], [55.47363, -2.186464]], [[55.47363, -2.186464], [55.473637, -2.186306]], [[55.473637, -2.186306], [55.473619, -2.186147]], [[55.473619, -2.186147], [55.473636, -2.186003]], [[55.473636, -2.186003], [55.473622, -2.185838]], [[55.473622, -2.185838], [55.473617, -2.185698]], [[55.473604, -2.185539], [55.473628, -2.185373]], [[55.473628, -2.185373], [55.473659, -2.185216]], [[55.473659, -2.185216], [55.473676, -2.185085]], [[55.473793, -2.183436], [55.473787, -2.183342]], [[55.473798, -2.183184], [55.473812, -2.18302]], [[55.473812, -2.18302], [55.473816, -2.182905]], [[55.473882, -2.18279], [55.47397, -2.182838]], [[55.473806, -2.182643], [55.473756, -2.182556]], [[55.473421, -2.181111], [55.473412, -2.180953]], [[55.473412, -2.180953], [55.47339, -2.180812]], [[55.47339, -2.180812], [55.473368, -2.180653]], [[55.47322, -2.179975], [55.473196, -2.179857]], [[55.473196, -2.179857], [55.473172, -2.179693]], [[55.473172, -2.179693], [55.473138, -2.179539]], [[55.473138, -2.179539], [55.473141, -2.17938]], [[55.473141, -2.17938], [55.473149, -2.179236]], [[55.473149, -2.179236], [55.473139, -2.17907]], [[55.473139, -2.17907], [55.47312, -2.178915]], [[55.47312, -2.178915], [55.473092, -2.178758]], [[55.473092, -2.178758], [55.473063, -2.178602]], [[55.473063, -2.178602], [55.473003, -2.178469]], [[55.473003, -2.178469], [55.472982, -2.178313]], [[55.472923, -2.177931], [55.472926, -2.177769]], [[55.472926, -2.177769], [55.472913, -2.177611]], [[55.472907, -2.17729], [55.472871, -2.177134]], [[55.472871, -2.177134], [55.472811, -2.177015]], [[55.472587, -2.176336], [55.472551, -2.176184]], [[55.472551, -2.176184], [55.472529, -2.176022]], [[55.472529, -2.176022], [55.47252, -2.175878]], [[55.472432, -2.175183], [55.472428, -2.175018]], [[55.472428, -2.175018], [55.472436, -2.174859]], [[55.472436, -2.174859], [55.472444, -2.174694]], [[55.472444, -2.174694], [55.472458, -2.17453]], [[55.472458, -2.17453], [55.472406, -2.174403]], [[55.47231, -2.174026], [55.472241, -2.173923]], [[55.472241, -2.173923], [55.47216, -2.173833]], [[55.468112, -2.166351], [55.468061, -2.166251]], [[55.468006, -2.166379], [55.467963, -2.166533]], [[55.466696, -2.170904], [55.466681, -2.171075]], [[55.466642, -2.172739], [55.46668, -2.172855]], [[55.46668, -2.172855], [55.466659, -2.173023]], [[55.465904, -2.178113], [55.465915, -2.178143]], [[55.465828, -2.17822], [55.465802, -2.178394]], [[55.46549, -2.179459], [55.465448, -2.179481]], [[55.459209, -2.188196], [55.459113, -2.188208]], [[55.453966, -2.190251], [55.45389, -2.19034]], [[55.445344, -2.194062], [55.445297, -2.1942]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_a52cce0f954612194c2f6164eda64268);
        
    
            var poly_line_e32705acf8592ed263dd8d277d362241 = L.polyline(
                [[[55.545499, -2.273277], [55.54544, -2.273141]], [[55.54236, -2.255754], [55.542397, -2.255597]], [[55.542608, -2.254513], [55.54252, -2.254434]], [[55.542651, -2.253825], [55.542647, -2.253656]], [[55.542277, -2.251537], [55.542274, -2.251542]], [[55.542274, -2.251542], [55.54223, -2.251396]], [[55.530178, -2.233298], [55.530086, -2.233276]], [[55.530086, -2.233276], [55.530026, -2.233304]], [[55.530026, -2.233304], [55.529934, -2.233298]], [[55.529934, -2.233298], [55.529897, -2.233271]], [[55.529897, -2.233271], [55.529804, -2.233272]], [[55.529642, -2.233183], [55.529617, -2.233124]], [[55.529547, -2.233005], [55.529521, -2.232845]], [[55.528316, -2.227487], [55.528223, -2.227462]], [[55.513906, -2.22771], [55.513812, -2.227765]], [[55.503287, -2.217427], [55.503233, -2.217288]], [[55.497766, -2.210251], [55.49768, -2.210196]], [[55.497607, -2.210163], [55.497516, -2.210155]], [[55.497516, -2.210155], [55.497459, -2.210144]], [[55.497459, -2.210144], [55.497367, -2.210126]], [[55.497367, -2.210126], [55.497308, -2.210055]], [[55.497308, -2.210055], [55.497232, -2.209958]], [[55.497232, -2.209958], [55.497173, -2.209928]], [[55.497038, -2.209779], [55.496945, -2.209749]], [[55.496945, -2.209749], [55.496866, -2.209755]], [[55.496615, -2.209663], [55.496536, -2.209586]], [[55.496536, -2.209586], [55.49648, -2.209522]], [[55.49648, -2.209522], [55.496398, -2.209443]], [[55.496398, -2.209443], [55.496325, -2.20941]], [[55.490065, -2.203978], [55.490052, -2.20392]], [[55.473875, -2.189159], [55.473844, -2.189009]], [[55.473844, -2.189009], [55.473832, -2.188841]], [[55.473617, -2.185698], [55.473604, -2.185539]], [[55.473676, -2.185085], [55.473706, -2.184931]], [[55.473706, -2.184931], [55.47371, -2.184805]], [[55.47371, -2.184805], [55.47372, -2.184643]], [[55.47372, -2.184643], [55.4737, -2.184543]], [[55.4737, -2.184543], [55.473737, -2.184396]], [[55.473737, -2.184396], [55.473764, -2.184246]], [[55.473764, -2.184246], [55.473779, -2.184087]], [[55.473779, -2.184087], [55.473798, -2.183976]], [[55.473798, -2.183976], [55.473814, -2.18382]], [[55.473814, -2.18382], [55.473793, -2.183761]], [[55.473804, -2.183603], [55.473793, -2.183436]], [[55.473787, -2.183342], [55.473798, -2.183184]], [[55.473816, -2.182905], [55.473882, -2.18279]], [[55.47397, -2.182838], [55.473964, -2.182833]], [[55.47388, -2.182744], [55.473806, -2.182643]], [[55.473756, -2.182556], [55.473692, -2.182431]], [[55.473692, -2.182431], [55.473654, -2.182319]], [[55.473654, -2.182319], [55.473598, -2.182194]], [[55.473598, -2.182194], [55.473564, -2.182133]], [[55.473564, -2.182133], [55.473535, -2.181982]], [[55.473535, -2.181982], [55.473502, -2.181921]], [[55.473502, -2.181921], [55.473451, -2.181784]], [[55.473451, -2.181784], [55.473465, -2.18164]], [[55.473465, -2.18164], [55.473448, -2.18148]], [[55.473448, -2.18148], [55.473454, -2.181378]], [[55.473454, -2.181378], [55.473437, -2.181222]], [[55.473437, -2.181222], [55.473421, -2.181111]], [[55.473368, -2.180653], [55.473364, -2.180527]], [[55.473364, -2.180527], [55.473339, -2.180369]], [[55.473339, -2.180369], [55.473307, -2.180259]], [[55.473307, -2.180259], [55.473257, -2.180119]], [[55.473257, -2.180119], [55.47322, -2.179975]], [[55.472982, -2.178313], [55.472957, -2.178215]], [[55.472957, -2.178215], [55.472932, -2.17806]], [[55.472932, -2.17806], [55.472923, -2.177931]], [[55.47252, -2.175878], [55.472522, -2.175714]], [[55.472522, -2.175714], [55.472497, -2.175611]], [[55.472497, -2.175611], [55.472472, -2.175455]], [[55.472472, -2.175455], [55.472441, -2.175345]], [[55.472441, -2.175345], [55.472432, -2.175183]], [[55.472406, -2.174403], [55.4724, -2.174241]], [[55.4724, -2.174241], [55.472365, -2.174163]], [[55.472365, -2.174163], [55.47231, -2.174026]], [[55.468061, -2.166251], [55.468006, -2.166379]], [[55.466393, -2.17544], [55.466393, -2.175436]], [[55.465448, -2.179481], [55.465433, -2.17965]], [[55.454171, -2.18998], [55.454171, -2.189985]], [[55.454171, -2.189985], [55.454093, -2.190096]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_a52cce0f954612194c2f6164eda64268);
        
    
            var poly_line_68ae11bfad384a25399bfee88fcee2f6 = L.polyline(
                [[[55.54544, -2.273141], [55.545411, -2.272971]], [[55.544698, -2.265199], [55.544689, -2.265025]], [[55.543691, -2.258958], [55.543636, -2.258808]], [[55.542423, -2.255741], [55.54236, -2.255754]], [[55.54252, -2.254434], [55.54259, -2.254319]], [[55.542592, -2.254146], [55.54263, -2.253994]], [[55.542647, -2.253656], [55.542657, -2.25349]], [[55.542657, -2.25349], [55.54264, -2.25333]], [[55.54264, -2.25333], [55.542623, -2.253169]], [[55.542623, -2.253169], [55.542605, -2.253004]], [[55.542605, -2.253004], [55.542608, -2.252845]], [[55.542608, -2.252845], [55.542575, -2.252683]], [[55.542575, -2.252683], [55.542559, -2.252524]], [[55.542559, -2.252524], [55.54253, -2.252371]], [[55.54253, -2.252371], [55.542524, -2.252198]], [[55.542524, -2.252198], [55.542517, -2.252036]], [[55.542517, -2.252036], [55.542475, -2.251881]], [[55.542475, -2.251881], [55.542408, -2.251771]], [[55.542408, -2.251771], [55.542336, -2.251658]], [[55.542336, -2.251658], [55.542277, -2.251537]], [[55.54223, -2.251396], [55.542166, -2.251263]], [[55.542166, -2.251263], [55.54209, -2.251156]], [[55.541513, -2.250225], [55.541445, -2.250097]], [[55.541445, -2.250097], [55.541395, -2.249961]], [[55.541395, -2.249961], [55.541331, -2.249836]], [[55.541331, -2.249836], [55.541269, -2.2497]], [[55.541269, -2.2497], [55.541201, -2.249575]], [[55.541201, -2.249575], [55.541147, -2.249446]], [[55.541147, -2.249446], [55.541096, -2.249307]], [[55.541096, -2.249307], [55.541035, -2.249166]], [[55.541035, -2.249166], [55.540973, -2.249033]], [[55.540973, -2.249033], [55.540907, -2.248905]], [[55.540907, -2.248905], [55.54088, -2.248753]], [[55.540812, -2.248456], [55.540758, -2.24832]], [[55.540758, -2.24832], [55.540713, -2.24818]], [[55.540713, -2.24818], [55.540672, -2.248035]], [[55.540672, -2.248035], [55.54062, -2.247889]], [[55.54062, -2.247889], [55.540557, -2.247756]], [[55.540505, -2.247619], [55.540468, -2.247472]], [[55.540468, -2.247472], [55.540423, -2.247321]], [[55.540387, -2.247166], [55.540368, -2.247009]], [[55.540368, -2.247009], [55.540348, -2.246844]], [[55.540348, -2.246844], [55.540326, -2.246683]], [[55.540326, -2.246683], [55.540297, -2.246525]], [[55.540297, -2.246525], [55.540283, -2.246355]], [[55.540283, -2.246355], [55.540278, -2.246196]], [[55.540278, -2.246196], [55.54029, -2.24603]], [[55.54029, -2.24603], [55.540307, -2.245861]], [[55.540325, -2.245016], [55.540294, -2.244862]], [[55.540294, -2.244862], [55.540287, -2.244691]], [[55.540287, -2.244691], [55.540275, -2.244521]], [[55.540275, -2.244521], [55.540251, -2.24436]], [[55.540251, -2.24436], [55.540224, -2.244209]], [[55.540224, -2.244209], [55.540191, -2.244041]], [[55.540162, -2.243881], [55.540163, -2.243713]], [[55.540163, -2.243713], [55.540153, -2.243542]], [[55.540153, -2.243542], [55.540145, -2.24338]], [[55.540145, -2.24338], [55.540119, -2.24322]], [[55.540119, -2.24322], [55.540102, -2.243056]], [[55.540102, -2.243056], [55.540098, -2.242882]], [[55.540098, -2.242882], [55.540096, -2.242714]], [[55.540096, -2.242714], [55.540077, -2.242543]], [[55.540077, -2.242543], [55.540058, -2.242384]], [[55.540058, -2.242384], [55.540018, -2.242226]], [[55.539996, -2.24206], [55.53999, -2.241893]], [[55.53999, -2.241893], [55.539979, -2.241734]], [[55.539989, -2.241569], [55.54001, -2.241407]], [[55.54001, -2.241407], [55.54, -2.241247]], [[55.53996, -2.240922], [55.539938, -2.240757]], [[55.539938, -2.240757], [55.539888, -2.240614]], [[55.539888, -2.240614], [55.539824, -2.2405]], [[55.539824, -2.2405], [55.539752, -2.240393]], [[55.539752, -2.240393], [55.539678, -2.240284]], [[55.539678, -2.240284], [55.539596, -2.240196]], [[55.539441, -2.240005], [55.539367, -2.239911]], [[55.539367, -2.239911], [55.539286, -2.239824]], [[55.538271, -2.238685], [55.53822, -2.238536]], [[55.53822, -2.238536], [55.53819, -2.238383]], [[55.53819, -2.238383], [55.538164, -2.238231]], [[55.538164, -2.238231], [55.538138, -2.23807]], [[55.538138, -2.23807], [55.538118, -2.237909]], [[55.538118, -2.237909], [55.538085, -2.237751]], [[55.538085, -2.237751], [55.538033, -2.237607]], [[55.538033, -2.237607], [55.537982, -2.23746]], [[55.537982, -2.23746], [55.53792, -2.237338]], [[55.53792, -2.237338], [55.53784, -2.237229]], [[55.53784, -2.237229], [55.537747, -2.237166]], [[55.53758, -2.237006], [55.53752, -2.236886]], [[55.53752, -2.236886], [55.537461, -2.236751]], [[55.537461, -2.236751], [55.537427, -2.236601]], [[55.537427, -2.236601], [55.537395, -2.236444]], [[55.537395, -2.236444], [55.537346, -2.236306]], [[55.537346, -2.236306], [55.537284, -2.23617]], [[55.537284, -2.23617], [55.537233, -2.236039]], [[55.537233, -2.236039], [55.537171, -2.235914]], [[55.534265, -2.233423], [55.534172, -2.233412]], [[55.534172, -2.233412], [55.534083, -2.233439]], [[55.534083, -2.233439], [55.533992, -2.233452]], [[55.533431, -2.233397], [55.533356, -2.233499]], [[55.533293, -2.233624], [55.533214, -2.233707]], [[55.53293, -2.233638], [55.532837, -2.233637]], [[55.532837, -2.233637], [55.532738, -2.233615]], [[55.532649, -2.23359], [55.532556, -2.233594]], [[55.532458, -2.233609], [55.532366, -2.23358]], [[55.532366, -2.23358], [55.53227, -2.233616]], [[55.531906, -2.233551], [55.531813, -2.233528]], [[55.531813, -2.233528], [55.53172, -2.233517]], [[55.53172, -2.233517], [55.53163, -2.23352]], [[55.53163, -2.23352], [55.531532, -2.233497]], [[55.531532, -2.233497], [55.531452, -2.233395]], [[55.531452, -2.233395], [55.531357, -2.233394]], [[55.531264, -2.233407], [55.531174, -2.233374]], [[55.531174, -2.233374], [55.531083, -2.233355]], [[55.530711, -2.233359], [55.53062, -2.233336]], [[55.53062, -2.233336], [55.530527, -2.233335]], [[55.530527, -2.233335], [55.530433, -2.233316]], [[55.529521, -2.232845], [55.529494, -2.232681]], [[55.529494, -2.232681], [55.529454, -2.232527]], [[55.529454, -2.232527], [55.529417, -2.232382]], [[55.529417, -2.232382], [55.529395, -2.232226]], [[55.529395, -2.232226], [55.529353, -2.232074]], [[55.529234, -2.231462], [55.529202, -2.231313]], [[55.529105, -2.23085], [55.529064, -2.230696]], [[55.529064, -2.230696], [55.529053, -2.230531]], [[55.529053, -2.230531], [55.529016, -2.23037]], [[55.529016, -2.23037], [55.528986, -2.230209]], [[55.52892, -2.22991], [55.528886, -2.229755]], [[55.528886, -2.229755], [55.528852, -2.229605]], [[55.528685, -2.228843], [55.528657, -2.228686]], [[55.528657, -2.228686], [55.528612, -2.228544]], [[55.528612, -2.228544], [55.528582, -2.228387]], [[55.528582, -2.228387], [55.528551, -2.228237]], [[55.525957, -2.226124], [55.525869, -2.22609]], [[55.52378, -2.224978], [55.523698, -2.224911]], [[55.523698, -2.224911], [55.523611, -2.224855]], [[55.523611, -2.224855], [55.523523, -2.224798]], [[55.523523, -2.224798], [55.523432, -2.224741]], [[55.523432, -2.224741], [55.523349, -2.224681]], [[55.523349, -2.224681], [55.523266, -2.224616]], [[55.523266, -2.224616], [55.523174, -2.224555]], [[55.523174, -2.224555], [55.523084, -2.224496]], [[55.523084, -2.224496], [55.523001, -2.224433]], [[55.523001, -2.224433], [55.522915, -2.224366]], [[55.522915, -2.224366], [55.522823, -2.224363]], [[55.522823, -2.224363], [55.522732, -2.224395]], [[55.522732, -2.224395], [55.522642, -2.224466]], [[55.522642, -2.224466], [55.52256, -2.224535]], [[55.52256, -2.224535], [55.522472, -2.224594]], [[55.522472, -2.224594], [55.522382, -2.224625]], [[55.522382, -2.224625], [55.522298, -2.224698]], [[55.522298, -2.224698], [55.522214, -2.224761]], [[55.522214, -2.224761], [55.522124, -2.224813]], [[55.522035, -2.224868], [55.52195, -2.224922]], [[55.521038, -2.225392], [55.520951, -2.225471]], [[55.520951, -2.225471], [55.520872, -2.225552]], [[55.520872, -2.225552], [55.520795, -2.225651]], [[55.520795, -2.225651], [55.520716, -2.225741]], [[55.519931, -2.226333], [55.519846, -2.226393]], [[55.519846, -2.226393], [55.519753, -2.226438]], [[55.519753, -2.226438], [55.519666, -2.226478]], [[55.519293, -2.226617], [55.519199, -2.226659]], [[55.519199, -2.226659], [55.5191, -2.226695]], [[55.517768, -2.22683], [55.517674, -2.226839]], [[55.517674, -2.226839], [55.517573, -2.22685]], [[55.517573, -2.22685], [55.517477, -2.226887]], [[55.517009, -2.22706], [55.516913, -2.227095]], [[55.516913, -2.227095], [55.516816, -2.227132]], [[55.516718, -2.227171], [55.516628, -2.227203]], [[55.516628, -2.227203], [55.516533, -2.227249]], [[55.516071, -2.22743], [55.515982, -2.227471]], [[55.515789, -2.22754], [55.515698, -2.227578]], [[55.515698, -2.227578], [55.515607, -2.227618]], [[55.515607, -2.227618], [55.515514, -2.22763]], [[55.515514, -2.22763], [55.515423, -2.227632]], [[55.515423, -2.227632], [55.515332, -2.227627]], [[55.515332, -2.227627], [55.515238, -2.227648]], [[55.515238, -2.227648], [55.515145, -2.227663]], [[55.515145, -2.227663], [55.515054, -2.227694]], [[55.515054, -2.227694], [55.514963, -2.227703]], [[55.514963, -2.227703], [55.514869, -2.227718]], [[55.514869, -2.227718], [55.514774, -2.227726]], [[55.514774, -2.227726], [55.514685, -2.227755]], [[55.514685, -2.227755], [55.514587, -2.227766]], [[55.514587, -2.227766], [55.514496, -2.227709]], [[55.514496, -2.227709], [55.514408, -2.227667]], [[55.514408, -2.227667], [55.514316, -2.227612]], [[55.513941, -2.227628], [55.513906, -2.22771]], [[55.513812, -2.227765], [55.513724, -2.227844]], [[55.513539, -2.227948], [55.513448, -2.228002]], [[55.513448, -2.228002], [55.513358, -2.228041]], [[55.513358, -2.228041], [55.513266, -2.228089]], [[55.51273, -2.228292], [55.51264, -2.228306]], [[55.51247, -2.228297], [55.512376, -2.228322]], [[55.512376, -2.228322], [55.512285, -2.228327]], [[55.512285, -2.228327], [55.512189, -2.228336]], [[55.512189, -2.228336], [55.512099, -2.228357]], [[55.511908, -2.228399], [55.511811, -2.228432]], [[55.511811, -2.228432], [55.511719, -2.228476]], [[55.511719, -2.228476], [55.511631, -2.228506]], [[55.511631, -2.228506], [55.511541, -2.228533]], [[55.511541, -2.228533], [55.51145, -2.22857]], [[55.51145, -2.22857], [55.511353, -2.228594]], [[55.511353, -2.228594], [55.511257, -2.228626]], [[55.511257, -2.228626], [55.51117, -2.228665]], [[55.51117, -2.228665], [55.511076, -2.228695]], [[55.511076, -2.228695], [55.510982, -2.228706]], [[55.510982, -2.228706], [55.510887, -2.228734]], [[55.510887, -2.228734], [55.51079, -2.228752]], [[55.51079, -2.228752], [55.5107, -2.228784]], [[55.5107, -2.228784], [55.510608, -2.228789]], [[55.510608, -2.228789], [55.510518, -2.228807]], [[55.510518, -2.228807], [55.510426, -2.228847]], [[55.510137, -2.228904], [55.510047, -2.228922]], [[55.510047, -2.228922], [55.509955, -2.228934]], [[55.509955, -2.228934], [55.509862, -2.228952]], [[55.509739, -2.228907], [55.509644, -2.22887]], [[55.509555, -2.228818], [55.509468, -2.228764]], [[55.509468, -2.228764], [55.509374, -2.228719]], [[55.509197, -2.228599], [55.509108, -2.228547]], [[55.509108, -2.228547], [55.509017, -2.228527]], [[55.509017, -2.228527], [55.508923, -2.228467]], [[55.508834, -2.228423], [55.508741, -2.228377]], [[55.508741, -2.228377], [55.508653, -2.22832]], [[55.508653, -2.22832], [55.508559, -2.228267]], [[55.508559, -2.228267], [55.50847, -2.228234]], [[55.50847, -2.228234], [55.508376, -2.228192]], [[55.508376, -2.228192], [55.508289, -2.228133]], [[55.508289, -2.228133], [55.5082, -2.228089]], [[55.5082, -2.228089], [55.508108, -2.228035]], [[55.508108, -2.228035], [55.508018, -2.22798]], [[55.507041, -2.226488], [55.506973, -2.226379]], [[55.50329, -2.217561], [55.503287, -2.217427]], [[55.503077, -2.217098], [55.502996, -2.217014]], [[55.501665, -2.215379], [55.501621, -2.215267]], [[55.501552, -2.215163], [55.501478, -2.215058]], [[55.501317, -2.214863], [55.501233, -2.214785]], [[55.501233, -2.214785], [55.501157, -2.214685]], [[55.501157, -2.214685], [55.501093, -2.214566]], [[55.499491, -2.211929], [55.499421, -2.211817]], [[55.49927, -2.211621], [55.499199, -2.21151]], [[55.499199, -2.21151], [55.499118, -2.211409]], [[55.499118, -2.211409], [55.499026, -2.211385]], [[55.499026, -2.211385], [55.498943, -2.211308]], [[55.498943, -2.211308], [55.498858, -2.211219]], [[55.498858, -2.211219], [55.498783, -2.211123]], [[55.498783, -2.211123], [55.498697, -2.211042]], [[55.498459, -2.210906], [55.498388, -2.210805]], [[55.495819, -2.209157], [55.495746, -2.209044]], [[55.495746, -2.209044], [55.49568, -2.208936]], [[55.495447, -2.2087], [55.495368, -2.208611]], [[55.495368, -2.208611], [55.495283, -2.208545]], [[55.495283, -2.208545], [55.495207, -2.208441]], [[55.495207, -2.208441], [55.495133, -2.208339]], [[55.495133, -2.208339], [55.495054, -2.208243]], [[55.494735, -2.207844], [55.494652, -2.207774]], [[55.494561, -2.207712], [55.494474, -2.207629]], [[55.494474, -2.207629], [55.494388, -2.20769]], [[55.494009, -2.207752], [55.493935, -2.207725]], [[55.493617, -2.207346], [55.493548, -2.207233]], [[55.493548, -2.207233], [55.493449, -2.207194]], [[55.493449, -2.207194], [55.49336, -2.20716]], [[55.49336, -2.20716], [55.493289, -2.207049]], [[55.493128, -2.206901], [55.493067, -2.206776]], [[55.493067, -2.206776], [55.493002, -2.20665]], [[55.492682, -2.206314], [55.492601, -2.206244]], [[55.492203, -2.205818], [55.492123, -2.205745]], [[55.492123, -2.205745], [55.49204, -2.205658]], [[55.49204, -2.205658], [55.491964, -2.205571]], [[55.491964, -2.205571], [55.491877, -2.205493]], [[55.491877, -2.205493], [55.491787, -2.205417]], [[55.491787, -2.205417], [55.491701, -2.205354]], [[55.491701, -2.205354], [55.491612, -2.205277]], [[55.49013, -2.204107], [55.490065, -2.203978]], [[55.48999, -2.203795], [55.489904, -2.203719]], [[55.489825, -2.203643], [55.48974, -2.203584]], [[55.488825, -2.202778], [55.488734, -2.202755]], [[55.488734, -2.202755], [55.488659, -2.202654]], [[55.48797, -2.202279], [55.487876, -2.202314]], [[55.484624, -2.20459], [55.484533, -2.204548]], [[55.484533, -2.204548], [55.484465, -2.20466]], [[55.484465, -2.20466], [55.484394, -2.204758]], [[55.484394, -2.204758], [55.484309, -2.204811]], [[55.484309, -2.204811], [55.48422, -2.204883]], [[55.48315, -2.205486], [55.483063, -2.205549]], [[55.483063, -2.205549], [55.482975, -2.205594]], [[55.482975, -2.205594], [55.482883, -2.205659]], [[55.482883, -2.205659], [55.482788, -2.205661]], [[55.482788, -2.205661], [55.4827, -2.205712]], [[55.4827, -2.205712], [55.48261, -2.20576]], [[55.48261, -2.20576], [55.482524, -2.205807]], [[55.482524, -2.205807], [55.482437, -2.20588]], [[55.482437, -2.20588], [55.482352, -2.205947]], [[55.482352, -2.205947], [55.482266, -2.206]], [[55.482266, -2.206], [55.482179, -2.206065]], [[55.482179, -2.206065], [55.48209, -2.206118]], [[55.48209, -2.206118], [55.481995, -2.20616]], [[55.481995, -2.20616], [55.4819, -2.206201]], [[55.481712, -2.206216], [55.481617, -2.206181]], [[55.481617, -2.206181], [55.481523, -2.206153]], [[55.481523, -2.206153], [55.48143, -2.206134]], [[55.48143, -2.206134], [55.481337, -2.206131]], [[55.481337, -2.206131], [55.481256, -2.206037]], [[55.481256, -2.206037], [55.481163, -2.205971]], [[55.481163, -2.205971], [55.481065, -2.205966]], [[55.477308, -2.202455], [55.477222, -2.202396]], [[55.477222, -2.202396], [55.477158, -2.202273]], [[55.476461, -2.201852], [55.476382, -2.201776]], [[55.475225, -2.198796], [55.475214, -2.198629]], [[55.475214, -2.198629], [55.475219, -2.198458]], [[55.475219, -2.198458], [55.475186, -2.198308]], [[55.475152, -2.198142], [55.475158, -2.197972]], [[55.475158, -2.197972], [55.475151, -2.197795]], [[55.475151, -2.197795], [55.475147, -2.197624]], [[55.475147, -2.197624], [55.47516, -2.197458]], [[55.47516, -2.197458], [55.475176, -2.197298]], [[55.475176, -2.197298], [55.475179, -2.197124]], [[55.475179, -2.197124], [55.475183, -2.196946]], [[55.475183, -2.196946], [55.475148, -2.196798]], [[55.475148, -2.196798], [55.475135, -2.196625]], [[55.475135, -2.196625], [55.475149, -2.196453]], [[55.474304, -2.191783], [55.474272, -2.191622]], [[55.474155, -2.190915], [55.474099, -2.190786]], [[55.474099, -2.190786], [55.474053, -2.190637]], [[55.474053, -2.190637], [55.474001, -2.190498]], [[55.474001, -2.190498], [55.473984, -2.190336]], [[55.473984, -2.190336], [55.473964, -2.190172]], [[55.47393, -2.189866], [55.473928, -2.189707]], [[55.473952, -2.189549], [55.473943, -2.189391]], [[55.473943, -2.189391], [55.473912, -2.189235]], [[55.473643, -2.186774], [55.473637, -2.186612]], [[55.472913, -2.177611], [55.472923, -2.17745]], [[55.472923, -2.17745], [55.472907, -2.17729]], [[55.472811, -2.177015], [55.472755, -2.176883]], [[55.472755, -2.176883], [55.472744, -2.176718]], [[55.472744, -2.176718], [55.472667, -2.176628]], [[55.472667, -2.176628], [55.472614, -2.176499]], [[55.472614, -2.176499], [55.472587, -2.176336]], [[55.47216, -2.173833], [55.472091, -2.173728]], [[55.469767, -2.169215], [55.469744, -2.169046]], [[55.469744, -2.169046], [55.469658, -2.168957]], [[55.469658, -2.168957], [55.469595, -2.16882]], [[55.469405, -2.168443], [55.469345, -2.168317]], [[55.46874, -2.167328], [55.468668, -2.16722]], [[55.468668, -2.16722], [55.468591, -2.167129]], [[55.468426, -2.166952], [55.468369, -2.166825]], [[55.468369, -2.166825], [55.468332, -2.166659]], [[55.468244, -2.166579], [55.468166, -2.166485]], [[55.468166, -2.166485], [55.468112, -2.166351]], [[55.466686, -2.170661], [55.466688, -2.17074]], [[55.466659, -2.173023], [55.466612, -2.173169]], [[55.466612, -2.173169], [55.466579, -2.173336]], [[55.466567, -2.173669], [55.466547, -2.173832]], [[55.466547, -2.173832], [55.466542, -2.174009]], [[55.466535, -2.17434], [55.466556, -2.174504]], [[55.466556, -2.174504], [55.466525, -2.174656]], [[55.466525, -2.174656], [55.466535, -2.17482]], [[55.466535, -2.17482], [55.4665, -2.174977]], [[55.4665, -2.174977], [55.46647, -2.175146]], [[55.466434, -2.175297], [55.466393, -2.17544]], [[55.466358, -2.175601], [55.466329, -2.175766]], [[55.46624, -2.17641], [55.466215, -2.176574]], [[55.466215, -2.176574], [55.466194, -2.176729]], [[55.465433, -2.17965], [55.465392, -2.179802]], [[55.464602, -2.182346], [55.464546, -2.182493]], [[55.459262, -2.188194], [55.459209, -2.188196]], [[55.459113, -2.188208], [55.459019, -2.188235]], [[55.454093, -2.190096], [55.454018, -2.190191]], [[55.454018, -2.190191], [55.453966, -2.190251]], [[55.445422, -2.194082], [55.445344, -2.194062]], [[55.445297, -2.1942], [55.445215, -2.194266]], [[55.441328, -2.199679], [55.441244, -2.199768]], [[55.438071, -2.204837], [55.438026, -2.204877]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_a52cce0f954612194c2f6164eda64268);
        
    
            var poly_line_2bc841b07ad766d58592d8737dd9a1d9 = L.polyline(
                [[[55.543828, -2.259608], [55.543806, -2.25945]], [[55.543806, -2.25945], [55.543776, -2.259283]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_a52cce0f954612194c2f6164eda64268);
        
    
            var poly_line_767bca9502cad51a4ddbb035ffc86e2f = L.polyline(
                [[[55.542665, -2.253993], [55.542651, -2.253825]], [[55.529617, -2.233124], [55.529547, -2.233005]], [[55.506937, -2.22637], [55.506847, -2.226299]], [[55.494374, -2.207698], [55.494282, -2.207719]], [[55.475106, -2.195996], [55.475098, -2.195834]], [[55.473793, -2.183761], [55.473804, -2.183603]], [[55.473964, -2.182833], [55.47388, -2.182744]], [[55.466688, -2.17074], [55.466696, -2.170904]], [[55.466393, -2.175436], [55.466358, -2.175601]], [[55.465915, -2.178143], [55.465828, -2.17822]], [[55.438026, -2.204877], [55.438028, -2.204892]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_a52cce0f954612194c2f6164eda64268);
        
    
            color_line_a52cce0f954612194c2f6164eda64268.addTo(map_d85d8cdef3aa0c06f83c6422ce651f57);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-2---clennell-street-to-bryness" class="level3">
<h3 class="anchored" data-anchor-id="day-2---clennell-street-to-bryness">Day 2 - Clennell Street to Bryness</h3>
<p>Woke early around 05:00 as the tent was flapping in the wind and it was raining earlier than forecast. After listening to the rain for a while I got up at 05:30 and after eating some more pate and bread donned my waterproof jacket, shorts and sandals, packed the tent up and set off in the clouds for Windy Gyle which lived up to its name.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53925068679_e2197a2b53_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qab5cr" target="_blank">Wet Weather Walking Gear</a></figcaption>
</figure>
</div>
<p>There is a large pile of stones on the summit which is an ancient monument which should not be distubed, not much to look at because of the low cloud so I continued the descent, which roughly follows the bordere between Scotland and England, glad of my choice of sandals and shorts because it was very boggy in places.</p>
<p>I came across <a href="https://www.openstreetmap.org/way/97635754" target="_blank">Yearning Saddle Refuge Hut</a> and took the opportunity to get out of the wind and rain and eat one of the blueberry snack bars I’d carried. A few pieces of food had been left for people who might need them along with lots of reminders to take your rubbish with you, which I had already done bringing my empty beer bottle with me.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53924716336_6ee76a5499_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qa9gsy" target="_blank">Yearning Saddle Mountain Refuge</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53925068489_a9a0b7e178_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qab59a" target="_blank">Yearning Saddle Lamb Hill</a></figcaption>
</figure>
</div>
<p>Navigation was straight-forward as the trail was well marked with regular way markers and sign-posts although there was a split with an “alternative” route sign-posted. I opted to stick with the original which followed a “permissive by-way”.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53925172250_e19878b18d_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qabAZ9" target="_blank">A brief lull in the rain</a></figcaption>
</figure>
</div>
<p>Passed a couple of herds of feral goats and met a guy heading north who was on day 46 of hiking from Lands End to John O’Groats which was pretty impressive. He said that he’d broken a walking pole yesterday and would have to make a detour to replace it which reminded me that in The Border the previous day I had seen a rack for “<em>Free walking poles</em>” with a single pair hanging so I suggested he could grab try grabbing them from there since the <a href="https://scottishnationaltrail.org.uk/" target="_blank">Scotish National Trail</a>, Scotlands equivalent of the Pennine Way, starts at The Border and I figured he’d be passing through. Unfortunately his planned route didn’t follow The Way to Kirk Yetholm but he was hopeful he’d be able to pick another pole up somewhere else.</p>
<p>As I got nearer Bryness I started to see more people, there was one guy off to have a meal in one of the mountain refuges. He had a long beard which made me wonder whether this was a good insulator against the rain or whether it helped water ingress into the jacket, not something I’d ever consider with regards to water-proofing. A family group of four heading north were next and then a couple who were finishing off their journey along The Way having left Edale 16 days previously. They were very friendly and reeled off many of the highlights I would pass, warning that it would likely be windy on Cross Fell.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53924716126_71752ebf0e_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qa9goW" target="_blank">1990</a></figcaption>
</figure>
</div>
<p>I arrived at the <a href="https://www.forestviewbyrness.co.uk/" target="_blank">Forest View Inn</a> where I had booked to camp for the night around 13:00 having covered the ~25 km in around six hours but they didn’t open for check-in until 16:00. Fortuantely the conservatory was accsessible and South facing so I was able to warm up and start drying my soaked clothes. My pack had remained dry thanks to the Deuter rain cover my wife had got me as a birthday present. I was both surprised and pleased with this as previous rain covers I have had were not very effective at all.</p>
<p>Just before 16:00 a cat appeared at the back door to the conservatory and shortly after Oli appeared and checked me in (i.e.&nbsp;took my food order for the evening, I opted for Tortellini Pasta bake). Oli and Laura were a lovely welcoming couple who took over the <a href="https://www.forestviewbyrness.co.uk/" target="_blank">Forest View Inn</a> bed and breakfast, formerly a Youth Hostel, around four years ago having got fed up with desk jobs in Manchester. Oli had previously lived in Sheffield on Eccellsal Road and done some climbing in his time, but was more of a runner these days. He’d attempted both the North and Southern <a href="https://www.thespinerace.com/" target="_blank">Spine Race</a> Challenger twice and completed each once.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957370673_ecd366f775_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qd2Csn" target="_blank">Forest View Inn</a></figcaption>
</figure>
</div>
<p>I took the first of several beers that evening and pitched my tent in the back garden, spreading my wet things out over a picnic bench to dry in the sun, ignoring the fact there was a drying room which is great but fresh air is much more preferable.</p>
<p>Other guests started to arrive, first was a couple of ladies who were reconnaissancing The Way from Alston to Kirk Yetholm as one of them, Nicola, would be attempting the Winter <a href="https://www.thespinerace.com/" target="_blank">Spine Race</a> for the second time in January 2025 having had to drop out (literally) when she collapsed outside of Alston due to infections in her feet where the skin had all detached due to a poor choice of overly tight waterproof socks. Her friend Rachel was no slouch on the racing front either as they had got to know each other whilst running the <a href="https://www.dragonsbackrace.com/" target="_blank">Dragons Back</a> race which traverses the length of Wales taking in all the 3000 ft peaks. Rachel had not only completed the race, most drop out at some stage, but had done so after falling on the first day and fracturing her wrist and a rib. Tough and crazy women!</p>
<p>Oli had popped out to retrieve some guests who had stayed the previous night and were doing the remaining section of The Way over two days, returning to <a href="https://www.forestviewbyrness.co.uk/" target="_blank">Forest View Inn</a> in-between and returning to finish off the trek to Kirk Yetholm the following day. This included the family I’d met and a couple I’d passed and a guy from Sheffield who was on his own and finishing off the trail having started in Edale.</p>
<p>Dinner was communal and very sociable and revolved heavily around the ludicrious experiences Nicola and Rachel had running ultra-marathons. I had another beer after dinner but headed to bed early around 21:00 shortly after the sun had set but not before picking up a vegetable pasty and paying for my beer and food.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-3-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-1" aria-controls="tabset-3-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-3-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-2" aria-controls="tabset-3-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-3-1" class="tab-pane active" aria-labelledby="tabset-3-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb5-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-15"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-6286f151f5e59518768d" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-6286f151f5e59518768d">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.205037,-2.204999,-2.204966,-2.205087,-2.205151,-2.205194,-2.205207,-2.205247,-2.20532,-2.205387,-2.205529,-2.205702,-2.205857,-2.206007,-2.206159,-2.206303,-2.206429,-2.206575,-2.206731,-2.206888,-2.207039,-2.207186,-2.20733,-2.20749,-2.207637,-2.207798,-2.207953,-2.208107,-2.208262,-2.208367,-2.208527,-2.208668,-2.208806,-2.208963,-2.209114,-2.209249,-2.20942,-2.209583,-2.20973,-2.209872,-2.210022,-2.210188,-2.210346,-2.210494,-2.21065,-2.21079,-2.210935,-2.211074,-2.211214,-2.211366,-2.211519,-2.21167,-2.211832,-2.211987,-2.212139,-2.212283,-2.212431,-2.212585,-2.212739,-2.212898,-2.213052,-2.213206,-2.213361,-2.213504,-2.213653,-2.213816,-2.213947,-2.214112,-2.214262,-2.214404,-2.214555,-2.214694,-2.214834,-2.214987,-2.215146,-2.215285,-2.215455,-2.215608,-2.21575,-2.215918,-2.216052,-2.216206,-2.216346,-2.216493,-2.216641,-2.216799,-2.216939,-2.217088,-2.21723,-2.217346,-2.21749,-2.217646,-2.217807,-2.217948,-2.218103,-2.218244,-2.218392,-2.218529,-2.218677,-2.218825,-2.218976,-2.219115,-2.219258,-2.219409,-2.219545,-2.219702,-2.21986,-2.220014,-2.220156,-2.220306,-2.220462,-2.22061,-2.220751,-2.220873,-2.220979,-2.221088,-2.221152,-2.22123,-2.221338,-2.22148,-2.221603,-2.221681,-2.221795,-2.221891,-2.22192,-2.222014,-2.22213,-2.222256,-2.222401,-2.222521,-2.222646,-2.222762,-2.222876,-2.222999,-2.223143,-2.223278,-2.223403,-2.223532,-2.223662,-2.223789,-2.22393,-2.224068,-2.224188,-2.224301,-2.224415,-2.224538,-2.224682,-2.224837,-2.224983,-2.225127,-2.225285,-2.225462,-2.2256,-2.225759,-2.225919,-2.226077,-2.226241,-2.226374,-2.226526,-2.226674,-2.226819,-2.226972,-2.227129,-2.227291,-2.227382,-2.227528,-2.227672,-2.227835,-2.227982,-2.228138,-2.228296,-2.228459,-2.228617,-2.228764,-2.228899,-2.229053,-2.229211,-2.229365,-2.229528,-2.229554,-2.22966,-2.229708,-2.229757,-2.229801,-2.229871,-2.229927,-2.229982,-2.230035,-2.229982,-2.230046,-2.230044,-2.23013,-2.230295,-2.230459,-2.230626,-2.230795,-2.230963,-2.231118,-2.231291,-2.231448,-2.231611,-2.231773,-2.231947,-2.232125,-2.232295,-2.232468,-2.232643,-2.232815,-2.232979,-2.23315,-2.233308,-2.233471,-2.233634,-2.233792,-2.23396,-2.234125,-2.234284,-2.234446,-2.234597,-2.234748,-2.234904,-2.235048,-2.235204,-2.235372,-2.23555,-2.2357,-2.235741,-2.235904,-2.236054,-2.236205,-2.236341,-2.236503,-2.23666,-2.236825,-2.236997,-2.237171,-2.237338,-2.23742,-2.237572,-2.237727,-2.237892,-2.238055,-2.238214,-2.23837,-2.238536,-2.238699,-2.238853,-2.239007,-2.239168,-2.23933,-2.239496,-2.239667,-2.239839,-2.239994,-2.240151,-2.240322,-2.240488,-2.240648,-2.240813,-2.24097,-2.241136,-2.24129,-2.241454,-2.241612,-2.241772,-2.241931,-2.242089,-2.242248,-2.242402,-2.242561,-2.242735,-2.242895,-2.243054,-2.24322,-2.243379,-2.243554,-2.243736,-2.243903,-2.244079,-2.244253,-2.24442,-2.244597,-2.244766,-2.244942,-2.245097,-2.245271,-2.245429,-2.24559,-2.245752,-2.245923,-2.246097,-2.24627,-2.246435,-2.246617,-2.246778,-2.246955,-2.247065,-2.247229,-2.247398,-2.247572,-2.24773,-2.24789,-2.248069,-2.248242,-2.248416,-2.248585,-2.248748,-2.248924,-2.249094,-2.249267,-2.249436,-2.249605,-2.249775,-2.249946,-2.250104,-2.250262,-2.250432,-2.250578,-2.250724,-2.250863,-2.251018,-2.251169,-2.251309,-2.251425,-2.251549,-2.25168,-2.251815,-2.251944,-2.252074,-2.252221,-2.252374,-2.252527,-2.252683,-2.252717,-2.252869,-2.253034,-2.253192,-2.253348,-2.253508,-2.253673,-2.253832,-2.254005,-2.254163,-2.254274,-2.254402,-2.254579,-2.254748,-2.254901,-2.255034,-2.255195,-2.255349,-2.255503,-2.255666,-2.25584,-2.256009,-2.256131,-2.25628,-2.256387,-2.256445,-2.256477,-2.256599,-2.256702,-2.256824,-2.256775,-2.256736,-2.256747,-2.25692,-2.257096,-2.257263,-2.257436,-2.257598,-2.257767,-2.257936,-2.258097,-2.258251,-2.258381,-2.258504,-2.258596,-2.258679,-2.258749,-2.258881,-2.259023,-2.259164,-2.259314,-2.25948,-2.259619,-2.259768,-2.259903,-2.259995,-2.260128,-2.260237,-2.260347,-2.260512,-2.260655,-2.260721,-2.260813,-2.26089,-2.260939,-2.261076,-2.261149,-2.261266,-2.26138,-2.261481,-2.261604,-2.261722,-2.26182,-2.261918,-2.262004,-2.262099,-2.262206,-2.262309,-2.262477,-2.262647,-2.262814,-2.26298,-2.263145,-2.263301,-2.263468,-2.26362,-2.263782,-2.26394,-2.264111,-2.26428,-2.264451,-2.264582,-2.264713,-2.264872,-2.265012,-2.265182,-2.265351,-2.265525,-2.265649,-2.2658,-2.265965,-2.266137,-2.266316,-2.266489,-2.266649,-2.266823,-2.266991,-2.26715,-2.267308,-2.267478,-2.267635,-2.267809,-2.267974,-2.268133,-2.268308,-2.268468,-2.26864,-2.268803,-2.268974,-2.26914,-2.269311,-2.269474,-2.269628,-2.269783,-2.269943,-2.2701,-2.270279,-2.270443,-2.27061,-2.270773,-2.270927,-2.271077,-2.271212,-2.271342,-2.271486,-2.271638,-2.271788,-2.271926,-2.27207,-2.272122,-2.27223,-2.272308,-2.272362,-2.272418,-2.272485,-2.27256,-2.272652,-2.272718,-2.272776,-2.272892,-2.272955,-2.273077,-2.27313,-2.27314,-2.273217,-2.2733,-2.273432,-2.273509,-2.27359,-2.273636,-2.273682,-2.273703,-2.273753,-2.273792,-2.27389,-2.273959,-2.274021,-2.274091,-2.274147,-2.274224,-2.274311,-2.274468,-2.274645,-2.274822,-2.27498,-2.275154,-2.275325,-2.275484,-2.275654,-2.27583,-2.276005,-2.276182,-2.276345,-2.276491,-2.276652,-2.276811,-2.27696,-2.27711,-2.277266,-2.277425,-2.277591,-2.277758,-2.277916,-2.278085,-2.278242,-2.278403,-2.278575,-2.278749,-2.278906,-2.279066,-2.279227,-2.279383,-2.279534,-2.279664,-2.27967,-2.27984,-2.279983,-2.280122,-2.280263,-2.280412,-2.280556,-2.280699,-2.280837,-2.280991,-2.281138,-2.281277,-2.281395,-2.281509,-2.281582,-2.281704,-2.281802,-2.281856,-2.281954,-2.282065,-2.282163,-2.282237,-2.282326,-2.282385,-2.282402,-2.282462,-2.282533,-2.282616,-2.282692,-2.282762,-2.282807,-2.282872,-2.282975,-2.283053,-2.283086,-2.283079,-2.28299,-2.282986,-2.283145,-2.283281,-2.283346,-2.283432,-2.283508,-2.283611,-2.283697,-2.283796,-2.283896,-2.283975,-2.284068,-2.284178,-2.284322,-2.284476,-2.284638,-2.284785,-2.284938,-2.285085,-2.285229,-2.285378,-2.285538,-2.285695,-2.285849,-2.286002,-2.286152,-2.286295,-2.28645,-2.286598,-2.28675,-2.286903,-2.287059,-2.287202,-2.287362,-2.28753,-2.287684,-2.287833,-2.287987,-2.288126,-2.288258,-2.288421,-2.288586,-2.288748,-2.288912,-2.289049,-2.28921,-2.289351,-2.289503,-2.289662,-2.289827,-2.289978,-2.29014,-2.290296,-2.290468,-2.29062,-2.290754,-2.290908,-2.291056,-2.29118,-2.291347,-2.291509,-2.291663,-2.29182,-2.291984,-2.292136,-2.292307,-2.292468,-2.292619,-2.292773,-2.292921,-2.293077,-2.293226,-2.293361,-2.293485,-2.293608,-2.293745,-2.293865,-2.29391,-2.293932,-2.29389,-2.293913,-2.293939,-2.293927,-2.293896,-2.293872,-2.293837,-2.293805,-2.293762,-2.293648,-2.293569,-2.293497,-2.293425,-2.293365,-2.293355,-2.293339,-2.293307,-2.293321,-2.293361,-2.293393,-2.293451,-2.29351,-2.293603,-2.29366,-2.293719,-2.293766,-2.293825,-2.293878,-2.293925,-2.293981,-2.294012,-2.29402,-2.294112,-2.294197,-2.294249,-2.294281,-2.29434,-2.294378,-2.294418,-2.294473,-2.294495,-2.294558,-2.294553,-2.294559,-2.294582,-2.294637,-2.29469,-2.294749,-2.294777,-2.294806,-2.294827,-2.294885,-2.294977,-2.29508,-2.295187,-2.295324,-2.295454,-2.295599,-2.295731,-2.295866,-2.296013,-2.296117,-2.296247,-2.296379,-2.296489,-2.296619,-2.296752,-2.296914,-2.297073,-2.297234,-2.297352,-2.297475,-2.297619,-2.297758,-2.297908,-2.298053,-2.298213,-2.298347,-2.298484,-2.298637,-2.298777,-2.298942,-2.29911,-2.299271,-2.299431,-2.29958,-2.299698,-2.29986,-2.300015,-2.30017,-2.300323,-2.300484,-2.300642,-2.300645,-2.300775,-2.300926,-2.301106,-2.301278,-2.301415,-2.30155,-2.301676,-2.301846,-2.301985,-2.302114,-2.302234,-2.302371,-2.302505,-2.302623,-2.302748,-2.302891,-2.303048,-2.303193,-2.303338,-2.303482,-2.303644,-2.303792,-2.303944,-2.304073,-2.304205,-2.304319,-2.304318,-2.304439,-2.304555,-2.304671,-2.304797,-2.304939,-2.305055,-2.305169,-2.305298,-2.305424,-2.30555,-2.305686,-2.305807,-2.305941,-2.306063,-2.306189,-2.306314,-2.306443,-2.306599,-2.306729,-2.306854,-2.307002,-2.307158,-2.307304,-2.307453,-2.307616,-2.307767,-2.307911,-2.307972,-2.308125,-2.308277,-2.308404,-2.308544,-2.308708,-2.308839,-2.308987,-2.309123,-2.309263,-2.309394,-2.309525,-2.309694,-2.309829,-2.309988,-2.310118,-2.310265,-2.310426,-2.310577,-2.31069,-2.310751,-2.310752,-2.31082,-2.310861,-2.310928,-2.310967,-2.311004,-2.31102,-2.310978,-2.311003,-2.311066,-2.311178,-2.311299,-2.311433,-2.311547,-2.311602,-2.311658,-2.311739,-2.311849,-2.311933,-2.312002,-2.312052,-2.312121,-2.31219,-2.31225,-2.312329,-2.312434,-2.312539,-2.312638,-2.312719,-2.312815,-2.312898,-2.312966,-2.31303,-2.313108,-2.313177,-2.313276,-2.313438,-2.313494,-2.313663,-2.313841,-2.314004,-2.31417,-2.314338,-2.314499,-2.314669,-2.314843,-2.315005,-2.315171,-2.315334,-2.315496,-2.315664,-2.315822,-2.316004,-2.316162,-2.316327,-2.31649,-2.316666,-2.316832,-2.316997,-2.317133,-2.317286,-2.317443,-2.317606,-2.31778,-2.317913,-2.318072,-2.31824,-2.318416,-2.318577,-2.318734,-2.318905,-2.319041,-2.319209,-2.319383,-2.319525,-2.319681,-2.319851,-2.320017,-2.320188,-2.32035,-2.320496,-2.320633,-2.320802,-2.320972,-2.321132,-2.32124,-2.321379,-2.321552,-2.321702,-2.321867,-2.322026,-2.322185,-2.32234,-2.322497,-2.322657,-2.322828,-2.322956,-2.32312,-2.323279,-2.323449,-2.32359,-2.323741,-2.323892,-2.324027,-2.324098,-2.324209,-2.324359,-2.324494,-2.324624,-2.324751,-2.324889,-2.325022,-2.325157,-2.325232,-2.325305,-2.325405,-2.325536,-2.32568,-2.325779,-2.325839,-2.325999,-2.326168,-2.32632,-2.326455,-2.326546,-2.326643,-2.326739,-2.326781,-2.326863,-2.326979,-2.327039,-2.327127,-2.327168,-2.327209,-2.327244,-2.327286,-2.327299,-2.327327,-2.327435,-2.327511,-2.327629,-2.327682,-2.327801,-2.327935,-2.32804,-2.328141,-2.328282,-2.328417,-2.328542,-2.328705,-2.328859,-2.329032,-2.3292,-2.329341,-2.329483,-2.32963,-2.329605,-2.32968,-2.329825,-2.329916,-2.330036,-2.33013,-2.330243,-2.330358,-2.330487,-2.330613,-2.330745,-2.330849,-2.330979,-2.331133,-2.331262,-2.331386,-2.331513,-2.331647,-2.331756,-2.331888,-2.332019,-2.332153,-2.332276,-2.332412,-2.332545,-2.332681,-2.332847,-2.332988,-2.333111,-2.333262,-2.333381,-2.333418,-2.333407,-2.333393,-2.33348,-2.333583,-2.333717,-2.333869,-2.333992,-2.334032,-2.334052,-2.334048,-2.334025,-2.334001,-2.334096,-2.334213,-2.334319,-2.334386,-2.334447,-2.334567,-2.334694,-2.334841,-2.334968,-2.335081,-2.335015,-2.334916,-2.335065,-2.335219,-2.335327,-2.335462,-2.335614,-2.33576,-2.33581,-2.335815,-2.335862,-2.335876,-2.3358,-2.335818,-2.33584,-2.335915,-2.335968,-2.33604,-2.336148,-2.336181,-2.336215,-2.336222,-2.336213,-2.336189,-2.336264,-2.336284,-2.33629,-2.336289,-2.33628,-2.336279,-2.336296,-2.336291,-2.336289,-2.336286,-2.336285,-2.336269,-2.336242,-2.336208,-2.336153,-2.336132,-2.336175,-2.33619,-2.336175,-2.336164,-2.336149,-2.336132,-2.336132,-2.336111,-2.336109,-2.336086,-2.336059,-2.336039,-2.336016,-2.335999,-2.335979,-2.335915,-2.335874,-2.335853,-2.335845,-2.335831,-2.335819,-2.335805,-2.335805,-2.335807,-2.335793,-2.335788,-2.335808,-2.335807,-2.335801,-2.335746,-2.335764,-2.335798,-2.335794,-2.335782,-2.335769,-2.335756,-2.335743,-2.335698,-2.335721,-2.335694,-2.335672,-2.335664,-2.335683,-2.335692,-2.335721,-2.335734,-2.335735,-2.335743,-2.335717,-2.335654,-2.335593,-2.335563,-2.335535,-2.335503,-2.335465,-2.335443,-2.335414,-2.335375,-2.335365,-2.335298,-2.335229,-2.335164,-2.335183,-2.335228,-2.335206,-2.335289,-2.335298,-2.335232,-2.335203,-2.335235,-2.335134,-2.335058,-2.335113,-2.335206,-2.335198,-2.335157,-2.335173,-2.335153,-2.335108,-2.335029,-2.334974,-2.334932,-2.334888,-2.334874,-2.334861,-2.334784,-2.334745,-2.334716,-2.334645,-2.334639,-2.334643,-2.334592,-2.334532,-2.334487,-2.334467,-2.334412,-2.334374,-2.334356,-2.334337,-2.334311,-2.334296,-2.33429,-2.334278,-2.334212,-2.334138,-2.334116,-2.334063,-2.334027,-2.333976,-2.333933,-2.333927,-2.33387,-2.333771,-2.333712,-2.333675,-2.333628,-2.333575,-2.333524,-2.33349,-2.333451,-2.333438,-2.33343,-2.333404,-2.333393,-2.333346,-2.333322,-2.333276,-2.333232,-2.333247,-2.333225,-2.333186,-2.333146,-2.333077,-2.333033,-2.333062,-2.333022,-2.33299,-2.332949,-2.332924,-2.332898,-2.332838,-2.33279,-2.332734,-2.332722,-2.332672,-2.332628,-2.332586,-2.33255,-2.332509,-2.332467,-2.332386,-2.332337,-2.332266,-2.332235,-2.332222,-2.332195,-2.332152,-2.33216,-2.332074,-2.332074,-2.332071,-2.332003,-2.331974,-2.331942,-2.331898,-2.331879,-2.331896,-2.331854,-2.331826,-2.331813,-2.331863,-2.331871,-2.331892,-2.331923,-2.3319,-2.331919,-2.332013,-2.332075,-2.332148,-2.332068,-2.331973,-2.33191,-2.331869,-2.331857,-2.331878,-2.331887,-2.331923,-2.331944,-2.331949,-2.331976,-2.332023,-2.332079,-2.332117,-2.332162,-2.33221,-2.332264,-2.332325,-2.33235,-2.332416,-2.33244,-2.33247,-2.332502,-2.332514,-2.332546,-2.332575,-2.332544,-2.332535,-2.332525,-2.332543,-2.332574,-2.332593,-2.332633,-2.332707,-2.332736,-2.332862,-2.332949,-2.333016,-2.33308,-2.333149,-2.333231,-2.333269,-2.333342,-2.333421,-2.333484,-2.33356,-2.333659,-2.333804,-2.333844,-2.333885,-2.333984,-2.334071,-2.334156,-2.334203,-2.334246,-2.334357,-2.334446,-2.334497,-2.334598,-2.334708,-2.334801,-2.334881,-2.334975,-2.335089,-2.335215,-2.335331,-2.335462,-2.33558,-2.335693,-2.335807,-2.335918,-2.336026,-2.336113,-2.336241,-2.336389,-2.336507,-2.33662,-2.336751,-2.336913,-2.337061,-2.337194,-2.337219,-2.337142,-2.337096,-2.337088,-2.337084,-2.33711,-2.337118,-2.337,-2.336926,-2.336834,-2.33672,-2.3366,-2.336455,-2.336369,-2.336249,-2.336128,-2.336024,-2.335939,-2.335909,-2.335777,-2.335642,-2.335505,-2.335378,-2.335245,-2.335095,-2.334976,-2.334866,-2.334755,-2.334634,-2.334525,-2.334407,-2.334291,-2.334146,-2.334088,-2.333954,-2.333786,-2.333618,-2.333456,-2.333286,-2.333135,-2.333016,-2.332931,-2.332787,-2.332644,-2.332491,-2.332321,-2.332167,-2.332037,-2.331925,-2.331817,-2.331693,-2.331576,-2.33147,-2.331349,-2.331231,-2.331124,-2.331009,-2.330899,-2.330828,-2.330761,-2.330638,-2.330526,-2.33042,-2.330299,-2.330173,-2.330053,-2.329918,-2.329818,-2.329892,-2.32999,-2.330134,-2.330274,-2.330423,-2.330567,-2.330714,-2.330877,-2.331042,-2.331202,-2.331362,-2.331544,-2.331724,-2.331885,-2.332044,-2.332219,-2.33238,-2.332542,-2.332703,-2.332853,-2.333012,-2.333171,-2.333339,-2.333499,-2.333666,-2.333827,-2.333985,-2.334157,-2.334317,-2.334474,-2.334634,-2.33481,-2.33497,-2.335146,-2.335314,-2.335448,-2.33559,-2.335749,-2.335923,-2.336091,-2.336251,-2.336409,-2.336572,-2.336736,-2.33689,-2.337057,-2.337217,-2.337382,-2.337552,-2.337705,-2.337835,-2.337958,-2.338116,-2.338283,-2.338433,-2.338584,-2.338709,-2.338879,-2.339046,-2.339219,-2.339358,-2.339491,-2.339656,-2.339816,-2.33999,-2.340162,-2.340333,-2.340484,-2.340665,-2.340831,-2.340987,-2.341146,-2.34131,-2.341472,-2.341555,-2.342414,-2.342583,-2.342745,-2.342886,-2.343021,-2.343152,-2.343267,-2.343393,-2.345688,-2.345857,-2.346016,-2.346178,-2.346318,-2.34647,-2.346536,-2.354866,-2.354795,-2.35474,-2.354784,-2.354696,-2.354666,-2.354652,-2.35462,-2.354697,-2.354734,-2.354739,-2.354754,-2.354768,-2.354811,-2.354833,-2.354858,-2.354886,-2.354941,-2.354882,-2.354962,-2.354921,-2.354806,-2.354705,-2.354757,-2.354741,-2.354751,-2.354723,-2.354708,-2.354675,-2.354711,-2.354768,-2.354756,-2.354682,-2.354667,-2.354609,-2.354549,-2.354512,-2.354457,-2.354454,-2.354479,-2.354497,-2.354474,-2.35443,-2.354342,-2.35419,-2.354174,-2.3541,-2.354019,-2.353923,-2.353878,-2.353845,-2.353958,-2.353976,-2.353813,-2.353719,-2.353627,-2.353535,-2.353447,-2.353364,-2.353299,-2.3533,-2.353235,-2.353166,-2.353067,-2.35301,-2.352995,-2.352895,-2.352905,-2.35286,-2.352822,-2.352849,-2.35287,-2.352841,-2.352852,-2.352869,-2.352915,-2.352981,-2.352985,-2.352956,-2.352951,-2.352828,-2.352819,-2.352911,-2.352979,-2.353063,-2.35311,-2.353144,-2.353157,-2.353155,-2.353196,-2.353269,-2.353289,-2.353309,-2.353323,-2.353335,-2.353398,-2.353427,-2.353364,-2.353302,-2.353198,-2.353148,-2.35307,-2.35298,-2.352888,-2.352811,-2.352803,-2.352805,-2.352724,-2.35267,-2.352586,-2.352514,-2.352512,-2.352454,-2.352382,-2.352325,-2.352269,-2.352211,-2.35214,-2.352053,-2.351988,-2.351911,-2.351883,-2.351972,-2.351901,-2.351785,-2.351746,-2.351688,-2.351622,-2.351554,-2.351508,-2.351423,-2.351323,-2.351215,-2.351155,-2.351209,-2.351169,-2.351145,-2.35113,-2.35112,-2.351125,-2.351139,-2.351109,-2.351069,-2.35103,-2.35099,-2.350954,-2.35089,-2.350819,-2.350726,-2.350634,-2.35056,-2.35046,-2.350359,-2.350261,-2.350157,-2.350041,-2.349915,-2.34979,-2.349754,-2.349704,-2.349684,-2.349651,-2.34953,-2.349438,-2.34936,-2.349288,-2.349173,-2.349081,-2.348984,-2.348876,-2.34877,-2.348695,-2.348561,-2.348461,-2.34841,-2.348277,-2.348322,-2.348346,-2.348436,-2.348504,-2.348549,-2.348584,-2.348608,-2.348665,-2.348739,-2.348802,-2.348874,-2.348996,-2.349102,-2.349235,-2.349343,-2.349419,-2.349473,-2.349499,-2.349599,-2.349643,-2.349656,-2.349726,-2.349861,-2.349961,-2.350061,-2.350152,-2.350223,-2.350252,-2.35025,-2.350337,-2.350387,-2.350422,-2.350434,-2.350469,-2.350445,-2.350416,-2.350397,-2.350433,-2.350487,-2.350569,-2.350653,-2.350705,-2.350756,-2.350762,-2.350765,-2.350823,-2.350875,-2.350939,-2.350974,-2.350995,-2.35108,-2.351156,-2.351214,-2.351234,-2.351275,-2.351305,-2.351304,-2.351342,-2.351372,-2.351437,-2.351489,-2.351535,-2.351556,-2.351599,-2.35161,-2.351618,-2.351577,-2.351591,-2.3516,-2.351613,-2.351705,-2.351748,-2.351865,-2.351963,-2.352031,-2.352026,-2.352148,-2.352235,-2.352329,-2.352426,-2.352583,-2.352742,-2.352884,-2.353018,-2.353128,-2.353277,-2.353419,-2.353554,-2.353693,-2.353831,-2.353917,-2.353973,-2.354102,-2.35422,-2.354382,-2.354527,-2.354646,-2.354772,-2.354885,-2.355006,-2.355149,-2.355278,-2.355414,-2.35554,-2.355654,-2.355774,-2.355893,-2.356028,-2.356176,-2.356319,-2.356437,-2.356553,-2.356658,-2.356757,-2.356857,-2.356936,-2.356993,-2.35708,-2.357172,-2.357292,-2.357413,-2.357515,-2.35761,-2.357674,-2.357677,-2.357644,-2.35771,-2.357871,-2.357988,-2.358121,-2.358261,-2.358395,-2.358448,-2.358458,-2.358483,-2.358467,-2.358467,-2.358463,-2.358453,-2.358461,-2.358406,-2.358438,-2.358499,-2.358585,-2.358616,-2.35861,-2.358567,-2.358553,-2.358516,-2.358455,-2.358407,-2.358366,-2.358326,-2.358276,-2.358239,-2.358222,-2.358164,-2.358101,-2.358018,-2.357962,-2.357907,-2.357854,-2.357788,-2.357731,-2.357613,-2.357495,-2.357363,-2.357237,-2.357202,-2.357209,-2.357246,-2.357323,-2.357427,-2.357491,-2.357526,-2.357542,-2.357557,-2.357558,-2.357563,-2.357542,-2.357534,-2.357544,-2.357604,-2.357748,-2.357853,-2.357935,-2.358025,-2.358089,-2.358123,-2.358147,-2.35813,-2.358131,-2.358065,-2.358131,-2.358143,-2.358104,-2.358114,-2.358056,-2.357944,-2.357964,-2.357873,-2.357823,-2.357798,-2.357722,-2.3577,-2.357732,-2.357677,-2.357638,-2.357599,-2.357523,-2.357472,-2.357477,-2.357485,-2.357495,-2.357516,-2.357488,-2.357427,-2.357403,-2.35744,-2.357458,-2.357459,-2.357457,-2.357429,-2.357423,-2.357435,-2.357473,-2.357524,-2.35757,-2.357665,-2.357738,-2.357806,-2.357831,-2.357858,-2.35789,-2.357918,-2.357921,-2.357936,-2.357951,-2.357985,-2.357996,-2.358037,-2.358068,-2.358108,-2.358198,-2.358234,-2.358267,-2.358292,-2.358301,-2.358305,-2.358317,-2.358332,-2.358343,-2.358365,-2.358375,-2.358384,-2.358384,-2.35841,-2.358449,-2.358482,-2.358459,-2.358389,-2.358465,-2.358513,-2.358522,-2.358532,-2.358566,-2.35853,-2.358519,-2.358491,-2.358456,-2.358407,-2.358377,-2.358325,-2.358304,-2.35829,-2.358301,-2.358284,-2.358228,-2.35817,-2.358155,-2.358197,-2.358177,-2.358153,-2.358127,-2.358082,-2.358063,-2.358041,-2.358044,-2.358056,-2.358016,-2.357992,-2.35795,-2.357911,-2.357905,-2.357837,-2.357772,-2.357782,-2.357731,-2.35769,-2.35764,-2.357603,-2.357554,-2.357522,-2.357491,-2.357469,-2.357418,-2.357347,-2.357246,-2.357342,-2.35746,-2.35763,-2.357732,-2.357794,-2.357886,-2.357918,-2.357982,-2.35806,-2.358233,-2.358374,-2.358435,-2.358453,-2.358561,-2.358555,-2.358622,-2.35871,-2.358812,-2.358933,-2.359038,-2.359118,-2.359203,-2.359294,-2.359369,-2.359482,-2.359567,-2.359631,-2.359782,-2.359912,-2.359952,-2.360006,-2.360173,-2.360312,-2.360459,-2.360622,-2.360785,-2.360937,-2.3611,-2.361242,-2.361361,-2.361483,-2.361605,-2.36171,-2.36183,-2.361944,-2.36208,-2.362226,-2.362377,-2.362448,-2.362598,-2.362734,-2.362864,-2.363011,-2.363151,-2.363294,-2.363428,-2.363569,-2.363689,-2.363817,-2.363972,-2.364072,-2.364065,-2.364026,-2.36398,-2.363946,-2.363898,-2.363849,-2.363804,-2.363775,-2.363756,-2.363735,-2.363715,-2.363702,-2.363683,-2.363665,-2.363634,-2.363606,-2.363572,-2.363539,-2.363499,-2.36346,-2.363415,-2.363381,-2.363344,-2.363298,-2.363256,-2.363206,-2.363164,-2.363131,-2.363115,-2.363057,-2.362978,-2.362864,-2.36273,-2.362604,-2.362461,-2.362343,-2.362222,-2.362257,-2.362307,-2.362357,-2.362454,-2.362572,-2.362674,-2.362781,-2.362867,-2.362883,-2.362985,-2.363071,-2.363099,-2.363197,-2.363329,-2.363364,-2.363459,-2.363549,-2.363588,-2.363709,-2.363782,-2.363891,-2.363991,-2.364081,-2.364212,-2.364296,-2.364399,-2.364491,-2.364639,-2.364794,-2.364933,-2.365086,-2.365206,-2.365275,-2.365324,-2.365354,-2.365352,-2.365303,-2.365224,-2.365143,-2.365032,-2.364929,-2.365078,-2.365071,-2.36519,-2.36532,-2.365456,-2.36561,-2.365761,-2.365902,-2.366042,-2.36619,-2.366317,-2.36649,-2.366665,-2.366801,-2.366926,-2.36707,-2.367219,-2.367363,-2.367505,-2.367651,-2.367807,-2.367949,-2.368096,-2.368241,-2.368362,-2.368519,-2.368669,-2.368792,-2.368923,-2.369031,-2.369174,-2.369324,-2.369467,-2.369614,-2.369767,-2.369917,-2.370071,-2.37022,-2.370373,-2.370526,-2.370665,-2.370819,-2.370971,-2.371139,-2.371305,-2.37132,-2.371477,-2.371639,-2.371803,-2.37196,-2.372128,-2.37228,-2.372325,-2.372482,-2.372612,-2.372747,-2.372887,-2.37303,-2.373162,-2.373031,-2.372935,-2.372768,-2.372625,-2.372596,-2.372607,-2.372613,-2.372607,-2.372604,-2.372686,-2.372788,-2.372942,-2.373089,-2.373175,-2.373332,-2.373403,-2.37352,-2.373612,-2.373716,-2.373835,-2.373961,-2.37408,-2.374198,-2.374348,-2.374508,-2.374548,-2.374496,-2.374408,-2.374293,-2.37421,-2.374115,-2.374015,-2.373921,-2.373779,-2.373665,-2.373513,-2.373361,-2.373403,-2.373264,-2.373115,-2.373041,-2.373023,-2.373007,-2.372964,-2.372902,-2.372885,-2.372935],"lat":[55.437876,55.438036,55.438037,55.437961,55.437878,55.437788,55.437777,55.437685,55.437603,55.437514,55.437461,55.437429,55.437386,55.437356,55.437325,55.43728,55.437218,55.437175,55.437149,55.437115,55.437082,55.43705,55.437009,55.436966,55.436932,55.436883,55.436841,55.436796,55.436766,55.436744,55.436699,55.436654,55.436603,55.436565,55.436513,55.436462,55.436434,55.436394,55.436352,55.436298,55.436251,55.436219,55.436174,55.436134,55.436088,55.436039,55.435998,55.435955,55.435903,55.435868,55.435829,55.435788,55.435748,55.435703,55.435651,55.43561,55.435574,55.435532,55.435495,55.435462,55.435423,55.435386,55.435341,55.435293,55.435252,55.43522,55.435167,55.435127,55.435087,55.435048,55.435013,55.434963,55.434932,55.434884,55.434836,55.434781,55.434751,55.434705,55.434662,55.434637,55.434588,55.434562,55.43452,55.434479,55.43444,55.434398,55.434353,55.434314,55.434263,55.434202,55.434158,55.434114,55.434075,55.434032,55.434004,55.433956,55.43391,55.433851,55.433811,55.433774,55.433728,55.433681,55.433636,55.433598,55.433573,55.433547,55.43353,55.43349,55.433442,55.433402,55.433359,55.433318,55.433267,55.433193,55.43312,55.433044,55.432957,55.432878,55.432808,55.432766,55.432697,55.432618,55.432552,55.432477,55.432428,55.432352,55.432277,55.432221,55.432173,55.432103,55.432031,55.431968,55.431906,55.431837,55.431779,55.431728,55.431661,55.431602,55.431544,55.43149,55.431426,55.431359,55.431294,55.431219,55.431147,55.431078,55.431028,55.431004,55.430958,55.430904,55.430868,55.430845,55.430795,55.430762,55.430733,55.430691,55.430653,55.430596,55.430551,55.430517,55.430475,55.430443,55.430405,55.430363,55.430289,55.430243,55.430197,55.430191,55.430142,55.430105,55.430069,55.430029,55.430001,55.42996,55.429895,55.429857,55.429817,55.429785,55.429779,55.429786,55.429866,55.429955,55.43005,55.430147,55.430234,55.430323,55.430411,55.430498,55.430589,55.430667,55.430577,55.430496,55.430475,55.430453,55.430427,55.430399,55.430365,55.430342,55.430315,55.430281,55.430256,55.43023,55.430218,55.430205,55.430196,55.430207,55.430213,55.430225,55.430252,55.430267,55.430307,55.430332,55.430367,55.430415,55.430448,55.430487,55.430518,55.430553,55.430587,55.430645,55.430694,55.430733,55.430768,55.430782,55.430787,55.430742,55.430746,55.430744,55.430801,55.430856,55.430904,55.430921,55.430955,55.430982,55.430996,55.431028,55.431065,55.431089,55.431118,55.431163,55.431199,55.431243,55.431287,55.431323,55.431366,55.431402,55.431445,55.431476,55.43151,55.431544,55.431564,55.431595,55.431622,55.431643,55.431662,55.431689,55.431716,55.43173,55.431761,55.431776,55.431795,55.431767,55.431777,55.431802,55.431819,55.431839,55.431857,55.431879,55.431902,55.431911,55.431926,55.431934,55.431953,55.431965,55.431963,55.431972,55.431976,55.431988,55.431999,55.432004,55.431991,55.431993,55.432008,55.432008,55.432032,55.432019,55.432011,55.43201,55.431985,55.431981,55.431973,55.431959,55.43195,55.431942,55.431945,55.431951,55.43196,55.431968,55.431981,55.431989,55.432001,55.432011,55.432025,55.432034,55.432033,55.432035,55.432033,55.432028,55.432025,55.432018,55.43201,55.431997,55.431984,55.431963,55.431941,55.43191,55.431877,55.43184,55.431796,55.431754,55.431708,55.43166,55.431597,55.431532,55.431461,55.431393,55.431331,55.431268,55.431205,55.43115,55.431118,55.431094,55.431072,55.431069,55.431035,55.431004,55.430966,55.430939,55.430904,55.43087,55.430841,55.430826,55.430824,55.430894,55.430956,55.43097,55.430974,55.431019,55.431074,55.4311,55.431137,55.431159,55.431149,55.431134,55.431116,55.43118,55.431215,55.431291,55.431378,55.431462,55.431404,55.431345,55.431285,55.431199,55.43111,55.431015,55.431005,55.431004,55.431,55.430989,55.430959,55.430949,55.430933,55.43091,55.430873,55.430812,55.43074,55.430661,55.430573,55.430483,55.430419,55.430371,55.430331,55.43029,55.430266,55.430209,55.430154,55.430091,55.430009,55.429957,55.429891,55.429821,55.429787,55.429729,55.429639,55.429563,55.429481,55.429388,55.429341,55.429277,55.429207,55.429129,55.429057,55.428991,55.428922,55.428841,55.428769,55.428682,55.428606,55.428534,55.428504,55.428487,55.42851,55.428506,55.428521,55.428516,55.428499,55.428504,55.42853,55.428532,55.428545,55.428564,55.428586,55.428599,55.428651,55.428716,55.428764,55.428806,55.428839,55.42887,55.428891,55.428949,55.428989,55.428999,55.42902,55.429035,55.429064,55.429083,55.429103,55.429108,55.429121,55.429139,55.429133,55.429116,55.429118,55.429133,55.429139,55.429141,55.429154,55.429154,55.429164,55.429158,55.429174,55.429177,55.429166,55.429127,55.4291,55.429097,55.429109,55.429112,55.429112,55.429093,55.429064,55.429025,55.428981,55.428932,55.42888,55.428832,55.428792,55.428752,55.428706,55.428654,55.428637,55.42856,55.42847,55.428386,55.428297,55.428202,55.428115,55.428036,55.427954,55.42787,55.427804,55.427708,55.427631,55.427542,55.427449,55.427365,55.427282,55.427232,55.427179,55.427099,55.427011,55.426924,55.426835,55.42674,55.426649,55.426571,55.426485,55.426393,55.4263,55.426202,55.426113,55.426037,55.426026,55.426021,55.426025,55.426042,55.426051,55.426063,55.426076,55.426094,55.426108,55.426131,55.426133,55.426118,55.426077,55.426096,55.426143,55.426178,55.426222,55.426262,55.426275,55.426291,55.426301,55.426327,55.426321,55.426304,55.426306,55.426282,55.426287,55.426278,55.42624,55.426231,55.426212,55.426156,55.426095,55.426096,55.426068,55.426017,55.425964,55.425919,55.425864,55.425819,55.425776,55.425727,55.425685,55.42564,55.425596,55.425529,55.425454,55.425366,55.425295,55.425223,55.425135,55.425062,55.424989,55.424909,55.424827,55.424752,55.424668,55.424575,55.424491,55.424403,55.424315,55.424233,55.424147,55.424052,55.423969,55.423898,55.423846,55.423754,55.423731,55.423652,55.423651,55.423683,55.423634,55.423547,55.42347,55.42338,55.423299,55.423218,55.423134,55.42306,55.422976,55.422902,55.422837,55.422791,55.422752,55.42271,55.422674,55.422638,55.422603,55.422558,55.422522,55.42249,55.422458,55.422419,55.422378,55.422344,55.422301,55.42225,55.422216,55.422166,55.422134,55.422108,55.422066,55.422047,55.422027,55.422006,55.421969,55.421932,55.421887,55.421821,55.421793,55.42176,55.421735,55.421697,55.421649,55.42161,55.421561,55.421524,55.421483,55.421451,55.421406,55.421409,55.421366,55.421337,55.421284,55.42123,55.421184,55.421137,55.421111,55.421076,55.421043,55.420998,55.420964,55.420931,55.420903,55.420868,55.420824,55.420795,55.420754,55.420707,55.420673,55.420634,55.42058,55.420508,55.420442,55.420382,55.420312,55.420282,55.420186,55.42009,55.41999,55.419899,55.419797,55.4197,55.4196,55.419505,55.41941,55.419322,55.419247,55.419157,55.419065,55.418974,55.418887,55.418789,55.418692,55.418593,55.418492,55.418401,55.418306,55.418222,55.418126,55.418052,55.417957,55.417863,55.417771,55.417678,55.41759,55.417497,55.417412,55.417316,55.417223,55.417147,55.41706,55.416972,55.416879,55.416787,55.416692,55.416597,55.416506,55.416416,55.416334,55.416233,55.416143,55.416045,55.415955,55.415869,55.415773,55.415678,55.415588,55.415487,55.415392,55.415308,55.415231,55.415162,55.415107,55.415051,55.415007,55.414955,55.414892,55.414839,55.414771,55.414705,55.414638,55.414562,55.414504,55.414444,55.414411,55.41438,55.414349,55.414289,55.414233,55.414184,55.414133,55.414102,55.414054,55.414008,55.413956,55.413903,55.413877,55.413827,55.413794,55.413776,55.413733,55.413706,55.413674,55.413611,55.413581,55.413559,55.413516,55.413488,55.413452,55.413455,55.41347,55.413417,55.413381,55.41338,55.413358,55.413307,55.413255,55.413199,55.413171,55.413114,55.413045,55.412986,55.41294,55.412886,55.412823,55.412762,55.412717,55.412684,55.412643,55.412599,55.412561,55.412531,55.412496,55.412452,55.412389,55.412333,55.41227,55.412272,55.412203,55.412136,55.412071,55.412016,55.411966,55.411894,55.411824,55.411768,55.41171,55.411639,55.411593,55.411523,55.411469,55.411397,55.411337,55.411276,55.411222,55.411169,55.411117,55.411054,55.41101,55.410974,55.410934,55.410889,55.410853,55.410797,55.410756,55.41073,55.410675,55.410622,55.410565,55.410514,55.410471,55.410417,55.410357,55.410303,55.410241,55.410186,55.410128,55.41011,55.410057,55.410017,55.409963,55.409924,55.409908,55.40988,55.409833,55.409744,55.409651,55.409558,55.40947,55.409388,55.409295,55.409198,55.409096,55.409005,55.408915,55.408829,55.408761,55.408691,55.408629,55.408556,55.408462,55.40837,55.40829,55.408223,55.408133,55.408051,55.407964,55.407871,55.407785,55.407691,55.407604,55.407529,55.407454,55.407376,55.407299,55.407219,55.40713,55.407042,55.406954,55.406869,55.406783,55.406712,55.406691,55.406685,55.406671,55.406665,55.406651,55.406633,55.406655,55.406687,55.406685,55.40669,55.406669,55.406644,55.406624,55.406627,55.406629,55.406613,55.40661,55.406617,55.40663,55.406646,55.406641,55.406636,55.406616,55.406568,55.40654,55.406522,55.406529,55.406542,55.406604,55.406649,55.406674,55.406653,55.406626,55.406614,55.406589,55.406539,55.406509,55.406502,55.406542,55.406579,55.406604,55.406632,55.406629,55.40662,55.406672,55.406726,55.406738,55.406729,55.406725,55.406652,55.406606,55.406587,55.406619,55.406641,55.406655,55.40664,55.406604,55.406581,55.406556,55.406546,55.406485,55.406457,55.406425,55.406394,55.406353,55.406324,55.406283,55.406224,55.406133,55.406067,55.406025,55.405978,55.405923,55.405861,55.405807,55.405741,55.405673,55.405588,55.405507,55.405426,55.405372,55.405332,55.405251,55.405162,55.405134,55.405106,55.405072,55.405009,55.404932,55.40485,55.404778,55.404686,55.404598,55.404524,55.404433,55.404347,55.404259,55.404167,55.404079,55.403987,55.403891,55.4038,55.403717,55.403637,55.403576,55.403552,55.40349,55.403425,55.403352,55.403304,55.403249,55.403195,55.403131,55.403095,55.40307,55.403082,55.403074,55.403016,55.402959,55.402914,55.402842,55.402758,55.40271,55.402627,55.402568,55.402492,55.402427,55.402355,55.402295,55.402237,55.402177,55.402105,55.402051,55.402013,55.401952,55.401896,55.401842,55.401777,55.401709,55.40164,55.401573,55.40151,55.401448,55.401384,55.401326,55.401279,55.40125,55.401203,55.401139,55.401093,55.401028,55.400932,55.40084,55.400748,55.400664,55.400588,55.400529,55.400479,55.400418,55.400374,55.400277,55.400187,55.400094,55.399996,55.399913,55.399841,55.399766,55.399674,55.399583,55.399519,55.399465,55.399408,55.399342,55.399274,55.399191,55.399116,55.399082,55.39904,55.398963,55.3989,55.398865,55.398827,55.398733,55.398642,55.398545,55.398452,55.398371,55.398281,55.398188,55.398113,55.398019,55.397935,55.397866,55.397775,55.397685,55.397591,55.397494,55.397403,55.397321,55.397231,55.397137,55.397039,55.39694,55.396846,55.396753,55.396661,55.396569,55.396469,55.396374,55.396282,55.396185,55.396086,55.396002,55.395904,55.395813,55.395723,55.39563,55.395533,55.395433,55.395334,55.395244,55.395145,55.395044,55.394955,55.394863,55.394764,55.394673,55.394582,55.394492,55.394398,55.394305,55.394214,55.394121,55.394025,55.39393,55.393833,55.393735,55.393638,55.393541,55.39344,55.393343,55.393246,55.393156,55.393062,55.392965,55.392867,55.392773,55.392679,55.392583,55.392493,55.392401,55.392305,55.39221,55.392112,55.392016,55.391916,55.391816,55.391719,55.39163,55.391532,55.391445,55.391351,55.391261,55.391172,55.391083,55.390989,55.39089,55.390791,55.3907,55.390604,55.390516,55.390424,55.390325,55.390241,55.390149,55.390065,55.389973,55.389877,55.389786,55.389701,55.389611,55.389526,55.389431,55.389331,55.389251,55.389167,55.389076,55.388998,55.388908,55.38882,55.388816,55.388726,55.388634,55.388546,55.388458,55.388361,55.388274,55.388182,55.388092,55.388,55.387903,55.387812,55.387726,55.387713,55.387612,55.387517,55.387424,55.387329,55.387239,55.387144,55.387052,55.386963,55.386872,55.386781,55.386683,55.386589,55.3865,55.386416,55.386328,55.386228,55.386143,55.386052,55.385954,55.385858,55.38576,55.385674,55.385591,55.385499,55.385404,55.385317,55.385228,55.385138,55.385043,55.384944,55.384848,55.384752,55.38466,55.384568,55.384477,55.384385,55.3843,55.384212,55.384118,55.38402,55.383929,55.383833,55.383749,55.383661,55.383572,55.383474,55.383383,55.38329,55.383196,55.383106,55.383013,55.382926,55.382835,55.382741,55.382646,55.382555,55.382467,55.38237,55.382273,55.382186,55.382098,55.382009,55.381925,55.381828,55.381737,55.381645,55.381557,55.381467,55.381381,55.381289,55.381193,55.381106,55.381009,55.380919,55.38083,55.380739,55.380732,55.380641,55.380562,55.380467,55.380373,55.380278,55.380186,55.38009,55.380054,55.379962,55.379876,55.379795,55.379712,55.37964,55.379566,55.379474,55.379376,55.37928,55.379185,55.379092,55.378994,55.378896,55.378806,55.378717,55.378629,55.378534,55.378438,55.378341,55.378253,55.378166,55.378082,55.378043,55.377955,55.377865,55.377769,55.377673,55.377573,55.377481,55.377391,55.377293,55.377201,55.3771,55.377007,55.376918,55.376822,55.376728,55.376639,55.376594,55.376537,55.376455,55.376361,55.376273,55.376192,55.376101,55.376013,55.375921,55.37583,55.375743,55.37565,55.375569,55.375532,55.375433,55.375338,55.375262,55.375173,55.375095,55.375005,55.374913,55.374842,55.374766,55.374671,55.374592,55.374522,55.374446,55.374356,55.374281,55.374204,55.374137,55.374073,55.374005,55.373941,55.373878,55.373805,55.373727,55.373645,55.373567,55.373511,55.373452,55.37339,55.373325,55.373268,55.373241,55.373205,55.373143,55.373102,55.373021,55.372933,55.372841,55.372747,55.372657,55.372584,55.372509,55.372428,55.372345,55.372275,55.372203,55.372144,55.372068,55.371993,55.371919,55.37184,55.371756,55.371708,55.371648,55.37158,55.371517,55.371459,55.3714,55.371348,55.371272,55.371194,55.371128,55.371057,55.37099,55.37092,55.370849,55.370807,55.370822,55.370767,55.37076,55.370745,55.370717,55.370691,55.370655,55.370584,55.370553,55.370505,55.370466,55.370422,55.370397,55.370368,55.3703,55.37023,55.37016,55.370087,55.370021,55.369953,55.369883,55.369809,55.369739,55.369674,55.369601,55.369519,55.369434,55.369357,55.369274,55.369204,55.369135,55.369075,55.369002,55.368946,55.368899,55.368812,55.368737,55.368684,55.368635,55.368598,55.36855,55.368501,55.368468,55.368447,55.368427,55.368393,55.368378,55.368378,55.368375,55.368372,55.368374,55.368363,55.36834,55.368325,55.36829,55.368246,55.368211,55.368196,55.368184,55.36818,55.368166,55.36815,55.368128,55.368114,55.368106,55.368082,55.368058,55.368039,55.368024,55.368022,55.367969,55.367928,55.367903,55.367875,55.367857,55.367847,55.367829,55.367817,55.367828,55.367787,55.367757,55.367722,55.367689,55.367668,55.367632,55.367578,55.36752,55.367489,55.367493,55.367438,55.367409,55.367473,55.367465,55.367496,55.367481,55.367527,55.36758,55.367551,55.367511,55.367492,55.367491,55.367475,55.367435,55.367439,55.367432,55.367446,55.367461,55.367457,55.36746,55.367481,55.367293,55.367264,55.367237,55.367186,55.367131,55.367079,55.367014,55.366977,55.366581,55.36673,55.366715,55.36675,55.366797,55.366836,55.366862,55.3641,55.364131,55.364034,55.363935,55.363842,55.363751,55.363658,55.363555,55.363475,55.363384,55.363287,55.36319,55.363094,55.362996,55.362902,55.362812,55.362714,55.36262,55.36254,55.362462,55.362436,55.362363,55.362294,55.362204,55.36211,55.362019,55.36193,55.361839,55.361744,55.361653,55.361565,55.361463,55.361382,55.361284,55.361197,55.361114,55.361014,55.360919,55.360821,55.36073,55.360639,55.360548,55.360452,55.360377,55.360341,55.360249,55.360164,55.360084,55.360001,55.359909,55.359817,55.359745,55.359742,55.359736,55.359661,55.359578,55.359497,55.359412,55.359331,55.359249,55.359155,55.35907,55.358986,55.358913,55.358828,55.358736,55.358659,55.358564,55.358475,55.358383,55.358292,55.3582,55.358112,55.358011,55.357914,55.357824,55.357734,55.357637,55.357539,55.357437,55.357371,55.357272,55.357199,55.357115,55.357038,55.356947,55.356855,55.356761,55.356667,55.35658,55.356498,55.356405,55.356308,55.35621,55.356113,55.356026,55.355929,55.355837,55.35575,55.355679,55.355592,55.355513,55.355436,55.355348,55.355261,55.35518,55.35509,55.35501,55.354923,55.354824,55.354733,55.354639,55.354552,55.354468,55.354378,55.35429,55.354206,55.354113,55.354021,55.353937,55.353845,55.353747,55.353776,55.353695,55.353633,55.353539,55.353445,55.35335,55.353262,55.353169,55.35309,55.353004,55.352932,55.35284,55.352752,55.352661,55.352567,55.352473,55.352383,55.352288,55.352196,55.3521,55.352001,55.351902,55.35181,55.35172,55.351629,55.351541,55.351459,55.35138,55.351299,55.351212,55.351141,55.351064,55.350983,55.350917,55.350853,55.350796,55.350703,55.350617,55.350541,55.350452,55.350385,55.350312,55.350219,55.350137,55.350073,55.349998,55.34992,55.349845,55.349771,55.349679,55.349624,55.349547,55.349456,55.349433,55.349335,55.349244,55.349156,55.349063,55.348968,55.348873,55.348783,55.34869,55.348603,55.348518,55.348434,55.348367,55.348292,55.34823,55.34815,55.348071,55.347984,55.347883,55.347803,55.347714,55.347615,55.347527,55.347472,55.347403,55.347324,55.347249,55.347156,55.347058,55.346966,55.346881,55.346782,55.346691,55.346596,55.346505,55.346405,55.34631,55.346218,55.346127,55.346034,55.345942,55.345852,55.345763,55.345665,55.345575,55.345479,55.345385,55.345288,55.345195,55.345099,55.345005,55.344917,55.344832,55.344741,55.344647,55.344553,55.344454,55.344365,55.344273,55.344184,55.344091,55.344001,55.343906,55.343815,55.343725,55.343628,55.34353,55.343443,55.343344,55.343253,55.343157,55.343081,55.343011,55.342944,55.342873,55.342781,55.342682,55.342618,55.342537,55.342449,55.342368,55.342329,55.342298,55.34224,55.342183,55.34211,55.342059,55.342005,55.341952,55.341901,55.341844,55.341757,55.341735,55.341672,55.341597,55.34157,55.34152,55.341455,55.341392,55.341326,55.341263,55.341211,55.341152,55.341101,55.341038,55.340966,55.340901,55.340834,55.340785,55.34074,55.3407,55.340637,55.340575,55.340502,55.340417,55.340336,55.340246,55.340162,55.340086,55.340002,55.339927,55.339853,55.339783,55.339699,55.339608,55.339518,55.339417,55.339327,55.339284,55.339217,55.339151,55.339101,55.339034,55.338936,55.338841,55.338743,55.338647,55.33855,55.338454,55.338356,55.338266,55.338174,55.338085,55.338,55.33792,55.337819,55.337726,55.337627,55.337526,55.337429,55.33733,55.337243,55.337152,55.337064,55.336968,55.336874,55.336778,55.336681,55.336595,55.336511,55.336419,55.336334,55.336247,55.336162,55.336076,55.336001,55.335931,55.335879,55.335819,55.33572,55.335629,55.335539,55.335457,55.335376,55.335285,55.335183,55.335089,55.334988,55.334894,55.3348,55.3347,55.334603,55.3345,55.334415,55.334361,55.334292,55.334214,55.33414,55.33405,55.333961,55.333864,55.333771,55.33368,55.333595,55.333508,55.333415,55.333328,55.333237,55.33315,55.333083,55.332985,55.332929,55.332836,55.332744,55.332664,55.33257,55.332474,55.332386,55.332293,55.332205,55.33212,55.332033,55.331941,55.331846,55.331748,55.331648,55.331554,55.331464,55.331369,55.331279,55.331186,55.331094,55.330999,55.3309,55.33081,55.330718,55.330623,55.330531,55.330442,55.33036,55.330273,55.330187,55.330086,55.329992,55.329893,55.329796,55.329702,55.329604,55.329508,55.329419,55.329322,55.329232,55.329142,55.329048,55.328964,55.328872,55.328772,55.328681,55.328583,55.328486,55.328396,55.328297,55.328201,55.328111,55.328021,55.327928,55.327836,55.327744,55.327649,55.327552,55.327461,55.327379,55.327296,55.327206,55.327109,55.327014,55.326918,55.326855,55.326761,55.326667,55.326568,55.326478,55.326379,55.326281,55.326188,55.326155,55.326061,55.325962,55.325865,55.325781,55.325682,55.325592,55.3255,55.325398,55.325305,55.325212,55.325116,55.325017,55.32492,55.324825,55.324726,55.32463,55.324539,55.324452,55.324362,55.324274,55.324188,55.32409,55.323999,55.323912,55.32382,55.323727,55.323636,55.323547,55.32345,55.323352,55.323259,55.323168,55.323091,55.323017,55.322999,55.322991,55.322921,55.322887,55.322811,55.322768,55.322684,55.322649,55.322645,55.322596,55.322514,55.32242,55.322355,55.322353,55.322264,55.322186,55.322115,55.322053,55.321985,55.321904,55.321827,55.321745,55.321665,55.321593,55.321513,55.321447,55.321413,55.321349,55.321261,55.321217,55.321229,55.321285,55.321337,55.321384,55.321418,55.321458,55.321491,55.321539,55.3216,55.321665,55.321736,55.32181,55.321875,55.321938,55.321993,55.322053,55.322108,55.322135,55.322182,55.32223,55.322286,55.322333,55.322385,55.322434,55.322489,55.322549,55.322621,55.322676,55.322714,55.322636,55.322539,55.32244,55.322352,55.322263,55.322165,55.322072,55.321976,55.321879,55.321786,55.321686,55.321595,55.321502,55.321408,55.321311,55.321217,55.321118,55.321026,55.320935,55.320843,55.320749,55.320652,55.320563,55.32047,55.320382,55.320295,55.32021,55.320115,55.320014,55.319918,55.319826,55.319735,55.319672,55.319605,55.319541,55.319486,55.319422,55.31935,55.319263,55.319178,55.319137,55.319053,55.318977,55.318905,55.318833,55.318753,55.318701,55.318624,55.318544,55.318469,55.318394,55.318343,55.318286,55.318203,55.318127,55.318028,55.317957,55.317874,55.317801,55.31772,55.317636,55.317578,55.317493,55.31742,55.317342,55.317305,55.317328,55.31727,55.317298,55.317276,55.317189,55.317094,55.316997,55.316905,55.316812,55.316723,55.316645,55.316576,55.316516,55.316482,55.316483,55.316546,55.316598,55.316649,55.316699,55.316746,55.316787,55.316836,55.316889,55.31695,55.316945,55.31697,55.31703,55.317088,55.317148,55.317188,55.31724,55.3173,55.317351,55.317406,55.317448,55.3175,55.317551,55.317615,55.317643,55.317609,55.317667,55.317728,55.317809,55.317854,55.31789,55.317948,55.317988,55.318039,55.318085,55.318132,55.318167,55.318218,55.318255,55.318302,55.318339,55.318372,55.318399,55.31839,55.318376,55.318349,55.31832,55.318293,55.318271,55.31825,55.318226,55.318205,55.318193,55.318179,55.31812,55.318076,55.318028,55.317987,55.318043,55.318087,55.318109,55.318156,55.318063,55.317968,55.31787,55.317772,55.317674,55.317583,55.317505,55.317467,55.317417,55.317373,55.317338,55.317371,55.31744,55.317466,55.31754,55.317607,55.31767,55.317738,55.317803,55.317837,55.317868,55.317958,55.318044,55.318121,55.31819,55.318276,55.318358,55.318444,55.31852,55.318579,55.318514,55.318473,55.318425,55.318432,55.31838,55.318339,55.318259,55.318162,55.31807,55.318074,55.317988,55.317985,55.317951]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[55.316482,55.438037],"lng":[-2.374548,-2.204966]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-3-2" class="tab-pane" aria-labelledby="tabset-3-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-15"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_81188824c2fa6a22d9064a8573e666cc {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_81188824c2fa6a22d9064a8573e666cc&quot; ></div>
        
</body>
<script>
    
    
            var map_81188824c2fa6a22d9064a8573e666cc = L.map(
                &quot;map_81188824c2fa6a22d9064a8573e666cc&quot;,
                {
                    center: [55.385043351509694, -2.3139396831906263],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_b9be43f43062b77b916710b102f78bba = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_b9be43f43062b77b916710b102f78bba.addTo(map_81188824c2fa6a22d9064a8573e666cc);
        
    
            var tile_layer_db23dd955dc1a043e4a1dbd73fa5ee7e = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_db23dd955dc1a043e4a1dbd73fa5ee7e.addTo(map_81188824c2fa6a22d9064a8573e666cc);
        
    
            var color_line_0c9772ec42c03b8355fb9bfac1212d9b = L.featureGroup(
                {
}
            );
        
    
            var poly_line_f022c371d141474715cef9e5ab530170 = L.polyline(
                [[[55.437876, -2.205037], [55.438036, -2.204999]], [[55.438036, -2.204999], [55.438037, -2.204966]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_5998fd3d2b8f690ca9b3086be9aec891 = L.polyline(
                [[[55.438037, -2.204966], [55.437961, -2.205087]], [[55.437788, -2.205194], [55.437777, -2.205207]], [[55.437777, -2.205207], [55.437685, -2.205247]], [[55.436766, -2.208262], [55.436744, -2.208367]], [[55.436744, -2.208367], [55.436699, -2.208527]], [[55.433598, -2.219409], [55.433573, -2.219545]], [[55.433573, -2.219545], [55.433547, -2.219702]], [[55.433547, -2.219702], [55.43353, -2.21986]], [[55.432477, -2.221891], [55.432428, -2.22192]], [[55.432352, -2.222014], [55.432277, -2.22213]], [[55.430243, -2.227528], [55.430197, -2.227672]], [[55.429866, -2.22966], [55.429955, -2.229708]], [[55.430742, -2.2357], [55.430746, -2.235741]], [[55.431072, -2.252683], [55.431069, -2.252717]], [[55.431378, -2.256445], [55.431462, -2.256477]], [[55.431345, -2.256702], [55.431285, -2.256824]], [[55.431285, -2.256824], [55.431199, -2.256775]], [[55.429277, -2.261149], [55.429207, -2.261266]], [[55.429207, -2.261266], [55.429129, -2.26138]], [[55.428534, -2.262206], [55.428504, -2.262309]], [[55.428487, -2.262477], [55.42851, -2.262647]], [[55.428506, -2.262814], [55.428521, -2.26298]], [[55.428521, -2.26298], [55.428516, -2.263145]], [[55.428516, -2.263145], [55.428499, -2.263301]], [[55.428499, -2.263301], [55.428504, -2.263468]], [[55.428654, -2.27207], [55.428637, -2.272122]], [[55.426095, -2.279664], [55.426096, -2.27967]], [[55.423898, -2.282975], [55.423846, -2.283053]], [[55.423683, -2.283145], [55.423634, -2.283281]], [[55.420312, -2.293865], [55.420282, -2.29391]], [[55.413417, -2.300775], [55.413381, -2.300926]], [[55.412203, -2.304439], [55.412136, -2.304555]], [[55.41073, -2.307972], [55.410675, -2.308125]], [[55.40988, -2.310577], [55.409833, -2.31069]], [[55.409744, -2.310751], [55.409651, -2.310752]], [[55.406691, -2.313438], [55.406685, -2.313494]], [[55.406671, -2.313663], [55.406665, -2.313841]], [[55.406726, -2.320633], [55.406738, -2.320802]], [[55.403576, -2.327629], [55.403552, -2.327682]], [[55.40349, -2.327801], [55.403425, -2.327935]], [[55.403249, -2.328282], [55.403195, -2.328417]], [[55.402914, -2.32963], [55.402842, -2.329605]], [[55.402842, -2.329605], [55.402758, -2.32968]], [[55.400418, -2.333992], [55.400374, -2.334032]], [[55.400277, -2.334052], [55.400187, -2.334048]], [[55.399191, -2.335015], [55.399116, -2.334916]], [[55.399116, -2.334916], [55.399082, -2.335065]], [[55.399082, -2.335065], [55.39904, -2.335219]], [[55.398371, -2.3358], [55.398281, -2.335818]], [[55.391351, -2.335743], [55.391261, -2.335717]], [[55.38882, -2.335157], [55.388816, -2.335173]], [[55.388726, -2.335153], [55.388634, -2.335108]], [[55.387726, -2.334645], [55.387713, -2.334639]], [[55.387612, -2.334643], [55.387517, -2.334592]], [[55.380732, -2.331896], [55.380641, -2.331854]], [[55.380641, -2.331854], [55.380562, -2.331826]], [[55.38009, -2.331923], [55.380054, -2.3319]], [[55.37964, -2.332068], [55.379566, -2.331973]], [[55.378082, -2.332325], [55.378043, -2.33235]], [[55.378043, -2.33235], [55.377955, -2.332416]], [[55.376639, -2.332707], [55.376594, -2.332736]], [[55.373143, -2.337194], [55.373102, -2.337219]], [[55.372657, -2.33711], [55.372584, -2.337118]], [[55.372584, -2.337118], [55.372509, -2.337]], [[55.371756, -2.335939], [55.371708, -2.335909]], [[55.371648, -2.335777], [55.37158, -2.335642]], [[55.370807, -2.334146], [55.370822, -2.334088]], [[55.370584, -2.333016], [55.370553, -2.332931]], [[55.370553, -2.332931], [55.370505, -2.332787]], [[55.366862, -2.346536], [55.3641, -2.354866]], [[55.359661, -2.353719], [55.359578, -2.353627]], [[55.359578, -2.353627], [55.359497, -2.353535]], [[55.359249, -2.353299], [55.359155, -2.3533]], [[55.359155, -2.3533], [55.35907, -2.353235]], [[55.35907, -2.353235], [55.358986, -2.353166]], [[55.358986, -2.353166], [55.358913, -2.353067]], [[55.358913, -2.353067], [55.358828, -2.35301]], [[55.358828, -2.35301], [55.358736, -2.352995]], [[55.358564, -2.352905], [55.358475, -2.35286]], [[55.350703, -2.349754], [55.350617, -2.349704]], [[55.350617, -2.349704], [55.350541, -2.349684]], [[55.350541, -2.349684], [55.350452, -2.349651]], [[55.349335, -2.348322], [55.349244, -2.348346]], [[55.343081, -2.351705], [55.343011, -2.351748]], [[55.342873, -2.351963], [55.342781, -2.352031]], [[55.333083, -2.357944], [55.332985, -2.357964]], [[55.332985, -2.357964], [55.332929, -2.357873]], [[55.327109, -2.358522], [55.327014, -2.358532]], [[55.326918, -2.358566], [55.326855, -2.35853]], [[55.326188, -2.358304], [55.326155, -2.35829]], [[55.326061, -2.358301], [55.325962, -2.358284]], [[55.324452, -2.357911], [55.324362, -2.357905]], [[55.323017, -2.357342], [55.322999, -2.35746]], [[55.322999, -2.35746], [55.322991, -2.35763]], [[55.322921, -2.357732], [55.322887, -2.357794]], [[55.322596, -2.358374], [55.322514, -2.358435]], [[55.322514, -2.358435], [55.32242, -2.358453]], [[55.32242, -2.358453], [55.322355, -2.358561]], [[55.322186, -2.35871], [55.322115, -2.358812]], [[55.322115, -2.358812], [55.322053, -2.358933]], [[55.322053, -2.358933], [55.321985, -2.359038]], [[55.321985, -2.359038], [55.321904, -2.359118]], [[55.321904, -2.359118], [55.321827, -2.359203]], [[55.321827, -2.359203], [55.321745, -2.359294]], [[55.321745, -2.359294], [55.321665, -2.359369]], [[55.321665, -2.359369], [55.321593, -2.359482]], [[55.321593, -2.359482], [55.321513, -2.359567]], [[55.321513, -2.359567], [55.321447, -2.359631]], [[55.321413, -2.359782], [55.321349, -2.359912]], [[55.321349, -2.359912], [55.321261, -2.359952]], [[55.321261, -2.359952], [55.321217, -2.360006]], [[55.321229, -2.360173], [55.321285, -2.360312]], [[55.322135, -2.362448], [55.322182, -2.362598]], [[55.319137, -2.362357], [55.319053, -2.362454]], [[55.318753, -2.362867], [55.318701, -2.362883]], [[55.318624, -2.362985], [55.318544, -2.363071]], [[55.318544, -2.363071], [55.318469, -2.363099]], [[55.318469, -2.363099], [55.318394, -2.363197]], [[55.318394, -2.363197], [55.318343, -2.363329]], [[55.318343, -2.363329], [55.318286, -2.363364]], [[55.318203, -2.363459], [55.318127, -2.363549]], [[55.317342, -2.364491], [55.317305, -2.364639]], [[55.317305, -2.364639], [55.317328, -2.364794]], [[55.317328, -2.364794], [55.31727, -2.364933]], [[55.31727, -2.364933], [55.317298, -2.365086]], [[55.317298, -2.365086], [55.317276, -2.365206]], [[55.31839, -2.371305], [55.318376, -2.37132]], [[55.318349, -2.371477], [55.31832, -2.371639]], [[55.318226, -2.37228], [55.318205, -2.372325]], [[55.31812, -2.372747], [55.318076, -2.372887]], [[55.318028, -2.37303], [55.317987, -2.373162]], [[55.318109, -2.372768], [55.318156, -2.372625]], [[55.317417, -2.373089], [55.317373, -2.373175]], [[55.31754, -2.373716], [55.317607, -2.373835]], [[55.318425, -2.373361], [55.318432, -2.373403]], [[55.318432, -2.373403], [55.31838, -2.373264]], [[55.31807, -2.373007], [55.318074, -2.372964]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_03ba9fc6ab3454137d998081565912b2 = L.polyline(
                [[[55.437961, -2.205087], [55.437878, -2.205151]], [[55.437878, -2.205151], [55.437788, -2.205194]], [[55.437685, -2.205247], [55.437603, -2.20532]], [[55.437603, -2.20532], [55.437514, -2.205387]], [[55.437514, -2.205387], [55.437461, -2.205529]], [[55.437461, -2.205529], [55.437429, -2.205702]], [[55.437429, -2.205702], [55.437386, -2.205857]], [[55.437386, -2.205857], [55.437356, -2.206007]], [[55.437356, -2.206007], [55.437325, -2.206159]], [[55.437082, -2.207039], [55.43705, -2.207186]], [[55.43705, -2.207186], [55.437009, -2.20733]], [[55.437009, -2.20733], [55.436966, -2.20749]], [[55.436966, -2.20749], [55.436932, -2.207637]], [[55.436932, -2.207637], [55.436883, -2.207798]], [[55.436883, -2.207798], [55.436841, -2.207953]], [[55.436841, -2.207953], [55.436796, -2.208107]], [[55.436796, -2.208107], [55.436766, -2.208262]], [[55.436699, -2.208527], [55.436654, -2.208668]], [[55.436654, -2.208668], [55.436603, -2.208806]], [[55.436603, -2.208806], [55.436565, -2.208963]], [[55.436565, -2.208963], [55.436513, -2.209114]], [[55.436513, -2.209114], [55.436462, -2.209249]], [[55.436462, -2.209249], [55.436434, -2.20942]], [[55.436434, -2.20942], [55.436394, -2.209583]], [[55.436394, -2.209583], [55.436352, -2.20973]], [[55.436251, -2.210022], [55.436219, -2.210188]], [[55.436219, -2.210188], [55.436174, -2.210346]], [[55.436174, -2.210346], [55.436134, -2.210494]], [[55.436134, -2.210494], [55.436088, -2.21065]], [[55.436088, -2.21065], [55.436039, -2.21079]], [[55.435998, -2.210935], [55.435955, -2.211074]], [[55.435829, -2.211519], [55.435788, -2.21167]], [[55.435788, -2.21167], [55.435748, -2.211832]], [[55.435748, -2.211832], [55.435703, -2.211987]], [[55.435703, -2.211987], [55.435651, -2.212139]], [[55.435651, -2.212139], [55.43561, -2.212283]], [[55.43561, -2.212283], [55.435574, -2.212431]], [[55.435574, -2.212431], [55.435532, -2.212585]], [[55.435532, -2.212585], [55.435495, -2.212739]], [[55.435495, -2.212739], [55.435462, -2.212898]], [[55.435462, -2.212898], [55.435423, -2.213052]], [[55.435423, -2.213052], [55.435386, -2.213206]], [[55.435386, -2.213206], [55.435341, -2.213361]], [[55.435341, -2.213361], [55.435293, -2.213504]], [[55.435293, -2.213504], [55.435252, -2.213653]], [[55.435252, -2.213653], [55.43522, -2.213816]], [[55.43522, -2.213816], [55.435167, -2.213947]], [[55.435167, -2.213947], [55.435127, -2.214112]], [[55.435127, -2.214112], [55.435087, -2.214262]], [[55.435013, -2.214555], [55.434963, -2.214694]], [[55.434884, -2.214987], [55.434836, -2.215146]], [[55.434836, -2.215146], [55.434781, -2.215285]], [[55.434781, -2.215285], [55.434751, -2.215455]], [[55.434751, -2.215455], [55.434705, -2.215608]], [[55.434705, -2.215608], [55.434662, -2.21575]], [[55.434662, -2.21575], [55.434637, -2.215918]], [[55.434562, -2.216206], [55.43452, -2.216346]], [[55.43452, -2.216346], [55.434479, -2.216493]], [[55.434479, -2.216493], [55.43444, -2.216641]], [[55.43444, -2.216641], [55.434398, -2.216799]], [[55.434398, -2.216799], [55.434353, -2.216939]], [[55.434353, -2.216939], [55.434314, -2.217088]], [[55.434314, -2.217088], [55.434263, -2.21723]], [[55.434202, -2.217346], [55.434158, -2.21749]], [[55.434158, -2.21749], [55.434114, -2.217646]], [[55.434114, -2.217646], [55.434075, -2.217807]], [[55.434075, -2.217807], [55.434032, -2.217948]], [[55.434032, -2.217948], [55.434004, -2.218103]], [[55.434004, -2.218103], [55.433956, -2.218244]], [[55.433956, -2.218244], [55.43391, -2.218392]], [[55.43391, -2.218392], [55.433851, -2.218529]], [[55.433851, -2.218529], [55.433811, -2.218677]], [[55.433193, -2.220873], [55.43312, -2.220979]], [[55.43312, -2.220979], [55.433044, -2.221088]], [[55.433044, -2.221088], [55.432957, -2.221152]], [[55.432957, -2.221152], [55.432878, -2.22123]], [[55.432878, -2.22123], [55.432808, -2.221338]], [[55.432808, -2.221338], [55.432766, -2.22148]], [[55.432766, -2.22148], [55.432697, -2.221603]], [[55.432697, -2.221603], [55.432618, -2.221681]], [[55.432277, -2.22213], [55.432221, -2.222256]], [[55.432221, -2.222256], [55.432173, -2.222401]], [[55.432173, -2.222401], [55.432103, -2.222521]], [[55.432103, -2.222521], [55.432031, -2.222646]], [[55.432031, -2.222646], [55.431968, -2.222762]], [[55.431968, -2.222762], [55.431906, -2.222876]], [[55.431906, -2.222876], [55.431837, -2.222999]], [[55.431837, -2.222999], [55.431779, -2.223143]], [[55.431779, -2.223143], [55.431728, -2.223278]], [[55.431728, -2.223278], [55.431661, -2.223403]], [[55.431661, -2.223403], [55.431602, -2.223532]], [[55.431544, -2.223662], [55.43149, -2.223789]], [[55.431359, -2.224068], [55.431294, -2.224188]], [[55.430845, -2.225462], [55.430795, -2.2256]], [[55.430733, -2.225919], [55.430691, -2.226077]], [[55.430691, -2.226077], [55.430653, -2.226241]], [[55.430653, -2.226241], [55.430596, -2.226374]], [[55.430596, -2.226374], [55.430551, -2.226526]], [[55.430551, -2.226526], [55.430517, -2.226674]], [[55.430517, -2.226674], [55.430475, -2.226819]], [[55.430475, -2.226819], [55.430443, -2.226972]], [[55.430443, -2.226972], [55.430405, -2.227129]], [[55.430405, -2.227129], [55.430363, -2.227291]], [[55.430363, -2.227291], [55.430289, -2.227382]], [[55.430105, -2.228138], [55.430069, -2.228296]], [[55.430069, -2.228296], [55.430029, -2.228459]], [[55.430029, -2.228459], [55.430001, -2.228617]], [[55.42996, -2.228764], [55.429895, -2.228899]], [[55.429817, -2.229211], [55.429785, -2.229365]], [[55.43005, -2.229757], [55.430147, -2.229801]], [[55.430147, -2.229801], [55.430234, -2.229871]], [[55.430234, -2.229871], [55.430323, -2.229927]], [[55.430323, -2.229927], [55.430411, -2.229982]], [[55.430411, -2.229982], [55.430498, -2.230035]], [[55.430498, -2.230035], [55.430589, -2.229982]], [[55.430496, -2.23013], [55.430475, -2.230295]], [[55.430475, -2.230295], [55.430453, -2.230459]], [[55.430694, -2.234904], [55.430733, -2.235048]], [[55.430733, -2.235048], [55.430768, -2.235204]], [[55.430768, -2.235204], [55.430782, -2.235372]], [[55.430782, -2.235372], [55.430787, -2.23555]], [[55.430787, -2.23555], [55.430742, -2.2357]], [[55.430904, -2.236341], [55.430921, -2.236503]], [[55.430921, -2.236503], [55.430955, -2.23666]], [[55.431118, -2.237572], [55.431163, -2.237727]], [[55.431476, -2.239007], [55.43151, -2.239168]], [[55.43151, -2.239168], [55.431544, -2.23933]], [[55.431544, -2.23933], [55.431564, -2.239496]], [[55.431564, -2.239496], [55.431595, -2.239667]], [[55.431595, -2.239667], [55.431622, -2.239839]], [[55.431622, -2.239839], [55.431643, -2.239994]], [[55.431643, -2.239994], [55.431662, -2.240151]], [[55.431662, -2.240151], [55.431689, -2.240322]], [[55.431689, -2.240322], [55.431716, -2.240488]], [[55.431716, -2.240488], [55.43173, -2.240648]], [[55.43173, -2.240648], [55.431761, -2.240813]], [[55.431761, -2.240813], [55.431776, -2.24097]], [[55.431776, -2.24097], [55.431795, -2.241136]], [[55.431795, -2.241136], [55.431767, -2.24129]], [[55.431767, -2.24129], [55.431777, -2.241454]], [[55.431879, -2.242248], [55.431902, -2.242402]], [[55.431902, -2.242402], [55.431911, -2.242561]], [[55.431911, -2.242561], [55.431926, -2.242735]], [[55.431926, -2.242735], [55.431934, -2.242895]], [[55.431934, -2.242895], [55.431953, -2.243054]], [[55.431953, -2.243054], [55.431965, -2.24322]], [[55.431965, -2.24322], [55.431963, -2.243379]], [[55.431963, -2.243379], [55.431972, -2.243554]], [[55.431972, -2.243554], [55.431976, -2.243736]], [[55.431976, -2.243736], [55.431988, -2.243903]], [[55.431988, -2.243903], [55.431999, -2.244079]], [[55.431999, -2.244079], [55.432004, -2.244253]], [[55.432004, -2.244253], [55.431991, -2.24442]], [[55.431991, -2.24442], [55.431993, -2.244597]], [[55.431993, -2.244597], [55.432008, -2.244766]], [[55.432008, -2.244766], [55.432008, -2.244942]], [[55.432008, -2.244942], [55.432032, -2.245097]], [[55.432032, -2.245097], [55.432019, -2.245271]], [[55.432019, -2.245271], [55.432011, -2.245429]], [[55.432011, -2.245429], [55.43201, -2.24559]], [[55.43201, -2.24559], [55.431985, -2.245752]], [[55.431985, -2.245752], [55.431981, -2.245923]], [[55.431981, -2.245923], [55.431973, -2.246097]], [[55.431973, -2.246097], [55.431959, -2.24627]], [[55.431959, -2.24627], [55.43195, -2.246435]], [[55.431942, -2.246617], [55.431945, -2.246778]], [[55.432001, -2.24773], [55.432011, -2.24789]], [[55.432011, -2.24789], [55.432025, -2.248069]], [[55.431963, -2.249946], [55.431941, -2.250104]], [[55.431941, -2.250104], [55.43191, -2.250262]], [[55.43191, -2.250262], [55.431877, -2.250432]], [[55.431877, -2.250432], [55.43184, -2.250578]], [[55.431754, -2.250863], [55.431708, -2.251018]], [[55.431708, -2.251018], [55.43166, -2.251169]], [[55.43166, -2.251169], [55.431597, -2.251309]], [[55.431597, -2.251309], [55.431532, -2.251425]], [[55.431532, -2.251425], [55.431461, -2.251549]], [[55.431461, -2.251549], [55.431393, -2.25168]], [[55.431393, -2.25168], [55.431331, -2.251815]], [[55.431331, -2.251815], [55.431268, -2.251944]], [[55.431268, -2.251944], [55.431205, -2.252074]], [[55.431205, -2.252074], [55.43115, -2.252221]], [[55.43115, -2.252221], [55.431118, -2.252374]], [[55.431118, -2.252374], [55.431094, -2.252527]], [[55.431094, -2.252527], [55.431072, -2.252683]], [[55.431004, -2.253034], [55.430966, -2.253192]], [[55.430966, -2.253192], [55.430939, -2.253348]], [[55.430939, -2.253348], [55.430904, -2.253508]], [[55.430904, -2.253508], [55.43087, -2.253673]], [[55.43087, -2.253673], [55.430841, -2.253832]], [[55.430841, -2.253832], [55.430826, -2.254005]], [[55.430826, -2.254005], [55.430824, -2.254163]], [[55.430824, -2.254163], [55.430894, -2.254274]], [[55.430894, -2.254274], [55.430956, -2.254402]], [[55.430956, -2.254402], [55.43097, -2.254579]], [[55.43097, -2.254579], [55.430974, -2.254748]], [[55.431149, -2.255666], [55.431134, -2.25584]], [[55.431134, -2.25584], [55.431116, -2.256009]], [[55.431005, -2.25692], [55.431004, -2.257096]], [[55.431004, -2.257096], [55.431, -2.257263]], [[55.431, -2.257263], [55.430989, -2.257436]], [[55.43091, -2.258097], [55.430873, -2.258251]], [[55.430873, -2.258251], [55.430812, -2.258381]], [[55.430812, -2.258381], [55.43074, -2.258504]], [[55.43074, -2.258504], [55.430661, -2.258596]], [[55.430661, -2.258596], [55.430573, -2.258679]], [[55.430573, -2.258679], [55.430483, -2.258749]], [[55.430483, -2.258749], [55.430419, -2.258881]], [[55.430419, -2.258881], [55.430371, -2.259023]], [[55.430371, -2.259023], [55.430331, -2.259164]], [[55.430331, -2.259164], [55.43029, -2.259314]], [[55.43029, -2.259314], [55.430266, -2.25948]], [[55.430266, -2.25948], [55.430209, -2.259619]], [[55.430209, -2.259619], [55.430154, -2.259768]], [[55.430154, -2.259768], [55.430091, -2.259903]], [[55.430091, -2.259903], [55.430009, -2.259995]], [[55.430009, -2.259995], [55.429957, -2.260128]], [[55.429957, -2.260128], [55.429891, -2.260237]], [[55.429891, -2.260237], [55.429821, -2.260347]], [[55.429821, -2.260347], [55.429787, -2.260512]], [[55.429787, -2.260512], [55.429729, -2.260655]], [[55.429481, -2.26089], [55.429388, -2.260939]], [[55.429388, -2.260939], [55.429341, -2.261076]], [[55.428769, -2.261918], [55.428682, -2.262004]], [[55.428682, -2.262004], [55.428606, -2.262099]], [[55.428586, -2.26428], [55.428599, -2.264451]], [[55.428599, -2.264451], [55.428651, -2.264582]], [[55.428651, -2.264582], [55.428716, -2.264713]], [[55.428716, -2.264713], [55.428764, -2.264872]], [[55.428764, -2.264872], [55.428806, -2.265012]], [[55.428806, -2.265012], [55.428839, -2.265182]], [[55.428839, -2.265182], [55.42887, -2.265351]], [[55.42887, -2.265351], [55.428891, -2.265525]], [[55.428891, -2.265525], [55.428949, -2.265649]], [[55.428949, -2.265649], [55.428989, -2.2658]], [[55.428989, -2.2658], [55.428999, -2.265965]], [[55.428999, -2.265965], [55.42902, -2.266137]], [[55.42902, -2.266137], [55.429035, -2.266316]], [[55.429035, -2.266316], [55.429064, -2.266489]], [[55.429064, -2.266489], [55.429083, -2.266649]], [[55.429083, -2.266649], [55.429103, -2.266823]], [[55.429103, -2.266823], [55.429108, -2.266991]], [[55.429108, -2.266991], [55.429121, -2.26715]], [[55.429121, -2.26715], [55.429139, -2.267308]], [[55.429133, -2.267478], [55.429116, -2.267635]], [[55.429116, -2.267635], [55.429118, -2.267809]], [[55.429118, -2.267809], [55.429133, -2.267974]], [[55.429133, -2.267974], [55.429139, -2.268133]], [[55.429139, -2.268133], [55.429141, -2.268308]], [[55.429141, -2.268308], [55.429154, -2.268468]], [[55.429154, -2.268468], [55.429154, -2.26864]], [[55.429154, -2.26864], [55.429164, -2.268803]], [[55.429164, -2.268803], [55.429158, -2.268974]], [[55.429158, -2.268974], [55.429174, -2.26914]], [[55.429174, -2.26914], [55.429177, -2.269311]], [[55.429177, -2.269311], [55.429166, -2.269474]], [[55.429166, -2.269474], [55.429127, -2.269628]], [[55.4291, -2.269783], [55.429097, -2.269943]], [[55.429109, -2.2701], [55.429112, -2.270279]], [[55.429112, -2.270279], [55.429112, -2.270443]], [[55.429112, -2.270443], [55.429093, -2.27061]], [[55.428752, -2.271788], [55.428706, -2.271926]], [[55.428706, -2.271926], [55.428654, -2.27207]], [[55.42847, -2.272308], [55.428386, -2.272362]], [[55.428202, -2.272485], [55.428115, -2.27256]], [[55.428115, -2.27256], [55.428036, -2.272652]], [[55.428036, -2.272652], [55.427954, -2.272718]], [[55.427954, -2.272718], [55.42787, -2.272776]], [[55.42787, -2.272776], [55.427804, -2.272892]], [[55.427804, -2.272892], [55.427708, -2.272955]], [[55.427708, -2.272955], [55.427631, -2.273077]], [[55.427631, -2.273077], [55.427542, -2.27313]], [[55.427449, -2.27314], [55.427365, -2.273217]], [[55.427365, -2.273217], [55.427282, -2.2733]], [[55.426924, -2.273682], [55.426835, -2.273703]], [[55.426835, -2.273703], [55.42674, -2.273753]], [[55.42674, -2.273753], [55.426649, -2.273792]], [[55.426649, -2.273792], [55.426571, -2.27389]], [[55.426571, -2.27389], [55.426485, -2.273959]], [[55.426485, -2.273959], [55.426393, -2.274021]], [[55.426393, -2.274021], [55.4263, -2.274091]], [[55.4263, -2.274091], [55.426202, -2.274147]], [[55.426202, -2.274147], [55.426113, -2.274224]], [[55.426113, -2.274224], [55.426037, -2.274311]], [[55.426037, -2.274311], [55.426026, -2.274468]], [[55.426026, -2.274468], [55.426021, -2.274645]], [[55.426021, -2.274645], [55.426025, -2.274822]], [[55.426025, -2.274822], [55.426042, -2.27498]], [[55.426042, -2.27498], [55.426051, -2.275154]], [[55.426051, -2.275154], [55.426063, -2.275325]], [[55.426063, -2.275325], [55.426076, -2.275484]], [[55.426076, -2.275484], [55.426094, -2.275654]], [[55.426094, -2.275654], [55.426108, -2.27583]], [[55.426108, -2.27583], [55.426131, -2.276005]], [[55.426131, -2.276005], [55.426133, -2.276182]], [[55.426133, -2.276182], [55.426118, -2.276345]], [[55.426096, -2.276652], [55.426143, -2.276811]], [[55.426143, -2.276811], [55.426178, -2.27696]], [[55.426178, -2.27696], [55.426222, -2.27711]], [[55.426222, -2.27711], [55.426262, -2.277266]], [[55.426262, -2.277266], [55.426275, -2.277425]], [[55.426275, -2.277425], [55.426291, -2.277591]], [[55.426291, -2.277591], [55.426301, -2.277758]], [[55.426301, -2.277758], [55.426327, -2.277916]], [[55.426327, -2.277916], [55.426321, -2.278085]], [[55.426321, -2.278085], [55.426304, -2.278242]], [[55.426306, -2.278403], [55.426282, -2.278575]], [[55.426282, -2.278575], [55.426287, -2.278749]], [[55.426287, -2.278749], [55.426278, -2.278906]], [[55.42624, -2.279066], [55.426231, -2.279227]], [[55.426231, -2.279227], [55.426212, -2.279383]], [[55.426212, -2.279383], [55.426156, -2.279534]], [[55.426156, -2.279534], [55.426095, -2.279664]], [[55.425964, -2.280122], [55.425919, -2.280263]], [[55.425919, -2.280263], [55.425864, -2.280412]], [[55.425864, -2.280412], [55.425819, -2.280556]], [[55.425819, -2.280556], [55.425776, -2.280699]], [[55.425776, -2.280699], [55.425727, -2.280837]], [[55.425685, -2.280991], [55.42564, -2.281138]], [[55.42564, -2.281138], [55.425596, -2.281277]], [[55.42347, -2.283432], [55.42338, -2.283508]], [[55.42338, -2.283508], [55.423299, -2.283611]], [[55.423299, -2.283611], [55.423218, -2.283697]], [[55.423218, -2.283697], [55.423134, -2.283796]], [[55.423134, -2.283796], [55.42306, -2.283896]], [[55.42306, -2.283896], [55.422976, -2.283975]], [[55.422976, -2.283975], [55.422902, -2.284068]], [[55.422902, -2.284068], [55.422837, -2.284178]], [[55.422837, -2.284178], [55.422791, -2.284322]], [[55.422752, -2.284476], [55.42271, -2.284638]], [[55.42271, -2.284638], [55.422674, -2.284785]], [[55.422674, -2.284785], [55.422638, -2.284938]], [[55.422638, -2.284938], [55.422603, -2.285085]], [[55.422522, -2.285378], [55.42249, -2.285538]], [[55.42249, -2.285538], [55.422458, -2.285695]], [[55.422344, -2.286152], [55.422301, -2.286295]], [[55.422301, -2.286295], [55.42225, -2.28645]], [[55.42225, -2.28645], [55.422216, -2.286598]], [[55.422216, -2.286598], [55.422166, -2.28675]], [[55.422166, -2.28675], [55.422134, -2.286903]], [[55.422134, -2.286903], [55.422108, -2.287059]], [[55.422047, -2.287362], [55.422027, -2.28753]], [[55.422027, -2.28753], [55.422006, -2.287684]], [[55.422006, -2.287684], [55.421969, -2.287833]], [[55.421969, -2.287833], [55.421932, -2.287987]], [[55.421932, -2.287987], [55.421887, -2.288126]], [[55.421887, -2.288126], [55.421821, -2.288258]], [[55.421821, -2.288258], [55.421793, -2.288421]], [[55.421793, -2.288421], [55.42176, -2.288586]], [[55.42176, -2.288586], [55.421735, -2.288748]], [[55.421697, -2.288912], [55.421649, -2.289049]], [[55.421649, -2.289049], [55.42161, -2.28921]], [[55.42161, -2.28921], [55.421561, -2.289351]], [[55.421524, -2.289503], [55.421483, -2.289662]], [[55.421483, -2.289662], [55.421451, -2.289827]], [[55.421451, -2.289827], [55.421406, -2.289978]], [[55.421406, -2.289978], [55.421409, -2.29014]], [[55.421366, -2.290296], [55.421337, -2.290468]], [[55.421284, -2.29062], [55.42123, -2.290754]], [[55.42123, -2.290754], [55.421184, -2.290908]], [[55.421184, -2.290908], [55.421137, -2.291056]], [[55.420964, -2.29182], [55.420931, -2.291984]], [[55.420931, -2.291984], [55.420903, -2.292136]], [[55.420903, -2.292136], [55.420868, -2.292307]], [[55.420795, -2.292619], [55.420754, -2.292773]], [[55.420754, -2.292773], [55.420707, -2.292921]], [[55.420707, -2.292921], [55.420673, -2.293077]], [[55.420673, -2.293077], [55.420634, -2.293226]], [[55.420634, -2.293226], [55.42058, -2.293361]], [[55.42058, -2.293361], [55.420508, -2.293485]], [[55.420508, -2.293485], [55.420442, -2.293608]], [[55.420382, -2.293745], [55.420312, -2.293865]], [[55.42009, -2.29389], [55.41999, -2.293913]], [[55.419899, -2.293939], [55.419797, -2.293927]], [[55.419322, -2.293762], [55.419247, -2.293648]], [[55.418789, -2.293355], [55.418692, -2.293339]], [[55.418692, -2.293339], [55.418593, -2.293307]], [[55.418593, -2.293307], [55.418492, -2.293321]], [[55.418401, -2.293361], [55.418306, -2.293393]], [[55.418306, -2.293393], [55.418222, -2.293451]], [[55.418222, -2.293451], [55.418126, -2.29351]], [[55.418126, -2.29351], [55.418052, -2.293603]], [[55.417316, -2.294012], [55.417223, -2.29402]], [[55.417223, -2.29402], [55.417147, -2.294112]], [[55.417147, -2.294112], [55.41706, -2.294197]], [[55.41706, -2.294197], [55.416972, -2.294249]], [[55.416879, -2.294281], [55.416787, -2.29434]], [[55.416787, -2.29434], [55.416692, -2.294378]], [[55.416692, -2.294378], [55.416597, -2.294418]], [[55.416597, -2.294418], [55.416506, -2.294473]], [[55.416506, -2.294473], [55.416416, -2.294495]], [[55.416416, -2.294495], [55.416334, -2.294558]], [[55.416334, -2.294558], [55.416233, -2.294553]], [[55.416233, -2.294553], [55.416143, -2.294559]], [[55.416143, -2.294559], [55.416045, -2.294582]], [[55.416045, -2.294582], [55.415955, -2.294637]], [[55.415955, -2.294637], [55.415869, -2.29469]], [[55.415869, -2.29469], [55.415773, -2.294749]], [[55.415773, -2.294749], [55.415678, -2.294777]], [[55.415678, -2.294777], [55.415588, -2.294806]], [[55.415588, -2.294806], [55.415487, -2.294827]], [[55.415487, -2.294827], [55.415392, -2.294885]], [[55.415392, -2.294885], [55.415308, -2.294977]], [[55.415308, -2.294977], [55.415231, -2.29508]], [[55.415231, -2.29508], [55.415162, -2.295187]], [[55.415051, -2.295454], [55.415007, -2.295599]], [[55.415007, -2.295599], [55.414955, -2.295731]], [[55.414955, -2.295731], [55.414892, -2.295866]], [[55.414892, -2.295866], [55.414839, -2.296013]], [[55.414839, -2.296013], [55.414771, -2.296117]], [[55.414771, -2.296117], [55.414705, -2.296247]], [[55.414705, -2.296247], [55.414638, -2.296379]], [[55.414638, -2.296379], [55.414562, -2.296489]], [[55.414562, -2.296489], [55.414504, -2.296619]], [[55.414444, -2.296752], [55.414411, -2.296914]], [[55.414411, -2.296914], [55.41438, -2.297073]], [[55.41438, -2.297073], [55.414349, -2.297234]], [[55.414349, -2.297234], [55.414289, -2.297352]], [[55.414289, -2.297352], [55.414233, -2.297475]], [[55.414233, -2.297475], [55.414184, -2.297619]], [[55.414184, -2.297619], [55.414133, -2.297758]], [[55.414133, -2.297758], [55.414102, -2.297908]], [[55.414102, -2.297908], [55.414054, -2.298053]], [[55.414054, -2.298053], [55.414008, -2.298213]], [[55.414008, -2.298213], [55.413956, -2.298347]], [[55.413903, -2.298484], [55.413877, -2.298637]], [[55.413794, -2.298942], [55.413776, -2.29911]], [[55.413776, -2.29911], [55.413733, -2.299271]], [[55.413733, -2.299271], [55.413706, -2.299431]], [[55.413706, -2.299431], [55.413674, -2.29958]], [[55.413611, -2.299698], [55.413581, -2.29986]], [[55.413581, -2.29986], [55.413559, -2.300015]], [[55.413559, -2.300015], [55.413516, -2.30017]], [[55.413516, -2.30017], [55.413488, -2.300323]], [[55.413488, -2.300323], [55.413452, -2.300484]], [[55.413381, -2.300926], [55.41338, -2.301106]], [[55.41338, -2.301106], [55.413358, -2.301278]], [[55.413255, -2.30155], [55.413199, -2.301676]], [[55.413199, -2.301676], [55.413171, -2.301846]], [[55.413171, -2.301846], [55.413114, -2.301985]], [[55.413045, -2.302114], [55.412986, -2.302234]], [[55.412986, -2.302234], [55.41294, -2.302371]], [[55.41294, -2.302371], [55.412886, -2.302505]], [[55.412823, -2.302623], [55.412762, -2.302748]], [[55.412684, -2.303048], [55.412643, -2.303193]], [[55.412599, -2.303338], [55.412561, -2.303482]], [[55.412561, -2.303482], [55.412531, -2.303644]], [[55.412531, -2.303644], [55.412496, -2.303792]], [[55.412389, -2.304073], [55.412333, -2.304205]], [[55.412333, -2.304205], [55.41227, -2.304319]], [[55.412071, -2.304671], [55.412016, -2.304797]], [[55.412016, -2.304797], [55.411966, -2.304939]], [[55.411966, -2.304939], [55.411894, -2.305055]], [[55.411768, -2.305298], [55.41171, -2.305424]], [[55.41171, -2.305424], [55.411639, -2.30555]], [[55.411639, -2.30555], [55.411593, -2.305686]], [[55.411593, -2.305686], [55.411523, -2.305807]], [[55.411222, -2.306443], [55.411169, -2.306599]], [[55.411169, -2.306599], [55.411117, -2.306729]], [[55.410934, -2.307304], [55.410889, -2.307453]], [[55.410889, -2.307453], [55.410853, -2.307616]], [[55.410853, -2.307616], [55.410797, -2.307767]], [[55.410797, -2.307767], [55.410756, -2.307911]], [[55.410675, -2.308125], [55.410622, -2.308277]], [[55.410471, -2.308708], [55.410417, -2.308839]], [[55.410417, -2.308839], [55.410357, -2.308987]], [[55.410303, -2.309123], [55.410241, -2.309263]], [[55.410241, -2.309263], [55.410186, -2.309394]], [[55.410128, -2.309525], [55.41011, -2.309694]], [[55.41011, -2.309694], [55.410057, -2.309829]], [[55.410057, -2.309829], [55.410017, -2.309988]], [[55.410017, -2.309988], [55.409963, -2.310118]], [[55.409963, -2.310118], [55.409924, -2.310265]], [[55.409924, -2.310265], [55.409908, -2.310426]], [[55.409651, -2.310752], [55.409558, -2.31082]], [[55.409558, -2.31082], [55.40947, -2.310861]], [[55.40947, -2.310861], [55.409388, -2.310928]], [[55.409096, -2.31102], [55.409005, -2.310978]], [[55.409005, -2.310978], [55.408915, -2.311003]], [[55.408915, -2.311003], [55.408829, -2.311066]], [[55.408829, -2.311066], [55.408761, -2.311178]], [[55.408761, -2.311178], [55.408691, -2.311299]], [[55.408691, -2.311299], [55.408629, -2.311433]], [[55.408629, -2.311433], [55.408556, -2.311547]], [[55.40837, -2.311658], [55.40829, -2.311739]], [[55.40829, -2.311739], [55.408223, -2.311849]], [[55.408223, -2.311849], [55.408133, -2.311933]], [[55.408133, -2.311933], [55.408051, -2.312002]], [[55.408051, -2.312002], [55.407964, -2.312052]], [[55.407964, -2.312052], [55.407871, -2.312121]], [[55.407871, -2.312121], [55.407785, -2.31219]], [[55.407785, -2.31219], [55.407691, -2.31225]], [[55.407691, -2.31225], [55.407604, -2.312329]], [[55.407604, -2.312329], [55.407529, -2.312434]], [[55.407529, -2.312434], [55.407454, -2.312539]], [[55.407454, -2.312539], [55.407376, -2.312638]], [[55.407376, -2.312638], [55.407299, -2.312719]], [[55.407299, -2.312719], [55.407219, -2.312815]], [[55.407219, -2.312815], [55.40713, -2.312898]], [[55.40713, -2.312898], [55.407042, -2.312966]], [[55.407042, -2.312966], [55.406954, -2.31303]], [[55.406954, -2.31303], [55.406869, -2.313108]], [[55.406869, -2.313108], [55.406783, -2.313177]], [[55.406783, -2.313177], [55.406712, -2.313276]], [[55.406712, -2.313276], [55.406691, -2.313438]], [[55.406665, -2.313841], [55.406651, -2.314004]], [[55.406655, -2.314338], [55.406687, -2.314499]], [[55.406687, -2.314499], [55.406685, -2.314669]], [[55.406685, -2.314669], [55.40669, -2.314843]], [[55.40669, -2.314843], [55.406669, -2.315005]], [[55.406669, -2.315005], [55.406644, -2.315171]], [[55.406644, -2.315171], [55.406624, -2.315334]], [[55.406624, -2.315334], [55.406627, -2.315496]], [[55.406627, -2.315496], [55.406629, -2.315664]], [[55.406629, -2.315664], [55.406613, -2.315822]], [[55.406613, -2.315822], [55.40661, -2.316004]], [[55.40661, -2.316004], [55.406617, -2.316162]], [[55.40663, -2.316327], [55.406646, -2.31649]], [[55.406646, -2.31649], [55.406641, -2.316666]], [[55.406641, -2.316666], [55.406636, -2.316832]], [[55.406636, -2.316832], [55.406616, -2.316997]], [[55.406616, -2.316997], [55.406568, -2.317133]], [[55.406568, -2.317133], [55.40654, -2.317286]], [[55.40654, -2.317286], [55.406522, -2.317443]], [[55.406529, -2.317606], [55.406542, -2.31778]], [[55.406542, -2.31778], [55.406604, -2.317913]], [[55.406604, -2.317913], [55.406649, -2.318072]], [[55.406649, -2.318072], [55.406674, -2.31824]], [[55.406674, -2.31824], [55.406653, -2.318416]], [[55.406614, -2.318734], [55.406589, -2.318905]], [[55.406589, -2.318905], [55.406539, -2.319041]], [[55.406539, -2.319041], [55.406509, -2.319209]], [[55.406509, -2.319209], [55.406502, -2.319383]], [[55.406502, -2.319383], [55.406542, -2.319525]], [[55.406579, -2.319681], [55.406604, -2.319851]], [[55.406604, -2.319851], [55.406632, -2.320017]], [[55.406632, -2.320017], [55.406629, -2.320188]], [[55.406629, -2.320188], [55.40662, -2.32035]], [[55.40662, -2.32035], [55.406672, -2.320496]], [[55.406604, -2.32234], [55.406581, -2.322497]], [[55.406581, -2.322497], [55.406556, -2.322657]], [[55.406556, -2.322657], [55.406546, -2.322828]], [[55.406546, -2.322828], [55.406485, -2.322956]], [[55.406485, -2.322956], [55.406457, -2.32312]], [[55.406457, -2.32312], [55.406425, -2.323279]], [[55.406425, -2.323279], [55.406394, -2.323449]], [[55.406394, -2.323449], [55.406353, -2.32359]], [[55.406353, -2.32359], [55.406324, -2.323741]], [[55.406324, -2.323741], [55.406283, -2.323892]], [[55.406283, -2.323892], [55.406224, -2.324027]], [[55.406224, -2.324027], [55.406133, -2.324098]], [[55.406133, -2.324098], [55.406067, -2.324209]], [[55.405978, -2.324494], [55.405923, -2.324624]], [[55.405923, -2.324624], [55.405861, -2.324751]], [[55.405861, -2.324751], [55.405807, -2.324889]], [[55.405807, -2.324889], [55.405741, -2.325022]], [[55.405673, -2.325157], [55.405588, -2.325232]], [[55.405588, -2.325232], [55.405507, -2.325305]], [[55.405507, -2.325305], [55.405426, -2.325405]], [[55.405426, -2.325405], [55.405372, -2.325536]], [[55.405372, -2.325536], [55.405332, -2.32568]], [[55.405332, -2.32568], [55.405251, -2.325779]], [[55.405251, -2.325779], [55.405162, -2.325839]], [[55.405162, -2.325839], [55.405134, -2.325999]], [[55.405134, -2.325999], [55.405106, -2.326168]], [[55.405106, -2.326168], [55.405072, -2.32632]], [[55.405009, -2.326455], [55.404932, -2.326546]], [[55.404932, -2.326546], [55.40485, -2.326643]], [[55.40485, -2.326643], [55.404778, -2.326739]], [[55.404778, -2.326739], [55.404686, -2.326781]], [[55.404686, -2.326781], [55.404598, -2.326863]], [[55.404598, -2.326863], [55.404524, -2.326979]], [[55.404524, -2.326979], [55.404433, -2.327039]], [[55.404167, -2.327209], [55.404079, -2.327244]], [[55.404079, -2.327244], [55.403987, -2.327286]], [[55.403987, -2.327286], [55.403891, -2.327299]], [[55.403891, -2.327299], [55.4038, -2.327327]], [[55.4038, -2.327327], [55.403717, -2.327435]], [[55.403717, -2.327435], [55.403637, -2.327511]], [[55.403637, -2.327511], [55.403576, -2.327629]], [[55.403425, -2.327935], [55.403352, -2.32804]], [[55.403195, -2.328417], [55.403131, -2.328542]], [[55.403131, -2.328542], [55.403095, -2.328705]], [[55.403095, -2.328705], [55.40307, -2.328859]], [[55.403016, -2.329341], [55.402959, -2.329483]], [[55.402355, -2.330358], [55.402295, -2.330487]], [[55.402295, -2.330487], [55.402237, -2.330613]], [[55.402237, -2.330613], [55.402177, -2.330745]], [[55.402177, -2.330745], [55.402105, -2.330849]], [[55.402105, -2.330849], [55.402051, -2.330979]], [[55.402051, -2.330979], [55.402013, -2.331133]], [[55.402013, -2.331133], [55.401952, -2.331262]], [[55.401952, -2.331262], [55.401896, -2.331386]], [[55.401896, -2.331386], [55.401842, -2.331513]], [[55.401842, -2.331513], [55.401777, -2.331647]], [[55.401777, -2.331647], [55.401709, -2.331756]], [[55.401709, -2.331756], [55.40164, -2.331888]], [[55.40164, -2.331888], [55.401573, -2.332019]], [[55.401573, -2.332019], [55.40151, -2.332153]], [[55.40151, -2.332153], [55.401448, -2.332276]], [[55.401448, -2.332276], [55.401384, -2.332412]], [[55.401279, -2.332681], [55.40125, -2.332847]], [[55.40125, -2.332847], [55.401203, -2.332988]], [[55.401203, -2.332988], [55.401139, -2.333111]], [[55.401139, -2.333111], [55.401093, -2.333262]], [[55.401093, -2.333262], [55.401028, -2.333381]], [[55.401028, -2.333381], [55.400932, -2.333418]], [[55.400932, -2.333418], [55.40084, -2.333407]], [[55.40084, -2.333407], [55.400748, -2.333393]], [[55.400664, -2.33348], [55.400588, -2.333583]], [[55.400588, -2.333583], [55.400529, -2.333717]], [[55.400529, -2.333717], [55.400479, -2.333869]], [[55.400479, -2.333869], [55.400418, -2.333992]], [[55.400187, -2.334048], [55.400094, -2.334025]], [[55.400094, -2.334025], [55.399996, -2.334001]], [[55.399996, -2.334001], [55.399913, -2.334096]], [[55.399841, -2.334213], [55.399766, -2.334319]], [[55.399766, -2.334319], [55.399674, -2.334386]], [[55.399674, -2.334386], [55.399583, -2.334447]], [[55.399583, -2.334447], [55.399519, -2.334567]], [[55.399519, -2.334567], [55.399465, -2.334694]], [[55.399465, -2.334694], [55.399408, -2.334841]], [[55.399408, -2.334841], [55.399342, -2.334968]], [[55.399342, -2.334968], [55.399274, -2.335081]], [[55.3989, -2.335462], [55.398865, -2.335614]], [[55.398865, -2.335614], [55.398827, -2.33576]], [[55.398827, -2.33576], [55.398733, -2.33581]], [[55.398733, -2.33581], [55.398642, -2.335815]], [[55.398642, -2.335815], [55.398545, -2.335862]], [[55.398019, -2.335968], [55.397935, -2.33604]], [[55.397935, -2.33604], [55.397866, -2.336148]], [[55.397866, -2.336148], [55.397775, -2.336181]], [[55.397775, -2.336181], [55.397685, -2.336215]], [[55.397685, -2.336215], [55.397591, -2.336222]], [[55.397591, -2.336222], [55.397494, -2.336213]], [[55.397137, -2.33629], [55.397039, -2.336289]], [[55.397039, -2.336289], [55.39694, -2.33628]], [[55.39694, -2.33628], [55.396846, -2.336279]], [[55.396753, -2.336296], [55.396661, -2.336291]], [[55.396661, -2.336291], [55.396569, -2.336289]], [[55.396569, -2.336289], [55.396469, -2.336286]], [[55.396469, -2.336286], [55.396374, -2.336285]], [[55.396374, -2.336285], [55.396282, -2.336269]], [[55.396282, -2.336269], [55.396185, -2.336242]], [[55.396185, -2.336242], [55.396086, -2.336208]], [[55.396086, -2.336208], [55.396002, -2.336153]], [[55.395813, -2.336175], [55.395723, -2.33619]], [[55.395723, -2.33619], [55.39563, -2.336175]], [[55.39563, -2.336175], [55.395533, -2.336164]], [[55.395533, -2.336164], [55.395433, -2.336149]], [[55.395433, -2.336149], [55.395334, -2.336132]], [[55.395334, -2.336132], [55.395244, -2.336132]], [[55.395244, -2.336132], [55.395145, -2.336111]], [[55.395145, -2.336111], [55.395044, -2.336109]], [[55.395044, -2.336109], [55.394955, -2.336086]], [[55.394955, -2.336086], [55.394863, -2.336059]], [[55.394863, -2.336059], [55.394764, -2.336039]], [[55.394764, -2.336039], [55.394673, -2.336016]], [[55.394673, -2.336016], [55.394582, -2.335999]], [[55.393833, -2.335805], [55.393735, -2.335805]], [[55.393735, -2.335805], [55.393638, -2.335807]], [[55.393638, -2.335807], [55.393541, -2.335793]], [[55.393541, -2.335793], [55.39344, -2.335788]], [[55.39344, -2.335788], [55.393343, -2.335808]], [[55.393246, -2.335807], [55.393156, -2.335801]], [[55.393156, -2.335801], [55.393062, -2.335746]], [[55.392965, -2.335764], [55.392867, -2.335798]], [[55.392867, -2.335798], [55.392773, -2.335794]], [[55.392773, -2.335794], [55.392679, -2.335782]], [[55.392679, -2.335782], [55.392583, -2.335769]], [[55.392583, -2.335769], [55.392493, -2.335756]], [[55.392493, -2.335756], [55.392401, -2.335743]], [[55.392401, -2.335743], [55.392305, -2.335698]], [[55.392305, -2.335698], [55.39221, -2.335721]], [[55.392112, -2.335694], [55.392016, -2.335672]], [[55.391816, -2.335683], [55.391719, -2.335692]], [[55.391719, -2.335692], [55.39163, -2.335721]], [[55.39163, -2.335721], [55.391532, -2.335734]], [[55.391261, -2.335717], [55.391172, -2.335654]], [[55.390989, -2.335563], [55.39089, -2.335535]], [[55.39089, -2.335535], [55.390791, -2.335503]], [[55.390791, -2.335503], [55.3907, -2.335465]], [[55.390516, -2.335414], [55.390424, -2.335375]], [[55.390424, -2.335375], [55.390325, -2.335365]], [[55.390325, -2.335365], [55.390241, -2.335298]], [[55.390241, -2.335298], [55.390149, -2.335229]], [[55.390149, -2.335229], [55.390065, -2.335164]], [[55.390065, -2.335164], [55.389973, -2.335183]], [[55.389877, -2.335228], [55.389786, -2.335206]], [[55.389786, -2.335206], [55.389701, -2.335289]], [[55.389701, -2.335289], [55.389611, -2.335298]], [[55.389611, -2.335298], [55.389526, -2.335232]], [[55.389526, -2.335232], [55.389431, -2.335203]], [[55.389331, -2.335235], [55.389251, -2.335134]], [[55.388908, -2.335198], [55.38882, -2.335157]], [[55.388634, -2.335108], [55.388546, -2.335029]], [[55.388546, -2.335029], [55.388458, -2.334974]], [[55.388458, -2.334974], [55.388361, -2.334932]], [[55.388361, -2.334932], [55.388274, -2.334888]], [[55.388274, -2.334888], [55.388182, -2.334874]], [[55.388182, -2.334874], [55.388092, -2.334861]], [[55.388092, -2.334861], [55.388, -2.334784]], [[55.388, -2.334784], [55.387903, -2.334745]], [[55.387903, -2.334745], [55.387812, -2.334716]], [[55.387812, -2.334716], [55.387726, -2.334645]], [[55.387517, -2.334592], [55.387424, -2.334532]], [[55.387424, -2.334532], [55.387329, -2.334487]], [[55.387329, -2.334487], [55.387239, -2.334467]], [[55.387052, -2.334374], [55.386963, -2.334356]], [[55.386963, -2.334356], [55.386872, -2.334337]], [[55.386872, -2.334337], [55.386781, -2.334311]], [[55.386589, -2.33429], [55.3865, -2.334278]], [[55.386416, -2.334212], [55.386328, -2.334138]], [[55.386328, -2.334138], [55.386228, -2.334116]], [[55.386228, -2.334116], [55.386143, -2.334063]], [[55.386143, -2.334063], [55.386052, -2.334027]], [[55.386052, -2.334027], [55.385954, -2.333976]], [[55.385954, -2.333976], [55.385858, -2.333933]], [[55.385858, -2.333933], [55.38576, -2.333927]], [[55.38576, -2.333927], [55.385674, -2.33387]], [[55.385674, -2.33387], [55.385591, -2.333771]], [[55.385591, -2.333771], [55.385499, -2.333712]], [[55.385499, -2.333712], [55.385404, -2.333675]], [[55.385404, -2.333675], [55.385317, -2.333628]], [[55.385317, -2.333628], [55.385228, -2.333575]], [[55.385228, -2.333575], [55.385138, -2.333524]], [[55.385138, -2.333524], [55.385043, -2.33349]], [[55.385043, -2.33349], [55.384944, -2.333451]], [[55.384944, -2.333451], [55.384848, -2.333438]], [[55.384848, -2.333438], [55.384752, -2.33343]], [[55.384752, -2.33343], [55.38466, -2.333404]], [[55.38466, -2.333404], [55.384568, -2.333393]], [[55.384568, -2.333393], [55.384477, -2.333346]], [[55.384477, -2.333346], [55.384385, -2.333322]], [[55.384385, -2.333322], [55.3843, -2.333276]], [[55.3843, -2.333276], [55.384212, -2.333232]], [[55.384212, -2.333232], [55.384118, -2.333247]], [[55.384118, -2.333247], [55.38402, -2.333225]], [[55.38402, -2.333225], [55.383929, -2.333186]], [[55.383929, -2.333186], [55.383833, -2.333146]], [[55.383833, -2.333146], [55.383749, -2.333077]], [[55.383749, -2.333077], [55.383661, -2.333033]], [[55.383661, -2.333033], [55.383572, -2.333062]], [[55.383572, -2.333062], [55.383474, -2.333022]], [[55.383474, -2.333022], [55.383383, -2.33299]], [[55.38329, -2.332949], [55.383196, -2.332924]], [[55.383196, -2.332924], [55.383106, -2.332898]], [[55.383106, -2.332898], [55.383013, -2.332838]], [[55.383013, -2.332838], [55.382926, -2.33279]], [[55.382926, -2.33279], [55.382835, -2.332734]], [[55.382835, -2.332734], [55.382741, -2.332722]], [[55.382741, -2.332722], [55.382646, -2.332672]], [[55.382646, -2.332672], [55.382555, -2.332628]], [[55.382555, -2.332628], [55.382467, -2.332586]], [[55.382467, -2.332586], [55.38237, -2.33255]], [[55.38237, -2.33255], [55.382273, -2.332509]], [[55.382273, -2.332509], [55.382186, -2.332467]], [[55.382186, -2.332467], [55.382098, -2.332386]], [[55.382098, -2.332386], [55.382009, -2.332337]], [[55.382009, -2.332337], [55.381925, -2.332266]], [[55.381925, -2.332266], [55.381828, -2.332235]], [[55.381828, -2.332235], [55.381737, -2.332222]], [[55.381557, -2.332152], [55.381467, -2.33216]], [[55.381467, -2.33216], [55.381381, -2.332074]], [[55.381381, -2.332074], [55.381289, -2.332074]], [[55.381289, -2.332074], [55.381193, -2.332071]], [[55.381193, -2.332071], [55.381106, -2.332003]], [[55.381106, -2.332003], [55.381009, -2.331974]], [[55.381009, -2.331974], [55.380919, -2.331942]], [[55.380467, -2.331813], [55.380373, -2.331863]], [[55.380373, -2.331863], [55.380278, -2.331871]], [[55.380278, -2.331871], [55.380186, -2.331892]], [[55.380186, -2.331892], [55.38009, -2.331923]], [[55.37928, -2.331857], [55.379185, -2.331878]], [[55.379185, -2.331878], [55.379092, -2.331887]], [[55.379092, -2.331887], [55.378994, -2.331923]], [[55.378994, -2.331923], [55.378896, -2.331944]], [[55.378896, -2.331944], [55.378806, -2.331949]], [[55.378806, -2.331949], [55.378717, -2.331976]], [[55.378717, -2.331976], [55.378629, -2.332023]], [[55.378166, -2.332264], [55.378082, -2.332325]], [[55.377955, -2.332416], [55.377865, -2.33244]], [[55.377865, -2.33244], [55.377769, -2.33247]], [[55.377769, -2.33247], [55.377673, -2.332502]], [[55.377673, -2.332502], [55.377573, -2.332514]], [[55.377573, -2.332514], [55.377481, -2.332546]], [[55.377481, -2.332546], [55.377391, -2.332575]], [[55.377391, -2.332575], [55.377293, -2.332544]], [[55.377201, -2.332535], [55.3771, -2.332525]], [[55.3771, -2.332525], [55.377007, -2.332543]], [[55.377007, -2.332543], [55.376918, -2.332574]], [[55.376918, -2.332574], [55.376822, -2.332593]], [[55.376822, -2.332593], [55.376728, -2.332633]], [[55.376728, -2.332633], [55.376639, -2.332707]], [[55.376455, -2.332949], [55.376361, -2.333016]], [[55.376361, -2.333016], [55.376273, -2.33308]], [[55.376192, -2.333149], [55.376101, -2.333231]], [[55.376101, -2.333231], [55.376013, -2.333269]], [[55.376013, -2.333269], [55.375921, -2.333342]], [[55.375921, -2.333342], [55.37583, -2.333421]], [[55.37583, -2.333421], [55.375743, -2.333484]], [[55.375743, -2.333484], [55.37565, -2.33356]], [[55.37565, -2.33356], [55.375569, -2.333659]], [[55.375569, -2.333659], [55.375532, -2.333804]], [[55.375532, -2.333804], [55.375433, -2.333844]], [[55.375433, -2.333844], [55.375338, -2.333885]], [[55.375338, -2.333885], [55.375262, -2.333984]], [[55.375262, -2.333984], [55.375173, -2.334071]], [[55.375173, -2.334071], [55.375095, -2.334156]], [[55.374913, -2.334246], [55.374842, -2.334357]], [[55.374766, -2.334446], [55.374671, -2.334497]], [[55.374671, -2.334497], [55.374592, -2.334598]], [[55.374592, -2.334598], [55.374522, -2.334708]], [[55.374446, -2.334801], [55.374356, -2.334881]], [[55.374356, -2.334881], [55.374281, -2.334975]], [[55.374281, -2.334975], [55.374204, -2.335089]], [[55.374204, -2.335089], [55.374137, -2.335215]], [[55.374137, -2.335215], [55.374073, -2.335331]], [[55.374073, -2.335331], [55.374005, -2.335462]], [[55.374005, -2.335462], [55.373941, -2.33558]], [[55.373941, -2.33558], [55.373878, -2.335693]], [[55.373878, -2.335693], [55.373805, -2.335807]], [[55.373805, -2.335807], [55.373727, -2.335918]], [[55.373727, -2.335918], [55.373645, -2.336026]], [[55.373645, -2.336026], [55.373567, -2.336113]], [[55.373511, -2.336241], [55.373452, -2.336389]], [[55.373452, -2.336389], [55.37339, -2.336507]], [[55.37339, -2.336507], [55.373325, -2.33662]], [[55.373325, -2.33662], [55.373268, -2.336751]], [[55.372509, -2.337], [55.372428, -2.336926]], [[55.372428, -2.336926], [55.372345, -2.336834]], [[55.372068, -2.336369], [55.371993, -2.336249]], [[55.371993, -2.336249], [55.371919, -2.336128]], [[55.371919, -2.336128], [55.37184, -2.336024]], [[55.37184, -2.336024], [55.371756, -2.335939]], [[55.37158, -2.335642], [55.371517, -2.335505]], [[55.371517, -2.335505], [55.371459, -2.335378]], [[55.371459, -2.335378], [55.3714, -2.335245]], [[55.3714, -2.335245], [55.371348, -2.335095]], [[55.371348, -2.335095], [55.371272, -2.334976]], [[55.371272, -2.334976], [55.371194, -2.334866]], [[55.371194, -2.334866], [55.371128, -2.334755]], [[55.371128, -2.334755], [55.371057, -2.334634]], [[55.371057, -2.334634], [55.37099, -2.334525]], [[55.37099, -2.334525], [55.37092, -2.334407]], [[55.37092, -2.334407], [55.370849, -2.334291]], [[55.370849, -2.334291], [55.370807, -2.334146]], [[55.37076, -2.333786], [55.370745, -2.333618]], [[55.370745, -2.333618], [55.370717, -2.333456]], [[55.370691, -2.333286], [55.370655, -2.333135]], [[55.370655, -2.333135], [55.370584, -2.333016]], [[55.370505, -2.332787], [55.370466, -2.332644]], [[55.370368, -2.332167], [55.3703, -2.332037]], [[55.3703, -2.332037], [55.37023, -2.331925]], [[55.37023, -2.331925], [55.37016, -2.331817]], [[55.37016, -2.331817], [55.370087, -2.331693]], [[55.369075, -2.330173], [55.369002, -2.330053]], [[55.369002, -2.330053], [55.368946, -2.329918]], [[55.368375, -2.331885], [55.368372, -2.332044]], [[55.368372, -2.332044], [55.368374, -2.332219]], [[55.368374, -2.332219], [55.368363, -2.33238]], [[55.368196, -2.333339], [55.368184, -2.333499]], [[55.368184, -2.333499], [55.36818, -2.333666]], [[55.36818, -2.333666], [55.368166, -2.333827]], [[55.368166, -2.333827], [55.36815, -2.333985]], [[55.36815, -2.333985], [55.368128, -2.334157]], [[55.368128, -2.334157], [55.368114, -2.334317]], [[55.368114, -2.334317], [55.368106, -2.334474]], [[55.368106, -2.334474], [55.368082, -2.334634]], [[55.368082, -2.334634], [55.368058, -2.33481]], [[55.368058, -2.33481], [55.368039, -2.33497]], [[55.368039, -2.33497], [55.368024, -2.335146]], [[55.368024, -2.335146], [55.368022, -2.335314]], [[55.368022, -2.335314], [55.367969, -2.335448]], [[55.367969, -2.335448], [55.367928, -2.33559]], [[55.367817, -2.336572], [55.367828, -2.336736]], [[55.367828, -2.336736], [55.367787, -2.33689]], [[55.367787, -2.33689], [55.367757, -2.337057]], [[55.367689, -2.337382], [55.367668, -2.337552]], [[55.367668, -2.337552], [55.367632, -2.337705]], [[55.367473, -2.338709], [55.367465, -2.338879]], [[55.367465, -2.338879], [55.367496, -2.339046]], [[55.367496, -2.339046], [55.367481, -2.339219]], [[55.367481, -2.339219], [55.367527, -2.339358]], [[55.367511, -2.339816], [55.367492, -2.33999]], [[55.367492, -2.33999], [55.367491, -2.340162]], [[55.367491, -2.340162], [55.367475, -2.340333]], [[55.367475, -2.340333], [55.367435, -2.340484]], [[55.367435, -2.340484], [55.367439, -2.340665]], [[55.367439, -2.340665], [55.367432, -2.340831]], [[55.367432, -2.340831], [55.367446, -2.340987]], [[55.367481, -2.341555], [55.367293, -2.342414]], [[55.367293, -2.342414], [55.367264, -2.342583]], [[55.367264, -2.342583], [55.367237, -2.342745]], [[55.367237, -2.342745], [55.367186, -2.342886]], [[55.367186, -2.342886], [55.367131, -2.343021]], [[55.367014, -2.343267], [55.366977, -2.343393]], [[55.366715, -2.346016], [55.36675, -2.346178]], [[55.36675, -2.346178], [55.366797, -2.346318]], [[55.366797, -2.346318], [55.366836, -2.34647]], [[55.363751, -2.354666], [55.363658, -2.354652]], [[55.363658, -2.354652], [55.363555, -2.35462]], [[55.363555, -2.35462], [55.363475, -2.354697]], [[55.362996, -2.354811], [55.362902, -2.354833]], [[55.362902, -2.354833], [55.362812, -2.354858]], [[55.362714, -2.354886], [55.36262, -2.354941]], [[55.362436, -2.354921], [55.362363, -2.354806]], [[55.362204, -2.354757], [55.36211, -2.354741]], [[55.36193, -2.354723], [55.361839, -2.354708]], [[55.361839, -2.354708], [55.361744, -2.354675]], [[55.361744, -2.354675], [55.361653, -2.354711]], [[55.361653, -2.354711], [55.361565, -2.354768]], [[55.361565, -2.354768], [55.361463, -2.354756]], [[55.361463, -2.354756], [55.361382, -2.354682]], [[55.361284, -2.354667], [55.361197, -2.354609]], [[55.361197, -2.354609], [55.361114, -2.354549]], [[55.361114, -2.354549], [55.361014, -2.354512]], [[55.360548, -2.354474], [55.360452, -2.35443]], [[55.360452, -2.35443], [55.360377, -2.354342]], [[55.360377, -2.354342], [55.360341, -2.35419]], [[55.358112, -2.352841], [55.358011, -2.352852]], [[55.358011, -2.352852], [55.357914, -2.352869]], [[55.357914, -2.352869], [55.357824, -2.352915]], [[55.357824, -2.352915], [55.357734, -2.352981]], [[55.357539, -2.352956], [55.357437, -2.352951]], [[55.357371, -2.352828], [55.357272, -2.352819]], [[55.357199, -2.352911], [55.357115, -2.352979]], [[55.357115, -2.352979], [55.357038, -2.353063]], [[55.357038, -2.353063], [55.356947, -2.35311]], [[55.356947, -2.35311], [55.356855, -2.353144]], [[55.356855, -2.353144], [55.356761, -2.353157]], [[55.356026, -2.353398], [55.355929, -2.353427]], [[55.355929, -2.353427], [55.355837, -2.353364]], [[55.355837, -2.353364], [55.35575, -2.353302]], [[55.354468, -2.352382], [55.354378, -2.352325]], [[55.35429, -2.352269], [55.354206, -2.352211]], [[55.354206, -2.352211], [55.354113, -2.35214]], [[55.353445, -2.351688], [55.35335, -2.351622]], [[55.35335, -2.351622], [55.353262, -2.351554]], [[55.353262, -2.351554], [55.353169, -2.351508]], [[55.35284, -2.351155], [55.352752, -2.351209]], [[55.352752, -2.351209], [55.352661, -2.351169]], [[55.352661, -2.351169], [55.352567, -2.351145]], [[55.352567, -2.351145], [55.352473, -2.35113]], [[55.352473, -2.35113], [55.352383, -2.35112]], [[55.352383, -2.35112], [55.352288, -2.351125]], [[55.352288, -2.351125], [55.352196, -2.351139]], [[55.351902, -2.35103], [55.35181, -2.35099]], [[55.35181, -2.35099], [55.35172, -2.350954]], [[55.35138, -2.350634], [55.351299, -2.35056]], [[55.350917, -2.350041], [55.350853, -2.349915]], [[55.350312, -2.349438], [55.350219, -2.34936]], [[55.350219, -2.34936], [55.350137, -2.349288]], [[55.34992, -2.348984], [55.349845, -2.348876]], [[55.349845, -2.348876], [55.349771, -2.34877]], [[55.349771, -2.34877], [55.349679, -2.348695]], [[55.349679, -2.348695], [55.349624, -2.348561]], [[55.349624, -2.348561], [55.349547, -2.348461]], [[55.349547, -2.348461], [55.349456, -2.34841]], [[55.349244, -2.348346], [55.349156, -2.348436]], [[55.349156, -2.348436], [55.349063, -2.348504]], [[55.349063, -2.348504], [55.348968, -2.348549]], [[55.348968, -2.348549], [55.348873, -2.348584]], [[55.348873, -2.348584], [55.348783, -2.348608]], [[55.348783, -2.348608], [55.34869, -2.348665]], [[55.34869, -2.348665], [55.348603, -2.348739]], [[55.348603, -2.348739], [55.348518, -2.348802]], [[55.348518, -2.348802], [55.348434, -2.348874]], [[55.348434, -2.348874], [55.348367, -2.348996]], [[55.348367, -2.348996], [55.348292, -2.349102]], [[55.347615, -2.349656], [55.347527, -2.349726]], [[55.347527, -2.349726], [55.347472, -2.349861]], [[55.347472, -2.349861], [55.347403, -2.349961]], [[55.347403, -2.349961], [55.347324, -2.350061]], [[55.347249, -2.350152], [55.347156, -2.350223]], [[55.347156, -2.350223], [55.347058, -2.350252]], [[55.347058, -2.350252], [55.346966, -2.35025]], [[55.346966, -2.35025], [55.346881, -2.350337]], [[55.346881, -2.350337], [55.346782, -2.350387]], [[55.346782, -2.350387], [55.346691, -2.350422]], [[55.346691, -2.350422], [55.346596, -2.350434]], [[55.346596, -2.350434], [55.346505, -2.350469]], [[55.346505, -2.350469], [55.346405, -2.350445]], [[55.346405, -2.350445], [55.34631, -2.350416]], [[55.34631, -2.350416], [55.346218, -2.350397]], [[55.346218, -2.350397], [55.346127, -2.350433]], [[55.346127, -2.350433], [55.346034, -2.350487]], [[55.346034, -2.350487], [55.345942, -2.350569]], [[55.345942, -2.350569], [55.345852, -2.350653]], [[55.345852, -2.350653], [55.345763, -2.350705]], [[55.345763, -2.350705], [55.345665, -2.350756]], [[55.345665, -2.350756], [55.345575, -2.350762]], [[55.345575, -2.350762], [55.345479, -2.350765]], [[55.345479, -2.350765], [55.345385, -2.350823]], [[55.345385, -2.350823], [55.345288, -2.350875]], [[55.345288, -2.350875], [55.345195, -2.350939]], [[55.345195, -2.350939], [55.345099, -2.350974]], [[55.345099, -2.350974], [55.345005, -2.350995]], [[55.345005, -2.350995], [55.344917, -2.35108]], [[55.344917, -2.35108], [55.344832, -2.351156]], [[55.344832, -2.351156], [55.344741, -2.351214]], [[55.344741, -2.351214], [55.344647, -2.351234]], [[55.344647, -2.351234], [55.344553, -2.351275]], [[55.344553, -2.351275], [55.344454, -2.351305]], [[55.344365, -2.351304], [55.344273, -2.351342]], [[55.344273, -2.351342], [55.344184, -2.351372]], [[55.344184, -2.351372], [55.344091, -2.351437]], [[55.344091, -2.351437], [55.344001, -2.351489]], [[55.344001, -2.351489], [55.343906, -2.351535]], [[55.343906, -2.351535], [55.343815, -2.351556]], [[55.343344, -2.351591], [55.343253, -2.3516]], [[55.343253, -2.3516], [55.343157, -2.351613]], [[55.342618, -2.352148], [55.342537, -2.352235]], [[55.342537, -2.352235], [55.342449, -2.352329]], [[55.342449, -2.352329], [55.342368, -2.352426]], [[55.342368, -2.352426], [55.342329, -2.352583]], [[55.342329, -2.352583], [55.342298, -2.352742]], [[55.342298, -2.352742], [55.34224, -2.352884]], [[55.34224, -2.352884], [55.342183, -2.353018]], [[55.342183, -2.353018], [55.34211, -2.353128]], [[55.34211, -2.353128], [55.342059, -2.353277]], [[55.342059, -2.353277], [55.342005, -2.353419]], [[55.341901, -2.353693], [55.341844, -2.353831]], [[55.341597, -2.35422], [55.34157, -2.354382]], [[55.34157, -2.354382], [55.34152, -2.354527]], [[55.34152, -2.354527], [55.341455, -2.354646]], [[55.341455, -2.354646], [55.341392, -2.354772]], [[55.341392, -2.354772], [55.341326, -2.354885]], [[55.341326, -2.354885], [55.341263, -2.355006]], [[55.341263, -2.355006], [55.341211, -2.355149]], [[55.341211, -2.355149], [55.341152, -2.355278]], [[55.341152, -2.355278], [55.341101, -2.355414]], [[55.341101, -2.355414], [55.341038, -2.35554]], [[55.341038, -2.35554], [55.340966, -2.355654]], [[55.340966, -2.355654], [55.340901, -2.355774]], [[55.340901, -2.355774], [55.340834, -2.355893]], [[55.340834, -2.355893], [55.340785, -2.356028]], [[55.340785, -2.356028], [55.34074, -2.356176]], [[55.34074, -2.356176], [55.3407, -2.356319]], [[55.3407, -2.356319], [55.340637, -2.356437]], [[55.340637, -2.356437], [55.340575, -2.356553]], [[55.340502, -2.356658], [55.340417, -2.356757]], [[55.340417, -2.356757], [55.340336, -2.356857]], [[55.340162, -2.356993], [55.340086, -2.35708]], [[55.339608, -2.357674], [55.339518, -2.357677]], [[55.339518, -2.357677], [55.339417, -2.357644]], [[55.338841, -2.358458], [55.338743, -2.358483]], [[55.338743, -2.358483], [55.338647, -2.358467]], [[55.338647, -2.358467], [55.33855, -2.358467]], [[55.33855, -2.358467], [55.338454, -2.358463]], [[55.338454, -2.358463], [55.338356, -2.358453]], [[55.338356, -2.358453], [55.338266, -2.358461]], [[55.338266, -2.358461], [55.338174, -2.358406]], [[55.338174, -2.358406], [55.338085, -2.358438]], [[55.338085, -2.358438], [55.338, -2.358499]], [[55.338, -2.358499], [55.33792, -2.358585]], [[55.33792, -2.358585], [55.337819, -2.358616]], [[55.337819, -2.358616], [55.337726, -2.35861]], [[55.337726, -2.35861], [55.337627, -2.358567]], [[55.337627, -2.358567], [55.337526, -2.358553]], [[55.337526, -2.358553], [55.337429, -2.358516]], [[55.337429, -2.358516], [55.33733, -2.358455]], [[55.33733, -2.358455], [55.337243, -2.358407]], [[55.337064, -2.358326], [55.336968, -2.358276]], [[55.336968, -2.358276], [55.336874, -2.358239]], [[55.336874, -2.358239], [55.336778, -2.358222]], [[55.336778, -2.358222], [55.336681, -2.358164]], [[55.336681, -2.358164], [55.336595, -2.358101]], [[55.336334, -2.357907], [55.336247, -2.357854]], [[55.336076, -2.357731], [55.336001, -2.357613]], [[55.336001, -2.357613], [55.335931, -2.357495]], [[55.335931, -2.357495], [55.335879, -2.357363]], [[55.335879, -2.357363], [55.335819, -2.357237]], [[55.335819, -2.357237], [55.33572, -2.357202]], [[55.33572, -2.357202], [55.335629, -2.357209]], [[55.335629, -2.357209], [55.335539, -2.357246]], [[55.335539, -2.357246], [55.335457, -2.357323]], [[55.3348, -2.357563], [55.3347, -2.357542]], [[55.3347, -2.357542], [55.334603, -2.357534]], [[55.334603, -2.357534], [55.3345, -2.357544]], [[55.3345, -2.357544], [55.334415, -2.357604]], [[55.334415, -2.357604], [55.334361, -2.357748]], [[55.334361, -2.357748], [55.334292, -2.357853]], [[55.334292, -2.357853], [55.334214, -2.357935]], [[55.334214, -2.357935], [55.33414, -2.358025]], [[55.33414, -2.358025], [55.33405, -2.358089]], [[55.33405, -2.358089], [55.333961, -2.358123]], [[55.333961, -2.358123], [55.333864, -2.358147]], [[55.333864, -2.358147], [55.333771, -2.35813]], [[55.333771, -2.35813], [55.33368, -2.358131]], [[55.333415, -2.358143], [55.333328, -2.358104]], [[55.333328, -2.358104], [55.333237, -2.358114]], [[55.333237, -2.358114], [55.33315, -2.358056]], [[55.332744, -2.357798], [55.332664, -2.357722]], [[55.332664, -2.357722], [55.33257, -2.3577]], [[55.33257, -2.3577], [55.332474, -2.357732]], [[55.332474, -2.357732], [55.332386, -2.357677]], [[55.332386, -2.357677], [55.332293, -2.357638]], [[55.332293, -2.357638], [55.332205, -2.357599]], [[55.331464, -2.357427], [55.331369, -2.357403]], [[55.331186, -2.357458], [55.331094, -2.357459]], [[55.331094, -2.357459], [55.330999, -2.357457]], [[55.330999, -2.357457], [55.3309, -2.357429]], [[55.3309, -2.357429], [55.33081, -2.357423]], [[55.330718, -2.357435], [55.330623, -2.357473]], [[55.330623, -2.357473], [55.330531, -2.357524]], [[55.330442, -2.35757], [55.33036, -2.357665]], [[55.33036, -2.357665], [55.330273, -2.357738]], [[55.330273, -2.357738], [55.330187, -2.357806]], [[55.330187, -2.357806], [55.330086, -2.357831]], [[55.330086, -2.357831], [55.329992, -2.357858]], [[55.329796, -2.357918], [55.329702, -2.357921]], [[55.329702, -2.357921], [55.329604, -2.357936]], [[55.329604, -2.357936], [55.329508, -2.357951]], [[55.329508, -2.357951], [55.329419, -2.357985]], [[55.329419, -2.357985], [55.329322, -2.357996]], [[55.329322, -2.357996], [55.329232, -2.358037]], [[55.329142, -2.358068], [55.329048, -2.358108]], [[55.329048, -2.358108], [55.328964, -2.358198]], [[55.328964, -2.358198], [55.328872, -2.358234]], [[55.328872, -2.358234], [55.328772, -2.358267]], [[55.328772, -2.358267], [55.328681, -2.358292]], [[55.328681, -2.358292], [55.328583, -2.358301]], [[55.328583, -2.358301], [55.328486, -2.358305]], [[55.328486, -2.358305], [55.328396, -2.358317]], [[55.328396, -2.358317], [55.328297, -2.358332]], [[55.328297, -2.358332], [55.328201, -2.358343]], [[55.328201, -2.358343], [55.328111, -2.358365]], [[55.328111, -2.358365], [55.328021, -2.358375]], [[55.328021, -2.358375], [55.327928, -2.358384]], [[55.327928, -2.358384], [55.327836, -2.358384]], [[55.327836, -2.358384], [55.327744, -2.35841]], [[55.327744, -2.35841], [55.327649, -2.358449]], [[55.327649, -2.358449], [55.327552, -2.358482]], [[55.327552, -2.358482], [55.327461, -2.358459]], [[55.327461, -2.358459], [55.327379, -2.358389]], [[55.326478, -2.358407], [55.326379, -2.358377]], [[55.326379, -2.358377], [55.326281, -2.358325]], [[55.326281, -2.358325], [55.326188, -2.358304]], [[55.325962, -2.358284], [55.325865, -2.358228]], [[55.325865, -2.358228], [55.325781, -2.35817]], [[55.325781, -2.35817], [55.325682, -2.358155]], [[55.325682, -2.358155], [55.325592, -2.358197]], [[55.325398, -2.358153], [55.325305, -2.358127]], [[55.325305, -2.358127], [55.325212, -2.358082]], [[55.325212, -2.358082], [55.325116, -2.358063]], [[55.325017, -2.358041], [55.32492, -2.358044]], [[55.32492, -2.358044], [55.324825, -2.358056]], [[55.324825, -2.358056], [55.324726, -2.358016]], [[55.324726, -2.358016], [55.32463, -2.357992]], [[55.32463, -2.357992], [55.324539, -2.35795]], [[55.324274, -2.357837], [55.324188, -2.357772]], [[55.323912, -2.35769], [55.32382, -2.35764]], [[55.32382, -2.35764], [55.323727, -2.357603]], [[55.323727, -2.357603], [55.323636, -2.357554]], [[55.323636, -2.357554], [55.323547, -2.357522]], [[55.323547, -2.357522], [55.32345, -2.357491]], [[55.323259, -2.357418], [55.323168, -2.357347]], [[55.323168, -2.357347], [55.323091, -2.357246]], [[55.322991, -2.35763], [55.322921, -2.357732]], [[55.321285, -2.360312], [55.321337, -2.360459]], [[55.321337, -2.360459], [55.321384, -2.360622]], [[55.321384, -2.360622], [55.321418, -2.360785]], [[55.321418, -2.360785], [55.321458, -2.360937]], [[55.321458, -2.360937], [55.321491, -2.3611]], [[55.321491, -2.3611], [55.321539, -2.361242]], [[55.321736, -2.361605], [55.32181, -2.36171]], [[55.321938, -2.361944], [55.321993, -2.36208]], [[55.321993, -2.36208], [55.322053, -2.362226]], [[55.322053, -2.362226], [55.322108, -2.362377]], [[55.322182, -2.362598], [55.32223, -2.362734]], [[55.32223, -2.362734], [55.322286, -2.362864]], [[55.322286, -2.362864], [55.322333, -2.363011]], [[55.322434, -2.363294], [55.322489, -2.363428]], [[55.322489, -2.363428], [55.322549, -2.363569]], [[55.322549, -2.363569], [55.322621, -2.363689]], [[55.322714, -2.363972], [55.322636, -2.364072]], [[55.32244, -2.364026], [55.322352, -2.36398]], [[55.322352, -2.36398], [55.322263, -2.363946]], [[55.321786, -2.363756], [55.321686, -2.363735]], [[55.321686, -2.363735], [55.321595, -2.363715]], [[55.321217, -2.363634], [55.321118, -2.363606]], [[55.321118, -2.363606], [55.321026, -2.363572]], [[55.320382, -2.363298], [55.320295, -2.363256]], [[55.320014, -2.363131], [55.319918, -2.363115]], [[55.319918, -2.363115], [55.319826, -2.363057]], [[55.319541, -2.362604], [55.319486, -2.362461]], [[55.319422, -2.362343], [55.31935, -2.362222]], [[55.318833, -2.362781], [55.318753, -2.362867]], [[55.317957, -2.363709], [55.317874, -2.363782]], [[55.317189, -2.365275], [55.317094, -2.365324]], [[55.317094, -2.365324], [55.316997, -2.365354]], [[55.316997, -2.365354], [55.316905, -2.365352]], [[55.316905, -2.365352], [55.316812, -2.365303]], [[55.316812, -2.365303], [55.316723, -2.365224]], [[55.316723, -2.365224], [55.316645, -2.365143]], [[55.316645, -2.365143], [55.316576, -2.365032]], [[55.316598, -2.36532], [55.316649, -2.365456]], [[55.316649, -2.365456], [55.316699, -2.36561]], [[55.316699, -2.36561], [55.316746, -2.365761]], [[55.316889, -2.36619], [55.31695, -2.366317]], [[55.31724, -2.367363], [55.3173, -2.367505]], [[55.317351, -2.367651], [55.317406, -2.367807]], [[55.317551, -2.368241], [55.317615, -2.368362]], [[55.317643, -2.368519], [55.317609, -2.368669]], [[55.317667, -2.368792], [55.317728, -2.368923]], [[55.317728, -2.368923], [55.317809, -2.369031]], [[55.317809, -2.369031], [55.317854, -2.369174]], [[55.317854, -2.369174], [55.31789, -2.369324]], [[55.31789, -2.369324], [55.317948, -2.369467]], [[55.317948, -2.369467], [55.317988, -2.369614]], [[55.317988, -2.369614], [55.318039, -2.369767]], [[55.318039, -2.369767], [55.318085, -2.369917]], [[55.318085, -2.369917], [55.318132, -2.370071]], [[55.318132, -2.370071], [55.318167, -2.37022]], [[55.318167, -2.37022], [55.318218, -2.370373]], [[55.318218, -2.370373], [55.318255, -2.370526]], [[55.318255, -2.370526], [55.318302, -2.370665]], [[55.318302, -2.370665], [55.318339, -2.370819]], [[55.318339, -2.370819], [55.318372, -2.370971]], [[55.318372, -2.370971], [55.318399, -2.371139]], [[55.318399, -2.371139], [55.31839, -2.371305]], [[55.318271, -2.37196], [55.31825, -2.372128]], [[55.317968, -2.372607], [55.31787, -2.372613]], [[55.31787, -2.372613], [55.317772, -2.372607]], [[55.317772, -2.372607], [55.317674, -2.372604]], [[55.317583, -2.372686], [55.317505, -2.372788]], [[55.317505, -2.372788], [55.317467, -2.372942]], [[55.317738, -2.37408], [55.317803, -2.374198]], [[55.317803, -2.374198], [55.317837, -2.374348]], [[55.317837, -2.374348], [55.317868, -2.374508]], [[55.317868, -2.374508], [55.317958, -2.374548]], [[55.317958, -2.374548], [55.318044, -2.374496]], [[55.318044, -2.374496], [55.318121, -2.374408]], [[55.318121, -2.374408], [55.31819, -2.374293]], [[55.31819, -2.374293], [55.318276, -2.37421]], [[55.318276, -2.37421], [55.318358, -2.374115]], [[55.318358, -2.374115], [55.318444, -2.374015]], [[55.318444, -2.374015], [55.31852, -2.373921]], [[55.31852, -2.373921], [55.318579, -2.373779]], [[55.318579, -2.373779], [55.318514, -2.373665]], [[55.318514, -2.373665], [55.318473, -2.373513]], [[55.318473, -2.373513], [55.318425, -2.373361]], [[55.31838, -2.373264], [55.318339, -2.373115]], [[55.318162, -2.373023], [55.31807, -2.373007]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_09a1d8b0c3d6eea1fbfd84fac0572670 = L.polyline(
                [[[55.437325, -2.206159], [55.43728, -2.206303]], [[55.43728, -2.206303], [55.437218, -2.206429]], [[55.437218, -2.206429], [55.437175, -2.206575]], [[55.437175, -2.206575], [55.437149, -2.206731]], [[55.437149, -2.206731], [55.437115, -2.206888]], [[55.437115, -2.206888], [55.437082, -2.207039]], [[55.436352, -2.20973], [55.436298, -2.209872]], [[55.436298, -2.209872], [55.436251, -2.210022]], [[55.436039, -2.21079], [55.435998, -2.210935]], [[55.435955, -2.211074], [55.435903, -2.211214]], [[55.435903, -2.211214], [55.435868, -2.211366]], [[55.435868, -2.211366], [55.435829, -2.211519]], [[55.435087, -2.214262], [55.435048, -2.214404]], [[55.435048, -2.214404], [55.435013, -2.214555]], [[55.431602, -2.223532], [55.431544, -2.223662]], [[55.43149, -2.223789], [55.431426, -2.22393]], [[55.431426, -2.22393], [55.431359, -2.224068]], [[55.431294, -2.224188], [55.431219, -2.224301]], [[55.431219, -2.224301], [55.431147, -2.224415]], [[55.431147, -2.224415], [55.431078, -2.224538]], [[55.431078, -2.224538], [55.431028, -2.224682]], [[55.431028, -2.224682], [55.431004, -2.224837]], [[55.431004, -2.224837], [55.430958, -2.224983]], [[55.430958, -2.224983], [55.430904, -2.225127]], [[55.430904, -2.225127], [55.430868, -2.225285]], [[55.430868, -2.225285], [55.430845, -2.225462]], [[55.430795, -2.2256], [55.430762, -2.225759]], [[55.430762, -2.225759], [55.430733, -2.225919]], [[55.430453, -2.230459], [55.430427, -2.230626]], [[55.430427, -2.230626], [55.430399, -2.230795]], [[55.430399, -2.230795], [55.430365, -2.230963]], [[55.430365, -2.230963], [55.430342, -2.231118]], [[55.430342, -2.231118], [55.430315, -2.231291]], [[55.430315, -2.231291], [55.430281, -2.231448]], [[55.430281, -2.231448], [55.430256, -2.231611]], [[55.430256, -2.231611], [55.43023, -2.231773]], [[55.43023, -2.231773], [55.430218, -2.231947]], [[55.430218, -2.231947], [55.430205, -2.232125]], [[55.430205, -2.232125], [55.430196, -2.232295]], [[55.430196, -2.232295], [55.430207, -2.232468]], [[55.430207, -2.232468], [55.430213, -2.232643]], [[55.430213, -2.232643], [55.430225, -2.232815]], [[55.430225, -2.232815], [55.430252, -2.232979]], [[55.430252, -2.232979], [55.430267, -2.23315]], [[55.430267, -2.23315], [55.430307, -2.233308]], [[55.430307, -2.233308], [55.430332, -2.233471]], [[55.430332, -2.233471], [55.430367, -2.233634]], [[55.430367, -2.233634], [55.430415, -2.233792]], [[55.430448, -2.23396], [55.430487, -2.234125]], [[55.430487, -2.234125], [55.430518, -2.234284]], [[55.430518, -2.234284], [55.430553, -2.234446]], [[55.430553, -2.234446], [55.430587, -2.234597]], [[55.430587, -2.234597], [55.430645, -2.234748]], [[55.430645, -2.234748], [55.430694, -2.234904]], [[55.430801, -2.236054], [55.430856, -2.236205]], [[55.430856, -2.236205], [55.430904, -2.236341]], [[55.430955, -2.23666], [55.430982, -2.236825]], [[55.430982, -2.236825], [55.430996, -2.236997]], [[55.430996, -2.236997], [55.431028, -2.237171]], [[55.431028, -2.237171], [55.431065, -2.237338]], [[55.431163, -2.237727], [55.431199, -2.237892]], [[55.431199, -2.237892], [55.431243, -2.238055]], [[55.431243, -2.238055], [55.431287, -2.238214]], [[55.431287, -2.238214], [55.431323, -2.23837]], [[55.431323, -2.23837], [55.431366, -2.238536]], [[55.431366, -2.238536], [55.431402, -2.238699]], [[55.431402, -2.238699], [55.431445, -2.238853]], [[55.431445, -2.238853], [55.431476, -2.239007]], [[55.43195, -2.246435], [55.431942, -2.246617]], [[55.431945, -2.246778], [55.431951, -2.246955]], [[55.431981, -2.247398], [55.431989, -2.247572]], [[55.431989, -2.247572], [55.432001, -2.24773]], [[55.432025, -2.248069], [55.432034, -2.248242]], [[55.432034, -2.248242], [55.432033, -2.248416]], [[55.432033, -2.248416], [55.432035, -2.248585]], [[55.432035, -2.248585], [55.432033, -2.248748]], [[55.432033, -2.248748], [55.432028, -2.248924]], [[55.432028, -2.248924], [55.432025, -2.249094]], [[55.432025, -2.249094], [55.432018, -2.249267]], [[55.432018, -2.249267], [55.43201, -2.249436]], [[55.43201, -2.249436], [55.431997, -2.249605]], [[55.431997, -2.249605], [55.431984, -2.249775]], [[55.431984, -2.249775], [55.431963, -2.249946]], [[55.43184, -2.250578], [55.431796, -2.250724]], [[55.431796, -2.250724], [55.431754, -2.250863]], [[55.430974, -2.254748], [55.431019, -2.254901]], [[55.431019, -2.254901], [55.431074, -2.255034]], [[55.429729, -2.260655], [55.429639, -2.260721]], [[55.429639, -2.260721], [55.429563, -2.260813]], [[55.429563, -2.260813], [55.429481, -2.26089]], [[55.428386, -2.272362], [55.428297, -2.272418]], [[55.428297, -2.272418], [55.428202, -2.272485]], [[55.427542, -2.27313], [55.427449, -2.27314]], [[55.426118, -2.276345], [55.426077, -2.276491]], [[55.426077, -2.276491], [55.426096, -2.276652]], [[55.426017, -2.279983], [55.425964, -2.280122]], [[55.422791, -2.284322], [55.422752, -2.284476]], [[55.422603, -2.285085], [55.422558, -2.285229]], [[55.422558, -2.285229], [55.422522, -2.285378]], [[55.422458, -2.285695], [55.422419, -2.285849]], [[55.422419, -2.285849], [55.422378, -2.286002]], [[55.422378, -2.286002], [55.422344, -2.286152]], [[55.422108, -2.287059], [55.422066, -2.287202]], [[55.422066, -2.287202], [55.422047, -2.287362]], [[55.421735, -2.288748], [55.421697, -2.288912]], [[55.421561, -2.289351], [55.421524, -2.289503]], [[55.421337, -2.290468], [55.421284, -2.29062]], [[55.421076, -2.291347], [55.421043, -2.291509]], [[55.421043, -2.291509], [55.420998, -2.291663]], [[55.420998, -2.291663], [55.420964, -2.29182]], [[55.420868, -2.292307], [55.420824, -2.292468]], [[55.420824, -2.292468], [55.420795, -2.292619]], [[55.420442, -2.293608], [55.420382, -2.293745]], [[55.41999, -2.293913], [55.419899, -2.293939]], [[55.419797, -2.293927], [55.4197, -2.293896]], [[55.4197, -2.293896], [55.4196, -2.293872]], [[55.4196, -2.293872], [55.419505, -2.293837]], [[55.419505, -2.293837], [55.41941, -2.293805]], [[55.41941, -2.293805], [55.419322, -2.293762]], [[55.419247, -2.293648], [55.419157, -2.293569]], [[55.419157, -2.293569], [55.419065, -2.293497]], [[55.419065, -2.293497], [55.418974, -2.293425]], [[55.418974, -2.293425], [55.418887, -2.293365]], [[55.418887, -2.293365], [55.418789, -2.293355]], [[55.418492, -2.293321], [55.418401, -2.293361]], [[55.418052, -2.293603], [55.417957, -2.29366]], [[55.417957, -2.29366], [55.417863, -2.293719]], [[55.417863, -2.293719], [55.417771, -2.293766]], [[55.417771, -2.293766], [55.417678, -2.293825]], [[55.417678, -2.293825], [55.41759, -2.293878]], [[55.41759, -2.293878], [55.417497, -2.293925]], [[55.417497, -2.293925], [55.417412, -2.293981]], [[55.417412, -2.293981], [55.417316, -2.294012]], [[55.416972, -2.294249], [55.416879, -2.294281]], [[55.414504, -2.296619], [55.414444, -2.296752]], [[55.413956, -2.298347], [55.413903, -2.298484]], [[55.413674, -2.29958], [55.413611, -2.299698]], [[55.413114, -2.301985], [55.413045, -2.302114]], [[55.412886, -2.302505], [55.412823, -2.302623]], [[55.412643, -2.303193], [55.412599, -2.303338]], [[55.412496, -2.303792], [55.412452, -2.303944]], [[55.412452, -2.303944], [55.412389, -2.304073]], [[55.412136, -2.304555], [55.412071, -2.304671]], [[55.411894, -2.305055], [55.411824, -2.305169]], [[55.411824, -2.305169], [55.411768, -2.305298]], [[55.411523, -2.305807], [55.411469, -2.305941]], [[55.411469, -2.305941], [55.411397, -2.306063]], [[55.411397, -2.306063], [55.411337, -2.306189]], [[55.411337, -2.306189], [55.411276, -2.306314]], [[55.411276, -2.306314], [55.411222, -2.306443]], [[55.411117, -2.306729], [55.411054, -2.306854]], [[55.411054, -2.306854], [55.41101, -2.307002]], [[55.41101, -2.307002], [55.410974, -2.307158]], [[55.410974, -2.307158], [55.410934, -2.307304]], [[55.410622, -2.308277], [55.410565, -2.308404]], [[55.410565, -2.308404], [55.410514, -2.308544]], [[55.410514, -2.308544], [55.410471, -2.308708]], [[55.410357, -2.308987], [55.410303, -2.309123]], [[55.410186, -2.309394], [55.410128, -2.309525]], [[55.409388, -2.310928], [55.409295, -2.310967]], [[55.409295, -2.310967], [55.409198, -2.311004]], [[55.409198, -2.311004], [55.409096, -2.31102]], [[55.406651, -2.314004], [55.406633, -2.31417]], [[55.406633, -2.31417], [55.406655, -2.314338]], [[55.406617, -2.316162], [55.40663, -2.316327]], [[55.406522, -2.317443], [55.406529, -2.317606]], [[55.406653, -2.318416], [55.406626, -2.318577]], [[55.406626, -2.318577], [55.406614, -2.318734]], [[55.406542, -2.319525], [55.406579, -2.319681]], [[55.406067, -2.324209], [55.406025, -2.324359]], [[55.406025, -2.324359], [55.405978, -2.324494]], [[55.405741, -2.325022], [55.405673, -2.325157]], [[55.401384, -2.332412], [55.401326, -2.332545]], [[55.401326, -2.332545], [55.401279, -2.332681]], [[55.392016, -2.335672], [55.391916, -2.335664]], [[55.391916, -2.335664], [55.391816, -2.335683]], [[55.391172, -2.335654], [55.391083, -2.335593]], [[55.391083, -2.335593], [55.390989, -2.335563]], [[55.3907, -2.335465], [55.390604, -2.335443]], [[55.390604, -2.335443], [55.390516, -2.335414]], [[55.389431, -2.335203], [55.389331, -2.335235]], [[55.389076, -2.335113], [55.388998, -2.335206]], [[55.388998, -2.335206], [55.388908, -2.335198]], [[55.387239, -2.334467], [55.387144, -2.334412]], [[55.387144, -2.334412], [55.387052, -2.334374]], [[55.386781, -2.334311], [55.386683, -2.334296]], [[55.386683, -2.334296], [55.386589, -2.33429]], [[55.381737, -2.332222], [55.381645, -2.332195]], [[55.381645, -2.332195], [55.381557, -2.332152]], [[55.378629, -2.332023], [55.378534, -2.332079]], [[55.378534, -2.332079], [55.378438, -2.332117]], [[55.378438, -2.332117], [55.378341, -2.332162]], [[55.378341, -2.332162], [55.378253, -2.33221]], [[55.378253, -2.33221], [55.378166, -2.332264]], [[55.376273, -2.33308], [55.376192, -2.333149]], [[55.375095, -2.334156], [55.375005, -2.334203]], [[55.375005, -2.334203], [55.374913, -2.334246]], [[55.374522, -2.334708], [55.374446, -2.334801]], [[55.373567, -2.336113], [55.373511, -2.336241]], [[55.372203, -2.3366], [55.372144, -2.336455]], [[55.372144, -2.336455], [55.372068, -2.336369]], [[55.370466, -2.332644], [55.370422, -2.332491]], [[55.370422, -2.332491], [55.370397, -2.332321]], [[55.370397, -2.332321], [55.370368, -2.332167]], [[55.370087, -2.331693], [55.370021, -2.331576]], [[55.370021, -2.331576], [55.369953, -2.33147]], [[55.369953, -2.33147], [55.369883, -2.331349]], [[55.369883, -2.331349], [55.369809, -2.331231]], [[55.369809, -2.331231], [55.369739, -2.331124]], [[55.369739, -2.331124], [55.369674, -2.331009]], [[55.369674, -2.331009], [55.369601, -2.330899]], [[55.369601, -2.330899], [55.369519, -2.330828]], [[55.369519, -2.330828], [55.369434, -2.330761]], [[55.369434, -2.330761], [55.369357, -2.330638]], [[55.369274, -2.330526], [55.369204, -2.33042]], [[55.369135, -2.330299], [55.369075, -2.330173]], [[55.368812, -2.329892], [55.368737, -2.32999]], [[55.368737, -2.32999], [55.368684, -2.330134]], [[55.368684, -2.330134], [55.368635, -2.330274]], [[55.368635, -2.330274], [55.368598, -2.330423]], [[55.368598, -2.330423], [55.36855, -2.330567]], [[55.36855, -2.330567], [55.368501, -2.330714]], [[55.368501, -2.330714], [55.368468, -2.330877]], [[55.368468, -2.330877], [55.368447, -2.331042]], [[55.368447, -2.331042], [55.368427, -2.331202]], [[55.368427, -2.331202], [55.368393, -2.331362]], [[55.368378, -2.331724], [55.368375, -2.331885]], [[55.368363, -2.33238], [55.36834, -2.332542]], [[55.36834, -2.332542], [55.368325, -2.332703]], [[55.368325, -2.332703], [55.36829, -2.332853]], [[55.36829, -2.332853], [55.368246, -2.333012]], [[55.368246, -2.333012], [55.368211, -2.333171]], [[55.368211, -2.333171], [55.368196, -2.333339]], [[55.367928, -2.33559], [55.367903, -2.335749]], [[55.367903, -2.335749], [55.367875, -2.335923]], [[55.367875, -2.335923], [55.367857, -2.336091]], [[55.367857, -2.336091], [55.367847, -2.336251]], [[55.367847, -2.336251], [55.367829, -2.336409]], [[55.367829, -2.336409], [55.367817, -2.336572]], [[55.367757, -2.337057], [55.367722, -2.337217]], [[55.367722, -2.337217], [55.367689, -2.337382]], [[55.367493, -2.338283], [55.367438, -2.338433]], [[55.367438, -2.338433], [55.367409, -2.338584]], [[55.367409, -2.338584], [55.367473, -2.338709]], [[55.36758, -2.339491], [55.367551, -2.339656]], [[55.367551, -2.339656], [55.367511, -2.339816]], [[55.367131, -2.343021], [55.367079, -2.343152]], [[55.367079, -2.343152], [55.367014, -2.343267]], [[55.363842, -2.354696], [55.363751, -2.354666]], [[55.363094, -2.354768], [55.362996, -2.354811]], [[55.362812, -2.354858], [55.362714, -2.354886]], [[55.357437, -2.352951], [55.357371, -2.352828]], [[55.35575, -2.353302], [55.355679, -2.353198]], [[55.355679, -2.353198], [55.355592, -2.353148]], [[55.355592, -2.353148], [55.355513, -2.35307]], [[55.355513, -2.35307], [55.355436, -2.35298]], [[55.355436, -2.35298], [55.355348, -2.352888]], [[55.355348, -2.352888], [55.355261, -2.352811]], [[55.35509, -2.352805], [55.35501, -2.352724]], [[55.35501, -2.352724], [55.354923, -2.35267]], [[55.354923, -2.35267], [55.354824, -2.352586]], [[55.354733, -2.352514], [55.354639, -2.352512]], [[55.354639, -2.352512], [55.354552, -2.352454]], [[55.354552, -2.352454], [55.354468, -2.352382]], [[55.354378, -2.352325], [55.35429, -2.352269]], [[55.354113, -2.35214], [55.354021, -2.352053]], [[55.354021, -2.352053], [55.353937, -2.351988]], [[55.353937, -2.351988], [55.353845, -2.351911]], [[55.353845, -2.351911], [55.353747, -2.351883]], [[55.353539, -2.351746], [55.353445, -2.351688]], [[55.353169, -2.351508], [55.35309, -2.351423]], [[55.35309, -2.351423], [55.353004, -2.351323]], [[55.353004, -2.351323], [55.352932, -2.351215]], [[55.352932, -2.351215], [55.35284, -2.351155]], [[55.352196, -2.351139], [55.3521, -2.351109]], [[55.3521, -2.351109], [55.352001, -2.351069]], [[55.352001, -2.351069], [55.351902, -2.35103]], [[55.35172, -2.350954], [55.351629, -2.35089]], [[55.351629, -2.35089], [55.351541, -2.350819]], [[55.351541, -2.350819], [55.351459, -2.350726]], [[55.351459, -2.350726], [55.35138, -2.350634]], [[55.351299, -2.35056], [55.351212, -2.35046]], [[55.351212, -2.35046], [55.351141, -2.350359]], [[55.351141, -2.350359], [55.351064, -2.350261]], [[55.351064, -2.350261], [55.350983, -2.350157]], [[55.350983, -2.350157], [55.350917, -2.350041]], [[55.348292, -2.349102], [55.34823, -2.349235]], [[55.347984, -2.349473], [55.347883, -2.349499]], [[55.347883, -2.349499], [55.347803, -2.349599]], [[55.347803, -2.349599], [55.347714, -2.349643]], [[55.347714, -2.349643], [55.347615, -2.349656]], [[55.344454, -2.351305], [55.344365, -2.351304]], [[55.341844, -2.353831], [55.341757, -2.353917]], [[55.340575, -2.356553], [55.340502, -2.356658]], [[55.340336, -2.356857], [55.340246, -2.356936]], [[55.340246, -2.356936], [55.340162, -2.356993]], [[55.340086, -2.35708], [55.340002, -2.357172]], [[55.340002, -2.357172], [55.339927, -2.357292]], [[55.339927, -2.357292], [55.339853, -2.357413]], [[55.339853, -2.357413], [55.339783, -2.357515]], [[55.339783, -2.357515], [55.339699, -2.35761]], [[55.339699, -2.35761], [55.339608, -2.357674]], [[55.339417, -2.357644], [55.339327, -2.35771]], [[55.339327, -2.35771], [55.339284, -2.357871]], [[55.339284, -2.357871], [55.339217, -2.357988]], [[55.339217, -2.357988], [55.339151, -2.358121]], [[55.339151, -2.358121], [55.339101, -2.358261]], [[55.339101, -2.358261], [55.339034, -2.358395]], [[55.339034, -2.358395], [55.338936, -2.358448]], [[55.338936, -2.358448], [55.338841, -2.358458]], [[55.337243, -2.358407], [55.337152, -2.358366]], [[55.337152, -2.358366], [55.337064, -2.358326]], [[55.336595, -2.358101], [55.336511, -2.358018]], [[55.336511, -2.358018], [55.336419, -2.357962]], [[55.336419, -2.357962], [55.336334, -2.357907]], [[55.336247, -2.357854], [55.336162, -2.357788]], [[55.336162, -2.357788], [55.336076, -2.357731]], [[55.335457, -2.357323], [55.335376, -2.357427]], [[55.335376, -2.357427], [55.335285, -2.357491]], [[55.335285, -2.357491], [55.335183, -2.357526]], [[55.335183, -2.357526], [55.335089, -2.357542]], [[55.335089, -2.357542], [55.334988, -2.357557]], [[55.334988, -2.357557], [55.334894, -2.357558]], [[55.334894, -2.357558], [55.3348, -2.357563]], [[55.332205, -2.357599], [55.33212, -2.357523]], [[55.33212, -2.357523], [55.332033, -2.357472]], [[55.332033, -2.357472], [55.331941, -2.357477]], [[55.331941, -2.357477], [55.331846, -2.357485]], [[55.331846, -2.357485], [55.331748, -2.357495]], [[55.331748, -2.357495], [55.331648, -2.357516]], [[55.331648, -2.357516], [55.331554, -2.357488]], [[55.331554, -2.357488], [55.331464, -2.357427]], [[55.33081, -2.357423], [55.330718, -2.357435]], [[55.330531, -2.357524], [55.330442, -2.35757]], [[55.329232, -2.358037], [55.329142, -2.358068]], [[55.326761, -2.358519], [55.326667, -2.358491]], [[55.326667, -2.358491], [55.326568, -2.358456]], [[55.326568, -2.358456], [55.326478, -2.358407]], [[55.325116, -2.358063], [55.325017, -2.358041]], [[55.321539, -2.361242], [55.3216, -2.361361]], [[55.3216, -2.361361], [55.321665, -2.361483]], [[55.321665, -2.361483], [55.321736, -2.361605]], [[55.321875, -2.36183], [55.321938, -2.361944]], [[55.322333, -2.363011], [55.322385, -2.363151]], [[55.322385, -2.363151], [55.322434, -2.363294]], [[55.322636, -2.364072], [55.322539, -2.364065]], [[55.322539, -2.364065], [55.32244, -2.364026]], [[55.322263, -2.363946], [55.322165, -2.363898]], [[55.322165, -2.363898], [55.322072, -2.363849]], [[55.322072, -2.363849], [55.321976, -2.363804]], [[55.321976, -2.363804], [55.321879, -2.363775]], [[55.321879, -2.363775], [55.321786, -2.363756]], [[55.321595, -2.363715], [55.321502, -2.363702]], [[55.321502, -2.363702], [55.321408, -2.363683]], [[55.321408, -2.363683], [55.321311, -2.363665]], [[55.321311, -2.363665], [55.321217, -2.363634]], [[55.321026, -2.363572], [55.320935, -2.363539]], [[55.320935, -2.363539], [55.320843, -2.363499]], [[55.320843, -2.363499], [55.320749, -2.36346]], [[55.320749, -2.36346], [55.320652, -2.363415]], [[55.320652, -2.363415], [55.320563, -2.363381]], [[55.320563, -2.363381], [55.32047, -2.363344]], [[55.32047, -2.363344], [55.320382, -2.363298]], [[55.320295, -2.363256], [55.32021, -2.363206]], [[55.32021, -2.363206], [55.320115, -2.363164]], [[55.320115, -2.363164], [55.320014, -2.363131]], [[55.319826, -2.363057], [55.319735, -2.362978]], [[55.319735, -2.362978], [55.319672, -2.362864]], [[55.319672, -2.362864], [55.319605, -2.36273]], [[55.319605, -2.36273], [55.319541, -2.362604]], [[55.319486, -2.362461], [55.319422, -2.362343]], [[55.319053, -2.362454], [55.318977, -2.362572]], [[55.318905, -2.362674], [55.318833, -2.362781]], [[55.318028, -2.363588], [55.317957, -2.363709]], [[55.31695, -2.366317], [55.316945, -2.36649]], [[55.316945, -2.36649], [55.31697, -2.366665]], [[55.31697, -2.366665], [55.31703, -2.366801]], [[55.31703, -2.366801], [55.317088, -2.366926]], [[55.317088, -2.366926], [55.317148, -2.36707]], [[55.317148, -2.36707], [55.317188, -2.367219]], [[55.317188, -2.367219], [55.31724, -2.367363]], [[55.317406, -2.367807], [55.317448, -2.367949]], [[55.3175, -2.368096], [55.317551, -2.368241]], [[55.317609, -2.368669], [55.317667, -2.368792]], [[55.317674, -2.372604], [55.317583, -2.372686]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_8211de2d0a538247d6e99490f22c8241 = L.polyline(
                [[[55.434963, -2.214694], [55.434932, -2.214834]], [[55.434932, -2.214834], [55.434884, -2.214987]], [[55.434637, -2.215918], [55.434588, -2.216052]], [[55.434588, -2.216052], [55.434562, -2.216206]], [[55.434263, -2.21723], [55.434202, -2.217346]], [[55.433811, -2.218677], [55.433774, -2.218825]], [[55.433774, -2.218825], [55.433728, -2.218976]], [[55.433728, -2.218976], [55.433681, -2.219115]], [[55.433681, -2.219115], [55.433636, -2.219258]], [[55.433636, -2.219258], [55.433598, -2.219409]], [[55.43353, -2.21986], [55.43349, -2.220014]], [[55.43349, -2.220014], [55.433442, -2.220156]], [[55.433442, -2.220156], [55.433402, -2.220306]], [[55.433402, -2.220306], [55.433359, -2.220462]], [[55.433359, -2.220462], [55.433318, -2.22061]], [[55.433318, -2.22061], [55.433267, -2.220751]], [[55.433267, -2.220751], [55.433193, -2.220873]], [[55.432618, -2.221681], [55.432552, -2.221795]], [[55.432552, -2.221795], [55.432477, -2.221891]], [[55.430289, -2.227382], [55.430243, -2.227528]], [[55.430197, -2.227672], [55.430191, -2.227835]], [[55.430191, -2.227835], [55.430142, -2.227982]], [[55.430142, -2.227982], [55.430105, -2.228138]], [[55.430001, -2.228617], [55.42996, -2.228764]], [[55.429895, -2.228899], [55.429857, -2.229053]], [[55.429857, -2.229053], [55.429817, -2.229211]], [[55.429785, -2.229365], [55.429779, -2.229528]], [[55.429955, -2.229708], [55.43005, -2.229757]], [[55.430589, -2.229982], [55.430667, -2.230046]], [[55.430744, -2.235904], [55.430801, -2.236054]], [[55.431065, -2.237338], [55.431089, -2.23742]], [[55.431777, -2.241454], [55.431802, -2.241612]], [[55.431802, -2.241612], [55.431819, -2.241772]], [[55.431819, -2.241772], [55.431839, -2.241931]], [[55.431839, -2.241931], [55.431857, -2.242089]], [[55.431857, -2.242089], [55.431879, -2.242248]], [[55.431951, -2.246955], [55.43196, -2.247065]], [[55.431968, -2.247229], [55.431981, -2.247398]], [[55.431035, -2.252869], [55.431004, -2.253034]], [[55.431074, -2.255034], [55.4311, -2.255195]], [[55.4311, -2.255195], [55.431137, -2.255349]], [[55.431137, -2.255349], [55.431159, -2.255503]], [[55.431159, -2.255503], [55.431149, -2.255666]], [[55.431116, -2.256009], [55.43118, -2.256131]], [[55.43118, -2.256131], [55.431215, -2.25628]], [[55.431215, -2.25628], [55.431291, -2.256387]], [[55.431291, -2.256387], [55.431378, -2.256445]], [[55.431199, -2.256775], [55.43111, -2.256736]], [[55.43111, -2.256736], [55.431015, -2.256747]], [[55.431015, -2.256747], [55.431005, -2.25692]], [[55.430989, -2.257436], [55.430959, -2.257598]], [[55.430959, -2.257598], [55.430949, -2.257767]], [[55.430949, -2.257767], [55.430933, -2.257936]], [[55.430933, -2.257936], [55.43091, -2.258097]], [[55.429341, -2.261076], [55.429277, -2.261149]], [[55.429129, -2.26138], [55.429057, -2.261481]], [[55.429057, -2.261481], [55.428991, -2.261604]], [[55.428991, -2.261604], [55.428922, -2.261722]], [[55.428922, -2.261722], [55.428841, -2.26182]], [[55.428841, -2.26182], [55.428769, -2.261918]], [[55.428606, -2.262099], [55.428534, -2.262206]], [[55.42851, -2.262647], [55.428506, -2.262814]], [[55.428504, -2.263468], [55.42853, -2.26362]], [[55.42853, -2.26362], [55.428532, -2.263782]], [[55.428532, -2.263782], [55.428545, -2.26394]], [[55.428545, -2.26394], [55.428564, -2.264111]], [[55.428564, -2.264111], [55.428586, -2.26428]], [[55.429139, -2.267308], [55.429133, -2.267478]], [[55.429127, -2.269628], [55.4291, -2.269783]], [[55.429097, -2.269943], [55.429109, -2.2701]], [[55.429093, -2.27061], [55.429064, -2.270773]], [[55.429064, -2.270773], [55.429025, -2.270927]], [[55.429025, -2.270927], [55.428981, -2.271077]], [[55.428981, -2.271077], [55.428932, -2.271212]], [[55.428932, -2.271212], [55.42888, -2.271342]], [[55.42888, -2.271342], [55.428832, -2.271486]], [[55.428832, -2.271486], [55.428792, -2.271638]], [[55.428792, -2.271638], [55.428752, -2.271788]], [[55.42856, -2.27223], [55.42847, -2.272308]], [[55.427282, -2.2733], [55.427232, -2.273432]], [[55.427232, -2.273432], [55.427179, -2.273509]], [[55.427179, -2.273509], [55.427099, -2.27359]], [[55.427099, -2.27359], [55.427011, -2.273636]], [[55.427011, -2.273636], [55.426924, -2.273682]], [[55.426304, -2.278242], [55.426306, -2.278403]], [[55.426278, -2.278906], [55.42624, -2.279066]], [[55.426068, -2.27984], [55.426017, -2.279983]], [[55.425727, -2.280837], [55.425685, -2.280991]], [[55.425596, -2.281277], [55.425529, -2.281395]], [[55.425529, -2.281395], [55.425454, -2.281509]], [[55.425454, -2.281509], [55.425366, -2.281582]], [[55.425366, -2.281582], [55.425295, -2.281704]], [[55.425295, -2.281704], [55.425223, -2.281802]], [[55.425223, -2.281802], [55.425135, -2.281856]], [[55.425135, -2.281856], [55.425062, -2.281954]], [[55.425062, -2.281954], [55.424989, -2.282065]], [[55.424989, -2.282065], [55.424909, -2.282163]], [[55.424909, -2.282163], [55.424827, -2.282237]], [[55.424827, -2.282237], [55.424752, -2.282326]], [[55.424752, -2.282326], [55.424668, -2.282385]], [[55.424668, -2.282385], [55.424575, -2.282402]], [[55.424575, -2.282402], [55.424491, -2.282462]], [[55.424491, -2.282462], [55.424403, -2.282533]], [[55.424403, -2.282533], [55.424315, -2.282616]], [[55.424315, -2.282616], [55.424233, -2.282692]], [[55.424233, -2.282692], [55.424147, -2.282762]], [[55.424147, -2.282762], [55.424052, -2.282807]], [[55.424052, -2.282807], [55.423969, -2.282872]], [[55.423969, -2.282872], [55.423898, -2.282975]], [[55.423634, -2.283281], [55.423547, -2.283346]], [[55.423547, -2.283346], [55.42347, -2.283432]], [[55.421409, -2.29014], [55.421366, -2.290296]], [[55.421137, -2.291056], [55.421111, -2.29118]], [[55.421111, -2.29118], [55.421076, -2.291347]], [[55.415162, -2.295187], [55.415107, -2.295324]], [[55.415107, -2.295324], [55.415051, -2.295454]], [[55.413877, -2.298637], [55.413827, -2.298777]], [[55.413827, -2.298777], [55.413794, -2.298942]], [[55.413452, -2.300484], [55.413455, -2.300642]], [[55.413358, -2.301278], [55.413307, -2.301415]], [[55.413307, -2.301415], [55.413255, -2.30155]], [[55.412762, -2.302748], [55.412717, -2.302891]], [[55.412717, -2.302891], [55.412684, -2.303048]], [[55.410756, -2.307911], [55.41073, -2.307972]], [[55.409908, -2.310426], [55.40988, -2.310577]], [[55.408556, -2.311547], [55.408462, -2.311602]], [[55.408462, -2.311602], [55.40837, -2.311658]], [[55.406672, -2.320496], [55.406726, -2.320633]], [[55.406738, -2.320802], [55.406729, -2.320972]], [[55.406729, -2.320972], [55.406725, -2.321132]], [[55.406725, -2.321132], [55.406652, -2.32124]], [[55.406652, -2.32124], [55.406606, -2.321379]], [[55.406606, -2.321379], [55.406587, -2.321552]], [[55.406587, -2.321552], [55.406619, -2.321702]], [[55.406619, -2.321702], [55.406641, -2.321867]], [[55.406641, -2.321867], [55.406655, -2.322026]], [[55.406655, -2.322026], [55.40664, -2.322185]], [[55.40664, -2.322185], [55.406604, -2.32234]], [[55.405072, -2.32632], [55.405009, -2.326455]], [[55.404433, -2.327039], [55.404347, -2.327127]], [[55.404347, -2.327127], [55.404259, -2.327168]], [[55.404259, -2.327168], [55.404167, -2.327209]], [[55.403352, -2.32804], [55.403304, -2.328141]], [[55.40307, -2.328859], [55.403082, -2.329032]], [[55.403082, -2.329032], [55.403074, -2.3292]], [[55.403074, -2.3292], [55.403016, -2.329341]], [[55.402959, -2.329483], [55.402914, -2.32963]], [[55.402758, -2.32968], [55.40271, -2.329825]], [[55.40271, -2.329825], [55.402627, -2.329916]], [[55.402627, -2.329916], [55.402568, -2.330036]], [[55.402568, -2.330036], [55.402492, -2.33013]], [[55.402492, -2.33013], [55.402427, -2.330243]], [[55.402427, -2.330243], [55.402355, -2.330358]], [[55.400748, -2.333393], [55.400664, -2.33348]], [[55.399913, -2.334096], [55.399841, -2.334213]], [[55.399274, -2.335081], [55.399191, -2.335015]], [[55.39904, -2.335219], [55.398963, -2.335327]], [[55.398963, -2.335327], [55.3989, -2.335462]], [[55.398545, -2.335862], [55.398452, -2.335876]], [[55.398452, -2.335876], [55.398371, -2.3358]], [[55.398281, -2.335818], [55.398188, -2.33584]], [[55.398188, -2.33584], [55.398113, -2.335915]], [[55.398113, -2.335915], [55.398019, -2.335968]], [[55.397494, -2.336213], [55.397403, -2.336189]], [[55.397403, -2.336189], [55.397321, -2.336264]], [[55.397321, -2.336264], [55.397231, -2.336284]], [[55.397231, -2.336284], [55.397137, -2.33629]], [[55.396846, -2.336279], [55.396753, -2.336296]], [[55.396002, -2.336153], [55.395904, -2.336132]], [[55.395904, -2.336132], [55.395813, -2.336175]], [[55.394582, -2.335999], [55.394492, -2.335979]], [[55.394492, -2.335979], [55.394398, -2.335915]], [[55.394398, -2.335915], [55.394305, -2.335874]], [[55.394305, -2.335874], [55.394214, -2.335853]], [[55.394214, -2.335853], [55.394121, -2.335845]], [[55.394121, -2.335845], [55.394025, -2.335831]], [[55.394025, -2.335831], [55.39393, -2.335819]], [[55.39393, -2.335819], [55.393833, -2.335805]], [[55.393343, -2.335808], [55.393246, -2.335807]], [[55.393062, -2.335746], [55.392965, -2.335764]], [[55.39221, -2.335721], [55.392112, -2.335694]], [[55.391532, -2.335734], [55.391445, -2.335735]], [[55.389973, -2.335183], [55.389877, -2.335228]], [[55.389251, -2.335134], [55.389167, -2.335058]], [[55.389167, -2.335058], [55.389076, -2.335113]], [[55.3865, -2.334278], [55.386416, -2.334212]], [[55.383383, -2.33299], [55.38329, -2.332949]], [[55.380919, -2.331942], [55.38083, -2.331898]], [[55.38083, -2.331898], [55.380739, -2.331879]], [[55.380562, -2.331826], [55.380467, -2.331813]], [[55.379962, -2.331919], [55.379876, -2.332013]], [[55.379876, -2.332013], [55.379795, -2.332075]], [[55.379566, -2.331973], [55.379474, -2.33191]], [[55.379474, -2.33191], [55.379376, -2.331869]], [[55.379376, -2.331869], [55.37928, -2.331857]], [[55.377293, -2.332544], [55.377201, -2.332535]], [[55.376537, -2.332862], [55.376455, -2.332949]], [[55.374842, -2.334357], [55.374766, -2.334446]], [[55.373268, -2.336751], [55.373241, -2.336913]], [[55.373241, -2.336913], [55.373205, -2.337061]], [[55.373205, -2.337061], [55.373143, -2.337194]], [[55.372933, -2.337096], [55.372841, -2.337088]], [[55.372841, -2.337088], [55.372747, -2.337084]], [[55.372747, -2.337084], [55.372657, -2.33711]], [[55.372345, -2.336834], [55.372275, -2.33672]], [[55.372275, -2.33672], [55.372203, -2.3366]], [[55.370767, -2.333954], [55.37076, -2.333786]], [[55.370717, -2.333456], [55.370691, -2.333286]], [[55.368946, -2.329918], [55.368899, -2.329818]], [[55.368899, -2.329818], [55.368812, -2.329892]], [[55.367632, -2.337705], [55.367578, -2.337835]], [[55.367578, -2.337835], [55.36752, -2.337958]], [[55.36752, -2.337958], [55.367489, -2.338116]], [[55.367489, -2.338116], [55.367493, -2.338283]], [[55.367527, -2.339358], [55.36758, -2.339491]], [[55.367446, -2.340987], [55.367461, -2.341146]], [[55.367461, -2.341146], [55.367457, -2.34131]], [[55.367457, -2.34131], [55.36746, -2.341472]], [[55.36746, -2.341472], [55.367481, -2.341555]], [[55.366977, -2.343393], [55.366581, -2.345688]], [[55.366836, -2.34647], [55.366862, -2.346536]], [[55.364034, -2.35474], [55.363935, -2.354784]], [[55.363475, -2.354697], [55.363384, -2.354734]], [[55.363384, -2.354734], [55.363287, -2.354739]], [[55.363287, -2.354739], [55.36319, -2.354754]], [[55.36319, -2.354754], [55.363094, -2.354768]], [[55.36262, -2.354941], [55.36254, -2.354882]], [[55.36211, -2.354741], [55.362019, -2.354751]], [[55.362019, -2.354751], [55.36193, -2.354723]], [[55.361382, -2.354682], [55.361284, -2.354667]], [[55.361014, -2.354512], [55.360919, -2.354457]], [[55.360919, -2.354457], [55.360821, -2.354454]], [[55.360821, -2.354454], [55.36073, -2.354479]], [[55.36073, -2.354479], [55.360639, -2.354497]], [[55.360639, -2.354497], [55.360548, -2.354474]], [[55.360341, -2.35419], [55.360249, -2.354174]], [[55.360249, -2.354174], [55.360164, -2.3541]], [[55.360164, -2.3541], [55.360084, -2.354019]], [[55.360084, -2.354019], [55.360001, -2.353923]], [[55.360001, -2.353923], [55.359909, -2.353878]], [[55.359909, -2.353878], [55.359817, -2.353845]], [[55.359817, -2.353845], [55.359745, -2.353958]], [[55.359497, -2.353535], [55.359412, -2.353447]], [[55.359412, -2.353447], [55.359331, -2.353364]], [[55.359331, -2.353364], [55.359249, -2.353299]], [[55.358736, -2.352995], [55.358659, -2.352895]], [[55.358659, -2.352895], [55.358564, -2.352905]], [[55.358475, -2.35286], [55.358383, -2.352822]], [[55.358383, -2.352822], [55.358292, -2.352849]], [[55.358292, -2.352849], [55.3582, -2.35287]], [[55.3582, -2.35287], [55.358112, -2.352841]], [[55.357734, -2.352981], [55.357637, -2.352985]], [[55.357637, -2.352985], [55.357539, -2.352956]], [[55.357272, -2.352819], [55.357199, -2.352911]], [[55.356761, -2.353157], [55.356667, -2.353155]], [[55.356667, -2.353155], [55.35658, -2.353196]], [[55.35658, -2.353196], [55.356498, -2.353269]], [[55.356498, -2.353269], [55.356405, -2.353289]], [[55.356405, -2.353289], [55.356308, -2.353309]], [[55.356308, -2.353309], [55.35621, -2.353323]], [[55.35621, -2.353323], [55.356113, -2.353335]], [[55.356113, -2.353335], [55.356026, -2.353398]], [[55.355261, -2.352811], [55.35518, -2.352803]], [[55.35518, -2.352803], [55.35509, -2.352805]], [[55.353747, -2.351883], [55.353776, -2.351972]], [[55.353695, -2.351901], [55.353633, -2.351785]], [[55.350853, -2.349915], [55.350796, -2.34979]], [[55.350796, -2.34979], [55.350703, -2.349754]], [[55.350452, -2.349651], [55.350385, -2.34953]], [[55.350385, -2.34953], [55.350312, -2.349438]], [[55.350137, -2.349288], [55.350073, -2.349173]], [[55.350073, -2.349173], [55.349998, -2.349081]], [[55.349998, -2.349081], [55.34992, -2.348984]], [[55.349456, -2.34841], [55.349433, -2.348277]], [[55.347324, -2.350061], [55.347249, -2.350152]], [[55.343815, -2.351556], [55.343725, -2.351599]], [[55.343725, -2.351599], [55.343628, -2.35161]], [[55.343628, -2.35161], [55.34353, -2.351618]], [[55.34353, -2.351618], [55.343443, -2.351577]], [[55.343443, -2.351577], [55.343344, -2.351591]], [[55.343157, -2.351613], [55.343081, -2.351705]], [[55.342781, -2.352031], [55.342682, -2.352026]], [[55.342682, -2.352026], [55.342618, -2.352148]], [[55.342005, -2.353419], [55.341952, -2.353554]], [[55.341952, -2.353554], [55.341901, -2.353693]], [[55.341757, -2.353917], [55.341735, -2.353973]], [[55.341672, -2.354102], [55.341597, -2.35422]], [[55.33368, -2.358131], [55.333595, -2.358065]], [[55.333595, -2.358065], [55.333508, -2.358131]], [[55.333508, -2.358131], [55.333415, -2.358143]], [[55.33315, -2.358056], [55.333083, -2.357944]], [[55.332836, -2.357823], [55.332744, -2.357798]], [[55.331369, -2.357403], [55.331279, -2.35744]], [[55.331279, -2.35744], [55.331186, -2.357458]], [[55.329992, -2.357858], [55.329893, -2.35789]], [[55.329893, -2.35789], [55.329796, -2.357918]], [[55.327379, -2.358389], [55.327296, -2.358465]], [[55.327296, -2.358465], [55.327206, -2.358513]], [[55.327206, -2.358513], [55.327109, -2.358522]], [[55.327014, -2.358532], [55.326918, -2.358566]], [[55.326855, -2.35853], [55.326761, -2.358519]], [[55.325592, -2.358197], [55.3255, -2.358177]], [[55.3255, -2.358177], [55.325398, -2.358153]], [[55.324539, -2.35795], [55.324452, -2.357911]], [[55.324362, -2.357905], [55.324274, -2.357837]], [[55.324188, -2.357772], [55.32409, -2.357782]], [[55.32409, -2.357782], [55.323999, -2.357731]], [[55.323999, -2.357731], [55.323912, -2.35769]], [[55.32345, -2.357491], [55.323352, -2.357469]], [[55.323352, -2.357469], [55.323259, -2.357418]], [[55.323091, -2.357246], [55.323017, -2.357342]], [[55.32181, -2.36171], [55.321875, -2.36183]], [[55.322108, -2.362377], [55.322135, -2.362448]], [[55.322621, -2.363689], [55.322676, -2.363817]], [[55.322676, -2.363817], [55.322714, -2.363972]], [[55.31935, -2.362222], [55.319263, -2.362257]], [[55.317874, -2.363782], [55.317801, -2.363891]], [[55.317801, -2.363891], [55.31772, -2.363991]], [[55.31772, -2.363991], [55.317636, -2.364081]], [[55.317636, -2.364081], [55.317578, -2.364212]], [[55.317578, -2.364212], [55.317493, -2.364296]], [[55.317493, -2.364296], [55.31742, -2.364399]], [[55.31742, -2.364399], [55.317342, -2.364491]], [[55.317276, -2.365206], [55.317189, -2.365275]], [[55.316576, -2.365032], [55.316516, -2.364929]], [[55.316546, -2.36519], [55.316598, -2.36532]], [[55.316746, -2.365761], [55.316787, -2.365902]], [[55.316787, -2.365902], [55.316836, -2.366042]], [[55.316836, -2.366042], [55.316889, -2.36619]], [[55.3173, -2.367505], [55.317351, -2.367651]], [[55.317615, -2.368362], [55.317643, -2.368519]], [[55.31832, -2.371639], [55.318293, -2.371803]], [[55.318293, -2.371803], [55.318271, -2.37196]], [[55.31825, -2.372128], [55.318226, -2.37228]], [[55.318076, -2.372887], [55.318028, -2.37303]], [[55.318156, -2.372625], [55.318063, -2.372596]], [[55.318063, -2.372596], [55.317968, -2.372607]], [[55.317467, -2.372942], [55.317417, -2.373089]], [[55.317607, -2.373835], [55.31767, -2.373961]], [[55.31767, -2.373961], [55.317738, -2.37408]], [[55.318339, -2.373115], [55.318259, -2.373041]], [[55.318259, -2.373041], [55.318162, -2.373023]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_9433336d337414d44a5cdb52669d6c30 = L.polyline(
                [[[55.432428, -2.22192], [55.432352, -2.222014]], [[55.429786, -2.229554], [55.429866, -2.22966]], [[55.430746, -2.235741], [55.430744, -2.235904]], [[55.423731, -2.283079], [55.423652, -2.28299]], [[55.423652, -2.28299], [55.423651, -2.282986]], [[55.423651, -2.282986], [55.423683, -2.283145]], [[55.420282, -2.29391], [55.420186, -2.293932]], [[55.412272, -2.304318], [55.412203, -2.304439]], [[55.406685, -2.313494], [55.406671, -2.313663]], [[55.388816, -2.335173], [55.388726, -2.335153]], [[55.387713, -2.334639], [55.387612, -2.334643]], [[55.373102, -2.337219], [55.373021, -2.337142]], [[55.371708, -2.335909], [55.371648, -2.335777]], [[55.364131, -2.354795], [55.364034, -2.35474]], [[55.362462, -2.354962], [55.362436, -2.354921]], [[55.359742, -2.353976], [55.359736, -2.353813]], [[55.353776, -2.351972], [55.353695, -2.351901]], [[55.326155, -2.35829], [55.326061, -2.358301]], [[55.322887, -2.357794], [55.322811, -2.357886]], [[55.322811, -2.357886], [55.322768, -2.357918]], [[55.322768, -2.357918], [55.322684, -2.357982]], [[55.322353, -2.358555], [55.322264, -2.358622]], [[55.316482, -2.365078], [55.316483, -2.365071]], [[55.318376, -2.37132], [55.318349, -2.371477]], [[55.318205, -2.372325], [55.318193, -2.372482]], [[55.317338, -2.373332], [55.317371, -2.373403]], [[55.317371, -2.373403], [55.31744, -2.37352]], [[55.318074, -2.372964], [55.317988, -2.372902]], [[55.317988, -2.372902], [55.317985, -2.372885]], [[55.317985, -2.372885], [55.317951, -2.372935]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_1cc2af447d7bbb46eb842c1ef6a4000c = L.polyline(
                [[[55.429779, -2.229528], [55.429786, -2.229554]], [[55.430667, -2.230046], [55.430577, -2.230044]], [[55.430577, -2.230044], [55.430496, -2.23013]], [[55.431089, -2.23742], [55.431118, -2.237572]], [[55.43196, -2.247065], [55.431968, -2.247229]], [[55.431069, -2.252717], [55.431035, -2.252869]], [[55.431462, -2.256477], [55.431404, -2.256599]], [[55.431404, -2.256599], [55.431345, -2.256702]], [[55.428504, -2.262309], [55.428487, -2.262477]], [[55.428637, -2.272122], [55.42856, -2.27223]], [[55.426096, -2.27967], [55.426068, -2.27984]], [[55.423846, -2.283053], [55.423754, -2.283086]], [[55.423754, -2.283086], [55.423731, -2.283079]], [[55.420186, -2.293932], [55.42009, -2.29389]], [[55.413455, -2.300642], [55.41347, -2.300645]], [[55.41347, -2.300645], [55.413417, -2.300775]], [[55.41227, -2.304319], [55.412272, -2.304318]], [[55.409833, -2.31069], [55.409744, -2.310751]], [[55.403552, -2.327682], [55.40349, -2.327801]], [[55.403304, -2.328141], [55.403249, -2.328282]], [[55.400374, -2.334032], [55.400277, -2.334052]], [[55.391445, -2.335735], [55.391351, -2.335743]], [[55.380739, -2.331879], [55.380732, -2.331896]], [[55.380054, -2.3319], [55.379962, -2.331919]], [[55.379795, -2.332075], [55.379712, -2.332148]], [[55.379712, -2.332148], [55.37964, -2.332068]], [[55.376594, -2.332736], [55.376537, -2.332862]], [[55.373021, -2.337142], [55.372933, -2.337096]], [[55.370822, -2.334088], [55.370767, -2.333954]], [[55.3641, -2.354866], [55.364131, -2.354795]], [[55.36254, -2.354882], [55.362462, -2.354962]], [[55.359745, -2.353958], [55.359742, -2.353976]], [[55.359736, -2.353813], [55.359661, -2.353719]], [[55.349433, -2.348277], [55.349335, -2.348322]], [[55.343011, -2.351748], [55.342944, -2.351865]], [[55.342944, -2.351865], [55.342873, -2.351963]], [[55.341735, -2.353973], [55.341672, -2.354102]], [[55.332929, -2.357873], [55.332836, -2.357823]], [[55.322684, -2.357982], [55.322649, -2.35806]], [[55.322649, -2.35806], [55.322645, -2.358233]], [[55.322645, -2.358233], [55.322596, -2.358374]], [[55.322355, -2.358561], [55.322353, -2.358555]], [[55.322264, -2.358622], [55.322186, -2.35871]], [[55.321447, -2.359631], [55.321413, -2.359782]], [[55.321217, -2.360006], [55.321229, -2.360173]], [[55.319263, -2.362257], [55.319178, -2.362307]], [[55.319178, -2.362307], [55.319137, -2.362357]], [[55.318701, -2.362883], [55.318624, -2.362985]], [[55.318286, -2.363364], [55.318203, -2.363459]], [[55.316516, -2.364929], [55.316482, -2.365078]], [[55.316483, -2.365071], [55.316546, -2.36519]], [[55.318193, -2.372482], [55.318179, -2.372612]], [[55.318179, -2.372612], [55.31812, -2.372747]], [[55.317987, -2.373162], [55.318043, -2.373031]], [[55.318043, -2.373031], [55.318087, -2.372935]], [[55.318087, -2.372935], [55.318109, -2.372768]], [[55.317373, -2.373175], [55.317338, -2.373332]], [[55.31744, -2.37352], [55.317466, -2.373612]], [[55.317466, -2.373612], [55.31754, -2.373716]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_bd0e3c563aa8d718687ca7f4221e2b76 = L.polyline(
                [[[55.430415, -2.233792], [55.430448, -2.23396]], [[55.369357, -2.330638], [55.369274, -2.330526]], [[55.369204, -2.33042], [55.369135, -2.330299]], [[55.368393, -2.331362], [55.368378, -2.331544]], [[55.368378, -2.331544], [55.368378, -2.331724]], [[55.363935, -2.354784], [55.363842, -2.354696]], [[55.354824, -2.352586], [55.354733, -2.352514]], [[55.353633, -2.351785], [55.353539, -2.351746]], [[55.34823, -2.349235], [55.34815, -2.349343]], [[55.318127, -2.363549], [55.318028, -2.363588]], [[55.317448, -2.367949], [55.3175, -2.368096]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_a9f5060cd7e012ae8cfa09fdd693efe4 = L.polyline(
                [[[55.366581, -2.345688], [55.36673, -2.345857]], [[55.36673, -2.345857], [55.366715, -2.346016]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5d00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff5d00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_88c688dc5e651a0134b11b05a0f9821c = L.polyline(
                [[[55.362363, -2.354806], [55.362294, -2.354705]], [[55.34815, -2.349343], [55.348071, -2.349419]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff8b00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            var poly_line_6229cbad1653723fc747c3bbca879090 = L.polyline(
                [[[55.362294, -2.354705], [55.362204, -2.354757]], [[55.348071, -2.349419], [55.347984, -2.349473]], [[55.318977, -2.362572], [55.318905, -2.362674]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_0c9772ec42c03b8355fb9bfac1212d9b);
        
    
            color_line_0c9772ec42c03b8355fb9bfac1212d9b.addTo(map_81188824c2fa6a22d9064a8573e666cc);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-3---bryness-to-hadrians-wall" class="level3">
<h3 class="anchored" data-anchor-id="day-3---bryness-to-hadrians-wall">Day 3 - Bryness to Hadrians Wall</h3>
<p>Slept well but woke early again around 05:00 despite there not being any wind or rain. I didn’t hang about too long, took another shower and was packed and off by 06:50. Ducked into <a href="https://www.openstreetmap.org/way/93940719" target="_blank">St Francis’ Church</a> and chatted to a guy who had spent the night in there. He was hiking around <a href="https://www.visitkielder.com/" target="_blank">Kielder Forest</a> stopping wherever he fancied.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957121951_ef6a5625cc_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qd1mw4" target="_blank">St Francis’ Church, Bryness</a></figcaption>
</figure>
</div>
<p>Wishing him a good time I got back on track and The Way then followed good solid forestry trails through pine forests for about 15-16km before breaking out onto moorland which I reached in about three hours.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957371473_a39ead7a13_3k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qd2CGa" target="_blank">Forest Giants</a></figcaption>
</figure>
</div>
<p>The moorland wasn’t too bad, mainly as it was mostly paved so the few boggy bits weren’t a problem. I stepped over what I thought were some carnivorous plants but was in too much of a hurry to go back and photograph them to check which I regret now as I didn’t see any more.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53929289787_dfb9e48d2d_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaxGZa" target="_blank">Sturdy Post</a></figcaption>
</figure>
</div>
<p>Didn’t pass many people until I was near Bellingham, this was to become something of a theme due to my early starts, but met a few people heading North along The Way. One guy complemented me on how fast I had been coming down the hill (the angle helped!) and a very jolly Welsh lady wanted to snap a picture with me to add to her collection she was posting to Farcebook. There was another solo hiker who had come all the way from Edale who looked fit and happy.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957371403_022b38f726_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qd2CEX" target="_blank">Coming or Going</a></figcaption>
</figure>
</div>
<p>I reached Bellingham around 13:30 having covered 26km in just over five hours and opted for pizza and beer at <a href="https://curioustaverns.uk/home/the-cheviot-bellingham" target="_blank">The Cheviot Hotel</a> which was delicious and grabbed some beers for later in the day before setting off on The Way again.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930642210_fc4eed9643_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaED1N" target="_blank">Lunchtime Beer in Bellingham</a></figcaption>
</figure>
</div>
<p>I felt good and noticed I’d had a voice in my head telling me to “<em>engage the core powerhouse</em>”, “<em>activate the glutes when stepping forward</em>” and “<em>keep the shoulders back and stomach in</em>” which was Sam Webster, my <a href="https://symmetrypilates.co.uk/" target="_blank">pilates instructor</a> common mantra during the classes I attend. This seemed like good advice as slouching and lolloping forward would only end in injury so I resolved to make sure I was walking up-right and fully engaging my body whilst walking for the rest of the hike. Listening to music for the first time since starting hiking I realised this also helped with the rhythm of walking as did focusing on my breathing (related to actively engaging core and body).</p>
<p>The hiking from Bellingham was fairly mundane, crossing agricultural land before entering another managed forest and following good tracks through these. Around 17:00 I started keeping an eye out for somewhere to camp, knowing that I wouldn’t make it to the next town I’d planned to stop at, Greenhead, as it was too far away. After leaving the forest The Way crossed some moorland and in a shallow valley and in the middle was a walled off area with a few trees. This looked ideal as the walls provided good shelter from the wind which was still hitting me head on from the South, but on reflection I decided not to stop here because if the wind dropped it would have been midge hell.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930540214_e65b88dc0c_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaE7Gf" target="_blank">Good Spot to Camp</a></figcaption>
</figure>
</div>
<p>I continued until I reached <a href="https://www.openstreetmap.org/#map=17/55.024025/-2.344809" target="_blank">Cragend by Greenlee Moss</a> which gave a brilliant view across the lake as the sun was setting. There was a convenient stone wall which provided shelter from the wind and after clearing some cow and sheep shit out of the way I set myself up for the night and set about rehydrating one of the meals I had with me.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930226971_da58bb7633_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaCvzv" target="_blank">Stone Wall for shelter</a></figcaption>
</figure>
</div>
<p>I’d not really given it much thought as they were <a href="https://www.youtube.com/watch?v=vh5kZ4uIUC0" target="_blank">small/far away</a> but the fact I’d had to clear the area of cow shit to pitch my tent should have rung a bell in my head. It hadn’t, but the loud snort of an approaching bell did so I grabbed my pouch of rehydrating food and put the wall between the bull and myself. It had wandered up with a couple of calves who started sniffing around my stove which I’d left out and I gently shooed them away from the safety of the wall. Fortunately the bull was taking more of an interest in a female the other side of the fence. After a stand-off of about five minutes they all lost interest in me (or perhaps the lack of food which I’d eaten) and wandered off which was my opportunity to quickly take the tent down and move onto a safer spot, recalling the devestation cows had wrecked on some neighbours tents whilst I was in Peru 2012.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930567389_f74bd6a69a_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaEfLM" target="_blank">Company</a></figcaption>
</figure>
</div>
<p>It was starting to get dark as I headed over to <a href="https://www.openstreetmap.org/#map=17/55.011858/-2.344015" target="_blank">Rapishaw Gap</a> on Hadrians Wall and heading towards Milking gap I started scoping for a flat place to pitch my tent, regretting not going up the other side of Rapishaw Gap where there looked like a nice sheltered spot, but I didn’t have to go far until I found a spot and re-pitched my tent. As I was finishing off I was startled by a guy passing by who said it looked like a nice spot to camp. He’d been out running but had lost track of time watching the sunset but didn’t have too far to go to get back.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53929321022_df58b11acb_3k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaxSgG" target="_blank">A night on Hadrians Wall</a></figcaption>
</figure>
</div>
<p>I was tired after around 50 km of hiking so crawled into the tent and fell asleep quickly.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-4-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-1" aria-controls="tabset-4-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-4-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-2" aria-controls="tabset-4-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-4-1" class="tab-pane active" aria-labelledby="tabset-4-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb7-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-16"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-5ee75908cb6cd3737398" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-5ee75908cb6cd3737398">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.373039,-2.372888,-2.372923,-2.372758,-2.37259,-2.372467,-2.372331,-2.37219,-2.372138,-2.37199,-2.371847,-2.371696,-2.371542,-2.371384,-2.371229,-2.371074,-2.37091,-2.370773,-2.370647,-2.3705,-2.370348,-2.370216,-2.370056,-2.369902,-2.369722,-2.369573,-2.369434,-2.36928,-2.369156,-2.369016,-2.368898,-2.368749,-2.368612,-2.368453,-2.36831,-2.368164,-2.368038,-2.367893,-2.367754,-2.367613,-2.367461,-2.367318,-2.367181,-2.36703,-2.366889,-2.366733,-2.366575,-2.366422,-2.366295,-2.366161,-2.36599,-2.365897,-2.36577,-2.365615,-2.36548,-2.36535,-2.365241,-2.365101,-2.36495,-2.364797,-2.364652,-2.364507,-2.364379,-2.364245,-2.364101,-2.363941,-2.363804,-2.363656,-2.363513,-2.363358,-2.36319,-2.363044,-2.362926,-2.362827,-2.362711,-2.362675,-2.362775,-2.362794,-2.362898,-2.363002,-2.363017,-2.363118,-2.363227,-2.363279,-2.363253,-2.363357,-2.363483,-2.363641,-2.363638,-2.363663,-2.36367,-2.363672,-2.363692,-2.36366,-2.363574,-2.363523,-2.363388,-2.36327,-2.36313,-2.362997,-2.362864,-2.362818,-2.362861,-2.362908,-2.362962,-2.363067,-2.363141,-2.363235,-2.363313,-2.363354,-2.363351,-2.3633,-2.36327,-2.363234,-2.363205,-2.363178,-2.363177,-2.363151,-2.36313,-2.363142,-2.363158,-2.363172,-2.363187,-2.363204,-2.363223,-2.363286,-2.363329,-2.363389,-2.36335,-2.36318,-2.363018,-2.362848,-2.362677,-2.362509,-2.36236,-2.362231,-2.362133,-2.362004,-2.361877,-2.36175,-2.361629,-2.361495,-2.361371,-2.361249,-2.361124,-2.361007,-2.360887,-2.36076,-2.360631,-2.360498,-2.36037,-2.360249,-2.360125,-2.360055,-2.359915,-2.359805,-2.3597,-2.359582,-2.359471,-2.359377,-2.359266,-2.359149,-2.359032,-2.358914,-2.3588,-2.358693,-2.358586,-2.358473,-2.358341,-2.358224,-2.358109,-2.35798,-2.357856,-2.357715,-2.357593,-2.357457,-2.357306,-2.357164,-2.357025,-2.356871,-2.356709,-2.356559,-2.356404,-2.35623,-2.356071,-2.355915,-2.35576,-2.355608,-2.355435,-2.35528,-2.355106,-2.354947,-2.354777,-2.354609,-2.354462,-2.354307,-2.354156,-2.353992,-2.353836,-2.353675,-2.353529,-2.353393,-2.353279,-2.353172,-2.35307,-2.352978,-2.352873,-2.35278,-2.352693,-2.352623,-2.352555,-2.352478,-2.352424,-2.352508,-2.352675,-2.352842,-2.353018,-2.353191,-2.35336,-2.353531,-2.353697,-2.35386,-2.354013,-2.354134,-2.35423,-2.35429,-2.35432,-2.354304,-2.354239,-2.354155,-2.354078,-2.354005,-2.35396,-2.353927,-2.353884,-2.353853,-2.35382,-2.353783,-2.353756,-2.353724,-2.353746,-2.353715,-2.353699,-2.353693,-2.353661,-2.353631,-2.353604,-2.353533,-2.35341,-2.353265,-2.353144,-2.353009,-2.35287,-2.352726,-2.352863,-2.352997,-2.353128,-2.353256,-2.353395,-2.353536,-2.353608,-2.353646,-2.353675,-2.353704,-2.353756,-2.353785,-2.353795,-2.353816,-2.353843,-2.35388,-2.353902,-2.353923,-2.35395,-2.353965,-2.354008,-2.354066,-2.354147,-2.354232,-2.354304,-2.354365,-2.354366,-2.354276,-2.354177,-2.354041,-2.353884,-2.353719,-2.353557,-2.353379,-2.35322,-2.353052,-2.352872,-2.352692,-2.352533,-2.352362,-2.352246,-2.35211,-2.351986,-2.351866,-2.35175,-2.351623,-2.351716,-2.351562,-2.35144,-2.351309,-2.351184,-2.351041,-2.350907,-2.350786,-2.350649,-2.35064,-2.350793,-2.350942,-2.351084,-2.351217,-2.351364,-2.351498,-2.351598,-2.351736,-2.351886,-2.352014,-2.352074,-2.352087,-2.352016,-2.351978,-2.351876,-2.351779,-2.351647,-2.351501,-2.351424,-2.351348,-2.35127,-2.351171,-2.351068,-2.350972,-2.350914,-2.350804,-2.350697,-2.350571,-2.350437,-2.350274,-2.350124,-2.349983,-2.349825,-2.349672,-2.349521,-2.349363,-2.349211,-2.349035,-2.348867,-2.348721,-2.348566,-2.348474,-2.348314,-2.348178,-2.348022,-2.347869,-2.347722,-2.347583,-2.347444,-2.347314,-2.347169,-2.34704,-2.346913,-2.346847,-2.346727,-2.346609,-2.34647,-2.346433,-2.346294,-2.34618,-2.346047,-2.345919,-2.345756,-2.345611,-2.345456,-2.345363,-2.345286,-2.345203,-2.345103,-2.345018,-2.344942,-2.344875,-2.344805,-2.344667,-2.344556,-2.344422,-2.34433,-2.344231,-2.34417,-2.344093,-2.343994,-2.343889,-2.343827,-2.343762,-2.343745,-2.343706,-2.343652,-2.343609,-2.343566,-2.34352,-2.343461,-2.343422,-2.343363,-2.343272,-2.343224,-2.343146,-2.343077,-2.343031,-2.343006,-2.343009,-2.343045,-2.343076,-2.3431,-2.343124,-2.343135,-2.343084,-2.343062,-2.343038,-2.342992,-2.342902,-2.342807,-2.342676,-2.342572,-2.342457,-2.342346,-2.342243,-2.342126,-2.341999,-2.341936,-2.34183,-2.341695,-2.341555,-2.341396,-2.341242,-2.341091,-2.34093,-2.340763,-2.340588,-2.340426,-2.340268,-2.340196,-2.340158,-2.340117,-2.340119,-2.340158,-2.34022,-2.340337,-2.340444,-2.340556,-2.340571,-2.340594,-2.340606,-2.340575,-2.340513,-2.340461,-2.340401,-2.340356,-2.340351,-2.340375,-2.340394,-2.340427,-2.340448,-2.340466,-2.34048,-2.340499,-2.340512,-2.340532,-2.340559,-2.340584,-2.340606,-2.340632,-2.340654,-2.340682,-2.340706,-2.340732,-2.34076,-2.340791,-2.340824,-2.340869,-2.340918,-2.340924,-2.340902,-2.340869,-2.340822,-2.340771,-2.340701,-2.340622,-2.340536,-2.340445,-2.340367,-2.340295,-2.340224,-2.340141,-2.340066,-2.339996,-2.339927,-2.339857,-2.33979,-2.339716,-2.339645,-2.339586,-2.339501,-2.339424,-2.339365,-2.339297,-2.339226,-2.339157,-2.3391,-2.339021,-2.338951,-2.338877,-2.338819,-2.33876,-2.338701,-2.338634,-2.338578,-2.338498,-2.338476,-2.338425,-2.338361,-2.338299,-2.338233,-2.338165,-2.338115,-2.338042,-2.337968,-2.337947,-2.337945,-2.337912,-2.337869,-2.337819,-2.337774,-2.337719,-2.337659,-2.337584,-2.337488,-2.337402,-2.337335,-2.337309,-2.337272,-2.337238,-2.337228,-2.337211,-2.337253,-2.337238,-2.337199,-2.337194,-2.33719,-2.337199,-2.337228,-2.3372,-2.337184,-2.337156,-2.337128,-2.337114,-2.337098,-2.337071,-2.337074,-2.337096,-2.337159,-2.337186,-2.337224,-2.337258,-2.337305,-2.33734,-2.337353,-2.337342,-2.337324,-2.337281,-2.33722,-2.337173,-2.337124,-2.337073,-2.337031,-2.336995,-2.336984,-2.336946,-2.336893,-2.336888,-2.336876,-2.336879,-2.336855,-2.336818,-2.336787,-2.336765,-2.336734,-2.336713,-2.336707,-2.336694,-2.336658,-2.336628,-2.33659,-2.336566,-2.336548,-2.336522,-2.336519,-2.336509,-2.336495,-2.336509,-2.33649,-2.336431,-2.336362,-2.336275,-2.336183,-2.336088,-2.335995,-2.335879,-2.335772,-2.33566,-2.335574,-2.335477,-2.335381,-2.335278,-2.335182,-2.335076,-2.335048,-2.335,-2.334907,-2.334805,-2.334714,-2.334619,-2.334527,-2.334435,-2.334336,-2.334234,-2.334151,-2.334055,-2.333938,-2.333831,-2.333741,-2.333663,-2.333577,-2.333461,-2.333353,-2.333225,-2.333081,-2.332934,-2.332773,-2.332596,-2.332433,-2.332275,-2.332112,-2.331943,-2.331774,-2.331604,-2.331441,-2.331272,-2.331093,-2.330936,-2.330778,-2.330626,-2.33047,-2.330344,-2.330243,-2.330154,-2.330076,-2.330013,-2.329929,-2.329891,-2.329829,-2.329771,-2.329755,-2.329717,-2.329673,-2.329642,-2.329625,-2.329602,-2.32958,-2.329574,-2.329548,-2.329499,-2.329451,-2.329409,-2.329363,-2.329307,-2.329228,-2.329175,-2.329112,-2.329061,-2.329021,-2.328972,-2.328936,-2.328916,-2.328895,-2.328876,-2.328855,-2.328836,-2.328819,-2.328792,-2.328778,-2.32877,-2.328756,-2.328735,-2.328716,-2.328707,-2.328722,-2.328758,-2.328788,-2.32883,-2.328869,-2.328901,-2.328924,-2.328932,-2.328894,-2.328838,-2.32878,-2.328701,-2.328623,-2.328534,-2.328455,-2.328391,-2.328306,-2.328221,-2.328165,-2.328076,-2.328039,-2.327956,-2.32789,-2.327832,-2.327746,-2.327651,-2.327577,-2.327508,-2.327447,-2.327377,-2.327307,-2.32725,-2.327183,-2.32712,-2.327047,-2.326962,-2.326867,-2.326787,-2.326709,-2.326632,-2.326558,-2.326476,-2.326404,-2.326328,-2.326245,-2.326185,-2.326122,-2.326065,-2.326011,-2.32593,-2.325849,-2.32578,-2.325721,-2.325659,-2.325595,-2.325532,-2.325459,-2.325383,-2.325303,-2.325217,-2.325151,-2.325096,-2.325023,-2.324947,-2.324879,-2.324791,-2.324703,-2.324628,-2.324558,-2.324483,-2.324441,-2.324378,-2.324325,-2.324229,-2.324153,-2.324093,-2.323997,-2.323918,-2.323836,-2.323774,-2.323696,-2.323618,-2.323556,-2.323466,-2.323378,-2.323293,-2.323211,-2.323127,-2.32307,-2.323,-2.322933,-2.322859,-2.322788,-2.322722,-2.322665,-2.322609,-2.322548,-2.322486,-2.322412,-2.32231,-2.322219,-2.322153,-2.322075,-2.321957,-2.321833,-2.321725,-2.321608,-2.321499,-2.321414,-2.321318,-2.321227,-2.321137,-2.321038,-2.320929,-2.320879,-2.320807,-2.320739,-2.320698,-2.32065,-2.320595,-2.320533,-2.320497,-2.32044,-2.320376,-2.320342,-2.320288,-2.320221,-2.320175,-2.320114,-2.320034,-2.319994,-2.319928,-2.31986,-2.319767,-2.319696,-2.319638,-2.319578,-2.319501,-2.319427,-2.319377,-2.319306,-2.319268,-2.31924,-2.319249,-2.319226,-2.31922,-2.319244,-2.319288,-2.319336,-2.319358,-2.319422,-2.319478,-2.319542,-2.319593,-2.319624,-2.319618,-2.319597,-2.319555,-2.319523,-2.319503,-2.319479,-2.319463,-2.319428,-2.31939,-2.319359,-2.31932,-2.319284,-2.31926,-2.319246,-2.31924,-2.319247,-2.319242,-2.319227,-2.319207,-2.319149,-2.319103,-2.319052,-2.319002,-2.318955,-2.318896,-2.318825,-2.318772,-2.318742,-2.318704,-2.318673,-2.318645,-2.31863,-2.318618,-2.318604,-2.318601,-2.318586,-2.318568,-2.318558,-2.31854,-2.318525,-2.318512,-2.318509,-2.318499,-2.318501,-2.3185,-2.31851,-2.318491,-2.318474,-2.31846,-2.318465,-2.318469,-2.318434,-2.318441,-2.318459,-2.318471,-2.318471,-2.318469,-2.318478,-2.31846,-2.318456,-2.318472,-2.31844,-2.318426,-2.31842,-2.318445,-2.318463,-2.31843,-2.318381,-2.318368,-2.318342,-2.318318,-2.318264,-2.318211,-2.318167,-2.31811,-2.318038,-2.317953,-2.317873,-2.317796,-2.317714,-2.317634,-2.317559,-2.317483,-2.317393,-2.317302,-2.317212,-2.317125,-2.317043,-2.316959,-2.316871,-2.316777,-2.316676,-2.316586,-2.316497,-2.316402,-2.316308,-2.316217,-2.316138,-2.316059,-2.31597,-2.315879,-2.315802,-2.315713,-2.315628,-2.315544,-2.315459,-2.315379,-2.315297,-2.315213,-2.315121,-2.31504,-2.314963,-2.314897,-2.314812,-2.314724,-2.31463,-2.314538,-2.314436,-2.314342,-2.314247,-2.314164,-2.314069,-2.313981,-2.313911,-2.313832,-2.31376,-2.313679,-2.313595,-2.313509,-2.313425,-2.31334,-2.313247,-2.31316,-2.313077,-2.312994,-2.312912,-2.312826,-2.312743,-2.312648,-2.312563,-2.312474,-2.312381,-2.312303,-2.312221,-2.312138,-2.312049,-2.311962,-2.311882,-2.311799,-2.31173,-2.311656,-2.311564,-2.311478,-2.311388,-2.311297,-2.311207,-2.311116,-2.31103,-2.310946,-2.310865,-2.310792,-2.310715,-2.310651,-2.310575,-2.310506,-2.310407,-2.310307,-2.310229,-2.310147,-2.31005,-2.309963,-2.309874,-2.309796,-2.309717,-2.309638,-2.309568,-2.30949,-2.309413,-2.309338,-2.309265,-2.309196,-2.309115,-2.309045,-2.308983,-2.30891,-2.308831,-2.308757,-2.308671,-2.308599,-2.308528,-2.308442,-2.308369,-2.308291,-2.308227,-2.308132,-2.308046,-2.307957,-2.307895,-2.307831,-2.307755,-2.307673,-2.307593,-2.307511,-2.307441,-2.307367,-2.307287,-2.307217,-2.307144,-2.30706,-2.307005,-2.306942,-2.306872,-2.306774,-2.306697,-2.306622,-2.306534,-2.306437,-2.30637,-2.306284,-2.306225,-2.306159,-2.306108,-2.306057,-2.305968,-2.305906,-2.305807,-2.305728,-2.305636,-2.305564,-2.305484,-2.30555,-2.305473,-2.305406,-2.305315,-2.305254,-2.305237,-2.305206,-2.305144,-2.305115,-2.30509,-2.305058,-2.305011,-2.304966,-2.304919,-2.304871,-2.30483,-2.304787,-2.304743,-2.304711,-2.304679,-2.304638,-2.304604,-2.304564,-2.304525,-2.304526,-2.304471,-2.304435,-2.304423,-2.304426,-2.304383,-2.304364,-2.304361,-2.30436,-2.304336,-2.304321,-2.304309,-2.304298,-2.30428,-2.304266,-2.304269,-2.304265,-2.304256,-2.304238,-2.304222,-2.304209,-2.304192,-2.304189,-2.304164,-2.30415,-2.304149,-2.304174,-2.304203,-2.30423,-2.304247,-2.304273,-2.304262,-2.30424,-2.30418,-2.30413,-2.304077,-2.304028,-2.303983,-2.303952,-2.303923,-2.303889,-2.303855,-2.303822,-2.303785,-2.303759,-2.303731,-2.303705,-2.303697,-2.30367,-2.303644,-2.303609,-2.303582,-2.303576,-2.303568,-2.303558,-2.303553,-2.303544,-2.303543,-2.303534,-2.303514,-2.303499,-2.303482,-2.30348,-2.303464,-2.303442,-2.303423,-2.303403,-2.303375,-2.303356,-2.303344,-2.303337,-2.30333,-2.303328,-2.30331,-2.303297,-2.303285,-2.303266,-2.303245,-2.30323,-2.303221,-2.303225,-2.303212,-2.303195,-2.303171,-2.303157,-2.303154,-2.303143,-2.303131,-2.303122,-2.303111,-2.303101,-2.303088,-2.303083,-2.303081,-2.303073,-2.303061,-2.303068,-2.303052,-2.303018,-2.303006,-2.30299,-2.302977,-2.30296,-2.302951,-2.302945,-2.302926,-2.302899,-2.302857,-2.302823,-2.30279,-2.302777,-2.302756,-2.302731,-2.302691,-2.30265,-2.302604,-2.302559,-2.302529,-2.302496,-2.302472,-2.302447,-2.302418,-2.302397,-2.302372,-2.302364,-2.302365,-2.302366,-2.302348,-2.302323,-2.302272,-2.302243,-2.302187,-2.302139,-2.302082,-2.30202,-2.301955,-2.301891,-2.301823,-2.30174,-2.301655,-2.301584,-2.301508,-2.301428,-2.30133,-2.301223,-2.301116,-2.301002,-2.30089,-2.300783,-2.300665,-2.300571,-2.300477,-2.300376,-2.300267,-2.300158,-2.30004,-2.299927,-2.299812,-2.299704,-2.299594,-2.299478,-2.299364,-2.299259,-2.299148,-2.299036,-2.298932,-2.298845,-2.298761,-2.298665,-2.298559,-2.298441,-2.298321,-2.298195,-2.298076,-2.297977,-2.297865,-2.297752,-2.297646,-2.297531,-2.297424,-2.297339,-2.29724,-2.297135,-2.297024,-2.296917,-2.296811,-2.29671,-2.296608,-2.296507,-2.29641,-2.296318,-2.296217,-2.296116,-2.296017,-2.29592,-2.295822,-2.295714,-2.295621,-2.295514,-2.295401,-2.295297,-2.295185,-2.295079,-2.294979,-2.294856,-2.294767,-2.294658,-2.294555,-2.294432,-2.29431,-2.29421,-2.294102,-2.293988,-2.293874,-2.293745,-2.2936,-2.29346,-2.293305,-2.293164,-2.293036,-2.292903,-2.292759,-2.292616,-2.292485,-2.292344,-2.292209,-2.29207,-2.291927,-2.291776,-2.291616,-2.291452,-2.291281,-2.29111,-2.29095,-2.290782,-2.290625,-2.29065,-2.290483,-2.290307,-2.290135,-2.289969,-2.289809,-2.28965,-2.289487,-2.289321,-2.289163,-2.289007,-2.288834,-2.28868,-2.288505,-2.288343,-2.288168,-2.287994,-2.287828,-2.287654,-2.28749,-2.287317,-2.287157,-2.286998,-2.286842,-2.286679,-2.286518,-2.286354,-2.286178,-2.286004,-2.285836,-2.285665,-2.285491,-2.28532,-2.285141,-2.284984,-2.284811,-2.284655,-2.284489,-2.284312,-2.284147,-2.284012,-2.283882,-2.283756,-2.283622,-2.283495,-2.283366,-2.283239,-2.283089,-2.282939,-2.28278,-2.282618,-2.282449,-2.282286,-2.28212,-2.281963,-2.281801,-2.281624,-2.281443,-2.281267,-2.281091,-2.280918,-2.280755,-2.28058,-2.280402,-2.280224,-2.280057,-2.279884,-2.279716,-2.279539,-2.279361,-2.279193,-2.279025,-2.278848,-2.278672,-2.278501,-2.278336,-2.278176,-2.278001,-2.277841,-2.277672,-2.277589,-2.27764,-2.277564,-2.277449,-2.277324,-2.277211,-2.277073,-2.276939,-2.276835,-2.276751,-2.276629,-2.276482,-2.276343,-2.276218,-2.276088,-2.275969,-2.27589,-2.275811,-2.275688,-2.275548,-2.275397,-2.275261,-2.275181,-2.275018,-2.274877,-2.274799,-2.274701,-2.274582,-2.274476,-2.27437,-2.274255,-2.274106,-2.273974,-2.273842,-2.273727,-2.273712,-2.273663,-2.273516,-2.273426,-2.273304,-2.273182,-2.273063,-2.27293,-2.272796,-2.272667,-2.272555,-2.272435,-2.272336,-2.272234,-2.272134,-2.272015,-2.271903,-2.271765,-2.271644,-2.271525,-2.271391,-2.271298,-2.271198,-2.271091,-2.270967,-2.270848,-2.270731,-2.270608,-2.270469,-2.270339,-2.270299,-2.270231,-2.270201,-2.270036,-2.269879,-2.26988,-2.269709,-2.269536,-2.269361,-2.269218,-2.269077,-2.268933,-2.268807,-2.268653,-2.268497,-2.268341,-2.268178,-2.26803,-2.267876,-2.267718,-2.267575,-2.267406,-2.267262,-2.2671,-2.266945,-2.266806,-2.266644,-2.266488,-2.266334,-2.266179,-2.266035,-2.265875,-2.265722,-2.265582,-2.265445,-2.2653,-2.265153,-2.265002,-2.264828,-2.264662,-2.264504,-2.26433,-2.264167,-2.264,-2.263844,-2.263714,-2.263586,-2.263459,-2.26332,-2.26318,-2.26302,-2.262857,-2.262688,-2.262545,-2.26241,-2.262262,-2.262092,-2.261934,-2.261789,-2.261629,-2.261481,-2.261466,-2.261314,-2.261172,-2.261012,-2.26086,-2.260737,-2.260585,-2.260524,-2.260498,-2.260347,-2.260219,-2.260078,-2.259953,-2.259847,-2.25975,-2.259635,-2.259527,-2.259406,-2.259285,-2.259148,-2.259013,-2.258869,-2.258726,-2.258579,-2.258443,-2.258285,-2.25815,-2.258031,-2.25792,-2.257819,-2.257714,-2.257631,-2.257495,-2.257354,-2.257191,-2.257039,-2.256913,-2.256763,-2.256615,-2.256466,-2.256332,-2.256201,-2.256069,-2.255931,-2.255888,-2.255874,-2.255811,-2.255803,-2.255713,-2.25569,-2.255583,-2.255469,-2.255362,-2.25529,-2.255262,-2.255223,-2.255119,-2.255019,-2.254909,-2.254837,-2.254756,-2.254709,-2.254652,-2.254621,-2.254601,-2.254552,-2.25449,-2.254482,-2.254434,-2.254397,-2.25428,-2.254153,-2.254006,-2.25385,-2.253702,-2.253567,-2.253427,-2.253275,-2.253123,-2.252987,-2.252844,-2.252713,-2.25259,-2.252473,-2.252364,-2.252238,-2.252128,-2.252045,-2.251958,-2.251847,-2.251836,-2.251741,-2.25164,-2.251591,-2.251497,-2.251379,-2.251284,-2.251164,-2.251049,-2.250963,-2.250849,-2.250775,-2.250714,-2.250682,-2.250633,-2.250609,-2.250557,-2.250507,-2.250502,-2.250455,-2.250379,-2.250312,-2.25025,-2.250208,-2.250168,-2.250103,-2.250041,-2.249989,-2.249917,-2.2499,-2.249804,-2.24981,-2.249805,-2.24972,-2.2497,-2.249651,-2.249631,-2.249625,-2.24959,-2.249518,-2.249423,-2.249335,-2.249264,-2.249197,-2.249147,-2.249104,-2.249069,-2.249051,-2.24901,-2.248956,-2.248905,-2.248816,-2.248813,-2.248755,-2.24867,-2.248609,-2.248518,-2.248492,-2.248448,-2.248394,-2.24838,-2.248418,-2.248435,-2.248448,-2.248471,-2.248491,-2.248495,-2.248499,-2.248512,-2.248484,-2.248482,-2.248443,-2.248456,-2.248369,-2.248284,-2.248186,-2.248083,-2.247997,-2.247927,-2.247877,-2.247805,-2.247773,-2.247716,-2.247705,-2.247674,-2.247619,-2.247592,-2.247562,-2.247542,-2.247485,-2.247444,-2.247366,-2.247343,-2.247255,-2.247199,-2.247114,-2.24704,-2.246898,-2.246959,-2.246939,-2.246953,-2.246958,-2.246961,-2.246902,-2.246923,-2.246906,-2.246853,-2.246785,-2.246741,-2.246705,-2.246694,-2.246671,-2.246654,-2.246651,-2.246618,-2.246578,-2.246562,-2.246505,-2.246461,-2.246383,-2.246309,-2.246228,-2.246123,-2.246049,-2.246005,-2.245939,-2.245857,-2.245778,-2.245672,-2.245565,-2.245524,-2.245513,-2.245524,-2.24554,-2.245586,-2.245609,-2.245645,-2.245726,-2.245803,-2.245862,-2.245891,-2.245888,-2.245946,-2.246037,-2.24606,-2.246068,-2.246076,-2.246075,-2.246046,-2.246048,-2.246118,-2.246199,-2.246274,-2.246339,-2.246396,-2.246467,-2.246533,-2.246601,-2.246658,-2.246716,-2.246808,-2.246902,-2.24692,-2.246994,-2.247127,-2.247236,-2.24733,-2.247459,-2.247586,-2.247729,-2.247853,-2.247975,-2.248122,-2.248276,-2.248415,-2.248531,-2.248644,-2.24876,-2.248848,-2.248917,-2.249015,-2.249121,-2.249224,-2.249311,-2.249423,-2.249516,-2.249614,-2.249699,-2.249798,-2.249886,-2.249975,-2.25003,-2.250126,-2.25023,-2.250331,-2.250351,-2.250404,-2.250481,-2.250542,-2.250611,-2.250693,-2.250776,-2.250872,-2.250893,-2.250912,-2.250902,-2.250934,-2.250895,-2.250901,-2.250849,-2.250851,-2.250806,-2.250684,-2.250608,-2.250543,-2.250464,-2.250399,-2.250337,-2.250301,-2.25033,-2.250333,-2.250294,-2.250229,-2.250192,-2.25015,-2.250095,-2.250044,-2.249991,-2.249935,-2.249887,-2.249828,-2.249764,-2.249725,-2.249721,-2.249756,-2.249793,-2.249832,-2.249876,-2.249939,-2.249973,-2.250021,-2.250048,-2.250109,-2.250188,-2.250281,-2.250374,-2.250466,-2.250547,-2.250658,-2.250732,-2.250833,-2.250931,-2.251033,-2.251141,-2.251283,-2.251417,-2.251544,-2.251679,-2.251776,-2.25185,-2.251928,-2.251999,-2.252046,-2.252075,-2.252138,-2.252187,-2.252246,-2.252317,-2.252368,-2.252423,-2.252482,-2.252547,-2.252566,-2.252512,-2.252477,-2.252458,-2.252432,-2.252415,-2.25239,-2.252361,-2.252328,-2.252284,-2.252265,-2.252241,-2.252202,-2.25218,-2.252146,-2.252123,-2.252091,-2.252049,-2.252032,-2.252014,-2.252038,-2.251946,-2.251934,-2.251883,-2.251786,-2.251699,-2.25158,-2.251442,-2.25129,-2.251127,-2.250958,-2.250791,-2.250624,-2.250454,-2.250299,-2.250142,-2.249984,-2.24982,-2.249671,-2.249522,-2.249363,-2.249218,-2.249059,-2.248912,-2.248755,-2.248611,-2.248445,-2.24827,-2.248103,-2.247948,-2.247787,-2.24771,-2.247539,-2.247371,-2.247209,-2.247034,-2.246869,-2.246701,-2.246539,-2.246445,-2.246518,-2.246594,-2.246681,-2.246773,-2.246864,-2.246946,-2.247029,-2.247071,-2.247055,-2.247024,-2.246933,-2.246798,-2.246671,-2.246645,-2.246515,-2.246414,-2.246286,-2.24617,-2.246019,-2.245858,-2.245744,-2.245621,-2.245489,-2.245383,-2.245329,-2.245277,-2.245174,-2.24513,-2.245113,-2.244999,-2.244844,-2.244718,-2.244593,-2.244488,-2.244448,-2.244316,-2.244178,-2.244265,-2.244368,-2.244462,-2.244455,-2.244402,-2.244418,-2.244509,-2.244632,-2.244685,-2.244684,-2.244705,-2.244789,-2.244942,-2.245084,-2.245186,-2.245244,-2.245307,-2.245439,-2.245588,-2.24568,-2.245763,-2.245879,-2.245987,-2.246021,-2.246065,-2.246085,-2.246125,-2.246162,-2.246195,-2.246241,-2.246285,-2.246333,-2.246385,-2.246398,-2.24644,-2.246426,-2.246329,-2.246339,-2.246481,-2.246433,-2.246403,-2.246351,-2.246415,-2.246487,-2.24663,-2.246761,-2.246801,-2.246802,-2.246969,-2.24708,-2.247079,-2.247065,-2.247055,-2.247003,-2.246955,-2.246899,-2.246843,-2.246853,-2.246818,-2.246717,-2.2467,-2.246669,-2.246642,-2.246618,-2.246568,-2.246532,-2.246467,-2.24642,-2.246404,-2.246339,-2.246257,-2.246198,-2.246153,-2.246094,-2.246009,-2.245907,-2.245838,-2.245764,-2.245686,-2.245613,-2.245522,-2.245451,-2.245381,-2.245325,-2.245268,-2.245218,-2.245145,-2.24509,-2.245041,-2.244998,-2.244915,-2.244847,-2.244798,-2.244746,-2.244702,-2.244637,-2.244581,-2.24453,-2.244485,-2.244436,-2.244376,-2.244303,-2.244263,-2.24422,-2.244174,-2.244144,-2.244122,-2.244025,-2.243995,-2.2439,-2.243798,-2.243731,-2.243666,-2.243592,-2.243546,-2.243507,-2.243461,-2.243433,-2.243376,-2.243347,-2.243265,-2.24321,-2.243174,-2.24312,-2.243251,-2.24335,-2.243441,-2.243501,-2.243539,-2.24354,-2.243506,-2.243456,-2.243455,-2.243462,-2.243484,-2.243497,-2.243511,-2.243533,-2.243513,-2.243467,-2.243434,-2.243455,-2.243452,-2.243447,-2.243433,-2.243436,-2.243395,-2.243372,-2.243335,-2.243357,-2.243406,-2.243457,-2.243523,-2.243588,-2.243684,-2.243758,-2.243828,-2.2439,-2.243972,-2.244057,-2.244121,-2.244188,-2.244212,-2.244233,-2.244251,-2.24428,-2.244341,-2.244409,-2.244459,-2.2445,-2.244495,-2.244504,-2.244507,-2.244533,-2.244561,-2.244554,-2.244532,-2.244527,-2.244521,-2.244581,-2.244661,-2.244659,-2.244625,-2.244643,-2.244615,-2.244594,-2.244603,-2.244632,-2.244603,-2.244586,-2.244525,-2.244504,-2.244448,-2.244388,-2.244334,-2.244286,-2.24424,-2.24419,-2.244167,-2.244119,-2.244092,-2.244047,-2.244005,-2.243941,-2.243888,-2.243851,-2.243835,-2.24381,-2.243785,-2.243757,-2.243716,-2.243692,-2.243626,-2.243593,-2.243595,-2.243602,-2.243615,-2.243645,-2.243672,-2.243678,-2.243688,-2.243697,-2.243701,-2.243731,-2.243763,-2.243787,-2.243781,-2.243727,-2.243746,-2.24376,-2.243779,-2.243785,-2.243797,-2.243779,-2.243805,-2.243833,-2.243857,-2.243884,-2.243924,-2.243941,-2.243921,-2.243882,-2.243837,-2.243803,-2.243765,-2.243691,-2.243629,-2.243566,-2.243474,-2.243406,-2.243332,-2.243258,-2.24317,-2.243083,-2.242968,-2.242862,-2.242765,-2.242677,-2.242606,-2.242534,-2.242471,-2.242424,-2.242363,-2.242311,-2.242234,-2.242183,-2.242128,-2.242059,-2.241996,-2.241821,-2.241724,-2.241685,-2.241655,-2.241604,-2.241584,-2.241489,-2.241346,-2.241221,-2.241091,-2.240992,-2.240875,-2.240731,-2.24058,-2.240421,-2.240274,-2.240122,-2.239992,-2.240076,-2.240201,-2.240298,-2.240387,-2.240477,-2.24058,-2.240657,-2.240752,-2.240853,-2.240947,-2.241032,-2.241126,-2.241212,-2.241313,-2.241415,-2.24151,-2.241619,-2.241721,-2.241792,-2.241904,-2.242026,-2.24215,-2.242246,-2.242345,-2.242463,-2.242586,-2.242696,-2.242788,-2.242867,-2.242927,-2.242991,-2.243024,-2.243054,-2.24308,-2.243109,-2.243129,-2.243141,-2.243165,-2.24316,-2.243157,-2.243156,-2.243151,-2.243151,-2.243144,-2.243146,-2.243139,-2.243145,-2.243153,-2.243181,-2.243201,-2.243233,-2.243259,-2.243291,-2.243313,-2.243335,-2.243352,-2.243379,-2.243409,-2.243438,-2.243468,-2.24349,-2.243518,-2.243545,-2.243569,-2.243607,-2.243635,-2.243645,-2.243723,-2.243828,-2.243901,-2.243964,-2.24401,-2.244061,-2.244107,-2.244153,-2.244194,-2.244244,-2.244287,-2.244321,-2.244348,-2.244387,-2.244418,-2.24444,-2.244468,-2.244497,-2.24452,-2.244562,-2.244616,-2.244718,-2.24483,-2.244988,-2.245124,-2.245257,-2.245413,-2.245555,-2.245704,-2.245848,-2.245994,-2.246128,-2.24625,-2.246378,-2.246529,-2.246681,-2.246722,-2.246867,-2.247005,-2.247134,-2.24724,-2.24734,-2.247327,-2.247424,-2.247494,-2.24758,-2.247686,-2.247789,-2.247925,-2.248025,-2.24814,-2.248259,-2.248405,-2.248566,-2.248721,-2.248893,-2.249028,-2.24919,-2.249357,-2.249521,-2.249654,-2.249831,-2.250008,-2.250177,-2.250354,-2.250523,-2.250677,-2.250826,-2.250996,-2.251163,-2.251309,-2.251451,-2.251601,-2.251766,-2.251933,-2.252073,-2.252218,-2.252378,-2.252545,-2.252705,-2.25287,-2.253013,-2.253177,-2.253327,-2.253475,-2.253613,-2.25372,-2.253875,-2.254045,-2.25413,-2.254238,-2.25435,-2.254517,-2.254659,-2.254751,-2.254824,-2.254273,-2.25441,-2.254521,-2.254629,-2.254727,-2.254844,-2.254957,-2.255072,-2.255072,-2.255079,-2.255116,-2.255161,-2.255211,-2.255293,-2.255389,-2.25546,-2.255493,-2.25552,-2.255554,-2.255621,-2.255694,-2.255696,-2.255609,-2.255504,-2.255433,-2.255527,-2.255636,-2.255746,-2.25576,-2.255812,-2.25599,-2.256155,-2.256318,-2.25648,-2.256651,-2.256752,-2.256879,-2.256951,-2.257088,-2.257201,-2.257304,-2.257434,-2.257568,-2.257722,-2.257889,-2.258046,-2.258172,-2.258307,-2.258474,-2.258633,-2.25878,-2.258949,-2.259098,-2.259258,-2.259417,-2.259555,-2.25973,-2.259895,-2.260056,-2.260217,-2.260379,-2.260542,-2.260705,-2.26087,-2.261031,-2.261192,-2.261284,-2.261437,-2.261565,-2.261636,-2.261678,-2.261646,-2.261575,-2.261542,-2.261514,-2.261454,-2.261294,-2.261231,-2.261097,-2.260975,-2.260975,-2.261101,-2.261257,-2.261418,-2.261575,-2.2617,-2.261779,-2.261844,-2.261891,-2.261897,-2.261917,-2.261914,-2.261925,-2.261933,-2.261976,-2.262002,-2.262009,-2.262014,-2.261961,-2.261932,-2.261931,-2.261946,-2.26197,-2.261973,-2.261916,-2.26189,-2.261896,-2.261891,-2.261871,-2.261873,-2.261881,-2.261878,-2.26189,-2.261879,-2.261882,-2.261893,-2.261904,-2.261893,-2.261896,-2.261891,-2.261902,-2.261887,-2.261864,-2.261879,-2.261891,-2.261859,-2.261817,-2.261779,-2.261741,-2.261701,-2.261643,-2.261565,-2.261473,-2.261401,-2.261334,-2.2613,-2.261257,-2.261193,-2.261141,-2.261068,-2.260985,-2.260899,-2.260828,-2.26077,-2.260693,-2.260625,-2.260548,-2.260469,-2.260396,-2.260317,-2.260236,-2.260157,-2.260076,-2.260003,-2.259922,-2.259852,-2.259778,-2.259693,-2.259605,-2.25953,-2.259467,-2.259402,-2.259335,-2.259358,-2.259309,-2.259231,-2.259165,-2.25908,-2.258987,-2.258887,-2.258788,-2.258713,-2.25861,-2.258486,-2.258373,-2.258273,-2.258183,-2.258081,-2.257978,-2.25787,-2.257756,-2.257673,-2.257549,-2.257433,-2.257329,-2.257203,-2.257174,-2.257068,-2.25705,-2.257016,-2.256953,-2.25684,-2.256784,-2.256692,-2.256688,-2.256603,-2.256527,-2.256388,-2.256277,-2.25617,-2.25604,-2.255933,-2.255833,-2.255734,-2.255637,-2.255539,-2.255379,-2.255208,-2.255038,-2.254875,-2.254699,-2.254539,-2.254382,-2.254218,-2.254057,-2.253895,-2.253726,-2.253558,-2.253399,-2.253242,-2.253097,-2.252927,-2.252755,-2.252588,-2.252466,-2.252406,-2.252344,-2.252256,-2.252149,-2.25208,-2.252047,-2.252012,-2.251961,-2.251899,-2.251822,-2.251749,-2.251622,-2.251526,-2.251438,-2.251356,-2.251298,-2.251314,-2.251277,-2.251265,-2.251141,-2.251078,-2.25104,-2.250976,-2.250927,-2.250862,-2.250818,-2.25081,-2.25076,-2.25072,-2.250697,-2.250679,-2.250668,-2.250624,-2.250579,-2.250564,-2.250559,-2.250524,-2.250521,-2.25047,-2.250436,-2.250418,-2.250339,-2.25042,-2.250514,-2.250617,-2.25072,-2.250827,-2.250932,-2.251042,-2.251085,-2.25103,-2.250924,-2.250902,-2.250978,-2.251077,-2.251165,-2.251258,-2.251321,-2.251372,-2.251447,-2.25154,-2.251647,-2.251743,-2.251699,-2.251676,-2.251736,-2.251803,-2.251861,-2.251919,-2.251988,-2.252093,-2.252181,-2.252261,-2.252331,-2.252384,-2.25246,-2.252538,-2.252623,-2.252719,-2.252769,-2.252851,-2.252915,-2.252977,-2.253041,-2.25313,-2.253211,-2.253333,-2.253447,-2.253588,-2.253682,-2.253769,-2.253869,-2.253985,-2.254092,-2.25424,-2.254333,-2.254416,-2.254493,-2.254599,-2.254717,-2.254839,-2.254952,-2.255063,-2.255188,-2.255263,-2.255321,-2.255394,-2.255471,-2.255568,-2.25568,-2.255784,-2.255902,-2.256011,-2.25609,-2.256162,-2.256261,-2.256365,-2.256469,-2.256591,-2.256694,-2.256805,-2.256936,-2.257033,-2.257194,-2.257343,-2.257509,-2.257671,-2.257842,-2.257997,-2.258151,-2.258308,-2.258477,-2.258642,-2.258811,-2.258969,-2.259134,-2.259295,-2.259461,-2.259624,-2.259791,-2.25995,-2.260116,-2.26027,-2.260431,-2.260579,-2.26074,-2.260905,-2.261073,-2.261246,-2.261407,-2.261562,-2.261729,-2.261882,-2.262042,-2.262189,-2.262343,-2.262494,-2.262655,-2.262806,-2.262971,-2.263015,-2.263176,-2.263332,-2.263485,-2.263642,-2.263796,-2.263961,-2.264115,-2.264281,-2.264433,-2.264593,-2.264749,-2.264923,-2.265078,-2.265245,-2.265406,-2.265568,-2.265615,-2.265683,-2.265733,-2.265833,-2.265894,-2.265972,-2.266047,-2.26612,-2.266209,-2.266268,-2.266281,-2.266259,-2.266301,-2.266329,-2.266374,-2.266423,-2.266464,-2.266484,-2.266542,-2.266699,-2.266825,-2.266973,-2.267052,-2.267011,-2.267008,-2.267008,-2.266997,-2.267052,-2.267155,-2.267213,-2.26728,-2.267383,-2.267453,-2.267526,-2.267602,-2.267672,-2.267747,-2.26783,-2.267905,-2.268002,-2.268114,-2.268108,-2.267997,-2.267881,-2.267746,-2.267638,-2.267623,-2.267556,-2.267573,-2.267592,-2.267675,-2.267743,-2.267853,-2.267907,-2.267991,-2.268071,-2.268114,-2.268088,-2.268154,-2.268282,-2.268411,-2.268487,-2.268521,-2.26857,-2.268592,-2.268639,-2.268681,-2.268712,-2.268762,-2.268793,-2.268822,-2.268809,-2.268873,-2.268942,-2.269005,-2.269051,-2.269099,-2.269152,-2.269201,-2.269229,-2.269268,-2.269288,-2.269309,-2.269334,-2.269372,-2.269392,-2.269408,-2.269415,-2.269437,-2.269462,-2.26945,-2.269448,-2.269455,-2.269458,-2.269487,-2.269531,-2.26951,-2.269578,-2.269615,-2.269648,-2.269672,-2.269714,-2.26975,-2.269767,-2.269808,-2.269849,-2.269891,-2.269929,-2.269963,-2.270003,-2.270045,-2.270077,-2.270113,-2.270153,-2.270165,-2.270187,-2.270175,-2.27019,-2.270205,-2.270208,-2.270103,-2.269963,-2.269817,-2.269662,-2.269534,-2.269395,-2.269273,-2.269157,-2.269049,-2.268927,-2.268814,-2.268743,-2.268721,-2.268623,-2.26857,-2.268543,-2.268541,-2.268565,-2.26865,-2.268738,-2.268843,-2.268947,-2.269046,-2.269126,-2.269207,-2.269265,-2.26933,-2.269422,-2.26946,-2.269324,-2.26919,-2.269091,-2.268916,-2.26876,-2.268612,-2.268487,-2.268354,-2.268274,-2.268383,-2.268443,-2.268535,-2.268643,-2.268782,-2.268912,-2.268999,-2.269144,-2.269275,-2.269196,-2.269119,-2.269169,-2.269185,-2.269167,-2.269166,-2.269155,-2.269149,-2.26912,-2.269063,-2.269035,-2.269028,-2.26904,-2.269026,-2.26902,-2.269022,-2.269013,-2.269026,-2.269044,-2.269175,-2.269277,-2.269374,-2.269462,-2.269545,-2.269642,-2.269744,-2.269841,-2.269939,-2.270038,-2.270105,-2.27015,-2.27014,-2.27023,-2.270325,-2.270409,-2.270417,-2.270518,-2.270606,-2.270704,-2.270794,-2.270897,-2.270992,-2.271107,-2.271197,-2.271285,-2.271368,-2.271446,-2.271537,-2.27164,-2.271728,-2.271805,-2.271912,-2.272009,-2.272101,-2.272203,-2.272297,-2.272377,-2.272461,-2.272534,-2.272619,-2.272726,-2.272797,-2.27288,-2.272878,-2.272955,-2.272965,-2.27304,-2.273124,-2.273187,-2.273242,-2.273296,-2.273353,-2.273394,-2.27345,-2.273508,-2.273578,-2.273639,-2.273709,-2.273764,-2.273825,-2.273888,-2.273947,-2.274,-2.27406,-2.274095,-2.274146,-2.274208,-2.274277,-2.274339,-2.274402,-2.274469,-2.274543,-2.274618,-2.274682,-2.274745,-2.27481,-2.274865,-2.274941,-2.274995,-2.275061,-2.275141,-2.275224,-2.275286,-2.275362,-2.275442,-2.275508,-2.275575,-2.275649,-2.275703,-2.275761,-2.275827,-2.275908,-2.275979,-2.276068,-2.276122,-2.276192,-2.276254,-2.27634,-2.27641,-2.276483,-2.276576,-2.276661,-2.276734,-2.276798,-2.27685,-2.276908,-2.276957,-2.276998,-2.277066,-2.277121,-2.277176,-2.277229,-2.277277,-2.277334,-2.277371,-2.277408,-2.277455,-2.277501,-2.277562,-2.277601,-2.277646,-2.277699,-2.277739,-2.277819,-2.277973,-2.278134,-2.278295,-2.278445,-2.278601,-2.278735,-2.278874,-2.279007,-2.279161,-2.27932,-2.279473,-2.279623,-2.27978,-2.279925,-2.280075,-2.280225,-2.280384,-2.280541,-2.280699,-2.280868,-2.281023,-2.281184,-2.281337,-2.281499,-2.281643,-2.281799,-2.281961,-2.282124,-2.282281,-2.282441,-2.282594,-2.282762,-2.282917,-2.283077,-2.283245,-2.283404,-2.283563,-2.283726,-2.283885,-2.284035,-2.284185,-2.284344,-2.284513,-2.28468,-2.284854,-2.28502,-2.285175,-2.285336,-2.28549,-2.285662,-2.285812,-2.285956,-2.286093,-2.286235,-2.286395,-2.286555,-2.286719,-2.286892,-2.287046,-2.287202,-2.287365,-2.287529,-2.287695,-2.287872,-2.288037,-2.288199,-2.288344,-2.288497,-2.288665,-2.288839,-2.288999,-2.289164,-2.289316,-2.289476,-2.289638,-2.289805,-2.289975,-2.290129,-2.290288,-2.290446,-2.290599,-2.290748,-2.29087,-2.290951,-2.291013,-2.290998,-2.290938,-2.290846,-2.29077,-2.290786,-2.290618,-2.290476,-2.290418,-2.290342,-2.290182,-2.290011,-2.28984,-2.289857,-2.289887,-2.289822,-2.289729,-2.289644,-2.289544,-2.28942,-2.289291,-2.289184,-2.289111,-2.289055,-2.288997,-2.288919,-2.288805,-2.288864,-2.288918,-2.288899,-2.288873,-2.288841,-2.288803,-2.288773,-2.28876,-2.288775,-2.288828,-2.288847,-2.288873,-2.288867,-2.288856,-2.28884,-2.288817,-2.288771,-2.28874,-2.288689,-2.288619,-2.288573,-2.288489,-2.288474,-2.288493,-2.288475,-2.288437,-2.288403,-2.288369,-2.288358,-2.288352,-2.288216,-2.288103,-2.287999,-2.287905,-2.287831,-2.287697,-2.287601,-2.28751,-2.287441,-2.287319,-2.28729,-2.28725,-2.287209,-2.287161,-2.287072,-2.287058,-2.287022,-2.287028,-2.287053,-2.287067,-2.28707,-2.287048,-2.287074,-2.28704,-2.287031,-2.287021,-2.287014,-2.287055,-2.287078,-2.287048,-2.287059,-2.287035,-2.28694,-2.286844,-2.286746,-2.286675,-2.286585,-2.28651,-2.286449,-2.286382,-2.286327,-2.28626,-2.286191,-2.286206,-2.286371,-2.286526,-2.286691,-2.286851,-2.287007,-2.287041,-2.287181,-2.287344,-2.287492,-2.287643,-2.287803,-2.287974,-2.288133,-2.288283,-2.288393,-2.288481,-2.288558,-2.288645,-2.28873,-2.288816,-2.288881,-2.288972,-2.289051,-2.289113,-2.289271,-2.289349,-2.289355,-2.28937,-2.289421,-2.289468,-2.289537,-2.2896,-2.289659,-2.289723,-2.28978,-2.289841,-2.289969,-2.290064,-2.29016,-2.290294,-2.290435,-2.290591,-2.290747,-2.2909,-2.291039,-2.29119,-2.291348,-2.291505,-2.291658,-2.291805,-2.291972,-2.292111,-2.292249,-2.292402,-2.292565,-2.292622,-2.292784,-2.292942,-2.293092,-2.293239,-2.293372,-2.293527,-2.293685,-2.293829,-2.293996,-2.294142,-2.294298,-2.294159,-2.294325,-2.294474,-2.294644,-2.294815,-2.294987,-2.295151,-2.295316,-2.295365,-2.295435,-2.295278,-2.295143,-2.294985,-2.294954,-2.294947,-2.294942,-2.294866,-2.294809,-2.294805,-2.294806,-2.294725,-2.294717,-2.294692,-2.294703,-2.294705,-2.294717,-2.294763,-2.294771,-2.294928,-2.295079,-2.295249,-2.295411,-2.295575,-2.295732,-2.29589,-2.296053,-2.296224,-2.296389,-2.29656,-2.296716,-2.296876,-2.29695,-2.297107,-2.297101,-2.297237,-2.297367,-2.297407,-2.297409,-2.297411,-2.297431,-2.297488,-2.297518,-2.297566,-2.297609,-2.297668,-2.297692,-2.297655,-2.297649,-2.297649,-2.297599,-2.297563,-2.297552,-2.297556,-2.297545,-2.297523,-2.297424,-2.29733,-2.297259,-2.297223,-2.297234,-2.297281,-2.297288,-2.297332,-2.297344,-2.297382,-2.29744,-2.297492,-2.297554,-2.297583,-2.297622,-2.297638,-2.297716,-2.297878,-2.297802,-2.297675,-2.297701,-2.297758,-2.297781,-2.297807,-2.297841,-2.297902,-2.297942,-2.298006,-2.298071,-2.298132,-2.298189,-2.298171,-2.298106,-2.298061,-2.298094,-2.298147,-2.298126,-2.298104,-2.298093,-2.298095,-2.298098,-2.298056,-2.298021,-2.297986,-2.297953,-2.297902,-2.297862,-2.297868,-2.297864,-2.297843,-2.297824,-2.297811,-2.297837,-2.297846,-2.297849,-2.297874,-2.297878,-2.297898,-2.297909,-2.297919,-2.297949,-2.297963,-2.297985,-2.298011,-2.298022,-2.298043,-2.298066,-2.298136,-2.298213,-2.298263,-2.29831,-2.298372,-2.29837,-2.298446,-2.29848,-2.298574,-2.298717,-2.298799,-2.298923,-2.299051,-2.299186,-2.299332,-2.299478,-2.299615,-2.299763,-2.299911,-2.300045,-2.300158,-2.300306,-2.300376,-2.300478,-2.300599,-2.300718,-2.300846,-2.301001,-2.301141,-2.301273,-2.301428,-2.301574,-2.301705,-2.301838,-2.301983,-2.302146,-2.302307,-2.302465,-2.302599,-2.302686,-2.302838,-2.303009,-2.303177,-2.303339,-2.303481,-2.303607,-2.303726,-2.303867,-2.303973,-2.304124,-2.304272,-2.304416,-2.304559,-2.304718,-2.30485,-2.304993,-2.305145,-2.305283,-2.305416,-2.305548,-2.305685,-2.305837,-2.305972,-2.306106,-2.306232,-2.306358,-2.306504,-2.306623,-2.306765,-2.306914,-2.307064,-2.30721,-2.307317,-2.307456,-2.307606,-2.307744,-2.307872,-2.308007,-2.308133,-2.308263,-2.308415,-2.308565,-2.308703,-2.308778,-2.308795,-2.308828,-2.308908,-2.308978,-2.309042,-2.309128,-2.309194,-2.309273,-2.309354,-2.309432,-2.309512,-2.309586,-2.309674,-2.309741,-2.309826,-2.309906,-2.309985,-2.310068,-2.310085,-2.310156,-2.310226,-2.310284,-2.310345,-2.310412,-2.310491,-2.310573,-2.310646,-2.31072,-2.310809,-2.310871,-2.310924,-2.310999,-2.311081,-2.311165,-2.311235,-2.311301,-2.311364,-2.311423,-2.311481,-2.31158,-2.311657,-2.311736,-2.311825,-2.311914,-2.311987,-2.312059,-2.312166,-2.31229,-2.312437,-2.312603,-2.312765,-2.312941,-2.313098,-2.313258,-2.313415,-2.313577,-2.313737,-2.313895,-2.314052,-2.3142,-2.314368,-2.314541,-2.314717,-2.314881,-2.31504,-2.315218,-2.315381,-2.315554,-2.315718,-2.315879,-2.316042,-2.316222,-2.316401,-2.316564,-2.316722,-2.316897,-2.317076,-2.317237,-2.317279,-2.317316,-2.317382,-2.317445,-2.317521,-2.317565,-2.317591,-2.317625,-2.317683,-2.317725,-2.317756,-2.317789,-2.317827,-2.317885,-2.317927,-2.317966,-2.318015,-2.318031,-2.318008,-2.317987,-2.317945,-2.317909,-2.317855,-2.317812,-2.317754,-2.317712,-2.317662,-2.317585,-2.317507,-2.317465,-2.317414,-2.317349,-2.317318,-2.317286,-2.317212,-2.317161,-2.317036,-2.317003,-2.316951,-2.316863,-2.316817,-2.316774,-2.316756,-2.31671,-2.316654,-2.316598,-2.316563,-2.316512,-2.316452,-2.316436,-2.316386,-2.316331,-2.316284,-2.316271,-2.316259,-2.316261,-2.316271,-2.316283,-2.316311,-2.316341,-2.316364,-2.316419,-2.316499,-2.316519,-2.316517,-2.316507,-2.316572,-2.316625,-2.316661,-2.316691,-2.316727,-2.316778,-2.316818,-2.316861,-2.316917,-2.31698,-2.317029,-2.317087,-2.317145,-2.317204,-2.317268,-2.317414,-2.317582,-2.317453,-2.317524,-2.317472,-2.317418,-2.317512,-2.31761,-2.317732,-2.317853,-2.317938,-2.318027,-2.318146,-2.31824,-2.318351,-2.31843,-2.318512,-2.318602,-2.318696,-2.318732,-2.318765,-2.318762,-2.318767,-2.318773,-2.318782,-2.318777,-2.318771,-2.318769,-2.318844,-2.318858,-2.318929,-2.319028,-2.318957,-2.318964,-2.318998,-2.319023,-2.319093,-2.319138,-2.319187,-2.319252,-2.31923,-2.319255,-2.319286,-2.319302,-2.319325,-2.319339,-2.319339,-2.319367,-2.319432,-2.319497,-2.319549,-2.31962,-2.319665,-2.319703,-2.319739,-2.31975,-2.319744,-2.319703,-2.319675,-2.319669,-2.31969,-2.31969,-2.319677,-2.319665,-2.319663,-2.319669,-2.319686,-2.319684,-2.319669,-2.319653,-2.319649,-2.31965,-2.319657,-2.319661,-2.319661,-2.319663,-2.319663,-2.319643,-2.319617,-2.319588,-2.31961,-2.319627,-2.319736,-2.319821,-2.319965,-2.320104,-2.320253,-2.320391,-2.320532,-2.320672,-2.320781,-2.320929,-2.32108,-2.321228,-2.321347,-2.321447,-2.321515,-2.321614,-2.32171,-2.321832,-2.321953,-2.322098,-2.322233,-2.322376,-2.322492,-2.322633,-2.322765,-2.322916,-2.323044,-2.32317,-2.32331,-2.323412,-2.323573,-2.323728,-2.323877,-2.324033,-2.324156,-2.324139,-2.324302,-2.324335,-2.324477,-2.324606,-2.324733,-2.324865,-2.324971,-2.325085,-2.325172,-2.325272,-2.325384,-2.325475,-2.325579,-2.325709,-2.325858,-2.326001,-2.326135,-2.326294,-2.326444,-2.326592,-2.326731,-2.326883,-2.327035,-2.327187,-2.32734,-2.327452,-2.327587,-2.327614,-2.327784,-2.327949,-2.328102,-2.328265,-2.328379,-2.328448,-2.328588,-2.328607,-2.328772,-2.328933,-2.329079,-2.329216,-2.329356,-2.329504,-2.329649,-2.329799,-2.329964,-2.330113,-2.330272,-2.33042,-2.330581,-2.330738,-2.330895,-2.331048,-2.331185,-2.331319,-2.331474,-2.33161,-2.331747,-2.331895,-2.331995,-2.332085,-2.332216,-2.332307,-2.332195,-2.332357,-2.332494,-2.332659,-2.332824,-2.332984,-2.333033,-2.333173,-2.333288,-2.333417,-2.333565,-2.333721,-2.333843,-2.333951,-2.334088,-2.334227,-2.334366,-2.334499,-2.334662,-2.334829,-2.334956,-2.335066,-2.335174,-2.335302,-2.335415,-2.335517,-2.335627,-2.335762,-2.335877,-2.336002,-2.336103,-2.336207,-2.336318,-2.33643,-2.336562,-2.336689,-2.336787,-2.336871,-2.337011,-2.337112,-2.337209,-2.337286,-2.337392,-2.337488,-2.337618,-2.337699,-2.337763,-2.337778,-2.337722,-2.337728,-2.337824,-2.337923,-2.338002,-2.338105,-2.338192,-2.338283,-2.33838,-2.338466,-2.338556,-2.338645,-2.338721,-2.338767,-2.338834,-2.338903,-2.339005,-2.339114,-2.339206,-2.339319,-2.339421,-2.339535,-2.339606,-2.339658,-2.339683,-2.339724,-2.339826,-2.339938,-2.340053,-2.340166,-2.340269,-2.34035,-2.340432,-2.340554,-2.34066,-2.340732,-2.340817,-2.340896,-2.341007,-2.341113,-2.341206,-2.341295,-2.341381,-2.341464,-2.341554,-2.341656,-2.341761,-2.341879,-2.341986,-2.342073,-2.342162,-2.34221,-2.342267,-2.342332,-2.342428,-2.342539,-2.342628,-2.342676,-2.342788,-2.342828,-2.342867,-2.342992,-2.343104,-2.34319,-2.343269,-2.343353,-2.343442,-2.343473,-2.34353,-2.343575,-2.343636,-2.343689,-2.343706,-2.343785,-2.343847,-2.343855,-2.343904,-2.343942,-2.343996,-2.344061,-2.344105,-2.344116,-2.344175,-2.344206,-2.344227,-2.344269,-2.344278,-2.344287,-2.344298,-2.344331,-2.344337,-2.344317,-2.344321,-2.344276,-2.344215,-2.344185,-2.344156,-2.344124,-2.344082,-2.344008,-2.343947,-2.343856,-2.343794,-2.343731,-2.343671,-2.343628,-2.343603,-2.343596,-2.343608,-2.34361,-2.343617,-2.343605,-2.343581,-2.343539,-2.343509,-2.343496,-2.343489,-2.343491,-2.343505,-2.343492,-2.343479,-2.343479,-2.343495,-2.343512,-2.343554,-2.343563,-2.343562,-2.343553,-2.343556,-2.343573,-2.343594,-2.343616,-2.343676,-2.343727,-2.343731,-2.343755,-2.343777,-2.343761,-2.34371,-2.343675,-2.343686,-2.343677,-2.343647,-2.343618,-2.343574,-2.343523,-2.343486,-2.343455,-2.3434,-2.343368,-2.343312,-2.343286,-2.343274,-2.34325,-2.343258,-2.343259,-2.343274,-2.34327,-2.343266,-2.343272,-2.343296,-2.343313,-2.343335,-2.343352,-2.343378,-2.343406,-2.34344,-2.343471,-2.343486,-2.3435,-2.343504,-2.343526,-2.343561,-2.343563,-2.343572,-2.343593,-2.343618,-2.343611,-2.343607,-2.343623,-2.34363,-2.343683,-2.343618,-2.343754,-2.343846,-2.343939,-2.344041,-2.344169,-2.344291,-2.34439,-2.344497,-2.344596,-2.344699,-2.34478,-2.344878,-2.344982,-2.34507,-2.345166,-2.345261,-2.345338,-2.345418,-2.345483,-2.345586,-2.345691,-2.345776,-2.345878,-2.345975,-2.345942,-2.345894,-2.345876,-2.345897,-2.345905,-2.34582,-2.345722,-2.345652,-2.345585,-2.34552,-2.345475,-2.345437,-2.345386,-2.34527,-2.345202,-2.345164,-2.344992,-2.344824,-2.344673,-2.344518,-2.344346,-2.34425,-2.344085,-2.343943,-2.34383,-2.343713,-2.343618,-2.343686,-2.343774,-2.3437,-2.343576,-2.34345,-2.343432,-2.34337,-2.343306,-2.343246,-2.343161,-2.34319,-2.343263,-2.343326,-2.343386,-2.343436,-2.343492,-2.343536,-2.343603,-2.343652,-2.34376,-2.343882,-2.343819,-2.343783,-2.34386,-2.343893,-2.343929,-2.343986,-2.344034,-2.34414,-2.344202,-2.34428,-2.344391,-2.344516,-2.344585,-2.344656,-2.344784,-2.344885,-2.344944,-2.345027,-2.345166,-2.345275,-2.345374,-2.345361,-2.345296,-2.345229,-2.345145,-2.345098,-2.345079,-2.345049,-2.34502,-2.345001,-2.344985,-2.344965,-2.344871,-2.344763,-2.344617,-2.344457,-2.344289,-2.344132,-2.343963,-2.343801,-2.343629,-2.343466,-2.343297,-2.343131,-2.342968,-2.343027,-2.343167,-2.343269,-2.343383,-2.343497,-2.343663,-2.343803,-2.343788,-2.343805,-2.343544,-2.34352,-2.343557,-2.343575,-2.343612,-2.343616,-2.343652,-2.34368,-2.343763,-2.343907,-2.344019,-2.344131,-2.344257,-2.34438,-2.344494,-2.344593,-2.344651,-2.344691,-2.344722,-2.344773,-2.344825,-2.344836,-2.344824,-2.344835,-2.344734,-2.344639,-2.344665,-2.344707,-2.344734,-2.344766,-2.344792,-2.344831,-2.344855,-2.344926,-2.344942,-2.344976,-2.344989,-2.345063,-2.345102,-2.345179,-2.34515,-2.345203,-2.34522,-2.345258,-2.34519,-2.345135,-2.345044,-2.344968,-2.344875,-2.344823,-2.344681,-2.344553,-2.344434,-2.344304,-2.34417,-2.344034,-2.343908,-2.343765,-2.343687,-2.343576,-2.343471,-2.343363,-2.34326,-2.34313,-2.342982,-2.342818,-2.342656,-2.342528,-2.342374,-2.342232,-2.342204,-2.342132,-2.342108,-2.342065,-2.342045,-2.342035,-2.342019,-2.342004,-2.34198,-2.341972,-2.341967,-2.341959,-2.34195,-2.341969,-2.341971,-2.341977,-2.341953,-2.341938,-2.341937,-2.341951,-2.34196,-2.341955,-2.341955,-2.341964,-2.341958,-2.341964,-2.341992,-2.342018,-2.342026,-2.342049,-2.342052,-2.342078,-2.342114,-2.342169,-2.342177,-2.34203,-2.341869,-2.341835,-2.341992,-2.342151,-2.342224,-2.34222,-2.342225,-2.342241,-2.342275,-2.342315,-2.342351,-2.342376,-2.342437,-2.342485,-2.342531,-2.342565,-2.34263,-2.342662,-2.342701,-2.342746,-2.342784,-2.342852,-2.342918,-2.342967,-2.343015,-2.34307,-2.343163,-2.343284,-2.343304,-2.343288,-2.343342,-2.343408,-2.343482,-2.343518,-2.343533,-2.343568,-2.343595,-2.343615,-2.343709,-2.343793,-2.343852,-2.343877,-2.343925,-2.343993,-2.344083,-2.344116,-2.344146,-2.344146,-2.344201,-2.344201,-2.344182,-2.344072,-2.344167,-2.344241,-2.344398,-2.344546,-2.344659,-2.344825,-2.344992,-2.345148,-2.345303,-2.345477,-2.345631,-2.345799,-2.345962,-2.346118,-2.346285,-2.346452,-2.346599,-2.346757,-2.34692,-2.34708,-2.347238,-2.347395,-2.347567,-2.347737,-2.347896,-2.348043,-2.348195,-2.348351,-2.348522,-2.348681,-2.34884,-2.348941,-2.348948],"lat":[55.318077,55.318124,55.318223,55.318204,55.318182,55.318112,55.31806,55.318003,55.317993,55.31795,55.317905,55.317871,55.317821,55.317776,55.317724,55.317705,55.31767,55.317615,55.317554,55.317497,55.317462,55.317412,55.317368,55.317321,55.317305,55.317272,55.317223,55.317168,55.317101,55.317038,55.316975,55.316942,55.316889,55.31685,55.316804,55.316751,55.316688,55.316642,55.31659,55.316531,55.316506,55.316461,55.316398,55.316341,55.316281,55.316241,55.316199,55.316167,55.316101,55.316053,55.316022,55.316017,55.315957,55.315904,55.315838,55.315769,55.315691,55.315633,55.315588,55.315563,55.315505,55.315458,55.315399,55.315343,55.315304,55.315264,55.315208,55.31515,55.315083,55.315045,55.315028,55.314985,55.314913,55.314842,55.314769,55.314724,55.314649,55.314622,55.314549,55.314479,55.314467,55.314393,55.31432,55.314224,55.314136,55.314061,55.314003,55.314015,55.313918,55.313827,55.313737,55.313644,55.313606,55.313516,55.313429,55.313401,55.313349,55.313401,55.313353,55.313298,55.313242,55.313145,55.313059,55.312966,55.312901,55.312833,55.31275,55.312664,55.31258,55.312487,55.312397,55.312305,55.312215,55.312122,55.312033,55.311937,55.311846,55.311748,55.31165,55.311557,55.311462,55.311362,55.311266,55.311176,55.311084,55.310997,55.310908,55.31082,55.310733,55.310713,55.310707,55.3107,55.310669,55.310627,55.31057,55.31051,55.310436,55.310374,55.31031,55.31025,55.310188,55.31012,55.31006,55.309992,55.309922,55.309851,55.309788,55.309721,55.309659,55.309592,55.309525,55.309449,55.30939,55.309353,55.309304,55.309236,55.309168,55.3091,55.309027,55.308952,55.308878,55.308798,55.308723,55.308655,55.308585,55.308517,55.308444,55.308366,55.308296,55.30823,55.308158,55.308092,55.308021,55.307957,55.307897,55.30785,55.307805,55.307762,55.307718,55.307676,55.307646,55.307617,55.307594,55.30757,55.307549,55.307521,55.307491,55.307449,55.307418,55.307397,55.307369,55.307348,55.307325,55.30729,55.307259,55.307214,55.307179,55.307139,55.307106,55.30707,55.307023,55.306964,55.306894,55.306827,55.306756,55.306681,55.306607,55.306532,55.306446,55.306361,55.306272,55.306187,55.306098,55.306018,55.305984,55.305985,55.305975,55.305975,55.30595,55.305918,55.30588,55.305841,55.305805,55.305742,55.305669,55.305574,55.305485,55.305382,55.305288,55.305208,55.305122,55.305034,55.304936,55.304835,55.304742,55.304652,55.30456,55.304461,55.30437,55.304277,55.304184,55.304087,55.303996,55.303896,55.303805,55.303712,55.303611,55.303546,55.303475,55.303429,55.303364,55.303311,55.303261,55.303214,55.303265,55.303321,55.303378,55.30344,55.303496,55.30354,55.303623,55.303714,55.303812,55.303905,55.303997,55.3041,55.304198,55.304299,55.304397,55.304487,55.304587,55.304688,55.30479,55.304886,55.304981,55.305076,55.305171,55.305257,55.305338,55.305435,55.30553,55.305619,55.305701,55.305761,55.30581,55.305842,55.305881,55.305908,55.305932,55.305967,55.305974,55.305989,55.306009,55.306012,55.305939,55.305871,55.305795,55.305733,55.305672,55.3056,55.305607,55.30557,55.305494,55.305431,55.305369,55.305311,55.30525,55.305184,55.305123,55.305072,55.305032,55.304991,55.30494,55.304883,55.304839,55.304784,55.304705,55.304645,55.304601,55.304541,55.304447,55.304351,55.30426,55.304161,55.304076,55.303993,55.303928,55.303888,55.303798,55.303715,55.303636,55.303561,55.303488,55.303413,55.303326,55.303255,55.303185,55.303116,55.303056,55.303017,55.302982,55.302931,55.302898,55.302874,55.302833,55.3028,55.302777,55.30276,55.302734,55.302701,55.302676,55.302702,55.302707,55.302659,55.302607,55.302566,55.302519,55.302475,55.302429,55.302374,55.30232,55.302255,55.302188,55.302104,55.302032,55.301966,55.301917,55.301923,55.301867,55.301796,55.301746,55.301677,55.301632,55.301588,55.301559,55.30147,55.301391,55.301298,55.301217,55.301132,55.30105,55.300965,55.300884,55.300817,55.300737,55.300675,55.300591,55.300517,55.300425,55.300337,55.300265,55.300184,55.300095,55.300002,55.2999,55.299807,55.299714,55.299619,55.299528,55.29944,55.299345,55.299253,55.299165,55.299072,55.298976,55.29889,55.298804,55.298796,55.298696,55.298594,55.298499,55.298409,55.298309,55.29822,55.298128,55.298038,55.297936,55.297847,55.297758,55.297671,55.297593,55.297538,55.297454,55.297381,55.297312,55.297239,55.297171,55.297097,55.297,55.296928,55.296852,55.296804,55.296782,55.296744,55.296691,55.296655,55.296633,55.296626,55.296623,55.296602,55.296513,55.296415,55.296323,55.29623,55.296139,55.296054,55.295981,55.295914,55.295861,55.29577,55.29568,55.295584,55.295488,55.295402,55.295306,55.295211,55.295121,55.295021,55.29492,55.294826,55.294728,55.294629,55.294529,55.294435,55.294339,55.294242,55.294152,55.294053,55.293964,55.293863,55.29377,55.293678,55.293583,55.293488,55.293391,55.293296,55.293199,55.293104,55.293008,55.292911,55.292815,55.292718,55.292625,55.292534,55.292441,55.292355,55.29227,55.29219,55.292101,55.292019,55.291936,55.291843,55.291759,55.291668,55.291584,55.291491,55.291406,55.291318,55.291232,55.291141,55.291051,55.29096,55.290872,55.290786,55.290701,55.290614,55.290529,55.290435,55.290351,55.290255,55.290165,55.290078,55.289983,55.289885,55.289795,55.289702,55.289613,55.289514,55.289426,55.28934,55.28925,55.289159,55.289068,55.288975,55.288891,55.2888,55.288705,55.28861,55.28852,55.288433,55.288344,55.288256,55.288163,55.288074,55.287993,55.287904,55.287818,55.287728,55.287633,55.287535,55.287447,55.287346,55.287249,55.287149,55.287045,55.286953,55.286861,55.286767,55.286666,55.286572,55.286469,55.286368,55.286279,55.286187,55.286089,55.285998,55.285908,55.285816,55.285725,55.285638,55.285548,55.285456,55.285367,55.285278,55.285189,55.285097,55.284995,55.284903,55.284813,55.284721,55.284625,55.284536,55.284448,55.284356,55.284258,55.284157,55.284057,55.283962,55.283864,55.283764,55.28367,55.283576,55.283477,55.283382,55.28328,55.283186,55.283085,55.282994,55.282901,55.282806,55.282706,55.282611,55.282518,55.282422,55.282324,55.282234,55.282144,55.282051,55.281953,55.281861,55.281773,55.281679,55.281589,55.281506,55.281423,55.281351,55.281275,55.281199,55.281118,55.281034,55.280953,55.280874,55.28079,55.280707,55.280627,55.280559,55.280462,55.280379,55.280297,55.280218,55.28014,55.280061,55.279976,55.279897,55.279813,55.279732,55.279651,55.27957,55.279499,55.279415,55.279334,55.279245,55.279173,55.279102,55.279038,55.279,55.278964,55.278948,55.278939,55.278926,55.278909,55.278895,55.278885,55.278884,55.278889,55.278886,55.278863,55.27886,55.278847,55.278835,55.278797,55.27875,55.27869,55.278612,55.278534,55.278453,55.27836,55.278271,55.278182,55.278087,55.277992,55.277893,55.277801,55.2777,55.277602,55.277509,55.277412,55.277315,55.277222,55.277123,55.277035,55.276935,55.276848,55.276751,55.27666,55.276576,55.276481,55.27639,55.276298,55.276207,55.276114,55.276019,55.275923,55.275831,55.275735,55.275635,55.27554,55.27544,55.275346,55.275254,55.275157,55.275066,55.274976,55.274881,55.274784,55.274687,55.274588,55.274488,55.27439,55.274299,55.274209,55.274115,55.274018,55.27393,55.273835,55.273742,55.273662,55.273583,55.2735,55.273418,55.273323,55.273239,55.273147,55.273053,55.272979,55.272891,55.272802,55.272715,55.272619,55.272541,55.272461,55.272373,55.272281,55.272187,55.272102,55.272015,55.271922,55.27183,55.27174,55.27165,55.271559,55.271473,55.271386,55.271306,55.271225,55.271139,55.271052,55.270963,55.270877,55.270783,55.270697,55.27061,55.270521,55.270433,55.27034,55.27025,55.270169,55.270079,55.269995,55.269906,55.269811,55.269718,55.269629,55.269539,55.269448,55.269366,55.269275,55.26919,55.269107,55.26902,55.268942,55.268856,55.26876,55.268676,55.268593,55.268493,55.268402,55.268316,55.268223,55.268138,55.268044,55.267958,55.267877,55.267797,55.267712,55.267627,55.26754,55.267454,55.267367,55.267289,55.267202,55.267118,55.267031,55.266938,55.266841,55.266754,55.266665,55.266578,55.266494,55.266405,55.266311,55.266216,55.26613,55.266047,55.265964,55.265877,55.265791,55.265708,55.265642,55.265569,55.265502,55.265427,55.265359,55.265271,55.265193,55.265118,55.265034,55.264957,55.264874,55.264784,55.264697,55.264607,55.26452,55.264431,55.264341,55.264255,55.264164,55.264069,55.263979,55.263891,55.263802,55.263712,55.263625,55.263537,55.26345,55.263353,55.263266,55.263179,55.263098,55.263014,55.262928,55.262841,55.262756,55.262674,55.262584,55.262504,55.262408,55.262313,55.262215,55.262113,55.262018,55.261921,55.261827,55.261737,55.261643,55.261556,55.261461,55.261378,55.261284,55.261185,55.261089,55.260994,55.260902,55.260806,55.260711,55.260611,55.260517,55.260426,55.260336,55.260238,55.26015,55.260059,55.259957,55.259861,55.25977,55.259676,55.259579,55.25948,55.259381,55.259285,55.259186,55.259092,55.258995,55.258897,55.258809,55.258728,55.258639,55.258542,55.258452,55.258359,55.258265,55.25817,55.258078,55.257978,55.25788,55.257778,55.257686,55.257587,55.257492,55.257395,55.257305,55.257205,55.257114,55.257024,55.256929,55.256829,55.256731,55.25664,55.256543,55.256452,55.256349,55.256252,55.256154,55.256057,55.255966,55.255873,55.255781,55.255689,55.255594,55.255502,55.255405,55.255306,55.255205,55.255106,55.255012,55.254917,55.254829,55.254734,55.254638,55.25454,55.254447,55.25435,55.254255,55.254192,55.254103,55.254023,55.253944,55.253863,55.253772,55.253683,55.253594,55.253501,55.253416,55.253332,55.253241,55.253155,55.253068,55.252983,55.252898,55.252817,55.252733,55.252646,55.252556,55.252469,55.252383,55.252296,55.252209,55.252123,55.252038,55.251955,55.251863,55.251783,55.251705,55.251618,55.251528,55.251437,55.251354,55.251267,55.251182,55.251099,55.251015,55.250929,55.250839,55.25075,55.250665,55.250578,55.250494,55.250411,55.250323,55.250235,55.250147,55.250059,55.249971,55.249885,55.249804,55.249723,55.249642,55.249559,55.24947,55.24939,55.249314,55.249239,55.24915,55.249066,55.248987,55.248908,55.248826,55.248739,55.248653,55.24857,55.248487,55.248404,55.24832,55.248235,55.248145,55.248071,55.247995,55.24791,55.247826,55.247741,55.247661,55.247576,55.247486,55.247398,55.247311,55.247235,55.247146,55.247059,55.246974,55.246886,55.246792,55.246703,55.246621,55.246542,55.246459,55.246376,55.246292,55.246213,55.246136,55.246046,55.245968,55.245877,55.245784,55.245691,55.245601,55.245512,55.245428,55.245334,55.245249,55.245156,55.245068,55.244976,55.244892,55.244807,55.244726,55.244644,55.244557,55.244468,55.244377,55.244292,55.2442,55.244112,55.244025,55.243939,55.243847,55.243772,55.243687,55.243602,55.243516,55.243432,55.24334,55.243262,55.243176,55.243085,55.243,55.242914,55.242825,55.242736,55.242649,55.242562,55.242474,55.242388,55.242301,55.242219,55.242129,55.242046,55.241967,55.241885,55.241804,55.241716,55.241624,55.241529,55.241435,55.241348,55.241264,55.241187,55.241104,55.241022,55.240941,55.240856,55.240896,55.240815,55.240718,55.240629,55.240542,55.240445,55.240349,55.240263,55.240206,55.240108,55.240008,55.239916,55.239826,55.23974,55.239651,55.239562,55.239476,55.239379,55.239283,55.239193,55.239098,55.238998,55.238902,55.238809,55.238772,55.238673,55.238584,55.238493,55.238396,55.238295,55.238197,55.238099,55.237996,55.237891,55.237797,55.237707,55.237606,55.237508,55.237411,55.237318,55.237224,55.237132,55.237035,55.236935,55.236835,55.236744,55.236642,55.236549,55.236458,55.236365,55.236272,55.236183,55.236088,55.235992,55.235897,55.235797,55.235705,55.235618,55.235525,55.23544,55.235351,55.235259,55.235168,55.235073,55.234983,55.234888,55.234785,55.234697,55.234607,55.234507,55.23441,55.234343,55.23424,55.234147,55.234044,55.233943,55.233842,55.233745,55.233648,55.233557,55.233465,55.23337,55.233272,55.233176,55.233082,55.232985,55.232881,55.232777,55.232688,55.232584,55.232485,55.232386,55.232286,55.232184,55.232085,55.231989,55.231891,55.231788,55.231693,55.23159,55.23149,55.231391,55.231295,55.2312,55.231108,55.231015,55.230916,55.230813,55.230722,55.230622,55.230519,55.230418,55.230322,55.230219,55.230115,55.230012,55.229915,55.229816,55.229715,55.229614,55.229511,55.22941,55.229318,55.229222,55.229125,55.229025,55.228928,55.22883,55.228729,55.228631,55.228537,55.228444,55.228352,55.228258,55.228167,55.228077,55.227981,55.227881,55.227781,55.227682,55.227593,55.227497,55.227402,55.227311,55.227212,55.227123,55.227028,55.22693,55.226832,55.226735,55.226637,55.226539,55.226446,55.226353,55.226253,55.226164,55.226069,55.225979,55.225896,55.225804,55.225716,55.225629,55.225542,55.225467,55.225386,55.225298,55.225212,55.225125,55.225049,55.224971,55.224902,55.224822,55.224746,55.224674,55.224596,55.224524,55.224448,55.224369,55.224303,55.224232,55.224161,55.224084,55.224017,55.223951,55.223884,55.223806,55.223728,55.223649,55.223577,55.223502,55.223415,55.223335,55.223262,55.223195,55.22312,55.223054,55.222981,55.222903,55.222832,55.222751,55.222668,55.222599,55.222519,55.222436,55.222359,55.222275,55.222196,55.222119,55.222038,55.221959,55.221885,55.221807,55.221734,55.221661,55.221585,55.221509,55.22143,55.221343,55.22126,55.221185,55.221103,55.221024,55.220958,55.220882,55.220804,55.220737,55.220668,55.220599,55.220526,55.220449,55.22037,55.220297,55.220233,55.220164,55.220088,55.220012,55.219948,55.219885,55.219829,55.219786,55.219738,55.219693,55.219642,55.219589,55.219528,55.219471,55.219416,55.219365,55.21931,55.219257,55.21921,55.219166,55.219132,55.219106,55.219096,55.219079,55.219067,55.219054,55.219041,55.219032,55.219037,55.219033,55.21901,55.218997,55.218975,55.21896,55.218943,55.218926,55.218916,55.218898,55.218877,55.218857,55.218837,55.218821,55.218812,55.218792,55.218774,55.218767,55.218754,55.218745,55.218732,55.218721,55.218704,55.218689,55.218676,55.218659,55.218643,55.218632,55.218616,55.218604,55.218593,55.218579,55.218559,55.218544,55.218529,55.218511,55.218494,55.21848,55.218487,55.218518,55.21857,55.218629,55.218687,55.218751,55.218817,55.218886,55.218946,55.218999,55.219038,55.219059,55.219054,55.219075,55.219094,55.219111,55.219126,55.219149,55.219161,55.219171,55.219185,55.219196,55.219213,55.219223,55.219235,55.219242,55.219256,55.219266,55.219281,55.219303,55.219314,55.219317,55.219335,55.219358,55.219373,55.219379,55.219385,55.219386,55.219393,55.219398,55.219393,55.219366,55.21935,55.219439,55.219365,55.219288,55.219234,55.219157,55.219097,55.219043,55.218968,55.21889,55.218824,55.218772,55.218705,55.218639,55.218573,55.218505,55.218426,55.218348,55.218284,55.218229,55.218188,55.218133,55.218051,55.218003,55.217952,55.217867,55.217792,55.217717,55.217637,55.217569,55.217494,55.217465,55.2174,55.217339,55.217276,55.217184,55.217095,55.217048,55.216962,55.216905,55.216839,55.216762,55.216703,55.216651,55.216592,55.216526,55.216463,55.216386,55.216313,55.216236,55.216168,55.216089,55.216034,55.215966,55.215898,55.215842,55.215759,55.21568,55.215607,55.215549,55.215484,55.21543,55.215368,55.215318,55.215253,55.215166,55.215082,55.215083,55.215085,55.215089,55.215093,55.215088,55.215094,55.215075,55.215021,55.214979,55.214926,55.214867,55.214818,55.214774,55.214741,55.214708,55.214671,55.214632,55.214605,55.214562,55.214526,55.214469,55.21443,55.214384,55.214334,55.214293,55.214249,55.214207,55.214178,55.214141,55.214103,55.21406,55.214013,55.213982,55.213942,55.213904,55.213855,55.213847,55.213826,55.213796,55.213769,55.213727,55.213712,55.213665,55.213614,55.213561,55.213492,55.213443,55.213398,55.213397,55.213388,55.213367,55.213328,55.213279,55.213239,55.213205,55.213174,55.213134,55.213094,55.213061,55.213057,55.21303,55.212991,55.212967,55.212935,55.212869,55.212817,55.21273,55.212638,55.212595,55.21254,55.212481,55.212424,55.212348,55.212274,55.212203,55.212137,55.212075,55.21201,55.211956,55.211895,55.211838,55.211787,55.211736,55.21169,55.211655,55.211603,55.211543,55.211478,55.211399,55.211326,55.21124,55.211177,55.211133,55.211106,55.211058,55.211,55.210948,55.210911,55.210875,55.210826,55.210776,55.21072,55.210658,55.210569,55.210473,55.210384,55.21029,55.210207,55.210112,55.210036,55.209961,55.209892,55.209803,55.209709,55.209619,55.209551,55.209479,55.209404,55.209322,55.209242,55.209156,55.20907,55.20898,55.208889,55.208797,55.208704,55.208614,55.208523,55.208427,55.208361,55.208301,55.208243,55.208225,55.208195,55.208138,55.208075,55.208037,55.207993,55.207946,55.20789,55.207824,55.207761,55.207699,55.207622,55.207556,55.207481,55.207401,55.207326,55.207251,55.207236,55.207162,55.207089,55.206998,55.206921,55.206853,55.206779,55.206711,55.206636,55.206554,55.206479,55.206407,55.206311,55.206211,55.206125,55.206036,55.20594,55.205842,55.205746,55.205657,55.205573,55.20548,55.205392,55.205296,55.205205,55.20511,55.205018,55.204931,55.204836,55.204743,55.204671,55.204579,55.204483,55.2044,55.20431,55.204217,55.204125,55.204034,55.203943,55.203852,55.203766,55.203684,55.203602,55.20351,55.203421,55.203324,55.203234,55.203134,55.203045,55.202958,55.202867,55.202792,55.202694,55.202602,55.202514,55.202427,55.202352,55.202254,55.202164,55.202073,55.201973,55.201871,55.201774,55.20168,55.201588,55.201497,55.201403,55.20131,55.201216,55.201123,55.201025,55.200931,55.200835,55.200743,55.200664,55.200594,55.200512,55.200427,55.200346,55.200249,55.200157,55.200065,55.199976,55.199879,55.199789,55.199704,55.199612,55.199522,55.199423,55.199332,55.199237,55.199158,55.199062,55.198974,55.198882,55.198795,55.198709,55.19868,55.198595,55.198503,55.198405,55.198313,55.198219,55.198125,55.198027,55.19793,55.197837,55.197744,55.197657,55.197562,55.197462,55.197368,55.197271,55.197176,55.197076,55.196986,55.196896,55.196801,55.196712,55.196622,55.196566,55.196485,55.196406,55.196316,55.196223,55.19614,55.19605,55.195963,55.195879,55.195799,55.195709,55.195611,55.19551,55.195411,55.195319,55.195227,55.195137,55.195046,55.194967,55.194883,55.194792,55.1947,55.194611,55.194524,55.19443,55.194335,55.194236,55.194143,55.194049,55.193947,55.193861,55.193772,55.193685,55.193597,55.193502,55.193417,55.193331,55.193245,55.193151,55.193057,55.192968,55.192891,55.192899,55.192816,55.192757,55.192691,55.1926,55.192531,55.192464,55.192399,55.192324,55.19225,55.192216,55.192172,55.192107,55.192043,55.191979,55.191916,55.191834,55.19175,55.191666,55.191592,55.191512,55.191433,55.191362,55.191287,55.191214,55.191128,55.191054,55.190971,55.190891,55.190794,55.190722,55.19064,55.190565,55.190476,55.190384,55.190296,55.190212,55.190121,55.190043,55.189957,55.189878,55.18978,55.189685,55.189684,55.189586,55.189497,55.189396,55.189303,55.189247,55.18916,55.189083,55.188998,55.188916,55.188826,55.188741,55.188657,55.188569,55.188468,55.188371,55.188276,55.188181,55.18809,55.187994,55.1879,55.187804,55.187711,55.187616,55.187521,55.187427,55.187334,55.187233,55.187139,55.187046,55.186954,55.186856,55.186768,55.186685,55.186589,55.186498,55.186404,55.186317,55.186228,55.186155,55.186071,55.185983,55.185925,55.185858,55.185779,55.1857,55.185619,55.185542,55.18547,55.185407,55.185342,55.185289,55.185233,55.185161,55.185072,55.184981,55.184888,55.184798,55.184701,55.184613,55.184524,55.184433,55.184346,55.184248,55.184156,55.184058,55.183971,55.18387,55.183771,55.183671,55.183581,55.183491,55.183399,55.183301,55.183202,55.183111,55.183013,55.182917,55.182821,55.182726,55.182626,55.182529,55.182439,55.182338,55.182245,55.18215,55.182051,55.182016,55.181935,55.18194,55.181847,55.181769,55.18168,55.181612,55.181564,55.181525,55.18151,55.181486,55.181481,55.181474,55.181454,55.181438,55.181419,55.18139,55.181357,55.181317,55.181282,55.181236,55.181192,55.181148,55.181106,55.181084,55.181079,55.18107,55.181059,55.181043,55.181021,55.181003,55.180988,55.180979,55.180973,55.180944,55.180953,55.180954,55.180977,55.180966,55.180939,55.180846,55.180767,55.180687,55.180602,55.180521,55.180441,55.180356,55.180259,55.180156,55.180061,55.180009,55.17995,55.179888,55.179874,55.179812,55.179743,55.179688,55.179617,55.179574,55.179551,55.179476,55.179413,55.179349,55.179267,55.179174,55.179082,55.179001,55.178914,55.178823,55.178745,55.178705,55.178642,55.178584,55.178499,55.178402,55.178349,55.178304,55.17822,55.178145,55.178059,55.178021,55.177932,55.177842,55.177758,55.177686,55.177594,55.177504,55.177409,55.177331,55.177373,55.177321,55.177243,55.177151,55.177064,55.177015,55.176977,55.176899,55.176811,55.176743,55.176668,55.17657,55.176483,55.176392,55.176295,55.176203,55.176107,55.176018,55.175931,55.175833,55.175743,55.175645,55.175555,55.175461,55.17539,55.175291,55.175247,55.175161,55.175071,55.174985,55.174901,55.174817,55.17477,55.174712,55.174619,55.174531,55.17453,55.174456,55.17436,55.174258,55.174161,55.174071,55.173976,55.173881,55.173793,55.173695,55.173597,55.173515,55.173425,55.173332,55.173242,55.173152,55.173062,55.172967,55.172872,55.172778,55.172685,55.172589,55.172508,55.172413,55.172325,55.172234,55.172155,55.17208,55.171992,55.171905,55.171823,55.171736,55.171647,55.171566,55.171473,55.171383,55.171294,55.171201,55.171112,55.171023,55.170925,55.170834,55.170749,55.170661,55.170573,55.170477,55.170382,55.170285,55.170194,55.170105,55.170006,55.169919,55.169825,55.169739,55.169642,55.169553,55.169455,55.169365,55.169274,55.169195,55.169105,55.169021,55.168939,55.168852,55.168756,55.168672,55.168579,55.168477,55.168387,55.168286,55.168193,55.1681,55.168012,55.167914,55.167818,55.167733,55.167668,55.167595,55.167517,55.167426,55.167333,55.167239,55.167143,55.167055,55.166961,55.166869,55.166779,55.166689,55.1666,55.166507,55.166412,55.166319,55.166227,55.166134,55.166125,55.166028,55.165938,55.165881,55.165789,55.16569,55.165593,55.165495,55.165398,55.165305,55.165215,55.165132,55.16506,55.164969,55.164885,55.164793,55.164708,55.164623,55.164539,55.164444,55.164355,55.164266,55.16417,55.164077,55.163987,55.163905,55.163818,55.163729,55.163661,55.163561,55.163462,55.163364,55.163275,55.163181,55.163092,55.162995,55.162903,55.162811,55.162731,55.162639,55.162545,55.162455,55.162363,55.162268,55.162175,55.162081,55.161984,55.161949,55.16186,55.161763,55.161673,55.161582,55.161495,55.161409,55.161314,55.161217,55.161125,55.161031,55.160931,55.160833,55.16074,55.160656,55.160567,55.160472,55.160376,55.160276,55.160183,55.160087,55.159992,55.159966,55.159874,55.159777,55.159675,55.159584,55.159485,55.159394,55.159299,55.159205,55.159112,55.159018,55.158916,55.158821,55.158729,55.15863,55.15853,55.158437,55.158347,55.158257,55.158156,55.158054,55.157959,55.157864,55.157773,55.157679,55.15759,55.157494,55.157395,55.157293,55.157202,55.15711,55.157017,55.156928,55.15683,55.156749,55.156658,55.156573,55.156493,55.1564,55.156315,55.156229,55.15614,55.156051,55.155976,55.155893,55.155806,55.155714,55.155634,55.155541,55.155443,55.155356,55.155269,55.155231,55.155142,55.155048,55.15495,55.154854,55.154764,55.154765,55.15469,55.154598,55.154502,55.154409,55.154319,55.15424,55.154178,55.154123,55.154056,55.153972,55.153898,55.153853,55.153812,55.153767,55.153719,55.153679,55.153628,55.153544,55.153476,55.153404,55.153329,55.153253,55.153177,55.153091,55.153016,55.152938,55.152864,55.152786,55.152712,55.152632,55.152553,55.152468,55.15239,55.152309,55.152225,55.152131,55.152053,55.151982,55.15191,55.151833,55.15176,55.151688,55.151617,55.151544,55.151469,55.151382,55.151288,55.151202,55.151112,55.151021,55.150921,55.150824,55.150728,55.150638,55.150548,55.150458,55.150364,55.150266,55.150167,55.150071,55.149976,55.149879,55.149779,55.149689,55.149591,55.149497,55.149403,55.149308,55.149212,55.149116,55.149019,55.148923,55.148832,55.148732,55.148634,55.148537,55.148438,55.148349,55.14825,55.148161,55.148068,55.147978,55.147882,55.14781,55.147725,55.14765,55.147564,55.14748,55.147394,55.147308,55.147221,55.147132,55.147039,55.146948,55.146853,55.146753,55.146658,55.146561,55.146464,55.146372,55.146281,55.146189,55.146092,55.145996,55.145905,55.145827,55.145763,55.145714,55.145669,55.145619,55.145571,55.145516,55.145461,55.145409,55.145365,55.145311,55.145245,55.145188,55.145148,55.145115,55.145107,55.145072,55.145019,55.144954,55.144879,55.144805,55.144815,55.144735,55.144681,55.144603,55.144522,55.144448,55.144395,55.144314,55.144237,55.144172,55.144228,55.144222,55.144243,55.144266,55.144313,55.144332,55.144339,55.144333,55.144273,55.14428,55.144292,55.144304,55.14431,55.144316,55.144356,55.144383,55.14439,55.144372,55.144331,55.144282,55.144227,55.144195,55.144166,55.144124,55.144089,55.144066,55.144056,55.144049,55.144055,55.144099,55.144142,55.14419,55.144242,55.144289,55.14436,55.144392,55.144386,55.144364,55.14429,55.14422,55.144214,55.144168,55.144126,55.144126,55.144222,55.144175,55.144106,55.144032,55.143952,55.143889,55.143823,55.143762,55.14368,55.143587,55.143492,55.143395,55.143309,55.143222,55.143138,55.143052,55.142963,55.142862,55.142769,55.142683,55.142594,55.142496,55.142414,55.14234,55.14227,55.142346,55.142415,55.142498,55.142591,55.142674,55.142676,55.142658,55.142639,55.142617,55.142626,55.142697,55.142766,55.142855,55.142902,55.142986,55.143068,55.143135,55.14319,55.143234,55.143226,55.143234,55.143293,55.143354,55.143366,55.143405,55.143439,55.143465,55.143505,55.143511,55.14349,55.143443,55.14344,55.143428,55.143438,55.143442,55.143449,55.143444,55.143465,55.143458,55.143453,55.143488,55.143561,55.143608,55.143662,55.143747,55.143829,55.143924,55.144013,55.144111,55.144212,55.144304,55.14432,55.144301,55.144352,55.144426,55.144444,55.144505,55.144495,55.144467,55.14442,55.144365,55.144278,55.144187,55.144098,55.143999,55.143907,55.143815,55.143717,55.143671,55.143574,55.143482,55.14339,55.143296,55.143211,55.143202,55.143111,55.143011,55.142918,55.142827,55.14274,55.142641,55.142545,55.142445,55.142348,55.14225,55.142155,55.142058,55.141959,55.141859,55.141761,55.141665,55.141572,55.141482,55.141391,55.1413,55.141205,55.14111,55.141014,55.140916,55.140902,55.14081,55.140715,55.140618,55.140525,55.140434,55.140349,55.140254,55.140172,55.140078,55.139993,55.139903,55.139809,55.139723,55.139714,55.139628,55.139544,55.139458,55.139371,55.139288,55.139207,55.139126,55.139034,55.138943,55.138863,55.138775,55.138689,55.138607,55.13852,55.138429,55.138342,55.138258,55.138178,55.138094,55.138017,55.137936,55.137852,55.137761,55.137674,55.137585,55.137494,55.137401,55.137312,55.137228,55.137152,55.137068,55.136984,55.136897,55.136819,55.136743,55.136678,55.136603,55.136526,55.13645,55.13638,55.136296,55.136215,55.136137,55.136072,55.136012,55.135943,55.135885,55.135857,55.135786,55.13569,55.135591,55.135506,55.135426,55.135339,55.135258,55.135172,55.135088,55.134998,55.134951,55.134887,55.134818,55.134767,55.134691,55.134612,55.134533,55.134457,55.134386,55.134376,55.134379,55.134369,55.13436,55.134351,55.134334,55.134328,55.134308,55.134286,55.134255,55.134248,55.134214,55.134199,55.134169,55.134133,55.134117,55.134132,55.134132,55.134064,55.134011,55.133928,55.13385,55.133773,55.133689,55.133594,55.133497,55.133402,55.133319,55.13324,55.133157,55.133102,55.133025,55.132943,55.132863,55.132767,55.132677,55.132579,55.132495,55.132438,55.132344,55.132252,55.132164,55.13207,55.131981,55.131891,55.131799,55.131704,55.131611,55.131513,55.13142,55.131319,55.131223,55.131125,55.131024,55.130927,55.130833,55.130736,55.130643,55.130542,55.130447,55.130405,55.130321,55.130272,55.130196,55.130127,55.130053,55.129977,55.129901,55.129815,55.129725,55.129657,55.129601,55.129517,55.129441,55.129362,55.129285,55.129203,55.129113,55.129031,55.128953,55.128879,55.128803,55.128705,55.128621,55.128534,55.128445,55.128355,55.128262,55.128178,55.128097,55.128022,55.127942,55.127852,55.127767,55.127683,55.127603,55.127527,55.127449,55.127359,55.127282,55.127193,55.127104,55.12702,55.126936,55.126859,55.126789,55.126727,55.126681,55.126606,55.126529,55.126451,55.126377,55.126308,55.126255,55.126179,55.126091,55.126012,55.12594,55.125877,55.125812,55.125737,55.12567,55.125603,55.12552,55.125435,55.125354,55.125271,55.125195,55.125128,55.125055,55.12499,55.124918,55.124833,55.124747,55.124672,55.124594,55.124525,55.124452,55.124383,55.124306,55.124238,55.124164,55.124167,55.124195,55.124222,55.124247,55.124262,55.12429,55.124323,55.124349,55.124382,55.124413,55.124438,55.124469,55.124486,55.124507,55.124537,55.124557,55.124582,55.124618,55.124647,55.12467,55.124694,55.124728,55.124752,55.124782,55.124811,55.124838,55.124859,55.124873,55.124894,55.124917,55.12494,55.124975,55.125007,55.125036,55.125062,55.125088,55.125118,55.125119,55.125143,55.12517,55.125198,55.125222,55.125248,55.125271,55.125298,55.125327,55.125351,55.125371,55.125393,55.125414,55.125441,55.125467,55.125496,55.125528,55.125495,55.125405,55.12531,55.125228,55.125136,55.125054,55.124969,55.124881,55.1248,55.124713,55.124623,55.12453,55.124441,55.12435,55.124262,55.124173,55.124081,55.123981,55.123888,55.12387,55.123869,55.123838,55.12376,55.12367,55.123578,55.123481,55.12339,55.123299,55.123222,55.123133,55.123041,55.122966,55.122874,55.122784,55.122694,55.122604,55.122516,55.122434,55.122347,55.122264,55.122192,55.122099,55.122029,55.121965,55.121908,55.121835,55.121813,55.121721,55.121625,55.121561,55.121475,55.121389,55.121308,55.121212,55.121126,55.121047,55.120951,55.120852,55.120802,55.120746,55.120682,55.120603,55.120506,55.12042,55.120327,55.120234,55.120146,55.120048,55.119952,55.119862,55.119772,55.119778,55.119695,55.119605,55.119519,55.119426,55.119337,55.119252,55.119159,55.119059,55.118961,55.118862,55.11877,55.118679,55.118615,55.118515,55.118417,55.118327,55.118231,55.118137,55.118046,55.117943,55.11785,55.117758,55.117661,55.117611,55.117522,55.117439,55.11738,55.117284,55.117192,55.117104,55.117006,55.11691,55.116818,55.116724,55.116635,55.11654,55.116441,55.116348,55.116252,55.116158,55.116066,55.115965,55.115868,55.115777,55.115681,55.115581,55.115491,55.115434,55.115365,55.115312,55.115279,55.115243,55.115181,55.115118,55.115059,55.114988,55.114923,55.114856,55.114778,55.114689,55.114678,55.114607,55.114521,55.114422,55.114332,55.11423,55.114153,55.114069,55.113991,55.113923,55.113853,55.113773,55.113694,55.113677,55.113592,55.113505,55.113444,55.113379,55.113329,55.113301,55.113292,55.113271,55.113227,55.113168,55.11311,55.113092,55.113023,55.112936,55.112862,55.112794,55.112734,55.112684,55.112647,55.112595,55.11254,55.112456,55.112372,55.112285,55.112191,55.1121,55.112009,55.111919,55.111829,55.111746,55.111661,55.111564,55.111473,55.111383,55.111284,55.111193,55.1111,55.111007,55.110911,55.110822,55.110765,55.110692,55.110619,55.11054,55.110455,55.110376,55.110302,55.110222,55.110149,55.110069,55.109986,55.109897,55.109807,55.109725,55.109641,55.109559,55.109551,55.109473,55.109393,55.109317,55.109236,55.109158,55.109085,55.109015,55.108941,55.108855,55.108771,55.108686,55.108597,55.108514,55.108433,55.108349,55.108282,55.108209,55.108136,55.108058,55.107984,55.107903,55.107819,55.107738,55.107655,55.107589,55.107501,55.107416,55.107326,55.10724,55.107223,55.107142,55.107055,55.106964,55.106879,55.106793,55.106707,55.106615,55.106521,55.106429,55.106344,55.106256,55.106167,55.106072,55.105977,55.105883,55.105798,55.105702,55.10561,55.105544,55.105451,55.105367,55.105276,55.105183,55.105093,55.105001,55.10491,55.10482,55.104735,55.104642,55.104552,55.104461,55.104368,55.10428,55.104195,55.104111,55.10402,55.103929,55.103851,55.103766,55.103683,55.103595,55.103506,55.103417,55.103322,55.103236,55.10315,55.10306,55.10298,55.10289,55.102795,55.10271,55.102635,55.10255,55.102468,55.102381,55.102295,55.102212,55.102125,55.102033,55.101939,55.101852,55.101766,55.101682,55.101588,55.101499,55.101412,55.101323,55.101237,55.101146,55.101053,55.10096,55.100862,55.100771,55.100676,55.100584,55.100492,55.100403,55.100323,55.100278,55.100245,55.100222,55.100195,55.100155,55.100108,55.100065,55.100014,55.099965,55.099917,55.099875,55.099837,55.099796,55.099747,55.099709,55.099656,55.099614,55.09959,55.099579,55.099591,55.099612,55.099641,55.099678,55.099708,55.099754,55.099786,55.099818,55.09985,55.099894,55.099934,55.099968,55.100005,55.100047,55.100074,55.100097,55.100127,55.100158,55.100193,55.100227,55.100256,55.100285,55.100326,55.100348,55.100371,55.100386,55.100394,55.100407,55.10043,55.100451,55.10048,55.100512,55.100554,55.100603,55.100648,55.100688,55.100721,55.100751,55.100777,55.100812,55.100844,55.100874,55.100892,55.100902,55.100897,55.100884,55.100859,55.100822,55.1008,55.100768,55.10075,55.100731,55.100709,55.100682,55.100668,55.100657,55.100655,55.100649,55.100627,55.100601,55.100573,55.100531,55.100487,55.100418,55.100336,55.100252,55.100149,55.100062,55.099978,55.099897,55.099894,55.09992,55.099872,55.09978,55.099689,55.099687,55.099715,55.09973,55.099638,55.099583,55.099493,55.099408,55.099328,55.099253,55.099191,55.099139,55.099065,55.098985,55.098895,55.098803,55.098718,55.098643,55.098559,55.098466,55.098364,55.098265,55.098174,55.098086,55.09799,55.097897,55.097805,55.09771,55.097615,55.097514,55.097414,55.097313,55.097209,55.097113,55.097017,55.096914,55.096818,55.096724,55.096632,55.096546,55.096445,55.096353,55.096258,55.096164,55.096069,55.095976,55.095879,55.095789,55.095736,55.095659,55.095584,55.095512,55.095427,55.095362,55.09529,55.095209,55.095119,55.095056,55.094966,55.094871,55.094777,55.094695,55.09462,55.094601,55.094513,55.094413,55.094315,55.094214,55.094122,55.094031,55.093933,55.093841,55.093743,55.093643,55.093546,55.093451,55.093355,55.093259,55.093168,55.093074,55.092999,55.092915,55.09283,55.092743,55.092659,55.092569,55.092479,55.092389,55.092295,55.092204,55.092115,55.09203,55.092004,55.091984,55.091968,55.091947,55.091957,55.091985,55.092035,55.092008,55.091969,55.091945,55.09192,55.091887,55.091861,55.091813,55.091731,55.09165,55.091566,55.091478,55.091393,55.091306,55.09121,55.09113,55.091045,55.090968,55.091005,55.090936,55.090842,55.09075,55.090654,55.090561,55.090474,55.090391,55.090292,55.090207,55.090109,55.090022,55.089959,55.089886,55.08981,55.089761,55.089716,55.089683,55.089651,55.089622,55.089566,55.089535,55.089532,55.089538,55.089504,55.089455,55.089426,55.08937,55.089322,55.089275,55.089241,55.089224,55.08919,55.089155,55.089118,55.08907,55.089019,55.088982,55.088953,55.088905,55.088882,55.088861,55.088853,55.088837,55.088833,55.088864,55.088859,55.088866,55.088864,55.088846,55.08886,55.088785,55.0887,55.088658,55.088613,55.088576,55.088486,55.088389,55.088352,55.088266,55.088176,55.088077,55.087979,55.0879,55.08781,55.087717,55.087627,55.08753,55.087435,55.087345,55.087318,55.087297,55.087328,55.087326,55.087351,55.087376,55.08739,55.087393,55.087396,55.087386,55.087383,55.087398,55.087389,55.087411,55.087418,55.087444,55.087448,55.087389,55.087326,55.087238,55.087139,55.087044,55.086951,55.086862,55.086768,55.086678,55.086585,55.086497,55.086402,55.086306,55.086208,55.086113,55.086017,55.085927,55.085836,55.085741,55.085642,55.085549,55.085471,55.085397,55.085312,55.085223,55.085132,55.085046,55.084946,55.084852,55.084758,55.084671,55.084577,55.084489,55.084395,55.084306,55.084218,55.084122,55.084043,55.084026,55.084046,55.083989,55.083891,55.083795,55.083702,55.083607,55.083509,55.083423,55.083335,55.083244,55.083157,55.083073,55.082984,55.082889,55.0828,55.082709,55.082616,55.082528,55.082435,55.082339,55.082245,55.082149,55.082058,55.081966,55.081876,55.081783,55.081693,55.081607,55.081515,55.081416,55.081321,55.081225,55.081129,55.081029,55.080932,55.080835,55.08074,55.080642,55.080544,55.080448,55.080349,55.080257,55.08016,55.080062,55.079971,55.079879,55.079779,55.079686,55.079597,55.079512,55.079425,55.07933,55.079234,55.079145,55.07909,55.079,55.078903,55.078831,55.078774,55.078685,55.078627,55.078572,55.078513,55.078467,55.078419,55.078367,55.07833,55.078283,55.078232,55.078165,55.078116,55.078032,55.07796,55.077898,55.077832,55.07778,55.077741,55.077688,55.077633,55.077584,55.077529,55.077464,55.077416,55.077366,55.077334,55.0773,55.077261,55.077206,55.077118,55.077071,55.077054,55.077029,55.076991,55.076941,55.07688,55.076801,55.076756,55.076719,55.076664,55.076615,55.07657,55.076521,55.076471,55.076412,55.076353,55.076302,55.076241,55.076175,55.076119,55.076058,55.076005,55.075958,55.075904,55.075835,55.075781,55.075739,55.075681,55.075621,55.07557,55.075513,55.07546,55.075392,55.075332,55.075275,55.075228,55.075167,55.075118,55.075064,55.075002,55.074953,55.074906,55.07484,55.074749,55.074658,55.07456,55.07447,55.07438,55.074284,55.074197,55.074105,55.074017,55.073933,55.07385,55.073765,55.073679,55.073591,55.073505,55.073427,55.073336,55.073249,55.073161,55.073118,55.073024,55.072935,55.072847,55.072759,55.072672,55.072584,55.072504,55.072416,55.072335,55.072249,55.072159,55.07207,55.071981,55.071902,55.071824,55.071738,55.071656,55.071573,55.071478,55.07139,55.071312,55.071227,55.071143,55.071065,55.070982,55.070901,55.070818,55.070748,55.070731,55.070683,55.070673,55.07067,55.070673,55.070677,55.070681,55.070683,55.070694,55.070684,55.070688,55.070697,55.070705,55.070714,55.070721,55.070729,55.070728,55.070729,55.070727,55.070734,55.070753,55.070767,55.07076,55.07077,55.070767,55.070775,55.07078,55.070794,55.070808,55.070813,55.070785,55.070746,55.070652,55.07057,55.070481,55.070398,55.070309,55.070215,55.070119,55.070031,55.069943,55.06984,55.069741,55.069645,55.069549,55.069461,55.069369,55.069282,55.069187,55.069088,55.068989,55.068899,55.068805,55.068715,55.068619,55.068524,55.068437,55.068345,55.068261,55.06818,55.068089,55.067996,55.067901,55.06781,55.067721,55.067634,55.067546,55.06749,55.067398,55.067309,55.067222,55.067129,55.067035,55.066938,55.066842,55.066748,55.066661,55.066567,55.066478,55.066392,55.066294,55.066199,55.066101,55.066015,55.065915,55.065819,55.065718,55.065618,55.065527,55.065436,55.065338,55.065242,55.065153,55.065067,55.064972,55.064882,55.064782,55.064698,55.064602,55.064507,55.06441,55.064317,55.064223,55.064131,55.064041,55.06395,55.06386,55.063774,55.063685,55.063602,55.063517,55.063472,55.06343,55.063417,55.063409,55.063324,55.063409,55.063415,55.06333,55.063245,55.063175,55.063111,55.063035,55.06296,55.062885,55.062808,55.062733,55.062651,55.062568,55.062488,55.062403,55.062306,55.06221,55.062119,55.062021,55.061921,55.061828,55.061729,55.061638,55.061541,55.061452,55.061354,55.061263,55.061183,55.061098,55.060996,55.060906,55.060807,55.060724,55.06063,55.060538,55.06045,55.060359,55.060265,55.060174,55.060077,55.059981,55.059883,55.059792,55.059696,55.059604,55.059512,55.059423,55.059331,55.059232,55.059136,55.059045,55.058952,55.058857,55.05877,55.058677,55.058578,55.058481,55.058385,55.058287,55.058191,55.05809,55.057993,55.057898,55.0578,55.057701,55.057607,55.057514,55.05742,55.057324,55.057224,55.057125,55.057032,55.056937,55.056841,55.056744,55.056655,55.056622,55.056522,55.056442,55.056359,55.056311,55.056255,55.056205,55.056161,55.056112,55.056053,55.055975,55.055923,55.055879,55.055849,55.05578,55.0557,55.055613,55.055535,55.055449,55.055383,55.055323,55.055268,55.055202,55.055164,55.055099,55.055044,55.054991,55.054937,55.054871,55.054813,55.054763,55.054683,55.054654,55.054623,55.054577,55.054539,55.054472,55.054407,55.054416,55.054393,55.054437,55.054385,55.05433,55.05427,55.054204,55.054132,55.054048,55.053976,55.0539,55.053822,55.053741,55.053684,55.053628,55.053574,55.053527,55.053498,55.053458,55.053418,55.053372,55.053331,55.053275,55.053225,55.053174,55.053099,55.053046,55.052949,55.052948,55.052976,55.052952,55.052931,55.052867,55.052785,55.052733,55.052746,55.052746,55.052713,55.052679,55.052629,55.052584,55.05255,55.052508,55.052463,55.052426,55.052396,55.052354,55.052308,55.052263,55.052226,55.052188,55.052141,55.052088,55.052036,55.051996,55.051941,55.051891,55.05184,55.05177,55.051696,55.051637,55.05156,55.051487,55.051459,55.051411,55.051427,55.051414,55.051412,55.051406,55.051363,55.051292,55.051227,55.05119,55.051152,55.051082,55.051014,55.050958,55.050916,55.050858,55.050808,55.050806,55.050772,55.050708,55.050642,55.050572,55.050508,55.050431,55.050358,55.050287,55.050228,55.050163,55.050102,55.050032,55.049957,55.049891,55.04982,55.049762,55.049701,55.049618,55.04954,55.04948,55.049402,55.049323,55.04924,55.04916,55.049089,55.049029,55.048951,55.048915,55.048821,55.048727,55.048632,55.04856,55.048486,55.048407,55.048325,55.04825,55.048173,55.048094,55.048012,55.047925,55.047841,55.04776,55.047673,55.047581,55.047492,55.047411,55.04734,55.047265,55.0472,55.04712,55.047045,55.046961,55.046863,55.046771,55.046677,55.046598,55.046529,55.046463,55.046385,55.046315,55.046226,55.046145,55.046078,55.046004,55.04592,55.045844,55.045765,55.045701,55.045626,55.045551,55.045476,55.045401,55.045313,55.045226,55.045157,55.045086,55.045014,55.044942,55.044859,55.04478,55.044686,55.04465,55.04456,55.044487,55.044408,55.044323,55.044237,55.044157,55.044069,55.043982,55.043918,55.043843,55.043757,55.043672,55.04359,55.043516,55.043417,55.043332,55.043242,55.043147,55.043051,55.042957,55.042875,55.042781,55.042691,55.042596,55.042497,55.042406,55.042313,55.04222,55.042121,55.042025,55.041932,55.04184,55.041743,55.041643,55.041543,55.041445,55.041347,55.041245,55.041152,55.04106,55.040972,55.040877,55.040784,55.040689,55.040599,55.040508,55.040423,55.04033,55.040241,55.040158,55.040065,55.039968,55.039877,55.039786,55.039695,55.039601,55.039508,55.039413,55.03932,55.039225,55.039132,55.03904,55.038947,55.038856,55.038765,55.038669,55.038578,55.038484,55.038382,55.038283,55.038188,55.03809,55.038,55.037899,55.037803,55.037713,55.037612,55.03751,55.037417,55.037329,55.037237,55.037145,55.037052,55.036955,55.036864,55.036778,55.036683,55.03659,55.036494,55.036393,55.036297,55.036198,55.036098,55.036001,55.035902,55.035812,55.035716,55.035623,55.035522,55.035429,55.035334,55.03523,55.035131,55.035031,55.034931,55.034835,55.03474,55.034641,55.034543,55.034442,55.034351,55.03425,55.034156,55.034057,55.033968,55.033872,55.033776,55.033684,55.033591,55.033493,55.033393,55.033297,55.033207,55.033112,55.033009,55.032906,55.032808,55.03271,55.032617,55.032578,55.032533,55.032453,55.03237,55.032294,55.032235,55.032158,55.032079,55.032005,55.031934,55.031863,55.031779,55.031694,55.031615,55.03154,55.031467,55.031393,55.0313,55.03122,55.031142,55.03106,55.030974,55.030889,55.030805,55.030721,55.03063,55.030537,55.030443,55.030345,55.030272,55.030194,55.030121,55.030031,55.029938,55.029854,55.02976,55.02967,55.029582,55.029515,55.029433,55.029426,55.029429,55.029431,55.029468,55.029449,55.029432,55.029426,55.029397,55.029339,55.029265,55.029189,55.029113,55.02903,55.028955,55.028871,55.028814,55.028754,55.028661,55.028566,55.028481,55.028396,55.028312,55.028219,55.028128,55.028045,55.027952,55.027863,55.027773,55.027684,55.027593,55.027505,55.02743,55.027415,55.027333,55.027243,55.027163,55.027071,55.026983,55.02689,55.026801,55.026725,55.02663,55.026548,55.026472,55.026413,55.02633,55.026244,55.026179,55.026101,55.026013,55.025931,55.02587,55.025804,55.025728,55.025637,55.025555,55.025461,55.025376,55.025283,55.025187,55.025098,55.025001,55.024905,55.024809,55.024713,55.024628,55.024557,55.024503,55.024482,55.024459,55.024465,55.024454,55.024454,55.024446,55.024446,55.024452,55.02446,55.024448,55.02436,55.024308,55.024234,55.024164,55.024097,55.024096,55.024147,55.024169,55.024182,55.024171,55.024082,55.024031,55.023938,55.02391,55.023812,55.023722,55.023631,55.023546,55.023504,55.023437,55.02337,55.023307,55.023241,55.023172,55.023098,55.023014,55.022989,55.022895,55.022808,55.022716,55.022623,55.022524,55.022424,55.022354,55.022268,55.022178,55.022085,55.021988,55.021896,55.021803,55.021714,55.021619,55.021533,55.021441,55.021346,55.021272,55.021187,55.021099,55.021013,55.020924,55.020841,55.020749,55.020656,55.020608,55.020519,55.020438,55.02042,55.020342,55.020256,55.020215,55.020156,55.020091,55.02002,55.01996,55.019897,55.019841,55.019798,55.019717,55.019647,55.019573,55.019503,55.019431,55.019366,55.019331,55.019305,55.0193,55.019255,55.019274,55.019232,55.019224,55.019139,55.019047,55.018952,55.018862,55.018762,55.018671,55.018573,55.018484,55.018388,55.018294,55.018198,55.018107,55.018012,55.017914,55.01782,55.017723,55.017632,55.017542,55.01745,55.017352,55.017258,55.017164,55.01707,55.016973,55.016872,55.016784,55.016689,55.016595,55.016496,55.016401,55.016307,55.016213,55.016121,55.016059,55.0161,55.016108,55.016111,55.016095,55.01607,55.01598,55.015882,55.01578,55.015687,55.01559,55.0155,55.015409,55.015318,55.015231,55.015144,55.015044,55.014949,55.014859,55.014761,55.014668,55.014572,55.01447,55.014378,55.014296,55.014197,55.014097,55.014004,55.013926,55.013859,55.013768,55.013667,55.013571,55.013489,55.013403,55.013312,55.013221,55.01313,55.013039,55.012943,55.012867,55.012788,55.012701,55.012611,55.012519,55.012435,55.01235,55.012254,55.012161,55.012071,55.011986,55.011889,55.011795,55.011742,55.011669,55.011624,55.011609,55.011577,55.011555,55.011552,55.011525,55.011501,55.011478,55.011462,55.011439,55.011411,55.011385,55.011362,55.011349,55.011322,55.011286,55.011252,55.011231,55.01122,55.011191,55.011176,55.011147,55.011124,55.011097,55.011056,55.011031,55.011006,55.01099,55.010979,55.010952,55.010917,55.010916]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[55.010916,55.318223],"lng":[-2.373039,-2.239992]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-4-2" class="tab-pane" aria-labelledby="tabset-4-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-16"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_2fcb74bc5e955c45492fc94222343fa7 {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_2fcb74bc5e955c45492fc94222343fa7&quot; ></div>
        
</body>
<script>
    
    
            var map_2fcb74bc5e955c45492fc94222343fa7 = L.map(
                &quot;map_2fcb74bc5e955c45492fc94222343fa7&quot;,
                {
                    center: [55.16403782047314, -2.297471609993367],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_55de30c28f4c507de17b934cd1717347 = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_55de30c28f4c507de17b934cd1717347.addTo(map_2fcb74bc5e955c45492fc94222343fa7);
        
    
            var tile_layer_9057d4843d9b2d62bed245e1de14a785 = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_9057d4843d9b2d62bed245e1de14a785.addTo(map_2fcb74bc5e955c45492fc94222343fa7);
        
    
            var color_line_90f65dc4863d9e10db3ab49092aca585 = L.featureGroup(
                {
}
            );
        
    
            var poly_line_8f419d2a932a3c6afb5693167f22de17 = L.polyline(
                [[[55.318077, -2.373039], [55.318124, -2.372888]], [[55.299619, -2.343609], [55.299528, -2.343566]], [[55.143234, -2.257722], [55.143226, -2.257889]], [[55.143226, -2.257889], [55.143234, -2.258046]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_90f65dc4863d9e10db3ab49092aca585);
        
    
            var poly_line_78bf5c4f0c31a797b2676d3d658694f0 = L.polyline(
                [[[55.318124, -2.372888], [55.318223, -2.372923]], [[55.318223, -2.372923], [55.318204, -2.372758]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_90f65dc4863d9e10db3ab49092aca585);
        
    
            var poly_line_6d013c92cbe18749669d318c0fad01d7 = L.polyline(
                [[[55.318204, -2.372758], [55.318182, -2.37259]], [[55.316167, -2.366422], [55.316101, -2.366295]], [[55.316101, -2.366295], [55.316053, -2.366161]], [[55.315399, -2.364379], [55.315343, -2.364245]], [[55.315045, -2.363358], [55.315028, -2.36319]], [[55.31031, -2.361877], [55.31025, -2.36175]], [[55.3091, -2.359582], [55.309027, -2.359471]], [[55.309027, -2.359471], [55.308952, -2.359377]], [[55.303321, -2.352997], [55.303378, -2.353128]], [[55.303905, -2.353704], [55.303997, -2.353756]], [[55.305171, -2.354147], [55.305257, -2.354232]], [[55.305257, -2.354232], [55.305338, -2.354304]], [[55.306009, -2.352533], [55.306012, -2.352362]], [[55.306012, -2.352362], [55.305939, -2.352246]], [[55.299714, -2.343652], [55.299619, -2.343609]], [[55.299528, -2.343566], [55.29944, -2.34352]], [[55.297381, -2.342457], [55.297312, -2.342346]], [[55.297312, -2.342346], [55.297239, -2.342243]], [[55.297239, -2.342243], [55.297171, -2.342126]], [[55.297171, -2.342126], [55.297097, -2.341999]], [[55.296928, -2.34183], [55.296852, -2.341695]], [[55.296852, -2.341695], [55.296804, -2.341555]], [[55.296602, -2.340268], [55.296513, -2.340196]], [[55.279173, -2.333461], [55.279102, -2.333353]], [[55.273583, -2.328623], [55.2735, -2.328534]], [[55.2735, -2.328534], [55.273418, -2.328455]], [[55.272619, -2.327832], [55.272541, -2.327746]], [[55.272541, -2.327746], [55.272461, -2.327651]], [[55.268402, -2.324378], [55.268316, -2.324325]], [[55.268316, -2.324325], [55.268223, -2.324229]], [[55.268223, -2.324229], [55.268138, -2.324153]], [[55.243847, -2.308132], [55.243772, -2.308046]], [[55.243772, -2.308046], [55.243687, -2.307957]], [[55.242046, -2.306534], [55.241967, -2.306437]], [[55.241967, -2.306437], [55.241885, -2.30637]], [[55.240349, -2.305206], [55.240263, -2.305144]], [[55.239916, -2.305011], [55.239826, -2.304966]], [[55.224303, -2.300158], [55.224232, -2.30004]], [[55.220233, -2.294432], [55.220164, -2.29431]], [[55.220164, -2.29431], [55.220088, -2.29421]], [[55.182821, -2.252241], [55.182726, -2.252202]], [[55.164077, -2.24428], [55.163987, -2.244341]], [[55.153853, -2.240731], [55.153812, -2.24058]], [[55.151469, -2.242788], [55.151382, -2.242867]], [[55.143052, -2.25546], [55.142963, -2.255493]], [[55.142986, -2.257201], [55.143068, -2.257304]], [[55.143465, -2.260705], [55.143458, -2.26087]], [[55.143458, -2.26087], [55.143453, -2.261031]], [[55.075064, -2.308133], [55.075002, -2.308263]], [[55.075002, -2.308263], [55.074953, -2.308415]], [[55.024171, -2.343544], [55.024082, -2.34352]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_90f65dc4863d9e10db3ab49092aca585);
        
    
            var poly_line_723c224df3fb2175f7a25d3f9c7c3b7d = L.polyline(
                [[[55.318182, -2.37259], [55.318112, -2.372467]], [[55.318112, -2.372467], [55.31806, -2.372331]], [[55.31806, -2.372331], [55.318003, -2.37219]], [[55.317871, -2.371696], [55.317821, -2.371542]], [[55.317821, -2.371542], [55.317776, -2.371384]], [[55.317776, -2.371384], [55.317724, -2.371229]], [[55.317724, -2.371229], [55.317705, -2.371074]], [[55.317615, -2.370773], [55.317554, -2.370647]], [[55.317554, -2.370647], [55.317497, -2.3705]], [[55.317497, -2.3705], [55.317462, -2.370348]], [[55.317462, -2.370348], [55.317412, -2.370216]], [[55.317368, -2.370056], [55.317321, -2.369902]], [[55.317101, -2.369156], [55.317038, -2.369016]], [[55.317038, -2.369016], [55.316975, -2.368898]], [[55.316889, -2.368612], [55.31685, -2.368453]], [[55.31685, -2.368453], [55.316804, -2.36831]], [[55.316804, -2.36831], [55.316751, -2.368164]], [[55.316751, -2.368164], [55.316688, -2.368038]], [[55.316461, -2.367318], [55.316398, -2.367181]], [[55.316398, -2.367181], [55.316341, -2.36703]], [[55.316341, -2.36703], [55.316281, -2.366889]], [[55.315505, -2.364652], [55.315458, -2.364507]], [[55.314985, -2.363044], [55.314913, -2.362926]], [[55.31432, -2.363227], [55.314224, -2.363279]], [[55.314224, -2.363279], [55.314136, -2.363253]], [[55.313918, -2.363638], [55.313827, -2.363663]], [[55.313827, -2.363663], [55.313737, -2.36367]], [[55.313737, -2.36367], [55.313644, -2.363672]], [[55.313516, -2.36366], [55.313429, -2.363574]], [[55.313298, -2.362997], [55.313242, -2.362864]], [[55.313242, -2.362864], [55.313145, -2.362818]], [[55.313145, -2.362818], [55.313059, -2.362861]], [[55.313059, -2.362861], [55.312966, -2.362908]], [[55.312833, -2.363067], [55.31275, -2.363141]], [[55.31275, -2.363141], [55.312664, -2.363235]], [[55.312664, -2.363235], [55.31258, -2.363313]], [[55.31258, -2.363313], [55.312487, -2.363354]], [[55.312487, -2.363354], [55.312397, -2.363351]], [[55.312397, -2.363351], [55.312305, -2.3633]], [[55.312305, -2.3633], [55.312215, -2.36327]], [[55.312033, -2.363205], [55.311937, -2.363178]], [[55.311937, -2.363178], [55.311846, -2.363177]], [[55.311462, -2.363158], [55.311362, -2.363172]], [[55.311362, -2.363172], [55.311266, -2.363187]], [[55.311266, -2.363187], [55.311176, -2.363204]], [[55.311176, -2.363204], [55.311084, -2.363223]], [[55.311084, -2.363223], [55.310997, -2.363286]], [[55.310997, -2.363286], [55.310908, -2.363329]], [[55.310908, -2.363329], [55.31082, -2.363389]], [[55.310733, -2.36335], [55.310713, -2.36318]], [[55.310713, -2.36318], [55.310707, -2.363018]], [[55.309449, -2.360249], [55.30939, -2.360125]], [[55.307897, -2.357593], [55.30785, -2.357457]], [[55.307676, -2.356871], [55.307646, -2.356709]], [[55.307646, -2.356709], [55.307617, -2.356559]], [[55.307617, -2.356559], [55.307594, -2.356404]], [[55.307179, -2.354156], [55.307139, -2.353992]], [[55.307106, -2.353836], [55.30707, -2.353675]], [[55.30707, -2.353675], [55.307023, -2.353529]], [[55.305985, -2.352842], [55.305975, -2.353018]], [[55.305975, -2.353018], [55.305975, -2.353191]], [[55.305805, -2.354013], [55.305742, -2.354134]], [[55.305669, -2.35423], [55.305574, -2.35429]], [[55.305574, -2.35429], [55.305485, -2.35432]], [[55.305288, -2.354239], [55.305208, -2.354155]], [[55.305208, -2.354155], [55.305122, -2.354078]], [[55.304277, -2.353724], [55.304184, -2.353746]], [[55.304184, -2.353746], [55.304087, -2.353715]], [[55.303896, -2.353693], [55.303805, -2.353661]], [[55.303475, -2.35341], [55.303429, -2.353265]], [[55.303261, -2.35287], [55.303214, -2.352726]], [[55.303265, -2.352863], [55.303321, -2.352997]], [[55.30354, -2.353536], [55.303623, -2.353608]], [[55.303623, -2.353608], [55.303714, -2.353646]], [[55.305369, -2.351184], [55.305311, -2.351041]], [[55.304991, -2.350942], [55.30494, -2.351084]], [[55.30494, -2.351084], [55.304883, -2.351217]], [[55.304645, -2.351736], [55.304601, -2.351886]], [[55.304601, -2.351886], [55.304541, -2.352014]], [[55.304541, -2.352014], [55.304447, -2.352074]], [[55.304447, -2.352074], [55.304351, -2.352087]], [[55.304351, -2.352087], [55.30426, -2.352016]], [[55.30426, -2.352016], [55.304161, -2.351978]], [[55.304161, -2.351978], [55.304076, -2.351876]], [[55.304076, -2.351876], [55.303993, -2.351779]], [[55.303928, -2.351647], [55.303888, -2.351501]], [[55.303888, -2.351501], [55.303798, -2.351424]], [[55.303798, -2.351424], [55.303715, -2.351348]], [[55.303636, -2.35127], [55.303561, -2.351171]], [[55.303561, -2.351171], [55.303488, -2.351068]], [[55.303488, -2.351068], [55.303413, -2.350972]], [[55.303413, -2.350972], [55.303326, -2.350914]], [[55.303185, -2.350697], [55.303116, -2.350571]], [[55.303116, -2.350571], [55.303056, -2.350437]], [[55.303056, -2.350437], [55.303017, -2.350274]], [[55.302898, -2.349825], [55.302874, -2.349672]], [[55.30276, -2.349035], [55.302734, -2.348867]], [[55.302734, -2.348867], [55.302701, -2.348721]], [[55.302707, -2.348314], [55.302659, -2.348178]], [[55.302659, -2.348178], [55.302607, -2.348022]], [[55.302607, -2.348022], [55.302566, -2.347869]], [[55.302566, -2.347869], [55.302519, -2.347722]], [[55.302519, -2.347722], [55.302475, -2.347583]], [[55.302475, -2.347583], [55.302429, -2.347444]], [[55.301796, -2.34618], [55.301746, -2.346047]], [[55.301746, -2.346047], [55.301677, -2.345919]], [[55.301677, -2.345919], [55.301632, -2.345756]], [[55.301632, -2.345756], [55.301588, -2.345611]], [[55.301588, -2.345611], [55.301559, -2.345456]], [[55.301132, -2.345018], [55.30105, -2.344942]], [[55.30105, -2.344942], [55.300965, -2.344875]], [[55.300965, -2.344875], [55.300884, -2.344805]], [[55.300884, -2.344805], [55.300817, -2.344667]], [[55.300817, -2.344667], [55.300737, -2.344556]], [[55.300737, -2.344556], [55.300675, -2.344422]], [[55.299072, -2.343272], [55.298976, -2.343224]], [[55.298976, -2.343224], [55.29889, -2.343146]], [[55.29889, -2.343146], [55.298804, -2.343077]], [[55.298409, -2.343076], [55.298309, -2.3431]], [[55.296804, -2.341555], [55.296782, -2.341396]], [[55.296744, -2.341242], [55.296691, -2.341091]], [[55.296691, -2.341091], [55.296655, -2.34093]], [[55.296655, -2.34093], [55.296633, -2.340763]], [[55.296139, -2.340158], [55.296054, -2.34022]], [[55.296054, -2.34022], [55.295981, -2.340337]], [[55.295981, -2.340337], [55.295914, -2.340444]], [[55.295584, -2.340606], [55.295488, -2.340575]], [[55.295488, -2.340575], [55.295402, -2.340513]], [[55.295402, -2.340513], [55.295306, -2.340461]], [[55.295306, -2.340461], [55.295211, -2.340401]], [[55.295211, -2.340401], [55.295121, -2.340356]], [[55.295121, -2.340356], [55.295021, -2.340351]], [[55.294826, -2.340394], [55.294728, -2.340427]], [[55.294728, -2.340427], [55.294629, -2.340448]], [[55.294629, -2.340448], [55.294529, -2.340466]], [[55.294529, -2.340466], [55.294435, -2.34048]], [[55.294435, -2.34048], [55.294339, -2.340499]], [[55.294339, -2.340499], [55.294242, -2.340512]], [[55.294242, -2.340512], [55.294152, -2.340532]], [[55.294152, -2.340532], [55.294053, -2.340559]], [[55.293964, -2.340584], [55.293863, -2.340606]], [[55.293583, -2.340682], [55.293488, -2.340706]], [[55.293488, -2.340706], [55.293391, -2.340732]], [[55.293391, -2.340732], [55.293296, -2.34076]], [[55.292019, -2.340367], [55.291936, -2.340295]], [[55.291936, -2.340295], [55.291843, -2.340224]], [[55.291668, -2.340066], [55.291584, -2.339996]], [[55.291584, -2.339996], [55.291491, -2.339927]], [[55.291491, -2.339927], [55.291406, -2.339857]], [[55.29096, -2.339501], [55.290872, -2.339424]], [[55.290872, -2.339424], [55.290786, -2.339365]], [[55.290786, -2.339365], [55.290701, -2.339297]], [[55.290078, -2.338819], [55.289983, -2.33876]], [[55.289983, -2.33876], [55.289885, -2.338701]], [[55.289514, -2.338476], [55.289426, -2.338425]], [[55.288891, -2.338042], [55.2888, -2.337968]], [[55.2888, -2.337968], [55.288705, -2.337947]], [[55.288433, -2.337869], [55.288344, -2.337819]], [[55.288344, -2.337819], [55.288256, -2.337774]], [[55.288256, -2.337774], [55.288163, -2.337719]], [[55.287993, -2.337584], [55.287904, -2.337488]], [[55.287904, -2.337488], [55.287818, -2.337402]], [[55.286953, -2.337199], [55.286861, -2.337194]], [[55.286861, -2.337194], [55.286767, -2.33719]], [[55.285638, -2.337159], [55.285548, -2.337186]], [[55.285548, -2.337186], [55.285456, -2.337224]], [[55.285456, -2.337224], [55.285367, -2.337258]], [[55.284903, -2.337324], [55.284813, -2.337281]], [[55.284536, -2.337124], [55.284448, -2.337073]], [[55.284258, -2.336995], [55.284157, -2.336984]], [[55.284157, -2.336984], [55.284057, -2.336946]], [[55.283764, -2.336876], [55.28367, -2.336879]], [[55.283085, -2.336713], [55.282994, -2.336707]], [[55.282234, -2.336519], [55.282144, -2.336509]], [[55.282144, -2.336509], [55.282051, -2.336495]], [[55.282051, -2.336495], [55.281953, -2.336509]], [[55.281953, -2.336509], [55.281861, -2.33649]], [[55.279, -2.333081], [55.278964, -2.332934]], [[55.278964, -2.332934], [55.278948, -2.332773]], [[55.278948, -2.332773], [55.278939, -2.332596]], [[55.278939, -2.332596], [55.278926, -2.332433]], [[55.278909, -2.332275], [55.278895, -2.332112]], [[55.278895, -2.332112], [55.278885, -2.331943]], [[55.278885, -2.331943], [55.278884, -2.331774]], [[55.278884, -2.331774], [55.278889, -2.331604]], [[55.278886, -2.331441], [55.278863, -2.331272]], [[55.278863, -2.331272], [55.27886, -2.331093]], [[55.27886, -2.331093], [55.278847, -2.330936]], [[55.278847, -2.330936], [55.278835, -2.330778]], [[55.27875, -2.33047], [55.27869, -2.330344]], [[55.27869, -2.330344], [55.278612, -2.330243]], [[55.278612, -2.330243], [55.278534, -2.330154]], [[55.278534, -2.330154], [55.278453, -2.330076]], [[55.278453, -2.330076], [55.27836, -2.330013]], [[55.27836, -2.330013], [55.278271, -2.329929]], [[55.278271, -2.329929], [55.278182, -2.329891]], [[55.278182, -2.329891], [55.278087, -2.329829]], [[55.27544, -2.328819], [55.275346, -2.328792]], [[55.275346, -2.328792], [55.275254, -2.328778]], [[55.271922, -2.32725], [55.27183, -2.327183]], [[55.266665, -2.322859], [55.266578, -2.322788]], [[55.266578, -2.322788], [55.266494, -2.322722]], [[55.266405, -2.322665], [55.266311, -2.322609]], [[55.266311, -2.322609], [55.266216, -2.322548]], [[55.266216, -2.322548], [55.26613, -2.322486]], [[55.26613, -2.322486], [55.266047, -2.322412]], [[55.265964, -2.32231], [55.265877, -2.322219]], [[55.265877, -2.322219], [55.265791, -2.322153]], [[55.265791, -2.322153], [55.265708, -2.322075]], [[55.265569, -2.321833], [55.265502, -2.321725]], [[55.265427, -2.321608], [55.265359, -2.321499]], [[55.265359, -2.321499], [55.265271, -2.321414]], [[55.265271, -2.321414], [55.265193, -2.321318]], [[55.265193, -2.321318], [55.265118, -2.321227]], [[55.265118, -2.321227], [55.265034, -2.321137]], [[55.264784, -2.320879], [55.264697, -2.320807]], [[55.264607, -2.320739], [55.26452, -2.320698]], [[55.26452, -2.320698], [55.264431, -2.32065]], [[55.264431, -2.32065], [55.264341, -2.320595]], [[55.264341, -2.320595], [55.264255, -2.320533]], [[55.264255, -2.320533], [55.264164, -2.320497]], [[55.264164, -2.320497], [55.264069, -2.32044]], [[55.263979, -2.320376], [55.263891, -2.320342]], [[55.263891, -2.320342], [55.263802, -2.320288]], [[55.263802, -2.320288], [55.263712, -2.320221]], [[55.263712, -2.320221], [55.263625, -2.320175]], [[55.263625, -2.320175], [55.263537, -2.320114]], [[55.263537, -2.320114], [55.26345, -2.320034]], [[55.26345, -2.320034], [55.263353, -2.319994]], [[55.263353, -2.319994], [55.263266, -2.319928]], [[55.263266, -2.319928], [55.263179, -2.31986]], [[55.263179, -2.31986], [55.263098, -2.319767]], [[55.263098, -2.319767], [55.263014, -2.319696]], [[55.263014, -2.319696], [55.262928, -2.319638]], [[55.262928, -2.319638], [55.262841, -2.319578]], [[55.262841, -2.319578], [55.262756, -2.319501]], [[55.262756, -2.319501], [55.262674, -2.319427]], [[55.262674, -2.319427], [55.262584, -2.319377]], [[55.262584, -2.319377], [55.262504, -2.319306]], [[55.262504, -2.319306], [55.262408, -2.319268]], [[55.262408, -2.319268], [55.262313, -2.31924]], [[55.262313, -2.31924], [55.262215, -2.319249]], [[55.262018, -2.31922], [55.261921, -2.319244]], [[55.261921, -2.319244], [55.261827, -2.319288]], [[55.261827, -2.319288], [55.261737, -2.319336]], [[55.261737, -2.319336], [55.261643, -2.319358]], [[55.261643, -2.319358], [55.261556, -2.319422]], [[55.261556, -2.319422], [55.261461, -2.319478]], [[55.261461, -2.319478], [55.261378, -2.319542]], [[55.261378, -2.319542], [55.261284, -2.319593]], [[55.261284, -2.319593], [55.261185, -2.319624]], [[55.261185, -2.319624], [55.261089, -2.319618]], [[55.261089, -2.319618], [55.260994, -2.319597]], [[55.260994, -2.319597], [55.260902, -2.319555]], [[55.260902, -2.319555], [55.260806, -2.319523]], [[55.260806, -2.319523], [55.260711, -2.319503]], [[55.260711, -2.319503], [55.260611, -2.319479]], [[55.260611, -2.319479], [55.260517, -2.319463]], [[55.260517, -2.319463], [55.260426, -2.319428]], [[55.260426, -2.319428], [55.260336, -2.31939]], [[55.260336, -2.31939], [55.260238, -2.319359]], [[55.260238, -2.319359], [55.26015, -2.31932]], [[55.26015, -2.31932], [55.260059, -2.319284]], [[55.260059, -2.319284], [55.259957, -2.31926]], [[55.259957, -2.31926], [55.259861, -2.319246]], [[55.259861, -2.319246], [55.25977, -2.31924]], [[55.25977, -2.31924], [55.259676, -2.319247]], [[55.259676, -2.319247], [55.259579, -2.319242]], [[55.25948, -2.319227], [55.259381, -2.319207]], [[55.259186, -2.319103], [55.259092, -2.319052]], [[55.258897, -2.318955], [55.258809, -2.318896]], [[55.258728, -2.318825], [55.258639, -2.318772]], [[55.258639, -2.318772], [55.258542, -2.318742]], [[55.258542, -2.318742], [55.258452, -2.318704]], [[55.258452, -2.318704], [55.258359, -2.318673]], [[55.258359, -2.318673], [55.258265, -2.318645]], [[55.258265, -2.318645], [55.25817, -2.31863]], [[55.25817, -2.31863], [55.258078, -2.318618]], [[55.258078, -2.318618], [55.257978, -2.318604]], [[55.257978, -2.318604], [55.25788, -2.318601]], [[55.25788, -2.318601], [55.257778, -2.318586]], [[55.257778, -2.318586], [55.257686, -2.318568]], [[55.257686, -2.318568], [55.257587, -2.318558]], [[55.257587, -2.318558], [55.257492, -2.31854]], [[55.257492, -2.31854], [55.257395, -2.318525]], [[55.257395, -2.318525], [55.257305, -2.318512]], [[55.257305, -2.318512], [55.257205, -2.318509]], [[55.257205, -2.318509], [55.257114, -2.318499]], [[55.257114, -2.318499], [55.257024, -2.318501]], [[55.257024, -2.318501], [55.256929, -2.3185]], [[55.256929, -2.3185], [55.256829, -2.31851]], [[55.256731, -2.318491], [55.25664, -2.318474]], [[55.256452, -2.318465], [55.256349, -2.318469]], [[55.256154, -2.318441], [55.256057, -2.318459]], [[55.256057, -2.318459], [55.255966, -2.318471]], [[55.255966, -2.318471], [55.255873, -2.318471]], [[55.255781, -2.318469], [55.255689, -2.318478]], [[55.255689, -2.318478], [55.255594, -2.31846]], [[55.255594, -2.31846], [55.255502, -2.318456]], [[55.255012, -2.318445], [55.254917, -2.318463]], [[55.254917, -2.318463], [55.254829, -2.31843]], [[55.246886, -2.310865], [55.246792, -2.310792]], [[55.246621, -2.310651], [55.246542, -2.310575]], [[55.246542, -2.310575], [55.246459, -2.310506]], [[55.243085, -2.307441], [55.243, -2.307367]], [[55.240856, -2.305484], [55.240896, -2.30555]], [[55.240263, -2.305144], [55.240206, -2.305115]], [[55.240108, -2.30509], [55.240008, -2.305058]], [[55.238584, -2.304435], [55.238493, -2.304423]], [[55.238396, -2.304426], [55.238295, -2.304383]], [[55.236272, -2.304174], [55.236183, -2.304203]], [[55.236183, -2.304203], [55.236088, -2.30423]], [[55.236088, -2.30423], [55.235992, -2.304247]], [[55.235992, -2.304247], [55.235897, -2.304273]], [[55.235897, -2.304273], [55.235797, -2.304262]], [[55.235797, -2.304262], [55.235705, -2.30424]], [[55.235705, -2.30424], [55.235618, -2.30418]], [[55.235618, -2.30418], [55.235525, -2.30413]], [[55.235525, -2.30413], [55.23544, -2.304077]], [[55.23544, -2.304077], [55.235351, -2.304028]], [[55.235351, -2.304028], [55.235259, -2.303983]], [[55.229511, -2.303068], [55.22941, -2.303052]], [[55.228167, -2.302777], [55.228077, -2.302756]], [[55.227682, -2.302604], [55.227593, -2.302559]], [[55.227311, -2.302472], [55.227212, -2.302447]], [[55.227212, -2.302447], [55.227123, -2.302418]], [[55.226735, -2.302365], [55.226637, -2.302366]], [[55.226446, -2.302323], [55.226353, -2.302272]], [[55.226353, -2.302272], [55.226253, -2.302243]], [[55.226253, -2.302243], [55.226164, -2.302187]], [[55.226164, -2.302187], [55.226069, -2.302139]], [[55.226069, -2.302139], [55.225979, -2.302082]], [[55.225979, -2.302082], [55.225896, -2.30202]], [[55.225896, -2.30202], [55.225804, -2.301955]], [[55.225804, -2.301955], [55.225716, -2.301891]], [[55.225716, -2.301891], [55.225629, -2.301823]], [[55.225467, -2.301655], [55.225386, -2.301584]], [[55.225386, -2.301584], [55.225298, -2.301508]], [[55.225298, -2.301508], [55.225212, -2.301428]], [[55.223502, -2.298932], [55.223415, -2.298845]], [[55.223415, -2.298845], [55.223335, -2.298761]], [[55.223262, -2.298665], [55.223195, -2.298559]], [[55.223195, -2.298559], [55.22312, -2.298441]], [[55.221024, -2.295621], [55.220958, -2.295514]], [[55.220958, -2.295514], [55.220882, -2.295401]], [[55.220882, -2.295401], [55.220804, -2.295297]], [[55.220804, -2.295297], [55.220737, -2.295185]], [[55.220526, -2.294856], [55.220449, -2.294767]], [[55.220449, -2.294767], [55.22037, -2.294658]], [[55.22037, -2.294658], [55.220297, -2.294555]], [[55.219948, -2.293988], [55.219885, -2.293874]], [[55.219885, -2.293874], [55.219829, -2.293745]], [[55.219829, -2.293745], [55.219786, -2.2936]], [[55.219693, -2.293305], [55.219642, -2.293164]], [[55.219642, -2.293164], [55.219589, -2.293036]], [[55.219589, -2.293036], [55.219528, -2.292903]], [[55.219528, -2.292903], [55.219471, -2.292759]], [[55.219471, -2.292759], [55.219416, -2.292616]], [[55.219416, -2.292616], [55.219365, -2.292485]], [[55.219365, -2.292485], [55.21931, -2.292344]], [[55.21931, -2.292344], [55.219257, -2.292209]], [[55.219257, -2.292209], [55.21921, -2.29207]], [[55.21921, -2.29207], [55.219166, -2.291927]], [[55.219166, -2.291927], [55.219132, -2.291776]], [[55.219132, -2.291776], [55.219106, -2.291616]], [[55.219106, -2.291616], [55.219096, -2.291452]], [[55.219096, -2.291452], [55.219079, -2.291281]], [[55.219067, -2.29111], [55.219054, -2.29095]], [[55.219041, -2.290782], [55.219032, -2.290625]], [[55.218997, -2.290135], [55.218975, -2.289969]], [[55.218975, -2.289969], [55.21896, -2.289809]], [[55.21896, -2.289809], [55.218943, -2.28965]], [[55.218943, -2.28965], [55.218926, -2.289487]], [[55.218926, -2.289487], [55.218916, -2.289321]], [[55.218898, -2.289163], [55.218877, -2.289007]], [[55.218877, -2.289007], [55.218857, -2.288834]], [[55.218857, -2.288834], [55.218837, -2.28868]], [[55.218837, -2.28868], [55.218821, -2.288505]], [[55.218821, -2.288505], [55.218812, -2.288343]], [[55.218812, -2.288343], [55.218792, -2.288168]], [[55.218792, -2.288168], [55.218774, -2.287994]], [[55.218774, -2.287994], [55.218767, -2.287828]], [[55.218754, -2.287654], [55.218745, -2.28749]], [[55.218745, -2.28749], [55.218732, -2.287317]], [[55.218732, -2.287317], [55.218721, -2.287157]], [[55.218721, -2.287157], [55.218704, -2.286998]], [[55.218704, -2.286998], [55.218689, -2.286842]], [[55.218659, -2.286518], [55.218643, -2.286354]], [[55.218643, -2.286354], [55.218632, -2.286178]], [[55.218604, -2.285836], [55.218593, -2.285665]], [[55.218593, -2.285665], [55.218579, -2.285491]], [[55.218579, -2.285491], [55.218559, -2.28532]], [[55.218487, -2.284312], [55.218518, -2.284147]], [[55.218518, -2.284147], [55.21857, -2.284012]], [[55.21857, -2.284012], [55.218629, -2.283882]], [[55.218629, -2.283882], [55.218687, -2.283756]], [[55.218687, -2.283756], [55.218751, -2.283622]], [[55.218751, -2.283622], [55.218817, -2.283495]], [[55.218817, -2.283495], [55.218886, -2.283366]], [[55.218886, -2.283366], [55.218946, -2.283239]], [[55.218946, -2.283239], [55.218999, -2.283089]], [[55.218999, -2.283089], [55.219038, -2.282939]], [[55.219038, -2.282939], [55.219059, -2.28278]], [[55.219059, -2.28278], [55.219054, -2.282618]], [[55.219054, -2.282618], [55.219075, -2.282449]], [[55.219075, -2.282449], [55.219094, -2.282286]], [[55.219094, -2.282286], [55.219111, -2.28212]], [[55.219097, -2.277073], [55.219043, -2.276939]], [[55.21889, -2.276751], [55.218824, -2.276629]], [[55.218348, -2.275811], [55.218284, -2.275688]], [[55.218284, -2.275688], [55.218229, -2.275548]], [[55.218229, -2.275548], [55.218188, -2.275397]], [[55.218188, -2.275397], [55.218133, -2.275261]], [[55.218133, -2.275261], [55.218051, -2.275181]], [[55.217952, -2.274877], [55.217867, -2.274799]], [[55.217867, -2.274799], [55.217792, -2.274701]], [[55.217792, -2.274701], [55.217717, -2.274582]], [[55.217569, -2.27437], [55.217494, -2.274255]], [[55.217494, -2.274255], [55.217465, -2.274106]], [[55.217465, -2.274106], [55.2174, -2.273974]], [[55.2174, -2.273974], [55.217339, -2.273842]], [[55.217339, -2.273842], [55.217276, -2.273727]], [[55.217276, -2.273727], [55.217184, -2.273712]], [[55.217184, -2.273712], [55.217095, -2.273663]], [[55.217095, -2.273663], [55.217048, -2.273516]], [[55.217048, -2.273516], [55.216962, -2.273426]], [[55.216962, -2.273426], [55.216905, -2.273304]], [[55.216839, -2.273182], [55.216762, -2.273063]], [[55.216526, -2.272555], [55.216463, -2.272435]], [[55.216463, -2.272435], [55.216386, -2.272336]], [[55.216386, -2.272336], [55.216313, -2.272234]], [[55.216168, -2.272015], [55.216089, -2.271903]], [[55.215075, -2.269361], [55.215021, -2.269218]], [[55.215021, -2.269218], [55.214979, -2.269077]], [[55.214979, -2.269077], [55.214926, -2.268933]], [[55.214926, -2.268933], [55.214867, -2.268807]], [[55.214774, -2.268497], [55.214741, -2.268341]], [[55.21443, -2.2671], [55.214384, -2.266945]], [[55.214384, -2.266945], [55.214334, -2.266806]], [[55.214334, -2.266806], [55.214293, -2.266644]], [[55.214293, -2.266644], [55.214249, -2.266488]], [[55.214249, -2.266488], [55.214207, -2.266334]], [[55.214207, -2.266334], [55.214178, -2.266179]], [[55.214178, -2.266179], [55.214141, -2.266035]], [[55.214141, -2.266035], [55.214103, -2.265875]], [[55.213712, -2.264], [55.213665, -2.263844]], [[55.213492, -2.263459], [55.213443, -2.26332]], [[55.213443, -2.26332], [55.213398, -2.26318]], [[55.213367, -2.262688], [55.213328, -2.262545]], [[55.213328, -2.262545], [55.213279, -2.26241]], [[55.213134, -2.261789], [55.213094, -2.261629]], [[55.213094, -2.261629], [55.213061, -2.261481]], [[55.212991, -2.261172], [55.212967, -2.261012]], [[55.212967, -2.261012], [55.212935, -2.26086]], [[55.21254, -2.260219], [55.212481, -2.260078]], [[55.212481, -2.260078], [55.212424, -2.259953]], [[55.212424, -2.259953], [55.212348, -2.259847]], [[55.212348, -2.259847], [55.212274, -2.25975]], [[55.212274, -2.25975], [55.212203, -2.259635]], [[55.212203, -2.259635], [55.212137, -2.259527]], [[55.212137, -2.259527], [55.212075, -2.259406]], [[55.212075, -2.259406], [55.21201, -2.259285]], [[55.21201, -2.259285], [55.211956, -2.259148]], [[55.211956, -2.259148], [55.211895, -2.259013]], [[55.211895, -2.259013], [55.211838, -2.258869]], [[55.211838, -2.258869], [55.211787, -2.258726]], [[55.211787, -2.258726], [55.211736, -2.258579]], [[55.21169, -2.258443], [55.211655, -2.258285]], [[55.211655, -2.258285], [55.211603, -2.25815]], [[55.211603, -2.25815], [55.211543, -2.258031]], [[55.211543, -2.258031], [55.211478, -2.25792]], [[55.211478, -2.25792], [55.211399, -2.257819]], [[55.211399, -2.257819], [55.211326, -2.257714]], [[55.211326, -2.257714], [55.21124, -2.257631]], [[55.21124, -2.257631], [55.211177, -2.257495]], [[55.211177, -2.257495], [55.211133, -2.257354]], [[55.211, -2.256913], [55.210948, -2.256763]], [[55.210948, -2.256763], [55.210911, -2.256615]], [[55.210875, -2.256466], [55.210826, -2.256332]], [[55.210826, -2.256332], [55.210776, -2.256201]], [[55.210776, -2.256201], [55.21072, -2.256069]], [[55.21029, -2.255803], [55.210207, -2.255713]], [[55.210207, -2.255713], [55.210112, -2.25569]], [[55.210112, -2.25569], [55.210036, -2.255583]], [[55.210036, -2.255583], [55.209961, -2.255469]], [[55.209961, -2.255469], [55.209892, -2.255362]], [[55.209892, -2.255362], [55.209803, -2.25529]], [[55.209803, -2.25529], [55.209709, -2.255262]], [[55.209709, -2.255262], [55.209619, -2.255223]], [[55.209619, -2.255223], [55.209551, -2.255119]], [[55.209551, -2.255119], [55.209479, -2.255019]], [[55.209479, -2.255019], [55.209404, -2.254909]], [[55.209404, -2.254909], [55.209322, -2.254837]], [[55.209322, -2.254837], [55.209242, -2.254756]], [[55.209242, -2.254756], [55.209156, -2.254709]], [[55.209156, -2.254709], [55.20907, -2.254652]], [[55.20907, -2.254652], [55.20898, -2.254621]], [[55.208427, -2.254397], [55.208361, -2.25428]], [[55.208361, -2.25428], [55.208301, -2.254153]], [[55.208301, -2.254153], [55.208243, -2.254006]], [[55.208243, -2.254006], [55.208225, -2.25385]], [[55.208225, -2.25385], [55.208195, -2.253702]], [[55.208195, -2.253702], [55.208138, -2.253567]], [[55.208138, -2.253567], [55.208075, -2.253427]], [[55.208075, -2.253427], [55.208037, -2.253275]], [[55.208037, -2.253275], [55.207993, -2.253123]], [[55.207993, -2.253123], [55.207946, -2.252987]], [[55.207946, -2.252987], [55.20789, -2.252844]], [[55.20789, -2.252844], [55.207824, -2.252713]], [[55.207824, -2.252713], [55.207761, -2.25259]], [[55.207699, -2.252473], [55.207622, -2.252364]], [[55.207622, -2.252364], [55.207556, -2.252238]], [[55.207556, -2.252238], [55.207481, -2.252128]], [[55.207481, -2.252128], [55.207401, -2.252045]], [[55.207326, -2.251958], [55.207251, -2.251847]], [[55.206998, -2.251591], [55.206921, -2.251497]], [[55.206921, -2.251497], [55.206853, -2.251379]], [[55.206853, -2.251379], [55.206779, -2.251284]], [[55.206779, -2.251284], [55.206711, -2.251164]], [[55.206711, -2.251164], [55.206636, -2.251049]], [[55.206636, -2.251049], [55.206554, -2.250963]], [[55.206554, -2.250963], [55.206479, -2.250849]], [[55.206125, -2.250633], [55.206036, -2.250609]], [[55.206036, -2.250609], [55.20594, -2.250557]], [[55.205746, -2.250502], [55.205657, -2.250455]], [[55.205657, -2.250455], [55.205573, -2.250379]], [[55.205392, -2.25025], [55.205296, -2.250208]], [[55.205296, -2.250208], [55.205205, -2.250168]], [[55.204931, -2.249989], [55.204836, -2.249917]], [[55.204743, -2.2499], [55.204671, -2.249804]], [[55.204671, -2.249804], [55.204579, -2.24981]], [[55.204579, -2.24981], [55.204483, -2.249805]], [[55.204483, -2.249805], [55.2044, -2.24972]], [[55.20431, -2.2497], [55.204217, -2.249651]], [[55.204217, -2.249651], [55.204125, -2.249631]], [[55.204125, -2.249631], [55.204034, -2.249625]], [[55.204034, -2.249625], [55.203943, -2.24959]], [[55.203943, -2.24959], [55.203852, -2.249518]], [[55.203852, -2.249518], [55.203766, -2.249423]], [[55.20351, -2.249197], [55.203421, -2.249147]], [[55.203421, -2.249147], [55.203324, -2.249104]], [[55.203234, -2.249069], [55.203134, -2.249051]], [[55.203134, -2.249051], [55.203045, -2.24901]], [[55.202958, -2.248956], [55.202867, -2.248905]], [[55.202602, -2.248755], [55.202514, -2.24867]], [[55.202514, -2.24867], [55.202427, -2.248609]], [[55.202427, -2.248609], [55.202352, -2.248518]], [[55.202352, -2.248518], [55.202254, -2.248492]], [[55.202254, -2.248492], [55.202164, -2.248448]], [[55.202164, -2.248448], [55.202073, -2.248394]], [[55.201973, -2.24838], [55.201871, -2.248418]], [[55.201774, -2.248435], [55.20168, -2.248448]], [[55.20168, -2.248448], [55.201588, -2.248471]], [[55.201497, -2.248491], [55.201403, -2.248495]], [[55.201403, -2.248495], [55.20131, -2.248499]], [[55.200931, -2.248443], [55.200835, -2.248456]], [[55.200835, -2.248456], [55.200743, -2.248369]], [[55.200743, -2.248369], [55.200664, -2.248284]], [[55.200664, -2.248284], [55.200594, -2.248186]], [[55.200594, -2.248186], [55.200512, -2.248083]], [[55.200249, -2.247877], [55.200157, -2.247805]], [[55.200157, -2.247805], [55.200065, -2.247773]], [[55.199522, -2.247562], [55.199423, -2.247542]], [[55.198503, -2.246939], [55.198405, -2.246953]], [[55.198405, -2.246953], [55.198313, -2.246958]], [[55.198313, -2.246958], [55.198219, -2.246961]], [[55.198219, -2.246961], [55.198125, -2.246902]], [[55.198125, -2.246902], [55.198027, -2.246923]], [[55.19793, -2.246906], [55.197837, -2.246853]], [[55.197837, -2.246853], [55.197744, -2.246785]], [[55.197744, -2.246785], [55.197657, -2.246741]], [[55.197657, -2.246741], [55.197562, -2.246705]], [[55.197462, -2.246694], [55.197368, -2.246671]], [[55.197368, -2.246671], [55.197271, -2.246654]], [[55.197271, -2.246654], [55.197176, -2.246651]], [[55.197076, -2.246618], [55.196986, -2.246578]], [[55.196986, -2.246578], [55.196896, -2.246562]], [[55.196896, -2.246562], [55.196801, -2.246505]], [[55.196485, -2.246228], [55.196406, -2.246123]], [[55.19614, -2.245939], [55.19605, -2.245857]], [[55.19605, -2.245857], [55.195963, -2.245778]], [[55.195963, -2.245778], [55.195879, -2.245672]], [[55.195879, -2.245672], [55.195799, -2.245565]], [[55.195799, -2.245565], [55.195709, -2.245524]], [[55.19551, -2.245524], [55.195411, -2.24554]], [[55.194792, -2.245891], [55.1947, -2.245888]], [[55.1947, -2.245888], [55.194611, -2.245946]], [[55.194611, -2.245946], [55.194524, -2.246037]], [[55.194335, -2.246068], [55.194236, -2.246076]], [[55.194236, -2.246076], [55.194143, -2.246075]], [[55.194143, -2.246075], [55.194049, -2.246046]], [[55.193861, -2.246118], [55.193772, -2.246199]], [[55.193772, -2.246199], [55.193685, -2.246274]], [[55.193685, -2.246274], [55.193597, -2.246339]], [[55.193245, -2.246601], [55.193151, -2.246658]], [[55.19175, -2.248917], [55.191666, -2.249015]], [[55.191128, -2.249699], [55.191054, -2.249798]], [[55.191054, -2.249798], [55.190971, -2.249886]], [[55.190794, -2.25003], [55.190722, -2.250126]], [[55.190384, -2.250404], [55.190296, -2.250481]], [[55.190296, -2.250481], [55.190212, -2.250542]], [[55.189957, -2.250776], [55.189878, -2.250872]], [[55.189878, -2.250872], [55.18978, -2.250893]], [[55.18978, -2.250893], [55.189685, -2.250912]], [[55.18916, -2.250806], [55.189083, -2.250684]], [[55.188181, -2.250229], [55.18809, -2.250192]], [[55.18809, -2.250192], [55.187994, -2.25015]], [[55.187233, -2.249725], [55.187139, -2.249721]], [[55.187139, -2.249721], [55.187046, -2.249756]], [[55.187046, -2.249756], [55.186954, -2.249793]], [[55.186954, -2.249793], [55.186856, -2.249832]], [[55.186856, -2.249832], [55.186768, -2.249876]], [[55.186685, -2.249939], [55.186589, -2.249973]], [[55.186498, -2.250021], [55.186404, -2.250048]], [[55.186404, -2.250048], [55.186317, -2.250109]], [[55.186317, -2.250109], [55.186228, -2.250188]], [[55.183671, -2.252477], [55.183581, -2.252458]], [[55.183581, -2.252458], [55.183491, -2.252432]], [[55.182529, -2.252146], [55.182439, -2.252123]], [[55.182439, -2.252123], [55.182338, -2.252091]], [[55.182338, -2.252091], [55.182245, -2.252049]], [[55.182245, -2.252049], [55.18215, -2.252032]], [[55.181769, -2.251786], [55.18168, -2.251699]], [[55.18168, -2.251699], [55.181612, -2.25158]], [[55.181612, -2.25158], [55.181564, -2.251442]], [[55.181564, -2.251442], [55.181525, -2.25129]], [[55.181525, -2.25129], [55.18151, -2.251127]], [[55.18151, -2.251127], [55.181486, -2.250958]], [[55.181486, -2.250958], [55.181481, -2.250791]], [[55.181481, -2.250791], [55.181474, -2.250624]], [[55.181474, -2.250624], [55.181454, -2.250454]], [[55.181454, -2.250454], [55.181438, -2.250299]], [[55.181438, -2.250299], [55.181419, -2.250142]], [[55.181419, -2.250142], [55.18139, -2.249984]], [[55.18139, -2.249984], [55.181357, -2.24982]], [[55.181357, -2.24982], [55.181317, -2.249671]], [[55.181282, -2.249522], [55.181236, -2.249363]], [[55.181236, -2.249363], [55.181192, -2.249218]], [[55.181192, -2.249218], [55.181148, -2.249059]], [[55.181148, -2.249059], [55.181106, -2.248912]], [[55.18107, -2.248445], [55.181059, -2.24827]], [[55.181059, -2.24827], [55.181043, -2.248103]], [[55.181043, -2.248103], [55.181021, -2.247948]], [[55.181021, -2.247948], [55.181003, -2.247787]], [[55.180944, -2.247209], [55.180953, -2.247034]], [[55.180977, -2.246701], [55.180966, -2.246539]], [[55.180259, -2.247071], [55.180156, -2.247055]], [[55.17995, -2.246798], [55.179888, -2.246671]], [[55.179743, -2.246414], [55.179688, -2.246286]], [[55.179574, -2.246019], [55.179551, -2.245858]], [[55.179551, -2.245858], [55.179476, -2.245744]], [[55.179476, -2.245744], [55.179413, -2.245621]], [[55.179413, -2.245621], [55.179349, -2.245489]], [[55.179349, -2.245489], [55.179267, -2.245383]], [[55.179001, -2.245174], [55.178914, -2.24513]], [[55.178914, -2.24513], [55.178823, -2.245113]], [[55.178823, -2.245113], [55.178745, -2.244999]], [[55.177932, -2.244402], [55.177842, -2.244418]], [[55.177842, -2.244418], [55.177758, -2.244509]], [[55.177686, -2.244632], [55.177594, -2.244685]], [[55.177594, -2.244685], [55.177504, -2.244684]], [[55.177504, -2.244684], [55.177409, -2.244705]], [[55.177409, -2.244705], [55.177331, -2.244789]], [[55.177373, -2.244942], [55.177321, -2.245084]], [[55.177321, -2.245084], [55.177243, -2.245186]], [[55.177243, -2.245186], [55.177151, -2.245244]], [[55.177151, -2.245244], [55.177064, -2.245307]], [[55.177015, -2.245439], [55.176977, -2.245588]], [[55.176295, -2.246125], [55.176203, -2.246162]], [[55.176203, -2.246162], [55.176107, -2.246195]], [[55.176107, -2.246195], [55.176018, -2.246241]], [[55.176018, -2.246241], [55.175931, -2.246285]], [[55.175743, -2.246385], [55.175645, -2.246398]], [[55.175645, -2.246398], [55.175555, -2.24644]], [[55.175555, -2.24644], [55.175461, -2.246426]], [[55.174258, -2.247065], [55.174161, -2.247055]], [[55.174161, -2.247055], [55.174071, -2.247003]], [[55.174071, -2.247003], [55.173976, -2.246955]], [[55.173976, -2.246955], [55.173881, -2.246899]], [[55.173881, -2.246899], [55.173793, -2.246843]], [[55.173793, -2.246843], [55.173695, -2.246853]], [[55.173695, -2.246853], [55.173597, -2.246818]], [[55.173597, -2.246818], [55.173515, -2.246717]], [[55.173515, -2.246717], [55.173425, -2.2467]], [[55.173425, -2.2467], [55.173332, -2.246669]], [[55.173332, -2.246669], [55.173242, -2.246642]], [[55.173242, -2.246642], [55.173152, -2.246618]], [[55.173152, -2.246618], [55.173062, -2.246568]], [[55.173062, -2.246568], [55.172967, -2.246532]], [[55.172967, -2.246532], [55.172872, -2.246467]], [[55.172872, -2.246467], [55.172778, -2.24642]], [[55.172778, -2.24642], [55.172685, -2.246404]], [[55.172685, -2.246404], [55.172589, -2.246339]], [[55.172589, -2.246339], [55.172508, -2.246257]], [[55.172508, -2.246257], [55.172413, -2.246198]], [[55.172413, -2.246198], [55.172325, -2.246153]], [[55.171905, -2.245764], [55.171823, -2.245686]], [[55.171823, -2.245686], [55.171736, -2.245613]], [[55.171736, -2.245613], [55.171647, -2.245522]], [[55.171647, -2.245522], [55.171566, -2.245451]], [[55.171566, -2.245451], [55.171473, -2.245381]], [[55.170925, -2.245041], [55.170834, -2.244998]], [[55.170834, -2.244998], [55.170749, -2.244915]], [[55.170573, -2.244798], [55.170477, -2.244746]], [[55.170006, -2.244485], [55.169919, -2.244436]], [[55.169642, -2.244263], [55.169553, -2.24422]], [[55.169274, -2.244122], [55.169195, -2.244025]], [[55.169195, -2.244025], [55.169105, -2.243995]], [[55.169105, -2.243995], [55.169021, -2.2439]], [[55.169021, -2.2439], [55.168939, -2.243798]], [[55.168939, -2.243798], [55.168852, -2.243731]], [[55.168387, -2.243461], [55.168286, -2.243433]], [[55.168193, -2.243376], [55.1681, -2.243347]], [[55.1681, -2.243347], [55.168012, -2.243265]], [[55.168012, -2.243265], [55.167914, -2.24321]], [[55.167914, -2.24321], [55.167818, -2.243174]], [[55.167818, -2.243174], [55.167733, -2.24312]], [[55.167733, -2.24312], [55.167668, -2.243251]], [[55.167668, -2.243251], [55.167595, -2.24335]], [[55.167517, -2.243441], [55.167426, -2.243501]], [[55.167426, -2.243501], [55.167333, -2.243539]], [[55.167239, -2.24354], [55.167143, -2.243506]], [[55.166961, -2.243455], [55.166869, -2.243462]], [[55.166689, -2.243497], [55.1666, -2.243511]], [[55.166507, -2.243533], [55.166412, -2.243513]], [[55.166412, -2.243513], [55.166319, -2.243467]], [[55.166319, -2.243467], [55.166227, -2.243434]], [[55.165789, -2.243395], [55.16569, -2.243372]], [[55.16569, -2.243372], [55.165593, -2.243335]], [[55.165215, -2.243523], [55.165132, -2.243588]], [[55.165132, -2.243588], [55.16506, -2.243684]], [[55.164885, -2.243828], [55.164793, -2.2439]], [[55.164793, -2.2439], [55.164708, -2.243972]], [[55.164539, -2.244121], [55.164444, -2.244188]], [[55.162995, -2.244527], [55.162903, -2.244521]], [[55.162545, -2.244625], [55.162455, -2.244643]], [[55.162455, -2.244643], [55.162363, -2.244615]], [[55.162268, -2.244594], [55.162175, -2.244603]], [[55.162175, -2.244603], [55.162081, -2.244632]], [[55.162081, -2.244632], [55.161984, -2.244603]], [[55.161763, -2.244504], [55.161673, -2.244448]], [[55.161673, -2.244448], [55.161582, -2.244388]], [[55.161582, -2.244388], [55.161495, -2.244334]], [[55.161495, -2.244334], [55.161409, -2.244286]], [[55.161409, -2.244286], [55.161314, -2.24424]], [[55.161314, -2.24424], [55.161217, -2.24419]], [[55.161217, -2.24419], [55.161125, -2.244167]], [[55.161125, -2.244167], [55.161031, -2.244119]], [[55.161031, -2.244119], [55.160931, -2.244092]], [[55.160931, -2.244092], [55.160833, -2.244047]], [[55.160833, -2.244047], [55.16074, -2.244005]], [[55.16074, -2.244005], [55.160656, -2.243941]], [[55.160656, -2.243941], [55.160567, -2.243888]], [[55.160567, -2.243888], [55.160472, -2.243851]], [[55.160472, -2.243851], [55.160376, -2.243835]], [[55.160376, -2.243835], [55.160276, -2.24381]], [[55.160276, -2.24381], [55.160183, -2.243785]], [[55.160183, -2.243785], [55.160087, -2.243757]], [[55.160087, -2.243757], [55.159992, -2.243716]], [[55.159874, -2.243626], [55.159777, -2.243593]], [[55.159485, -2.243615], [55.159394, -2.243645]], [[55.158729, -2.243763], [55.15863, -2.243787]], [[55.158347, -2.243746], [55.158257, -2.24376]], [[55.157202, -2.243921], [55.15711, -2.243882]], [[55.15711, -2.243882], [55.157017, -2.243837]], [[55.157017, -2.243837], [55.156928, -2.243803]], [[55.156928, -2.243803], [55.15683, -2.243765]], [[55.156658, -2.243629], [55.156573, -2.243566]], [[55.156573, -2.243566], [55.156493, -2.243474]], [[55.156493, -2.243474], [55.1564, -2.243406]], [[55.15614, -2.24317], [55.156051, -2.243083]], [[55.155356, -2.242424], [55.155269, -2.242363]], [[55.155142, -2.242234], [55.155048, -2.242183]], [[55.154178, -2.241346], [55.154123, -2.241221]], [[55.153972, -2.240992], [55.153898, -2.240875]], [[55.153719, -2.240274], [55.153679, -2.240122]], [[55.153679, -2.240122], [55.153628, -2.239992]], [[55.153628, -2.239992], [55.153544, -2.240076]], [[55.15191, -2.24215], [55.151833, -2.242246]], [[55.150728, -2.243129], [55.150638, -2.243141]], [[55.150548, -2.243165], [55.150458, -2.24316]], [[55.148438, -2.243468], [55.148349, -2.24349]], [[55.148349, -2.24349], [55.14825, -2.243518]], [[55.14825, -2.243518], [55.148161, -2.243545]], [[55.147978, -2.243607], [55.147882, -2.243635]], [[55.14748, -2.243964], [55.147394, -2.24401]], [[55.147394, -2.24401], [55.147308, -2.244061]], [[55.147308, -2.244061], [55.147221, -2.244107]], [[55.145827, -2.244718], [55.145763, -2.24483]], [[55.145763, -2.24483], [55.145714, -2.244988]], [[55.145245, -2.24625], [55.145188, -2.246378]], [[55.145188, -2.246378], [55.145148, -2.246529]], [[55.145148, -2.246529], [55.145115, -2.246681]], [[55.144954, -2.247134], [55.144879, -2.24724]], [[55.144879, -2.24724], [55.144805, -2.24734]], [[55.144522, -2.247686], [55.144448, -2.247789]], [[55.144448, -2.247789], [55.144395, -2.247925]], [[55.144395, -2.247925], [55.144314, -2.248025]], [[55.144314, -2.248025], [55.144237, -2.24814]], [[55.144237, -2.24814], [55.144172, -2.248259]], [[55.144172, -2.248259], [55.144228, -2.248405]], [[55.144228, -2.248405], [55.144222, -2.248566]], [[55.144222, -2.248566], [55.144243, -2.248721]], [[55.144243, -2.248721], [55.144266, -2.248893]], [[55.144266, -2.248893], [55.144313, -2.249028]], [[55.144313, -2.249028], [55.144332, -2.24919]], [[55.144332, -2.24919], [55.144339, -2.249357]], [[55.144339, -2.249357], [55.144333, -2.249521]], [[55.144333, -2.249521], [55.144273, -2.249654]], [[55.144292, -2.250008], [55.144304, -2.250177]], [[55.144304, -2.250177], [55.14431, -2.250354]], [[55.144316, -2.250523], [55.144356, -2.250677]], [[55.144356, -2.250677], [55.144383, -2.250826]], [[55.144383, -2.250826], [55.14439, -2.250996]], [[55.14439, -2.250996], [55.144372, -2.251163]], [[55.144372, -2.251163], [55.144331, -2.251309]], [[55.144331, -2.251309], [55.144282, -2.251451]], [[55.144282, -2.251451], [55.144227, -2.251601]], [[55.144227, -2.251601], [55.144195, -2.251766]], [[55.144195, -2.251766], [55.144166, -2.251933]], [[55.144166, -2.251933], [55.144124, -2.252073]], [[55.144124, -2.252073], [55.144089, -2.252218]], [[55.144066, -2.252378], [55.144056, -2.252545]], [[55.144056, -2.252545], [55.144049, -2.252705]], [[55.144049, -2.252705], [55.144055, -2.25287]], [[55.144055, -2.25287], [55.144099, -2.253013]], [[55.14419, -2.253327], [55.144242, -2.253475]], [[55.144242, -2.253475], [55.144289, -2.253613]], [[55.14436, -2.25372], [55.144392, -2.253875]], [[55.144392, -2.253875], [55.144386, -2.254045]], [[55.14422, -2.25435], [55.144214, -2.254517]], [[55.144214, -2.254517], [55.144168, -2.254659]], [[55.144032, -2.254629], [55.143952, -2.254727]], [[55.143587, -2.255079], [55.143492, -2.255116]], [[55.143492, -2.255116], [55.143395, -2.255161]], [[55.143395, -2.255161], [55.143309, -2.255211]], [[55.143309, -2.255211], [55.143222, -2.255293]], [[55.143222, -2.255293], [55.143138, -2.255389]], [[55.142769, -2.255554], [55.142683, -2.255621]], [[55.142683, -2.255621], [55.142594, -2.255694]], [[55.142594, -2.255694], [55.142496, -2.255696]], [[55.142496, -2.255696], [55.142414, -2.255609]], [[55.142414, -2.255609], [55.14234, -2.255504]], [[55.142498, -2.255746], [55.142591, -2.25576]], [[55.142676, -2.25599], [55.142658, -2.256155]], [[55.142658, -2.256155], [55.142639, -2.256318]], [[55.142626, -2.256651], [55.142697, -2.256752]], [[55.142766, -2.256879], [55.142855, -2.256951]], [[55.143293, -2.258172], [55.143354, -2.258307]], [[55.143354, -2.258307], [55.143366, -2.258474]], [[55.143405, -2.258633], [55.143439, -2.25878]], [[55.143511, -2.259258], [55.14349, -2.259417]], [[55.14344, -2.25973], [55.143428, -2.259895]], [[55.143442, -2.260217], [55.143449, -2.260379]], [[55.143449, -2.260379], [55.143444, -2.260542]], [[55.143444, -2.260542], [55.143465, -2.260705]], [[55.143453, -2.261031], [55.143488, -2.261192]], [[55.143488, -2.261192], [55.143561, -2.261284]], [[55.143662, -2.261565], [55.143747, -2.261636]], [[55.144304, -2.261454], [55.14432, -2.261294]], [[55.144495, -2.261257], [55.144467, -2.261418]], [[55.144467, -2.261418], [55.14442, -2.261575]], [[55.14442, -2.261575], [55.144365, -2.2617]], [[55.144365, -2.2617], [55.144278, -2.261779]], [[55.144278, -2.261779], [55.144187, -2.261844]], [[55.144187, -2.261844], [55.144098, -2.261891]], [[55.144098, -2.261891], [55.143999, -2.261897]], [[55.143999, -2.261897], [55.143907, -2.261917]], [[55.143907, -2.261917], [55.143815, -2.261914]], [[55.143815, -2.261914], [55.143717, -2.261925]], [[55.14339, -2.262009], [55.143296, -2.262014]], [[55.143011, -2.261946], [55.142918, -2.26197]], [[55.142918, -2.26197], [55.142827, -2.261973]], [[55.142827, -2.261973], [55.14274, -2.261916]], [[55.14274, -2.261916], [55.142641, -2.26189]], [[55.142445, -2.261891], [55.142348, -2.261871]], [[55.142348, -2.261871], [55.14225, -2.261873]], [[55.14225, -2.261873], [55.142155, -2.261881]], [[55.142155, -2.261881], [55.142058, -2.261878]], [[55.142058, -2.261878], [55.141959, -2.26189]], [[55.141959, -2.26189], [55.141859, -2.261879]], [[55.141859, -2.261879], [55.141761, -2.261882]], [[55.141761, -2.261882], [55.141665, -2.261893]], [[55.141482, -2.261893], [55.141391, -2.261896]], [[55.141391, -2.261896], [55.1413, -2.261891]], [[55.14111, -2.261887], [55.141014, -2.261864]], [[55.141014, -2.261864], [55.140916, -2.261879]], [[55.140715, -2.261817], [55.140618, -2.261779]], [[55.140618, -2.261779], [55.140525, -2.261741]], [[55.140525, -2.261741], [55.140434, -2.261701]], [[55.140434, -2.261701], [55.140349, -2.261643]], [[55.140349, -2.261643], [55.140254, -2.261565]], [[55.139903, -2.2613], [55.139809, -2.261257]], [[55.139809, -2.261257], [55.139723, -2.261193]], [[55.139544, -2.260985], [55.139458, -2.260899]], [[55.139458, -2.260899], [55.139371, -2.260828]], [[55.139371, -2.260828], [55.139288, -2.26077]], [[55.139288, -2.26077], [55.139207, -2.260693]], [[55.139207, -2.260693], [55.139126, -2.260625]], [[55.139126, -2.260625], [55.139034, -2.260548]], [[55.139034, -2.260548], [55.138943, -2.260469]], [[55.138943, -2.260469], [55.138863, -2.260396]], [[55.138863, -2.260396], [55.138775, -2.260317]], [[55.138775, -2.260317], [55.138689, -2.260236]], [[55.138689, -2.260236], [55.138607, -2.260157]], [[55.138607, -2.260157], [55.13852, -2.260076]], [[55.13852, -2.260076], [55.138429, -2.260003]], [[55.138429, -2.260003], [55.138342, -2.259922]], [[55.138342, -2.259922], [55.138258, -2.259852]], [[55.138258, -2.259852], [55.138178, -2.259778]], [[55.137852, -2.259467], [55.137761, -2.259402]], [[55.137761, -2.259402], [55.137674, -2.259335]], [[55.137674, -2.259335], [55.137585, -2.259358]], [[55.137585, -2.259358], [55.137494, -2.259309]], [[55.137494, -2.259309], [55.137401, -2.259231]], [[55.137152, -2.258987], [55.137068, -2.258887]], [[55.137068, -2.258887], [55.136984, -2.258788]], [[55.136984, -2.258788], [55.136897, -2.258713]], [[55.136897, -2.258713], [55.136819, -2.25861]], [[55.13638, -2.257978], [55.136296, -2.25787]], [[55.136137, -2.257673], [55.136072, -2.257549]], [[55.136012, -2.257433], [55.135943, -2.257329]], [[55.135943, -2.257329], [55.135885, -2.257203]], [[55.135591, -2.257016], [55.135506, -2.256953]], [[55.135506, -2.256953], [55.135426, -2.25684]], [[55.135426, -2.25684], [55.135339, -2.256784]], [[55.135339, -2.256784], [55.135258, -2.256692]], [[55.134887, -2.256277], [55.134818, -2.25617]], [[55.134818, -2.25617], [55.134767, -2.25604]], [[55.134767, -2.25604], [55.134691, -2.255933]], [[55.134376, -2.255379], [55.134379, -2.255208]], [[55.134379, -2.255208], [55.134369, -2.255038]], [[55.134369, -2.255038], [55.13436, -2.254875]], [[55.13436, -2.254875], [55.134351, -2.254699]], [[55.134351, -2.254699], [55.134334, -2.254539]], [[55.134334, -2.254539], [55.134328, -2.254382]], [[55.134328, -2.254382], [55.134308, -2.254218]], [[55.134308, -2.254218], [55.134286, -2.254057]], [[55.134286, -2.254057], [55.134255, -2.253895]], [[55.134255, -2.253895], [55.134248, -2.253726]], [[55.134248, -2.253726], [55.134214, -2.253558]], [[55.134214, -2.253558], [55.134199, -2.253399]], [[55.134199, -2.253399], [55.134169, -2.253242]], [[55.134169, -2.253242], [55.134133, -2.253097]], [[55.134133, -2.253097], [55.134117, -2.252927]], [[55.134117, -2.252927], [55.134132, -2.252755]], [[55.134132, -2.252755], [55.134132, -2.252588]], [[55.134132, -2.252588], [55.134064, -2.252466]], [[55.13385, -2.252256], [55.133773, -2.252149]], [[55.133773, -2.252149], [55.133689, -2.25208]], [[55.13324, -2.251822], [55.133157, -2.251749]], [[55.133025, -2.251526], [55.132943, -2.251438]], [[55.131981, -2.250862], [55.131891, -2.250818]], [[55.131704, -2.25076], [55.131611, -2.25072]], [[55.131611, -2.25072], [55.131513, -2.250697]], [[55.131513, -2.250697], [55.13142, -2.250679]], [[55.13142, -2.250679], [55.131319, -2.250668]], [[55.131319, -2.250668], [55.131223, -2.250624]], [[55.131223, -2.250624], [55.131125, -2.250579]], [[55.131125, -2.250579], [55.131024, -2.250564]], [[55.131024, -2.250564], [55.130927, -2.250559]], [[55.130927, -2.250559], [55.130833, -2.250524]], [[55.130833, -2.250524], [55.130736, -2.250521]], [[55.130736, -2.250521], [55.130643, -2.25047]], [[55.130643, -2.25047], [55.130542, -2.250436]], [[55.130542, -2.250436], [55.130447, -2.250418]], [[55.128178, -2.251988], [55.128097, -2.252093]], [[55.128097, -2.252093], [55.128022, -2.252181]], [[55.128022, -2.252181], [55.127942, -2.252261]], [[55.127942, -2.252261], [55.127852, -2.252331]], [[55.127852, -2.252331], [55.127767, -2.252384]], [[55.127449, -2.252719], [55.127359, -2.252769]], [[55.127359, -2.252769], [55.127282, -2.252851]], [[55.127282, -2.252851], [55.127193, -2.252915]], [[55.127193, -2.252915], [55.127104, -2.252977]], [[55.127104, -2.252977], [55.12702, -2.253041]], [[55.12702, -2.253041], [55.126936, -2.25313]], [[55.126936, -2.25313], [55.126859, -2.253211]], [[55.126859, -2.253211], [55.126789, -2.253333]], [[55.126789, -2.253333], [55.126727, -2.253447]], [[55.126727, -2.253447], [55.126681, -2.253588]], [[55.126681, -2.253588], [55.126606, -2.253682]], [[55.126529, -2.253769], [55.126451, -2.253869]], [[55.126451, -2.253869], [55.126377, -2.253985]], [[55.126377, -2.253985], [55.126308, -2.254092]], [[55.126308, -2.254092], [55.126255, -2.25424]], [[55.126255, -2.25424], [55.126179, -2.254333]], [[55.126179, -2.254333], [55.126091, -2.254416]], [[55.126091, -2.254416], [55.126012, -2.254493]], [[55.126012, -2.254493], [55.12594, -2.254599]], [[55.12594, -2.254599], [55.125877, -2.254717]], [[55.125877, -2.254717], [55.125812, -2.254839]], [[55.125812, -2.254839], [55.125737, -2.254952]], [[55.125737, -2.254952], [55.12567, -2.255063]], [[55.12567, -2.255063], [55.125603, -2.255188]], [[55.125603, -2.255188], [55.12552, -2.255263]], [[55.12552, -2.255263], [55.125435, -2.255321]], [[55.125435, -2.255321], [55.125354, -2.255394]], [[55.125354, -2.255394], [55.125271, -2.255471]], [[55.125271, -2.255471], [55.125195, -2.255568]], [[55.125195, -2.255568], [55.125128, -2.25568]], [[55.125128, -2.25568], [55.125055, -2.255784]], [[55.12499, -2.255902], [55.124918, -2.256011]], [[55.124918, -2.256011], [55.124833, -2.25609]], [[55.124833, -2.25609], [55.124747, -2.256162]], [[55.124747, -2.256162], [55.124672, -2.256261]], [[55.124672, -2.256261], [55.124594, -2.256365]], [[55.124594, -2.256365], [55.124525, -2.256469]], [[55.124525, -2.256469], [55.124452, -2.256591]], [[55.124452, -2.256591], [55.124383, -2.256694]], [[55.124383, -2.256694], [55.124306, -2.256805]], [[55.124306, -2.256805], [55.124238, -2.256936]], [[55.124167, -2.257194], [55.124195, -2.257343]], [[55.124222, -2.257509], [55.124247, -2.257671]], [[55.124247, -2.257671], [55.124262, -2.257842]], [[55.124262, -2.257842], [55.12429, -2.257997]], [[55.12429, -2.257997], [55.124323, -2.258151]], [[55.124323, -2.258151], [55.124349, -2.258308]], [[55.124349, -2.258308], [55.124382, -2.258477]], [[55.124382, -2.258477], [55.124413, -2.258642]], [[55.124413, -2.258642], [55.124438, -2.258811]], [[55.124438, -2.258811], [55.124469, -2.258969]], [[55.124469, -2.258969], [55.124486, -2.259134]], [[55.124486, -2.259134], [55.124507, -2.259295]], [[55.124507, -2.259295], [55.124537, -2.259461]], [[55.124537, -2.259461], [55.124557, -2.259624]], [[55.124557, -2.259624], [55.124582, -2.259791]], [[55.124582, -2.259791], [55.124618, -2.25995]], [[55.124618, -2.25995], [55.124647, -2.260116]], [[55.124647, -2.260116], [55.12467, -2.26027]], [[55.12467, -2.26027], [55.124694, -2.260431]], [[55.124694, -2.260431], [55.124728, -2.260579]], [[55.124728, -2.260579], [55.124752, -2.26074]], [[55.124752, -2.26074], [55.124782, -2.260905]], [[55.124782, -2.260905], [55.124811, -2.261073]], [[55.124811, -2.261073], [55.124838, -2.261246]], [[55.124838, -2.261246], [55.124859, -2.261407]], [[55.124859, -2.261407], [55.124873, -2.261562]], [[55.124873, -2.261562], [55.124894, -2.261729]], [[55.124894, -2.261729], [55.124917, -2.261882]], [[55.124917, -2.261882], [55.12494, -2.262042]], [[55.12517, -2.263332], [55.125198, -2.263485]], [[55.125198, -2.263485], [55.125222, -2.263642]], [[55.125222, -2.263642], [55.125248, -2.263796]], [[55.125248, -2.263796], [55.125271, -2.263961]], [[55.125271, -2.263961], [55.125298, -2.264115]], [[55.125298, -2.264115], [55.125327, -2.264281]], [[55.125327, -2.264281], [55.125351, -2.264433]], [[55.125351, -2.264433], [55.125371, -2.264593]], [[55.125371, -2.264593], [55.125393, -2.264749]], [[55.125414, -2.264923], [55.125441, -2.265078]], [[55.125441, -2.265078], [55.125467, -2.265245]], [[55.125467, -2.265245], [55.125496, -2.265406]], [[55.125496, -2.265406], [55.125528, -2.265568]], [[55.124441, -2.266301], [55.12435, -2.266329]], [[55.12435, -2.266329], [55.124262, -2.266374]], [[55.124262, -2.266374], [55.124173, -2.266423]], [[55.124173, -2.266423], [55.124081, -2.266464]], [[55.124081, -2.266464], [55.123981, -2.266484]], [[55.123981, -2.266484], [55.123888, -2.266542]], [[55.123299, -2.267052], [55.123222, -2.267155]], [[55.123222, -2.267155], [55.123133, -2.267213]], [[55.123133, -2.267213], [55.123041, -2.26728]], [[55.123041, -2.26728], [55.122966, -2.267383]], [[55.122966, -2.267383], [55.122874, -2.267453]], [[55.122874, -2.267453], [55.122784, -2.267526]], [[55.122784, -2.267526], [55.122694, -2.267602]], [[55.122694, -2.267602], [55.122604, -2.267672]], [[55.122604, -2.267672], [55.122516, -2.267747]], [[55.122516, -2.267747], [55.122434, -2.26783]], [[55.122434, -2.26783], [55.122347, -2.267905]], [[55.122347, -2.267905], [55.122264, -2.268002]], [[55.122264, -2.268002], [55.122192, -2.268114]], [[55.122192, -2.268114], [55.122099, -2.268108]], [[55.121389, -2.267743], [55.121308, -2.267853]], [[55.121308, -2.267853], [55.121212, -2.267907]], [[55.121212, -2.267907], [55.121126, -2.267991]], [[55.121126, -2.267991], [55.121047, -2.268071]], [[55.121047, -2.268071], [55.120951, -2.268114]], [[55.120951, -2.268114], [55.120852, -2.268088]], [[55.120746, -2.268282], [55.120682, -2.268411]], [[55.120682, -2.268411], [55.120603, -2.268487]], [[55.12042, -2.26857], [55.120327, -2.268592]], [[55.120327, -2.268592], [55.120234, -2.268639]], [[55.120146, -2.268681], [55.120048, -2.268712]], [[55.119605, -2.268942], [55.119519, -2.269005]], [[55.119337, -2.269099], [55.119252, -2.269152]], [[55.119059, -2.269229], [55.118961, -2.269268]], [[55.118961, -2.269268], [55.118862, -2.269288]], [[55.118862, -2.269288], [55.11877, -2.269309]], [[55.11877, -2.269309], [55.118679, -2.269334]], [[55.118515, -2.269392], [55.118417, -2.269408]], [[55.118417, -2.269408], [55.118327, -2.269415]], [[55.118327, -2.269415], [55.118231, -2.269437]], [[55.118046, -2.26945], [55.117943, -2.269448]], [[55.117758, -2.269458], [55.117661, -2.269487]], [[55.117192, -2.269672], [55.117104, -2.269714]], [[55.117104, -2.269714], [55.117006, -2.26975]], [[55.116348, -2.270003], [55.116252, -2.270045]], [[55.116252, -2.270045], [55.116158, -2.270077]], [[55.115868, -2.270165], [55.115777, -2.270187]], [[55.115777, -2.270187], [55.115681, -2.270175]], [[55.115681, -2.270175], [55.115581, -2.27019]], [[55.115581, -2.27019], [55.115491, -2.270205]], [[55.115365, -2.270103], [55.115312, -2.269963]], [[55.115312, -2.269963], [55.115279, -2.269817]], [[55.115279, -2.269817], [55.115243, -2.269662]], [[55.115243, -2.269662], [55.115181, -2.269534]], [[55.115181, -2.269534], [55.115118, -2.269395]], [[55.115118, -2.269395], [55.115059, -2.269273]], [[55.115059, -2.269273], [55.114988, -2.269157]], [[55.114988, -2.269157], [55.114923, -2.269049]], [[55.114923, -2.269049], [55.114856, -2.268927]], [[55.114856, -2.268927], [55.114778, -2.268814]], [[55.114778, -2.268814], [55.114689, -2.268743]], [[55.114607, -2.268623], [55.114521, -2.26857]], [[55.114521, -2.26857], [55.114422, -2.268543]], [[55.114422, -2.268543], [55.114332, -2.268541]], [[55.114332, -2.268541], [55.11423, -2.268565]], [[55.11423, -2.268565], [55.114153, -2.26865]], [[55.114153, -2.26865], [55.114069, -2.268738]], [[55.113991, -2.268843], [55.113923, -2.268947]], [[55.113271, -2.26876], [55.113227, -2.268612]], [[55.113227, -2.268612], [55.113168, -2.268487]], [[55.112862, -2.268535], [55.112794, -2.268643]], [[55.112794, -2.268643], [55.112734, -2.268782]], [[55.112734, -2.268782], [55.112684, -2.268912]], [[55.112372, -2.269119], [55.112285, -2.269169]], [[55.112285, -2.269169], [55.112191, -2.269185]], [[55.112191, -2.269185], [55.1121, -2.269167]], [[55.110822, -2.269044], [55.110765, -2.269175]], [[55.110765, -2.269175], [55.110692, -2.269277]], [[55.110692, -2.269277], [55.110619, -2.269374]], [[55.110455, -2.269545], [55.110376, -2.269642]], [[55.110376, -2.269642], [55.110302, -2.269744]], [[55.110149, -2.269939], [55.110069, -2.270038]], [[55.110069, -2.270038], [55.109986, -2.270105]], [[55.109986, -2.270105], [55.109897, -2.27015]], [[55.109725, -2.27023], [55.109641, -2.270325]], [[55.109641, -2.270325], [55.109559, -2.270409]], [[55.109473, -2.270518], [55.109393, -2.270606]], [[55.109393, -2.270606], [55.109317, -2.270704]], [[55.109317, -2.270704], [55.109236, -2.270794]], [[55.109236, -2.270794], [55.109158, -2.270897]], [[55.109158, -2.270897], [55.109085, -2.270992]], [[55.109085, -2.270992], [55.109015, -2.271107]], [[55.109015, -2.271107], [55.108941, -2.271197]], [[55.108771, -2.271368], [55.108686, -2.271446]], [[55.108597, -2.271537], [55.108514, -2.27164]], [[55.108514, -2.27164], [55.108433, -2.271728]], [[55.108433, -2.271728], [55.108349, -2.271805]], [[55.108349, -2.271805], [55.108282, -2.271912]], [[55.108282, -2.271912], [55.108209, -2.272009]], [[55.108209, -2.272009], [55.108136, -2.272101]], [[55.108136, -2.272101], [55.108058, -2.272203]], [[55.108058, -2.272203], [55.107984, -2.272297]], [[55.107984, -2.272297], [55.107903, -2.272377]], [[55.107903, -2.272377], [55.107819, -2.272461]], [[55.107819, -2.272461], [55.107738, -2.272534]], [[55.107738, -2.272534], [55.107655, -2.272619]], [[55.107655, -2.272619], [55.107589, -2.272726]], [[55.107501, -2.272797], [55.107416, -2.27288]], [[55.107416, -2.27288], [55.107326, -2.272878]], [[55.107326, -2.272878], [55.10724, -2.272955]], [[55.107055, -2.273124], [55.106964, -2.273187]], [[55.106964, -2.273187], [55.106879, -2.273242]], [[55.106879, -2.273242], [55.106793, -2.273296]], [[55.106707, -2.273353], [55.106615, -2.273394]], [[55.106615, -2.273394], [55.106521, -2.27345]], [[55.106521, -2.27345], [55.106429, -2.273508]], [[55.106429, -2.273508], [55.106344, -2.273578]], [[55.106344, -2.273578], [55.106256, -2.273639]], [[55.106072, -2.273764], [55.105977, -2.273825]], [[55.105977, -2.273825], [55.105883, -2.273888]], [[55.105883, -2.273888], [55.105798, -2.273947]], [[55.105798, -2.273947], [55.105702, -2.274]], [[55.105367, -2.274208], [55.105276, -2.274277]], [[55.105276, -2.274277], [55.105183, -2.274339]], [[55.105183, -2.274339], [55.105093, -2.274402]], [[55.105093, -2.274402], [55.105001, -2.274469]], [[55.105001, -2.274469], [55.10491, -2.274543]], [[55.10491, -2.274543], [55.10482, -2.274618]], [[55.10482, -2.274618], [55.104735, -2.274682]], [[55.104735, -2.274682], [55.104642, -2.274745]], [[55.104642, -2.274745], [55.104552, -2.27481]], [[55.104552, -2.27481], [55.104461, -2.274865]], [[55.104461, -2.274865], [55.104368, -2.274941]], [[55.10402, -2.275224], [55.103929, -2.275286]], [[55.103929, -2.275286], [55.103851, -2.275362]], [[55.103851, -2.275362], [55.103766, -2.275442]], [[55.103766, -2.275442], [55.103683, -2.275508]], [[55.103683, -2.275508], [55.103595, -2.275575]], [[55.103595, -2.275575], [55.103506, -2.275649]], [[55.103506, -2.275649], [55.103417, -2.275703]], [[55.103417, -2.275703], [55.103322, -2.275761]], [[55.103322, -2.275761], [55.103236, -2.275827]], [[55.102795, -2.276192], [55.10271, -2.276254]], [[55.10271, -2.276254], [55.102635, -2.27634]], [[55.102635, -2.27634], [55.10255, -2.27641]], [[55.102381, -2.276576], [55.102295, -2.276661]], [[55.102295, -2.276661], [55.102212, -2.276734]], [[55.102212, -2.276734], [55.102125, -2.276798]], [[55.102125, -2.276798], [55.102033, -2.27685]], [[55.102033, -2.27685], [55.101939, -2.276908]], [[55.101939, -2.276908], [55.101852, -2.276957]], [[55.101852, -2.276957], [55.101766, -2.276998]], [[55.101766, -2.276998], [55.101682, -2.277066]], [[55.101588, -2.277121], [55.101499, -2.277176]], [[55.101499, -2.277176], [55.101412, -2.277229]], [[55.100771, -2.277562], [55.100676, -2.277601]], [[55.100584, -2.277646], [55.100492, -2.277699]], [[55.100492, -2.277699], [55.100403, -2.277739]], [[55.100278, -2.277973], [55.100245, -2.278134]], [[55.100222, -2.278295], [55.100195, -2.278445]], [[55.099917, -2.27932], [55.099875, -2.279473]], [[55.099875, -2.279473], [55.099837, -2.279623]], [[55.099837, -2.279623], [55.099796, -2.27978]], [[55.099796, -2.27978], [55.099747, -2.279925]], [[55.099709, -2.280075], [55.099656, -2.280225]], [[55.099656, -2.280225], [55.099614, -2.280384]], [[55.099614, -2.280384], [55.09959, -2.280541]], [[55.099579, -2.280699], [55.099591, -2.280868]], [[55.099591, -2.280868], [55.099612, -2.281023]], [[55.099612, -2.281023], [55.099641, -2.281184]], [[55.099641, -2.281184], [55.099678, -2.281337]], [[55.099678, -2.281337], [55.099708, -2.281499]], [[55.099708, -2.281499], [55.099754, -2.281643]], [[55.099754, -2.281643], [55.099786, -2.281799]], [[55.099786, -2.281799], [55.099818, -2.281961]], [[55.099894, -2.282281], [55.099934, -2.282441]], [[55.099934, -2.282441], [55.099968, -2.282594]], [[55.100047, -2.282917], [55.100074, -2.283077]], [[55.100074, -2.283077], [55.100097, -2.283245]], [[55.100097, -2.283245], [55.100127, -2.283404]], [[55.100127, -2.283404], [55.100158, -2.283563]], [[55.100158, -2.283563], [55.100193, -2.283726]], [[55.100326, -2.284344], [55.100348, -2.284513]], [[55.100348, -2.284513], [55.100371, -2.28468]], [[55.100371, -2.28468], [55.100386, -2.284854]], [[55.100451, -2.28549], [55.10048, -2.285662]], [[55.10048, -2.285662], [55.100512, -2.285812]], [[55.100554, -2.285956], [55.100603, -2.286093]], [[55.100603, -2.286093], [55.100648, -2.286235]], [[55.100812, -2.287046], [55.100844, -2.287202]], [[55.100844, -2.287202], [55.100874, -2.287365]], [[55.100874, -2.287365], [55.100892, -2.287529]], [[55.100822, -2.288344], [55.1008, -2.288497]], [[55.1008, -2.288497], [55.100768, -2.288665]], [[55.100768, -2.288665], [55.10075, -2.288839]], [[55.10075, -2.288839], [55.100731, -2.288999]], [[55.100627, -2.290129], [55.100601, -2.290288]], [[55.100601, -2.290288], [55.100573, -2.290446]], [[55.100573, -2.290446], [55.100531, -2.290599]], [[55.100531, -2.290599], [55.100487, -2.290748]], [[55.100487, -2.290748], [55.100418, -2.29087]], [[55.100418, -2.29087], [55.100336, -2.290951]], [[55.100252, -2.291013], [55.100149, -2.290998]], [[55.100149, -2.290998], [55.100062, -2.290938]], [[55.100062, -2.290938], [55.099978, -2.290846]], [[55.099978, -2.290846], [55.099897, -2.29077]], [[55.09978, -2.290418], [55.099689, -2.290342]], [[55.099689, -2.290342], [55.099687, -2.290182]], [[55.099687, -2.290182], [55.099715, -2.290011]], [[55.099715, -2.290011], [55.09973, -2.28984]], [[55.09973, -2.28984], [55.099638, -2.289857]], [[55.099493, -2.289822], [55.099408, -2.289729]], [[55.099408, -2.289729], [55.099328, -2.289644]], [[55.099328, -2.289644], [55.099253, -2.289544]], [[55.099253, -2.289544], [55.099191, -2.28942]], [[55.099191, -2.28942], [55.099139, -2.289291]], [[55.099139, -2.289291], [55.099065, -2.289184]], [[55.099065, -2.289184], [55.098985, -2.289111]], [[55.098985, -2.289111], [55.098895, -2.289055]], [[55.098895, -2.289055], [55.098803, -2.288997]], [[55.098803, -2.288997], [55.098718, -2.288919]], [[55.098718, -2.288919], [55.098643, -2.288805]], [[55.098466, -2.288918], [55.098364, -2.288899]], [[55.098364, -2.288899], [55.098265, -2.288873]], [[55.098265, -2.288873], [55.098174, -2.288841]], [[55.097805, -2.288775], [55.09771, -2.288828]], [[55.09771, -2.288828], [55.097615, -2.288847]], [[55.097615, -2.288847], [55.097514, -2.288873]], [[55.096632, -2.288573], [55.096546, -2.288489]], [[55.096546, -2.288489], [55.096445, -2.288474]], [[55.096445, -2.288474], [55.096353, -2.288493]], [[55.096353, -2.288493], [55.096258, -2.288475]], [[55.096258, -2.288475], [55.096164, -2.288437]], [[55.096164, -2.288437], [55.096069, -2.288403]], [[55.096069, -2.288403], [55.095976, -2.288369]], [[55.095976, -2.288369], [55.095879, -2.288358]], [[55.095659, -2.288103], [55.095584, -2.287999]], [[55.09529, -2.287601], [55.095209, -2.28751]], [[55.095209, -2.28751], [55.095119, -2.287441]], [[55.095119, -2.287441], [55.095056, -2.287319]], [[55.095056, -2.287319], [55.094966, -2.28729]], [[55.094966, -2.28729], [55.094871, -2.28725]], [[55.094871, -2.28725], [55.094777, -2.287209]], [[55.094413, -2.287028], [55.094315, -2.287053]], [[55.094315, -2.287053], [55.094214, -2.287067]], [[55.094214, -2.287067], [55.094122, -2.28707]], [[55.094122, -2.28707], [55.094031, -2.287048]], [[55.094031, -2.287048], [55.093933, -2.287074]], [[55.093933, -2.287074], [55.093841, -2.28704]], [[55.093841, -2.28704], [55.093743, -2.287031]], [[55.093743, -2.287031], [55.093643, -2.287021]], [[55.093355, -2.287078], [55.093259, -2.287048]], [[55.092915, -2.286844], [55.09283, -2.286746]], [[55.092743, -2.286675], [55.092659, -2.286585]], [[55.092659, -2.286585], [55.092569, -2.28651]], [[55.092479, -2.286449], [55.092389, -2.286382]], [[55.092389, -2.286382], [55.092295, -2.286327]], [[55.092295, -2.286327], [55.092204, -2.28626]], [[55.092204, -2.28626], [55.092115, -2.286191]], [[55.091968, -2.286691], [55.091947, -2.286851]], [[55.092008, -2.287344], [55.091969, -2.287492]], [[55.091969, -2.287492], [55.091945, -2.287643]], [[55.091945, -2.287643], [55.09192, -2.287803]], [[55.09192, -2.287803], [55.091887, -2.287974]], [[55.091887, -2.287974], [55.091861, -2.288133]], [[55.091566, -2.288558], [55.091478, -2.288645]], [[55.09113, -2.288972], [55.091045, -2.289051]], [[55.09075, -2.28937], [55.090654, -2.289421]], [[55.090654, -2.289421], [55.090561, -2.289468]], [[55.090561, -2.289468], [55.090474, -2.289537]], [[55.090474, -2.289537], [55.090391, -2.2896]], [[55.090391, -2.2896], [55.090292, -2.289659]], [[55.090207, -2.289723], [55.090109, -2.28978]], [[55.090109, -2.28978], [55.090022, -2.289841]], [[55.090022, -2.289841], [55.089959, -2.289969]], [[55.089959, -2.289969], [55.089886, -2.290064]], [[55.089886, -2.290064], [55.08981, -2.29016]], [[55.089761, -2.290294], [55.089716, -2.290435]], [[55.089716, -2.290435], [55.089683, -2.290591]], [[55.089683, -2.290591], [55.089651, -2.290747]], [[55.089651, -2.290747], [55.089622, -2.2909]], [[55.089622, -2.2909], [55.089566, -2.291039]], [[55.089566, -2.291039], [55.089535, -2.29119]], [[55.089535, -2.29119], [55.089532, -2.291348]], [[55.089504, -2.291658], [55.089455, -2.291805]], [[55.089426, -2.291972], [55.08937, -2.292111]], [[55.08937, -2.292111], [55.089322, -2.292249]], [[55.089322, -2.292249], [55.089275, -2.292402]], [[55.089275, -2.292402], [55.089241, -2.292565]], [[55.089118, -2.293092], [55.08907, -2.293239]], [[55.08907, -2.293239], [55.089019, -2.293372]], [[55.088905, -2.293829], [55.088882, -2.293996]], [[55.088864, -2.294474], [55.088859, -2.294644]], [[55.088859, -2.294644], [55.088866, -2.294815]], [[55.088866, -2.294815], [55.088864, -2.294987]], [[55.088176, -2.294809], [55.088077, -2.294805]], [[55.087351, -2.295411], [55.087376, -2.295575]], [[55.087376, -2.295575], [55.08739, -2.295732]], [[55.08739, -2.295732], [55.087393, -2.29589]], [[55.087386, -2.296224], [55.087383, -2.296389]], [[55.087238, -2.297407], [55.087139, -2.297409]], [[55.087139, -2.297409], [55.087044, -2.297411]], [[55.084852, -2.297332], [55.084758, -2.297344]], [[55.084758, -2.297344], [55.084671, -2.297382]], [[55.084577, -2.29744], [55.084489, -2.297492]], [[55.084489, -2.297492], [55.084395, -2.297554]], [[55.084395, -2.297554], [55.084306, -2.297583]], [[55.084306, -2.297583], [55.084218, -2.297622]], [[55.084218, -2.297622], [55.084122, -2.297638]], [[55.084122, -2.297638], [55.084043, -2.297716]], [[55.084043, -2.297716], [55.084026, -2.297878]], [[55.083891, -2.297701], [55.083795, -2.297758]], [[55.083795, -2.297758], [55.083702, -2.297781]], [[55.083702, -2.297781], [55.083607, -2.297807]], [[55.083607, -2.297807], [55.083509, -2.297841]], [[55.083509, -2.297841], [55.083423, -2.297902]], [[55.083423, -2.297902], [55.083335, -2.297942]], [[55.083335, -2.297942], [55.083244, -2.298006]], [[55.083244, -2.298006], [55.083157, -2.298071]], [[55.083073, -2.298132], [55.082984, -2.298189]], [[55.082984, -2.298189], [55.082889, -2.298171]], [[55.082339, -2.298104], [55.082245, -2.298093]], [[55.081515, -2.297862], [55.081416, -2.297868]], [[55.081416, -2.297868], [55.081321, -2.297864]], [[55.081321, -2.297864], [55.081225, -2.297843]], [[55.081225, -2.297843], [55.081129, -2.297824]], [[55.081129, -2.297824], [55.081029, -2.297811]], [[55.081029, -2.297811], [55.080932, -2.297837]], [[55.08074, -2.297849], [55.080642, -2.297874]], [[55.079879, -2.298011], [55.079779, -2.298022]], [[55.079779, -2.298022], [55.079686, -2.298043]], [[55.079597, -2.298066], [55.079512, -2.298136]], [[55.079512, -2.298136], [55.079425, -2.298213]], [[55.079425, -2.298213], [55.07933, -2.298263]], [[55.07933, -2.298263], [55.079234, -2.29831]], [[55.079234, -2.29831], [55.079145, -2.298372]], [[55.078903, -2.29848], [55.078831, -2.298574]], [[55.078831, -2.298574], [55.078774, -2.298717]], [[55.078774, -2.298717], [55.078685, -2.298799]], [[55.078685, -2.298799], [55.078627, -2.298923]], [[55.078627, -2.298923], [55.078572, -2.299051]], [[55.078513, -2.299186], [55.078467, -2.299332]], [[55.078419, -2.299478], [55.078367, -2.299615]], [[55.078367, -2.299615], [55.07833, -2.299763]], [[55.07833, -2.299763], [55.078283, -2.299911]], [[55.078283, -2.299911], [55.078232, -2.300045]], [[55.078232, -2.300045], [55.078165, -2.300158]], [[55.078165, -2.300158], [55.078116, -2.300306]], [[55.078116, -2.300306], [55.078032, -2.300376]], [[55.078032, -2.300376], [55.07796, -2.300478]], [[55.07796, -2.300478], [55.077898, -2.300599]], [[55.077898, -2.300599], [55.077832, -2.300718]], [[55.077832, -2.300718], [55.07778, -2.300846]], [[55.07778, -2.300846], [55.077741, -2.301001]], [[55.077741, -2.301001], [55.077688, -2.301141]], [[55.077688, -2.301141], [55.077633, -2.301273]], [[55.077633, -2.301273], [55.077584, -2.301428]], [[55.077584, -2.301428], [55.077529, -2.301574]], [[55.077529, -2.301574], [55.077464, -2.301705]], [[55.077464, -2.301705], [55.077416, -2.301838]], [[55.077416, -2.301838], [55.077366, -2.301983]], [[55.077366, -2.301983], [55.077334, -2.302146]], [[55.077334, -2.302146], [55.0773, -2.302307]], [[55.0773, -2.302307], [55.077261, -2.302465]], [[55.077261, -2.302465], [55.077206, -2.302599]], [[55.077206, -2.302599], [55.077118, -2.302686]], [[55.077118, -2.302686], [55.077071, -2.302838]], [[55.077071, -2.302838], [55.077054, -2.303009]], [[55.077054, -2.303009], [55.077029, -2.303177]], [[55.077029, -2.303177], [55.076991, -2.303339]], [[55.076991, -2.303339], [55.076941, -2.303481]], [[55.076941, -2.303481], [55.07688, -2.303607]], [[55.07688, -2.303607], [55.076801, -2.303726]], [[55.076664, -2.304124], [55.076615, -2.304272]], [[55.076615, -2.304272], [55.07657, -2.304416]], [[55.07657, -2.304416], [55.076521, -2.304559]], [[55.076521, -2.304559], [55.076471, -2.304718]], [[55.075904, -2.306106], [55.075835, -2.306232]], [[55.075835, -2.306232], [55.075781, -2.306358]], [[55.075781, -2.306358], [55.075739, -2.306504]], [[55.075739, -2.306504], [55.075681, -2.306623]], [[55.075681, -2.306623], [55.075621, -2.306765]], [[55.075621, -2.306765], [55.07557, -2.306914]], [[55.07557, -2.306914], [55.075513, -2.307064]], [[55.075513, -2.307064], [55.07546, -2.30721]], [[55.07546, -2.30721], [55.075392, -2.307317]], [[55.07484, -2.308703], [55.074749, -2.308778]], [[55.074749, -2.308778], [55.074658, -2.308795]], [[55.074658, -2.308795], [55.07456, -2.308828]], [[55.07456, -2.308828], [55.07447, -2.308908]], [[55.07447, -2.308908], [55.07438, -2.308978]], [[55.074105, -2.309194], [55.074017, -2.309273]], [[55.074017, -2.309273], [55.073933, -2.309354]], [[55.073933, -2.309354], [55.07385, -2.309432]], [[55.07385, -2.309432], [55.073765, -2.309512]], [[55.073765, -2.309512], [55.073679, -2.309586]], [[55.073679, -2.309586], [55.073591, -2.309674]], [[55.073591, -2.309674], [55.073505, -2.309741]], [[55.073427, -2.309826], [55.073336, -2.309906]], [[55.073336, -2.309906], [55.073249, -2.309985]], [[55.073249, -2.309985], [55.073161, -2.310068]], [[55.073024, -2.310156], [55.072935, -2.310226]], [[55.072935, -2.310226], [55.072847, -2.310284]], [[55.072847, -2.310284], [55.072759, -2.310345]], [[55.072672, -2.310412], [55.072584, -2.310491]], [[55.072584, -2.310491], [55.072504, -2.310573]], [[55.072504, -2.310573], [55.072416, -2.310646]], [[55.072416, -2.310646], [55.072335, -2.31072]], [[55.072335, -2.31072], [55.072249, -2.310809]], [[55.07207, -2.310924], [55.071981, -2.310999]], [[55.071981, -2.310999], [55.071902, -2.311081]], [[55.071824, -2.311165], [55.071738, -2.311235]], [[55.071738, -2.311235], [55.071656, -2.311301]], [[55.071656, -2.311301], [55.071573, -2.311364]], [[55.071478, -2.311423], [55.07139, -2.311481]], [[55.071312, -2.31158], [55.071227, -2.311657]], [[55.071227, -2.311657], [55.071143, -2.311736]], [[55.071143, -2.311736], [55.071065, -2.311825]], [[55.071065, -2.311825], [55.070982, -2.311914]], [[55.070982, -2.311914], [55.070901, -2.311987]], [[55.070818, -2.312059], [55.070748, -2.312166]], [[55.070673, -2.312603], [55.07067, -2.312765]], [[55.07067, -2.312765], [55.070673, -2.312941]], [[55.070673, -2.312941], [55.070677, -2.313098]], [[55.070677, -2.313098], [55.070681, -2.313258]], [[55.070681, -2.313258], [55.070683, -2.313415]], [[55.070683, -2.313415], [55.070694, -2.313577]], [[55.070694, -2.313577], [55.070684, -2.313737]], [[55.070688, -2.313895], [55.070697, -2.314052]], [[55.070714, -2.314368], [55.070721, -2.314541]], [[55.070721, -2.314541], [55.070729, -2.314717]], [[55.070729, -2.314717], [55.070728, -2.314881]], [[55.070753, -2.315554], [55.070767, -2.315718]], [[55.070767, -2.315718], [55.07076, -2.315879]], [[55.070794, -2.316722], [55.070808, -2.316897]], [[55.070808, -2.316897], [55.070813, -2.317076]], [[55.070813, -2.317076], [55.070785, -2.317237]], [[55.070215, -2.317591], [55.070119, -2.317625]], [[55.070119, -2.317625], [55.070031, -2.317683]], [[55.070031, -2.317683], [55.069943, -2.317725]], [[55.069943, -2.317725], [55.06984, -2.317756]], [[55.06984, -2.317756], [55.069741, -2.317789]], [[55.069741, -2.317789], [55.069645, -2.317827]], [[55.069645, -2.317827], [55.069549, -2.317885]], [[55.069549, -2.317885], [55.069461, -2.317927]], [[55.069461, -2.317927], [55.069369, -2.317966]], [[55.069369, -2.317966], [55.069282, -2.318015]], [[55.069187, -2.318031], [55.069088, -2.318008]], [[55.069088, -2.318008], [55.068989, -2.317987]], [[55.068989, -2.317987], [55.068899, -2.317945]], [[55.068899, -2.317945], [55.068805, -2.317909]], [[55.068805, -2.317909], [55.068715, -2.317855]], [[55.068715, -2.317855], [55.068619, -2.317812]], [[55.068619, -2.317812], [55.068524, -2.317754]], [[55.068524, -2.317754], [55.068437, -2.317712]], [[55.068437, -2.317712], [55.068345, -2.317662]], [[55.068345, -2.317662], [55.068261, -2.317585]], [[55.068261, -2.317585], [55.06818, -2.317507]], [[55.068089, -2.317465], [55.067996, -2.317414]], [[55.067996, -2.317414], [55.067901, -2.317349]], [[55.067901, -2.317349], [55.06781, -2.317318]], [[55.06781, -2.317318], [55.067721, -2.317286]], [[55.067721, -2.317286], [55.067634, -2.317212]], [[55.067309, -2.316951], [55.067222, -2.316863]], [[55.067222, -2.316863], [55.067129, -2.316817]], [[55.067129, -2.316817], [55.067035, -2.316774]], [[55.067035, -2.316774], [55.066938, -2.316756]], [[55.066938, -2.316756], [55.066842, -2.31671]], [[55.066842, -2.31671], [55.066748, -2.316654]], [[55.066748, -2.316654], [55.066661, -2.316598]], [[55.066661, -2.316598], [55.066567, -2.316563]], [[55.066567, -2.316563], [55.066478, -2.316512]], [[55.066478, -2.316512], [55.066392, -2.316452]], [[55.066392, -2.316452], [55.066294, -2.316436]], [[55.066294, -2.316436], [55.066199, -2.316386]], [[55.066199, -2.316386], [55.066101, -2.316331]], [[55.066101, -2.316331], [55.066015, -2.316284]], [[55.066015, -2.316284], [55.065915, -2.316271]], [[55.065915, -2.316271], [55.065819, -2.316259]], [[55.065819, -2.316259], [55.065718, -2.316261]], [[55.065718, -2.316261], [55.065618, -2.316271]], [[55.065618, -2.316271], [55.065527, -2.316283]], [[55.065436, -2.316311], [55.065338, -2.316341]], [[55.065338, -2.316341], [55.065242, -2.316364]], [[55.065242, -2.316364], [55.065153, -2.316419]], [[55.065153, -2.316419], [55.065067, -2.316499]], [[55.065067, -2.316499], [55.064972, -2.316519]], [[55.064972, -2.316519], [55.064882, -2.316517]], [[55.064882, -2.316517], [55.064782, -2.316507]], [[55.064782, -2.316507], [55.064698, -2.316572]], [[55.064698, -2.316572], [55.064602, -2.316625]], [[55.064602, -2.316625], [55.064507, -2.316661]], [[55.064507, -2.316661], [55.06441, -2.316691]], [[55.06441, -2.316691], [55.064317, -2.316727]], [[55.064317, -2.316727], [55.064223, -2.316778]], [[55.064223, -2.316778], [55.064131, -2.316818]], [[55.06343, -2.317414], [55.063417, -2.317582]], [[55.063035, -2.317938], [55.06296, -2.318027]], [[55.06296, -2.318027], [55.062885, -2.318146]], [[55.062885, -2.318146], [55.062808, -2.31824]], [[55.062488, -2.318602], [55.062403, -2.318696]], [[55.062403, -2.318696], [55.062306, -2.318732]], [[55.062306, -2.318732], [55.06221, -2.318765]], [[55.06221, -2.318765], [55.062119, -2.318762]], [[55.062119, -2.318762], [55.062021, -2.318767]], [[55.062021, -2.318767], [55.061921, -2.318773]], [[55.061921, -2.318773], [55.061828, -2.318782]], [[55.061828, -2.318782], [55.061729, -2.318777]], [[55.061729, -2.318777], [55.061638, -2.318771]], [[55.061638, -2.318771], [55.061541, -2.318769]], [[55.061541, -2.318769], [55.061452, -2.318844]], [[55.061263, -2.318929], [55.061183, -2.319028]], [[55.061183, -2.319028], [55.061098, -2.318957]], [[55.061098, -2.318957], [55.060996, -2.318964]], [[55.060996, -2.318964], [55.060906, -2.318998]], [[55.060724, -2.319093], [55.06063, -2.319138]], [[55.06063, -2.319138], [55.060538, -2.319187]], [[55.06045, -2.319252], [55.060359, -2.31923]], [[55.060359, -2.31923], [55.060265, -2.319255]], [[55.060265, -2.319255], [55.060174, -2.319286]], [[55.060174, -2.319286], [55.060077, -2.319302]], [[55.059981, -2.319325], [55.059883, -2.319339]], [[55.059883, -2.319339], [55.059792, -2.319339]], [[55.059792, -2.319339], [55.059696, -2.319367]], [[55.059696, -2.319367], [55.059604, -2.319432]], [[55.059604, -2.319432], [55.059512, -2.319497]], [[55.059512, -2.319497], [55.059423, -2.319549]], [[55.059423, -2.319549], [55.059331, -2.31962]], [[55.059331, -2.31962], [55.059232, -2.319665]], [[55.059232, -2.319665], [55.059136, -2.319703]], [[55.059136, -2.319703], [55.059045, -2.319739]], [[55.059045, -2.319739], [55.058952, -2.31975]], [[55.058952, -2.31975], [55.058857, -2.319744]], [[55.058191, -2.319665], [55.05809, -2.319663]], [[55.05809, -2.319663], [55.057993, -2.319669]], [[55.057993, -2.319669], [55.057898, -2.319686]], [[55.057898, -2.319686], [55.0578, -2.319684]], [[55.0578, -2.319684], [55.057701, -2.319669]], [[55.057701, -2.319669], [55.057607, -2.319653]], [[55.057607, -2.319653], [55.057514, -2.319649]], [[55.057514, -2.319649], [55.05742, -2.31965]], [[55.05742, -2.31965], [55.057324, -2.319657]], [[55.057324, -2.319657], [55.057224, -2.319661]], [[55.057224, -2.319661], [55.057125, -2.319661]], [[55.057125, -2.319661], [55.057032, -2.319663]], [[55.057032, -2.319663], [55.056937, -2.319663]], [[55.056937, -2.319663], [55.056841, -2.319643]], [[55.056522, -2.319627], [55.056442, -2.319736]], [[55.056112, -2.320532], [55.056053, -2.320672]], [[55.056053, -2.320672], [55.055975, -2.320781]], [[55.055975, -2.320781], [55.055923, -2.320929]], [[55.055923, -2.320929], [55.055879, -2.32108]], [[55.055879, -2.32108], [55.055849, -2.321228]], [[55.055849, -2.321228], [55.05578, -2.321347]], [[55.05578, -2.321347], [55.0557, -2.321447]], [[55.055323, -2.321953], [55.055268, -2.322098]], [[55.055268, -2.322098], [55.055202, -2.322233]], [[55.055202, -2.322233], [55.055164, -2.322376]], [[55.055164, -2.322376], [55.055099, -2.322492]], [[55.055099, -2.322492], [55.055044, -2.322633]], [[55.055044, -2.322633], [55.054991, -2.322765]], [[55.054991, -2.322765], [55.054937, -2.322916]], [[55.054937, -2.322916], [55.054871, -2.323044]], [[55.054871, -2.323044], [55.054813, -2.32317]], [[55.054813, -2.32317], [55.054763, -2.32331]], [[55.054763, -2.32331], [55.054683, -2.323412]], [[55.054683, -2.323412], [55.054654, -2.323573]], [[55.054654, -2.323573], [55.054623, -2.323728]], [[55.054623, -2.323728], [55.054577, -2.323877]], [[55.054577, -2.323877], [55.054539, -2.324033]], [[55.054539, -2.324033], [55.054472, -2.324156]], [[55.053976, -2.325272], [55.0539, -2.325384]], [[55.0539, -2.325384], [55.053822, -2.325475]], [[55.053628, -2.325858], [55.053574, -2.326001]], [[55.053574, -2.326001], [55.053527, -2.326135]], [[55.053527, -2.326135], [55.053498, -2.326294]], [[55.053498, -2.326294], [55.053458, -2.326444]], [[55.053174, -2.32734], [55.053099, -2.327452]], [[55.052949, -2.327614], [55.052948, -2.327784]], [[55.052948, -2.327784], [55.052976, -2.327949]], [[55.052976, -2.327949], [55.052952, -2.328102]], [[55.052867, -2.328379], [55.052785, -2.328448]], [[55.052713, -2.328933], [55.052679, -2.329079]], [[55.052584, -2.329356], [55.05255, -2.329504]], [[55.05255, -2.329504], [55.052508, -2.329649]], [[55.052508, -2.329649], [55.052463, -2.329799]], [[55.052463, -2.329799], [55.052426, -2.329964]], [[55.052426, -2.329964], [55.052396, -2.330113]], [[55.052396, -2.330113], [55.052354, -2.330272]], [[55.052354, -2.330272], [55.052308, -2.33042]], [[55.052308, -2.33042], [55.052263, -2.330581]], [[55.052263, -2.330581], [55.052226, -2.330738]], [[55.052226, -2.330738], [55.052188, -2.330895]], [[55.052141, -2.331048], [55.052088, -2.331185]], [[55.052088, -2.331185], [55.052036, -2.331319]], [[55.052036, -2.331319], [55.051996, -2.331474]], [[55.051996, -2.331474], [55.051941, -2.33161]], [[55.051891, -2.331747], [55.05184, -2.331895]], [[55.05184, -2.331895], [55.05177, -2.331995]], [[55.05177, -2.331995], [55.051696, -2.332085]], [[55.051696, -2.332085], [55.051637, -2.332216]], [[55.051637, -2.332216], [55.05156, -2.332307]], [[55.05156, -2.332307], [55.051487, -2.332195]], [[55.051292, -2.333288], [55.051227, -2.333417]], [[55.051227, -2.333417], [55.05119, -2.333565]], [[55.05119, -2.333565], [55.051152, -2.333721]], [[55.051152, -2.333721], [55.051082, -2.333843]], [[55.051082, -2.333843], [55.051014, -2.333951]], [[55.051014, -2.333951], [55.050958, -2.334088]], [[55.050958, -2.334088], [55.050916, -2.334227]], [[55.050916, -2.334227], [55.050858, -2.334366]], [[55.050772, -2.334829], [55.050708, -2.334956]], [[55.050642, -2.335066], [55.050572, -2.335174]], [[55.050572, -2.335174], [55.050508, -2.335302]], [[55.050508, -2.335302], [55.050431, -2.335415]], [[55.050431, -2.335415], [55.050358, -2.335517]], [[55.050358, -2.335517], [55.050287, -2.335627]], [[55.050287, -2.335627], [55.050228, -2.335762]], [[55.050228, -2.335762], [55.050163, -2.335877]], [[55.050163, -2.335877], [55.050102, -2.336002]], [[55.050102, -2.336002], [55.050032, -2.336103]], [[55.050032, -2.336103], [55.049957, -2.336207]], [[55.049957, -2.336207], [55.049891, -2.336318]], [[55.049891, -2.336318], [55.04982, -2.33643]], [[55.04982, -2.33643], [55.049762, -2.336562]], [[55.049762, -2.336562], [55.049701, -2.336689]], [[55.049701, -2.336689], [55.049618, -2.336787]], [[55.049618, -2.336787], [55.04954, -2.336871]], [[55.04954, -2.336871], [55.04948, -2.337011]], [[55.04948, -2.337011], [55.049402, -2.337112]], [[55.049402, -2.337112], [55.049323, -2.337209]], [[55.049323, -2.337209], [55.04924, -2.337286]], [[55.04924, -2.337286], [55.04916, -2.337392]], [[55.04916, -2.337392], [55.049089, -2.337488]], [[55.048727, -2.337722], [55.048632, -2.337728]], [[55.048632, -2.337728], [55.04856, -2.337824]], [[55.04856, -2.337824], [55.048486, -2.337923]], [[55.048486, -2.337923], [55.048407, -2.338002]], [[55.048407, -2.338002], [55.048325, -2.338105]], [[55.048325, -2.338105], [55.04825, -2.338192]], [[55.04825, -2.338192], [55.048173, -2.338283]], [[55.048173, -2.338283], [55.048094, -2.33838]], [[55.048094, -2.33838], [55.048012, -2.338466]], [[55.048012, -2.338466], [55.047925, -2.338556]], [[55.047925, -2.338556], [55.047841, -2.338645]], [[55.047841, -2.338645], [55.04776, -2.338721]], [[55.04776, -2.338721], [55.047673, -2.338767]], [[55.047673, -2.338767], [55.047581, -2.338834]], [[55.047581, -2.338834], [55.047492, -2.338903]], [[55.047492, -2.338903], [55.047411, -2.339005]], [[55.047411, -2.339005], [55.04734, -2.339114]], [[55.04734, -2.339114], [55.047265, -2.339206]], [[55.047265, -2.339206], [55.0472, -2.339319]], [[55.0472, -2.339319], [55.04712, -2.339421]], [[55.047045, -2.339535], [55.046961, -2.339606]], [[55.046961, -2.339606], [55.046863, -2.339658]], [[55.046863, -2.339658], [55.046771, -2.339683]], [[55.046463, -2.340053], [55.046385, -2.340166]], [[55.046385, -2.340166], [55.046315, -2.340269]], [[55.046315, -2.340269], [55.046226, -2.34035]], [[55.046226, -2.34035], [55.046145, -2.340432]], [[55.046145, -2.340432], [55.046078, -2.340554]], [[55.046078, -2.340554], [55.046004, -2.34066]], [[55.046004, -2.34066], [55.04592, -2.340732]], [[55.04592, -2.340732], [55.045844, -2.340817]], [[55.045844, -2.340817], [55.045765, -2.340896]], [[55.045765, -2.340896], [55.045701, -2.341007]], [[55.045701, -2.341007], [55.045626, -2.341113]], [[55.045626, -2.341113], [55.045551, -2.341206]], [[55.045551, -2.341206], [55.045476, -2.341295]], [[55.045476, -2.341295], [55.045401, -2.341381]], [[55.045401, -2.341381], [55.045313, -2.341464]], [[55.045313, -2.341464], [55.045226, -2.341554]], [[55.045226, -2.341554], [55.045157, -2.341656]], [[55.045157, -2.341656], [55.045086, -2.341761]], [[55.045086, -2.341761], [55.045014, -2.341879]], [[55.045014, -2.341879], [55.044942, -2.341986]], [[55.044942, -2.341986], [55.044859, -2.342073]], [[55.044859, -2.342073], [55.04478, -2.342162]], [[55.04478, -2.342162], [55.044686, -2.34221]], [[55.044487, -2.342428], [55.044408, -2.342539]], [[55.044323, -2.342628], [55.044237, -2.342676]], [[55.044237, -2.342676], [55.044157, -2.342788]], [[55.044157, -2.342788], [55.044069, -2.342828]], [[55.044069, -2.342828], [55.043982, -2.342867]], [[55.043982, -2.342867], [55.043918, -2.342992]], [[55.043918, -2.342992], [55.043843, -2.343104]], [[55.043843, -2.343104], [55.043757, -2.34319]], [[55.043757, -2.34319], [55.043672, -2.343269]], [[55.043672, -2.343269], [55.04359, -2.343353]], [[55.04359, -2.343353], [55.043516, -2.343442]], [[55.043516, -2.343442], [55.043417, -2.343473]], [[55.043417, -2.343473], [55.043332, -2.34353]], [[55.043332, -2.34353], [55.043242, -2.343575]], [[55.043242, -2.343575], [55.043147, -2.343636]], [[55.043147, -2.343636], [55.043051, -2.343689]], [[55.042875, -2.343785], [55.042781, -2.343847]], [[55.042781, -2.343847], [55.042691, -2.343855]], [[55.042691, -2.343855], [55.042596, -2.343904]], [[55.042596, -2.343904], [55.042497, -2.343942]], [[55.042497, -2.343942], [55.042406, -2.343996]], [[55.042406, -2.343996], [55.042313, -2.344061]], [[55.042313, -2.344061], [55.04222, -2.344105]], [[55.04222, -2.344105], [55.042121, -2.344116]], [[55.042121, -2.344116], [55.042025, -2.344175]], [[55.042025, -2.344175], [55.041932, -2.344206]], [[55.041932, -2.344206], [55.04184, -2.344227]], [[55.04184, -2.344227], [55.041743, -2.344269]], [[55.041743, -2.344269], [55.041643, -2.344278]], [[55.041643, -2.344278], [55.041543, -2.344287]], [[55.041543, -2.344287], [55.041445, -2.344298]], [[55.041445, -2.344298], [55.041347, -2.344331]], [[55.041152, -2.344317], [55.04106, -2.344321]], [[55.04106, -2.344321], [55.040972, -2.344276]], [[55.040599, -2.344124], [55.040508, -2.344082]], [[55.040508, -2.344082], [55.040423, -2.344008]], [[55.040423, -2.344008], [55.04033, -2.343947]], [[55.038856, -2.343489], [55.038765, -2.343491]], [[55.038578, -2.343492], [55.038484, -2.343479]], [[55.038484, -2.343479], [55.038382, -2.343479]], [[55.038382, -2.343479], [55.038283, -2.343495]], [[55.038283, -2.343495], [55.038188, -2.343512]], [[55.038188, -2.343512], [55.03809, -2.343554]], [[55.03809, -2.343554], [55.038, -2.343563]], [[55.037713, -2.343556], [55.037612, -2.343573]], [[55.037612, -2.343573], [55.03751, -2.343594]], [[55.037417, -2.343616], [55.037329, -2.343676]], [[55.037329, -2.343676], [55.037237, -2.343727]], [[55.037237, -2.343727], [55.037145, -2.343731]], [[55.037145, -2.343731], [55.037052, -2.343755]], [[55.037052, -2.343755], [55.036955, -2.343777]], [[55.036955, -2.343777], [55.036864, -2.343761]], [[55.036864, -2.343761], [55.036778, -2.34371]], [[55.03659, -2.343686], [55.036494, -2.343677]], [[55.036494, -2.343677], [55.036393, -2.343647]], [[55.036001, -2.343486], [55.035902, -2.343455]], [[55.035902, -2.343455], [55.035812, -2.3434]], [[55.035812, -2.3434], [55.035716, -2.343368]], [[55.035716, -2.343368], [55.035623, -2.343312]], [[55.035623, -2.343312], [55.035522, -2.343286]], [[55.035522, -2.343286], [55.035429, -2.343274]], [[55.035131, -2.343259], [55.035031, -2.343274]], [[55.034641, -2.343296], [55.034543, -2.343313]], [[55.034543, -2.343313], [55.034442, -2.343335]], [[55.034442, -2.343335], [55.034351, -2.343352]], [[55.034351, -2.343352], [55.03425, -2.343378]], [[55.034057, -2.34344], [55.033968, -2.343471]], [[55.033591, -2.343526], [55.033493, -2.343561]], [[55.033493, -2.343561], [55.033393, -2.343563]], [[55.033393, -2.343563], [55.033297, -2.343572]], [[55.033297, -2.343572], [55.033207, -2.343593]], [[55.03271, -2.34363], [55.032617, -2.343683]], [[55.032294, -2.344041], [55.032235, -2.344169]], [[55.032235, -2.344169], [55.032158, -2.344291]], [[55.032158, -2.344291], [55.032079, -2.34439]], [[55.032079, -2.34439], [55.032005, -2.344497]], [[55.031694, -2.344878], [55.031615, -2.344982]], [[55.031615, -2.344982], [55.03154, -2.34507]], [[55.03154, -2.34507], [55.031467, -2.345166]], [[55.031467, -2.345166], [55.031393, -2.345261]], [[55.030805, -2.345878], [55.030721, -2.345975]], [[55.030721, -2.345975], [55.03063, -2.345942]], [[55.030121, -2.345722], [55.030031, -2.345652]], [[55.030031, -2.345652], [55.029938, -2.345585]], [[55.029938, -2.345585], [55.029854, -2.34552]], [[55.029854, -2.34552], [55.02976, -2.345475]], [[55.02976, -2.345475], [55.02967, -2.345437]], [[55.02967, -2.345437], [55.029582, -2.345386]], [[55.029582, -2.345386], [55.029515, -2.34527]], [[55.029429, -2.344992], [55.029431, -2.344824]], [[55.029468, -2.344673], [55.029449, -2.344518]], [[55.029449, -2.344518], [55.029432, -2.344346]], [[55.029339, -2.343943], [55.029265, -2.34383]], [[55.029265, -2.34383], [55.029189, -2.343713]], [[55.029189, -2.343713], [55.029113, -2.343618]], [[55.028955, -2.343774], [55.028871, -2.3437]], [[55.028566, -2.34337], [55.028481, -2.343306]], [[55.028481, -2.343306], [55.028396, -2.343246]], [[55.028396, -2.343246], [55.028312, -2.343161]], [[55.028312, -2.343161], [55.028219, -2.34319]], [[55.028045, -2.343326], [55.027952, -2.343386]], [[55.027952, -2.343386], [55.027863, -2.343436]], [[55.027863, -2.343436], [55.027773, -2.343492]], [[55.027773, -2.343492], [55.027684, -2.343536]], [[55.027684, -2.343536], [55.027593, -2.343603]], [[55.027243, -2.343783], [55.027163, -2.34386]], [[55.027163, -2.34386], [55.027071, -2.343893]], [[55.02689, -2.343986], [55.026801, -2.344034]], [[55.026801, -2.344034], [55.026725, -2.34414]], [[55.026725, -2.34414], [55.02663, -2.344202]], [[55.02663, -2.344202], [55.026548, -2.34428]], [[55.026548, -2.34428], [55.026472, -2.344391]], [[55.026472, -2.344391], [55.026413, -2.344516]], [[55.026413, -2.344516], [55.02633, -2.344585]], [[55.02633, -2.344585], [55.026244, -2.344656]], [[55.026244, -2.344656], [55.026179, -2.344784]], [[55.026179, -2.344784], [55.026101, -2.344885]], [[55.026101, -2.344885], [55.026013, -2.344944]], [[55.026013, -2.344944], [55.025931, -2.345027]], [[55.025931, -2.345027], [55.02587, -2.345166]], [[55.02587, -2.345166], [55.025804, -2.345275]], [[55.025728, -2.345374], [55.025637, -2.345361]], [[55.025637, -2.345361], [55.025555, -2.345296]], [[55.025555, -2.345296], [55.025461, -2.345229]], [[55.025461, -2.345229], [55.025376, -2.345145]], [[55.025376, -2.345145], [55.025283, -2.345098]], [[55.025283, -2.345098], [55.025187, -2.345079]], [[55.025187, -2.345079], [55.025098, -2.345049]], [[55.025098, -2.345049], [55.025001, -2.34502]], [[55.024234, -2.343269], [55.024164, -2.343383]], [[55.024164, -2.343383], [55.024097, -2.343497]], [[55.024097, -2.343497], [55.024096, -2.343663]], [[55.023437, -2.344019], [55.02337, -2.344131]], [[55.023172, -2.344494], [55.023098, -2.344593]], [[55.022895, -2.344722], [55.022808, -2.344773]], [[55.022808, -2.344773], [55.022716, -2.344825]], [[55.022716, -2.344825], [55.022623, -2.344836]], [[55.022623, -2.344836], [55.022524, -2.344824]], [[55.022524, -2.344824], [55.022424, -2.344835]], [[55.022354, -2.344734], [55.022268, -2.344639]], [[55.022178, -2.344665], [55.022085, -2.344707]], [[55.022085, -2.344707], [55.021988, -2.344734]], [[55.021988, -2.344734], [55.021896, -2.344766]], [[55.021533, -2.344926], [55.021441, -2.344942]], [[55.021441, -2.344942], [55.021346, -2.344976]], [[55.021013, -2.345179], [55.020924, -2.34515]], [[55.020342, -2.344875], [55.020256, -2.344823]], [[55.020215, -2.344681], [55.020156, -2.344553]], [[55.020156, -2.344553], [55.020091, -2.344434]], [[55.020091, -2.344434], [55.02002, -2.344304]], [[55.02002, -2.344304], [55.01996, -2.34417]], [[55.01996, -2.34417], [55.019897, -2.344034]], [[55.019897, -2.344034], [55.019841, -2.343908]], [[55.019717, -2.343687], [55.019647, -2.343576]], [[55.019647, -2.343576], [55.019573, -2.343471]], [[55.019573, -2.343471], [55.019503, -2.343363]], [[55.019503, -2.343363], [55.019431, -2.34326]], [[55.019431, -2.34326], [55.019366, -2.34313]], [[55.019366, -2.34313], [55.019331, -2.342982]], [[55.019331, -2.342982], [55.019305, -2.342818]], [[55.019305, -2.342818], [55.0193, -2.342656]], [[55.019047, -2.342108], [55.018952, -2.342065]], [[55.018952, -2.342065], [55.018862, -2.342045]], [[55.018862, -2.342045], [55.018762, -2.342035]], [[55.018762, -2.342035], [55.018671, -2.342019]], [[55.018107, -2.34195], [55.018012, -2.341969]], [[55.018012, -2.341969], [55.017914, -2.341971]], [[55.017914, -2.341971], [55.01782, -2.341977]], [[55.01782, -2.341977], [55.017723, -2.341953]], [[55.017723, -2.341953], [55.017632, -2.341938]], [[55.017632, -2.341938], [55.017542, -2.341937]], [[55.017542, -2.341937], [55.01745, -2.341951]], [[55.017352, -2.34196], [55.017258, -2.341955]], [[55.017258, -2.341955], [55.017164, -2.341955]], [[55.017164, -2.341955], [55.01707, -2.341964]], [[55.01707, -2.341964], [55.016973, -2.341958]], [[55.016973, -2.341958], [55.016872, -2.341964]], [[55.016872, -2.341964], [55.016784, -2.341992]], [[55.016784, -2.341992], [55.016689, -2.342018]], [[55.016689, -2.342018], [55.016595, -2.342026]], [[55.016595, -2.342026], [55.016496, -2.342049]], [[55.016213, -2.342114], [55.016121, -2.342169]], [[55.016095, -2.341992], [55.01607, -2.342151]], [[55.015687, -2.342241], [55.01559, -2.342275]], [[55.01559, -2.342275], [55.0155, -2.342315]], [[55.0155, -2.342315], [55.015409, -2.342351]], [[55.013403, -2.343482], [55.013312, -2.343518]], [[55.013312, -2.343518], [55.013221, -2.343533]], [[55.013221, -2.343533], [55.01313, -2.343568]], [[55.012519, -2.343925], [55.012435, -2.343993]], [[55.012435, -2.343993], [55.01235, -2.344083]], [[55.01235, -2.344083], [55.012254, -2.344116]], [[55.012254, -2.344116], [55.012161, -2.344146]], [[55.011552, -2.344825], [55.011525, -2.344992]], [[55.011525, -2.344992], [55.011501, -2.345148]], [[55.011501, -2.345148], [55.011478, -2.345303]], [[55.011478, -2.345303], [55.011462, -2.345477]], [[55.011462, -2.345477], [55.011439, -2.345631]], [[55.011439, -2.345631], [55.011411, -2.345799]], [[55.011411, -2.345799], [55.011385, -2.345962]], [[55.011385, -2.345962], [55.011362, -2.346118]], [[55.011362, -2.346118], [55.011349, -2.346285]], [[55.011349, -2.346285], [55.011322, -2.346452]], [[55.011322, -2.346452], [55.011286, -2.346599]], [[55.011286, -2.346599], [55.011252, -2.346757]], [[55.011252, -2.346757], [55.011231, -2.34692]], [[55.011231, -2.34692], [55.01122, -2.34708]], [[55.01122, -2.34708], [55.011191, -2.347238]], [[55.011191, -2.347238], [55.011176, -2.347395]], [[55.011176, -2.347395], [55.011147, -2.347567]], [[55.011147, -2.347567], [55.011124, -2.347737]], [[55.011124, -2.347737], [55.011097, -2.347896]], [[55.011056, -2.348043], [55.011031, -2.348195]], [[55.011031, -2.348195], [55.011006, -2.348351]], [[55.011006, -2.348351], [55.01099, -2.348522]], [[55.01099, -2.348522], [55.010979, -2.348681]], [[55.010979, -2.348681], [55.010952, -2.34884]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_90f65dc4863d9e10db3ab49092aca585);
        
    
            var poly_line_8c11f23494e3ceb043e3f320086bc770 = L.polyline(
                [[[55.318003, -2.37219], [55.317993, -2.372138]], [[55.31795, -2.37199], [55.317905, -2.371847]], [[55.313644, -2.363672], [55.313606, -2.363692]], [[55.313429, -2.363574], [55.313401, -2.363523]], [[55.313401, -2.363523], [55.313349, -2.363388]], [[55.313401, -2.36327], [55.313353, -2.36313]], [[55.30939, -2.360125], [55.309353, -2.360055]], [[55.309304, -2.359915], [55.309236, -2.359805]], [[55.302982, -2.350124], [55.302931, -2.349983]], [[55.302676, -2.348566], [55.302702, -2.348474]], [[55.302032, -2.346727], [55.301966, -2.346609]], [[55.301966, -2.346609], [55.301917, -2.34647]], [[55.301917, -2.34647], [55.301923, -2.346433]], [[55.298804, -2.343077], [55.298796, -2.343031]], [[55.280462, -2.335], [55.280379, -2.334907]], [[55.254103, -2.31811], [55.254023, -2.318038]], [[55.240206, -2.305115], [55.240108, -2.30509]], [[55.219288, -2.277449], [55.219234, -2.277324]], [[55.218968, -2.276835], [55.21889, -2.276751]], [[55.215607, -2.271091], [55.215549, -2.270967]], [[55.215549, -2.270967], [55.215484, -2.270848]], [[55.215484, -2.270848], [55.21543, -2.270731]], [[55.21543, -2.270731], [55.215368, -2.270608]], [[55.215082, -2.270231], [55.215083, -2.270201]], [[55.215085, -2.270036], [55.215089, -2.269879]], [[55.215088, -2.269709], [55.215094, -2.269536]], [[55.213942, -2.2653], [55.213904, -2.265153]], [[55.21303, -2.261314], [55.212991, -2.261172]], [[55.21273, -2.260524], [55.212638, -2.260498]], [[55.207251, -2.251847], [55.207236, -2.251836]], [[55.207162, -2.251741], [55.207089, -2.25164]], [[55.206311, -2.250714], [55.206211, -2.250682]], [[55.198709, -2.24704], [55.19868, -2.246898]], [[55.19868, -2.246898], [55.198595, -2.246959]], [[55.196566, -2.246309], [55.196485, -2.246228]], [[55.196316, -2.246049], [55.196223, -2.246005]], [[55.192891, -2.246902], [55.192899, -2.24692]], [[55.189685, -2.250912], [55.189684, -2.250902]], [[55.189247, -2.250851], [55.18916, -2.250806]], [[55.182051, -2.252014], [55.182016, -2.252038]], [[55.181847, -2.251883], [55.181769, -2.251786]], [[55.181084, -2.248755], [55.181079, -2.248611]], [[55.181003, -2.247787], [55.180988, -2.24771]], [[55.180966, -2.246539], [55.180939, -2.246445]], [[55.179888, -2.246671], [55.179874, -2.246645]], [[55.178059, -2.244462], [55.178021, -2.244455]], [[55.178021, -2.244455], [55.177932, -2.244402]], [[55.166134, -2.243455], [55.166125, -2.243452]], [[55.166028, -2.243447], [55.165938, -2.243433]], [[55.165938, -2.243433], [55.165881, -2.243436]], [[55.165881, -2.243436], [55.165789, -2.243395]], [[55.163661, -2.244495], [55.163561, -2.244504]], [[55.161984, -2.244603], [55.161949, -2.244586]], [[55.16186, -2.244525], [55.161763, -2.244504]], [[55.159992, -2.243716], [55.159966, -2.243692]], [[55.159966, -2.243692], [55.159874, -2.243626]], [[55.155269, -2.242363], [55.155231, -2.242311]], [[55.155231, -2.242311], [55.155142, -2.242234]], [[55.145115, -2.246681], [55.145107, -2.246722]], [[55.145072, -2.246867], [55.145019, -2.247005]], [[55.144805, -2.24734], [55.144815, -2.247327]], [[55.144681, -2.247494], [55.144603, -2.24758]], [[55.14429, -2.254238], [55.14422, -2.25435]], [[55.144168, -2.254659], [55.144126, -2.254751]], [[55.143762, -2.255072], [55.14368, -2.255072]], [[55.14432, -2.261294], [55.144301, -2.261231]], [[55.144301, -2.261231], [55.144352, -2.261097]], [[55.144426, -2.260975], [55.144444, -2.260975]], [[55.144505, -2.261101], [55.144495, -2.261257]], [[55.140916, -2.261879], [55.140902, -2.261891]], [[55.139723, -2.261193], [55.139714, -2.261141]], [[55.139628, -2.261068], [55.139544, -2.260985]], [[55.135885, -2.257203], [55.135857, -2.257174]], [[55.135786, -2.257068], [55.13569, -2.25705]], [[55.135088, -2.256603], [55.134998, -2.256527]], [[55.134064, -2.252466], [55.134011, -2.252406]], [[55.133928, -2.252344], [55.13385, -2.252256]], [[55.132579, -2.251277], [55.132495, -2.251265]], [[55.132495, -2.251265], [55.132438, -2.251141]], [[55.130447, -2.250418], [55.130405, -2.250339]], [[55.130405, -2.250339], [55.130321, -2.25042]], [[55.130321, -2.25042], [55.130272, -2.250514]], [[55.130272, -2.250514], [55.130196, -2.250617]], [[55.130196, -2.250617], [55.130127, -2.25072]], [[55.129657, -2.250924], [55.129601, -2.250902]], [[55.129517, -2.250978], [55.129441, -2.251077]], [[55.129441, -2.251077], [55.129362, -2.251165]], [[55.129362, -2.251165], [55.129285, -2.251258]], [[55.129285, -2.251258], [55.129203, -2.251321]], [[55.128705, -2.251699], [55.128621, -2.251676]], [[55.128534, -2.251736], [55.128445, -2.251803]], [[55.125118, -2.262971], [55.125119, -2.263015]], [[55.125528, -2.265568], [55.125495, -2.265615]], [[55.125405, -2.265683], [55.12531, -2.265733]], [[55.12387, -2.266699], [55.123869, -2.266825]], [[55.123869, -2.266825], [55.123838, -2.266973]], [[55.12367, -2.267011], [55.123578, -2.267008]], [[55.121835, -2.267638], [55.121813, -2.267623]], [[55.119695, -2.268873], [55.119605, -2.268942]], [[55.117661, -2.269487], [55.117611, -2.269531]], [[55.117611, -2.269531], [55.117522, -2.26951]], [[55.117439, -2.269578], [55.11738, -2.269615]], [[55.11738, -2.269615], [55.117284, -2.269648]], [[55.115434, -2.270208], [55.115365, -2.270103]], [[55.114689, -2.268743], [55.114678, -2.268721]], [[55.114678, -2.268721], [55.114607, -2.268623]], [[55.113379, -2.269324], [55.113329, -2.26919]], [[55.113023, -2.268383], [55.112936, -2.268443]], [[55.112647, -2.268999], [55.112595, -2.269144]], [[55.112009, -2.269166], [55.111919, -2.269155]], [[55.111919, -2.269155], [55.111829, -2.269149]], [[55.111829, -2.269149], [55.111746, -2.26912]], [[55.111746, -2.26912], [55.111661, -2.269063]], [[55.111661, -2.269063], [55.111564, -2.269035]], [[55.111564, -2.269035], [55.111473, -2.269028]], [[55.111193, -2.26902], [55.1111, -2.269022]], [[55.109559, -2.270409], [55.109551, -2.270417]], [[55.109551, -2.270417], [55.109473, -2.270518]], [[55.10724, -2.272955], [55.107223, -2.272965]], [[55.107142, -2.27304], [55.107055, -2.273124]], [[55.105544, -2.274095], [55.105451, -2.274146]], [[55.099897, -2.29077], [55.099894, -2.290786]], [[55.099638, -2.289857], [55.099583, -2.289887]], [[55.099583, -2.289887], [55.099493, -2.289822]], [[55.098559, -2.288864], [55.098466, -2.288918]], [[55.095789, -2.288352], [55.095736, -2.288216]], [[55.094695, -2.287161], [55.09462, -2.287072]], [[55.091957, -2.287007], [55.091985, -2.287041]], [[55.090968, -2.289113], [55.091005, -2.289271]], [[55.091005, -2.289271], [55.090936, -2.289349]], [[55.089241, -2.292565], [55.089224, -2.292622]], [[55.088833, -2.294325], [55.088864, -2.294474]], [[55.08886, -2.295316], [55.088785, -2.295365]], [[55.088785, -2.295365], [55.0887, -2.295435]], [[55.0887, -2.295435], [55.088658, -2.295278]], [[55.088658, -2.295278], [55.088613, -2.295143]], [[55.088486, -2.294954], [55.088389, -2.294947]], [[55.088389, -2.294947], [55.088352, -2.294942]], [[55.088266, -2.294866], [55.088176, -2.294809]], [[55.08753, -2.294705], [55.087435, -2.294717]], [[55.087345, -2.294763], [55.087318, -2.294771]], [[55.087297, -2.294928], [55.087328, -2.295079]], [[55.087411, -2.296876], [55.087418, -2.29695]], [[55.085927, -2.297563], [55.085836, -2.297552]], [[55.085836, -2.297552], [55.085741, -2.297556]], [[55.084026, -2.297878], [55.084046, -2.297802]], [[55.079145, -2.298372], [55.07909, -2.29837]], [[55.079, -2.298446], [55.078903, -2.29848]], [[55.073161, -2.310068], [55.073118, -2.310085]], [[55.073118, -2.310085], [55.073024, -2.310156]], [[55.070785, -2.317237], [55.070746, -2.317279]], [[55.070746, -2.317279], [55.070652, -2.317316]], [[55.06749, -2.317036], [55.067398, -2.317003]], [[55.063517, -2.317204], [55.063472, -2.317268]], [[55.063472, -2.317268], [55.06343, -2.317414]], [[55.063409, -2.317453], [55.063324, -2.317524]], [[55.063409, -2.317472], [55.063415, -2.317418]], [[55.06333, -2.317512], [55.063245, -2.31761]], [[55.058677, -2.319675], [55.058578, -2.319669]], [[55.056655, -2.319588], [55.056622, -2.31961]], [[55.056622, -2.31961], [55.056522, -2.319627]], [[55.054437, -2.324477], [55.054385, -2.324606]], [[55.052733, -2.328588], [55.052746, -2.328607]], [[55.052746, -2.328772], [55.052713, -2.328933]], [[55.051411, -2.332494], [55.051427, -2.332659]], [[55.048951, -2.337699], [55.048915, -2.337763]], [[55.048821, -2.337778], [55.048727, -2.337722]], [[55.04456, -2.342332], [55.044487, -2.342428]], [[55.032533, -2.343754], [55.032453, -2.343846]], [[55.030345, -2.345897], [55.030272, -2.345905]], [[55.030272, -2.345905], [55.030194, -2.34582]], [[55.029433, -2.345202], [55.029426, -2.345164]], [[55.029426, -2.345164], [55.029429, -2.344992]], [[55.029432, -2.344346], [55.029426, -2.34425]], [[55.029397, -2.344085], [55.029339, -2.343943]], [[55.02743, -2.34376], [55.027415, -2.343882]], [[55.027333, -2.343819], [55.027243, -2.343783]], [[55.024628, -2.344871], [55.024557, -2.344763]], [[55.02436, -2.343027], [55.024308, -2.343167]], [[55.024147, -2.343803], [55.024169, -2.343788]], [[55.023812, -2.343616], [55.023722, -2.343652]], [[55.022989, -2.344691], [55.022895, -2.344722]], [[55.021272, -2.344989], [55.021187, -2.345063]], [[55.021187, -2.345063], [55.021099, -2.345102]], [[55.020841, -2.345203], [55.020749, -2.34522]], [[55.020749, -2.34522], [55.020656, -2.345258]], [[55.020656, -2.345258], [55.020608, -2.34519]], [[55.020608, -2.34519], [55.020519, -2.345135]], [[55.020438, -2.345044], [55.02042, -2.344968]], [[55.019255, -2.342528], [55.019274, -2.342374]], [[55.019274, -2.342374], [55.019232, -2.342232]], [[55.019139, -2.342132], [55.019047, -2.342108]], [[55.0161, -2.34203], [55.016108, -2.341869]], [[55.016108, -2.341869], [55.016111, -2.341835]], [[55.016111, -2.341835], [55.016095, -2.341992]], [[55.011795, -2.344182], [55.011742, -2.344072]], [[55.011609, -2.344398], [55.011577, -2.344546]], [[55.011577, -2.344546], [55.011555, -2.344659]], [[55.011555, -2.344659], [55.011552, -2.344825]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_90f65dc4863d9e10db3ab49092aca585);
        
    
            var poly_line_f91e2a41dfac123f379264d1ec9218b8 = L.polyline(
                [[[55.317993, -2.372138], [55.31795, -2.37199]], [[55.316017, -2.365897], [55.315957, -2.36577]], [[55.314549, -2.362898], [55.314479, -2.363002]], [[55.314479, -2.363002], [55.314467, -2.363017]], [[55.314467, -2.363017], [55.314393, -2.363118]], [[55.305607, -2.351716], [55.30557, -2.351562]], [[55.305072, -2.35064], [55.305032, -2.350793]], [[55.301923, -2.346433], [55.301867, -2.346294]], [[55.295861, -2.340556], [55.29577, -2.340571]], [[55.280559, -2.335048], [55.280462, -2.335]], [[55.254192, -2.318167], [55.254103, -2.31811]], [[55.240896, -2.30555], [55.240815, -2.305473]], [[55.219032, -2.290625], [55.219037, -2.29065]], [[55.219439, -2.27764], [55.219365, -2.277564]], [[55.219365, -2.277564], [55.219288, -2.277449]], [[55.215089, -2.269879], [55.215093, -2.26988]], [[55.213982, -2.265445], [55.213942, -2.2653]], [[55.213061, -2.261481], [55.213057, -2.261466]], [[55.206407, -2.250775], [55.206311, -2.250714]], [[55.185925, -2.250547], [55.185858, -2.250658]], [[55.180988, -2.24771], [55.180979, -2.247539]], [[55.180939, -2.246445], [55.180846, -2.246518]], [[55.179874, -2.246645], [55.179812, -2.246515]], [[55.174531, -2.246802], [55.17453, -2.246969]], [[55.145107, -2.246722], [55.145072, -2.246867]], [[55.144815, -2.247327], [55.144735, -2.247424]], [[55.144735, -2.247424], [55.144681, -2.247494]], [[55.144364, -2.25413], [55.14429, -2.254238]], [[55.14227, -2.255433], [55.142346, -2.255527]], [[55.143671, -2.261933], [55.143574, -2.261976]], [[55.143211, -2.261961], [55.143202, -2.261932]], [[55.143202, -2.261932], [55.143111, -2.261931]], [[55.140902, -2.261891], [55.14081, -2.261859]], [[55.135172, -2.256688], [55.135088, -2.256603]], [[55.129601, -2.250902], [55.129517, -2.250978]], [[55.128621, -2.251676], [55.128534, -2.251736]], [[55.125119, -2.263015], [55.125143, -2.263176]], [[55.121813, -2.267623], [55.121721, -2.267556]], [[55.121561, -2.267592], [55.121475, -2.267675]], [[55.119772, -2.268822], [55.119778, -2.268809]], [[55.113677, -2.269265], [55.113592, -2.26933]], [[55.113444, -2.26946], [55.113379, -2.269324]], [[55.113092, -2.268274], [55.113023, -2.268383]], [[55.09992, -2.290618], [55.099872, -2.290476]], [[55.09462, -2.287072], [55.094601, -2.287058]], [[55.094601, -2.287058], [55.094513, -2.287022]], [[55.091985, -2.287041], [55.092035, -2.287181]], [[55.089224, -2.292622], [55.08919, -2.292784]], [[55.088861, -2.294142], [55.088853, -2.294298]], [[55.088853, -2.294298], [55.088837, -2.294159]], [[55.088837, -2.294159], [55.088833, -2.294325]], [[55.087318, -2.294771], [55.087297, -2.294928]], [[55.087418, -2.29695], [55.087444, -2.297107]], [[55.087444, -2.297107], [55.087448, -2.297101]], [[55.087448, -2.297101], [55.087389, -2.297237]], [[55.084046, -2.297802], [55.083989, -2.297675]], [[55.070683, -2.312437], [55.070673, -2.312603]], [[55.054407, -2.324139], [55.054416, -2.324302]], [[55.054416, -2.324302], [55.054393, -2.324335]], [[55.051412, -2.332984], [55.051406, -2.333033]], [[55.051406, -2.333033], [55.051363, -2.333173]], [[55.048915, -2.337763], [55.048821, -2.337778]], [[55.04465, -2.342267], [55.04456, -2.342332]], [[55.032578, -2.343618], [55.032533, -2.343754]], [[55.029426, -2.34425], [55.029397, -2.344085]], [[55.027415, -2.343882], [55.027333, -2.343819]], [[55.024031, -2.343557], [55.023938, -2.343575]], [[55.02391, -2.343612], [55.023812, -2.343616]], [[55.023014, -2.344651], [55.022989, -2.344691]], [[55.019232, -2.342232], [55.019224, -2.342204]], [[55.016059, -2.342177], [55.0161, -2.34203]], [[55.011742, -2.344072], [55.011669, -2.344167]], [[55.011669, -2.344167], [55.011624, -2.344241]], [[55.011624, -2.344241], [55.011609, -2.344398]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_90f65dc4863d9e10db3ab49092aca585);
        
    
            var poly_line_8b4c6a8034ced2558272018eac073c9d = L.polyline(
                [[[55.317905, -2.371847], [55.317871, -2.371696]], [[55.317705, -2.371074], [55.31767, -2.37091]], [[55.31767, -2.37091], [55.317615, -2.370773]], [[55.316975, -2.368898], [55.316942, -2.368749]], [[55.316942, -2.368749], [55.316889, -2.368612]], [[55.316022, -2.36599], [55.316017, -2.365897]], [[55.315957, -2.36577], [55.315904, -2.365615]], [[55.314769, -2.362711], [55.314724, -2.362675]], [[55.314393, -2.363118], [55.31432, -2.363227]], [[55.314136, -2.363253], [55.314061, -2.363357]], [[55.314061, -2.363357], [55.314003, -2.363483]], [[55.314003, -2.363483], [55.314015, -2.363641]], [[55.314015, -2.363641], [55.313918, -2.363638]], [[55.313606, -2.363692], [55.313516, -2.36366]], [[55.313349, -2.363388], [55.313401, -2.36327]], [[55.313353, -2.36313], [55.313298, -2.362997]], [[55.312966, -2.362908], [55.312901, -2.362962]], [[55.312901, -2.362962], [55.312833, -2.363067]], [[55.31082, -2.363389], [55.310733, -2.36335]], [[55.31051, -2.362231], [55.310436, -2.362133]], [[55.310436, -2.362133], [55.310374, -2.362004]], [[55.303611, -2.353604], [55.303546, -2.353533]], [[55.303546, -2.353533], [55.303475, -2.35341]], [[55.303214, -2.352726], [55.303265, -2.352863]], [[55.3056, -2.351623], [55.305607, -2.351716]], [[55.30557, -2.351562], [55.305494, -2.35144]], [[55.305123, -2.350649], [55.305072, -2.35064]], [[55.305032, -2.350793], [55.304991, -2.350942]], [[55.304883, -2.351217], [55.304839, -2.351364]], [[55.304839, -2.351364], [55.304784, -2.351498]], [[55.304784, -2.351498], [55.304705, -2.351598]], [[55.304705, -2.351598], [55.304645, -2.351736]], [[55.303017, -2.350274], [55.302982, -2.350124]], [[55.302931, -2.349983], [55.302898, -2.349825]], [[55.302874, -2.349672], [55.302833, -2.349521]], [[55.302833, -2.349521], [55.3028, -2.349363]], [[55.3028, -2.349363], [55.302777, -2.349211]], [[55.302777, -2.349211], [55.30276, -2.349035]], [[55.302701, -2.348721], [55.302676, -2.348566]], [[55.302702, -2.348474], [55.302707, -2.348314]], [[55.302188, -2.346913], [55.302104, -2.346847]], [[55.302104, -2.346847], [55.302032, -2.346727]], [[55.301867, -2.346294], [55.301796, -2.34618]], [[55.298696, -2.343006], [55.298594, -2.343009]], [[55.296782, -2.341396], [55.296744, -2.341242]], [[55.296633, -2.340763], [55.296626, -2.340588]], [[55.296626, -2.340588], [55.296623, -2.340426]], [[55.295914, -2.340444], [55.295861, -2.340556]], [[55.29577, -2.340571], [55.29568, -2.340594]], [[55.294053, -2.340559], [55.293964, -2.340584]], [[55.288705, -2.337947], [55.28861, -2.337945]], [[55.28861, -2.337945], [55.28852, -2.337912]], [[55.28852, -2.337912], [55.288433, -2.337869]], [[55.288163, -2.337719], [55.288074, -2.337659]], [[55.288074, -2.337659], [55.287993, -2.337584]], [[55.285367, -2.337258], [55.285278, -2.337305]], [[55.285278, -2.337305], [55.285189, -2.33734]], [[55.285189, -2.33734], [55.285097, -2.337353]], [[55.285097, -2.337353], [55.284995, -2.337342]], [[55.284995, -2.337342], [55.284903, -2.337324]], [[55.280627, -2.335076], [55.280559, -2.335048]], [[55.254255, -2.318211], [55.254192, -2.318167]], [[55.240815, -2.305473], [55.240718, -2.305406]], [[55.238809, -2.304525], [55.238772, -2.304526]], [[55.238772, -2.304526], [55.238673, -2.304471]], [[55.238493, -2.304423], [55.238396, -2.304426]], [[55.23441, -2.303705], [55.234343, -2.303697]], [[55.234343, -2.303697], [55.23424, -2.30367]], [[55.219033, -2.290483], [55.21901, -2.290307]], [[55.218689, -2.286842], [55.218676, -2.286679]], [[55.218676, -2.286679], [55.218659, -2.286518]], [[55.219366, -2.277672], [55.21935, -2.277589]], [[55.219043, -2.276939], [55.218968, -2.276835]], [[55.216313, -2.272234], [55.216236, -2.272134]], [[55.216236, -2.272134], [55.216168, -2.272015]], [[55.216089, -2.271903], [55.216034, -2.271765]], [[55.216034, -2.271765], [55.215966, -2.271644]], [[55.215966, -2.271644], [55.215898, -2.271525]], [[55.215898, -2.271525], [55.215842, -2.271391]], [[55.215842, -2.271391], [55.215759, -2.271298]], [[55.215759, -2.271298], [55.21568, -2.271198]], [[55.21568, -2.271198], [55.215607, -2.271091]], [[55.215368, -2.270608], [55.215318, -2.270469]], [[55.215318, -2.270469], [55.215253, -2.270339]], [[55.215253, -2.270339], [55.215166, -2.270299]], [[55.215166, -2.270299], [55.215082, -2.270231]], [[55.214013, -2.265582], [55.213982, -2.265445]], [[55.212935, -2.26086], [55.212869, -2.260737]], [[55.212869, -2.260737], [55.212817, -2.260585]], [[55.212817, -2.260585], [55.21273, -2.260524]], [[55.212638, -2.260498], [55.212595, -2.260347]], [[55.212595, -2.260347], [55.21254, -2.260219]], [[55.211133, -2.257354], [55.211106, -2.257191]], [[55.211106, -2.257191], [55.211058, -2.257039]], [[55.211058, -2.257039], [55.211, -2.256913]], [[55.21072, -2.256069], [55.210658, -2.255931]], [[55.210658, -2.255931], [55.210569, -2.255888]], [[55.210569, -2.255888], [55.210473, -2.255874]], [[55.210473, -2.255874], [55.210384, -2.255811]], [[55.210384, -2.255811], [55.21029, -2.255803]], [[55.20898, -2.254621], [55.208889, -2.254601]], [[55.208889, -2.254601], [55.208797, -2.254552]], [[55.208797, -2.254552], [55.208704, -2.25449]], [[55.208704, -2.25449], [55.208614, -2.254482]], [[55.208614, -2.254482], [55.208523, -2.254434]], [[55.208523, -2.254434], [55.208427, -2.254397]], [[55.207089, -2.25164], [55.206998, -2.251591]], [[55.206479, -2.250849], [55.206407, -2.250775]], [[55.202867, -2.248905], [55.202792, -2.248816]], [[55.202792, -2.248816], [55.202694, -2.248813]], [[55.202694, -2.248813], [55.202602, -2.248755]], [[55.200065, -2.247773], [55.199976, -2.247716]], [[55.199976, -2.247716], [55.199879, -2.247705]], [[55.199879, -2.247705], [55.199789, -2.247674]], [[55.199789, -2.247674], [55.199704, -2.247619]], [[55.199704, -2.247619], [55.199612, -2.247592]], [[55.199612, -2.247592], [55.199522, -2.247562]], [[55.199423, -2.247542], [55.199332, -2.247485]], [[55.199332, -2.247485], [55.199237, -2.247444]], [[55.199237, -2.247444], [55.199158, -2.247366]], [[55.199158, -2.247366], [55.199062, -2.247343]], [[55.199062, -2.247343], [55.198974, -2.247255]], [[55.198974, -2.247255], [55.198882, -2.247199]], [[55.198882, -2.247199], [55.198795, -2.247114]], [[55.198795, -2.247114], [55.198709, -2.24704]], [[55.198595, -2.246959], [55.198503, -2.246939]], [[55.196801, -2.246505], [55.196712, -2.246461]], [[55.196712, -2.246461], [55.196622, -2.246383]], [[55.196622, -2.246383], [55.196566, -2.246309]], [[55.196406, -2.246123], [55.196316, -2.246049]], [[55.196223, -2.246005], [55.19614, -2.245939]], [[55.192816, -2.246994], [55.192757, -2.247127]], [[55.189586, -2.250934], [55.189497, -2.250895]], [[55.189303, -2.250849], [55.189247, -2.250851]], [[55.186768, -2.249876], [55.186685, -2.249939]], [[55.185983, -2.250466], [55.185925, -2.250547]], [[55.185858, -2.250658], [55.185779, -2.250732]], [[55.18215, -2.252032], [55.182051, -2.252014]], [[55.181106, -2.248912], [55.181084, -2.248755]], [[55.181079, -2.248611], [55.18107, -2.248445]], [[55.180979, -2.247539], [55.180973, -2.247371]], [[55.180953, -2.247034], [55.180954, -2.246869]], [[55.180954, -2.246869], [55.180977, -2.246701]], [[55.180846, -2.246518], [55.180767, -2.246594]], [[55.180061, -2.247024], [55.180009, -2.246933]], [[55.180009, -2.246933], [55.17995, -2.246798]], [[55.179812, -2.246515], [55.179743, -2.246414]], [[55.179688, -2.246286], [55.179617, -2.24617]], [[55.179617, -2.24617], [55.179574, -2.246019]], [[55.178349, -2.244316], [55.178304, -2.244178]], [[55.178304, -2.244178], [55.17822, -2.244265]], [[55.17822, -2.244265], [55.178145, -2.244368]], [[55.178145, -2.244368], [55.178059, -2.244462]], [[55.177331, -2.244789], [55.177373, -2.244942]], [[55.175461, -2.246426], [55.17539, -2.246329]], [[55.17539, -2.246329], [55.175291, -2.246339]], [[55.175291, -2.246339], [55.175247, -2.246481]], [[55.175247, -2.246481], [55.175161, -2.246433]], [[55.175161, -2.246433], [55.175071, -2.246403]], [[55.175071, -2.246403], [55.174985, -2.246351]], [[55.174985, -2.246351], [55.174901, -2.246415]], [[55.174901, -2.246415], [55.174817, -2.246487]], [[55.174817, -2.246487], [55.17477, -2.24663]], [[55.17477, -2.24663], [55.174712, -2.246761]], [[55.174712, -2.246761], [55.174619, -2.246801]], [[55.174619, -2.246801], [55.174531, -2.246802]], [[55.17453, -2.246969], [55.174456, -2.24708]], [[55.172325, -2.246153], [55.172234, -2.246094]], [[55.172234, -2.246094], [55.172155, -2.246009]], [[55.172155, -2.246009], [55.17208, -2.245907]], [[55.17208, -2.245907], [55.171992, -2.245838]], [[55.171992, -2.245838], [55.171905, -2.245764]], [[55.167143, -2.243506], [55.167055, -2.243456]], [[55.167055, -2.243456], [55.166961, -2.243455]], [[55.166869, -2.243462], [55.166779, -2.243484]], [[55.166779, -2.243484], [55.166689, -2.243497]], [[55.16506, -2.243684], [55.164969, -2.243758]], [[55.164969, -2.243758], [55.164885, -2.243828]], [[55.163729, -2.2445], [55.163661, -2.244495]], [[55.163561, -2.244504], [55.163462, -2.244507]], [[55.162903, -2.244521], [55.162811, -2.244581]], [[55.162811, -2.244581], [55.162731, -2.244661]], [[55.162731, -2.244661], [55.162639, -2.244659]], [[55.162639, -2.244659], [55.162545, -2.244625]], [[55.154765, -2.241821], [55.15469, -2.241724]], [[55.15469, -2.241724], [55.154598, -2.241685]], [[55.150638, -2.243141], [55.150548, -2.243165]], [[55.147882, -2.243635], [55.14781, -2.243645]], [[55.14781, -2.243645], [55.147725, -2.243723]], [[55.145019, -2.247005], [55.144954, -2.247134]], [[55.144603, -2.24758], [55.144522, -2.247686]], [[55.144386, -2.254045], [55.144364, -2.25413]], [[55.144222, -2.254273], [55.144175, -2.25441]], [[55.144175, -2.25441], [55.144106, -2.254521]], [[55.144106, -2.254521], [55.144032, -2.254629]], [[55.143823, -2.254957], [55.143762, -2.255072]], [[55.14368, -2.255072], [55.143587, -2.255079]], [[55.14234, -2.255504], [55.14227, -2.255433]], [[55.142346, -2.255527], [55.142415, -2.255636]], [[55.142591, -2.25576], [55.142674, -2.255812]], [[55.142674, -2.255812], [55.142676, -2.25599]], [[55.142697, -2.256752], [55.142766, -2.256879]], [[55.143439, -2.25878], [55.143465, -2.258949]], [[55.143465, -2.258949], [55.143505, -2.259098]], [[55.143505, -2.259098], [55.143511, -2.259258]], [[55.143747, -2.261636], [55.143829, -2.261678]], [[55.143829, -2.261678], [55.143924, -2.261646]], [[55.144352, -2.261097], [55.144426, -2.260975]], [[55.143717, -2.261925], [55.143671, -2.261933]], [[55.143574, -2.261976], [55.143482, -2.262002]], [[55.143296, -2.262014], [55.143211, -2.261961]], [[55.143111, -2.261931], [55.143011, -2.261946]], [[55.14081, -2.261859], [55.140715, -2.261817]], [[55.13569, -2.25705], [55.135591, -2.257016]], [[55.135258, -2.256692], [55.135172, -2.256688]], [[55.134998, -2.256527], [55.134951, -2.256388]], [[55.134951, -2.256388], [55.134887, -2.256277]], [[55.134691, -2.255933], [55.134612, -2.255833]], [[55.134612, -2.255833], [55.134533, -2.255734]], [[55.134533, -2.255734], [55.134457, -2.255637]], [[55.134457, -2.255637], [55.134386, -2.255539]], [[55.134386, -2.255539], [55.134376, -2.255379]], [[55.133689, -2.25208], [55.133594, -2.252047]], [[55.133594, -2.252047], [55.133497, -2.252012]], [[55.133497, -2.252012], [55.133402, -2.251961]], [[55.133402, -2.251961], [55.133319, -2.251899]], [[55.133319, -2.251899], [55.13324, -2.251822]], [[55.133157, -2.251749], [55.133102, -2.251622]], [[55.133102, -2.251622], [55.133025, -2.251526]], [[55.132943, -2.251438], [55.132863, -2.251356]], [[55.132863, -2.251356], [55.132767, -2.251298]], [[55.132767, -2.251298], [55.132677, -2.251314]], [[55.132677, -2.251314], [55.132579, -2.251277]], [[55.132438, -2.251141], [55.132344, -2.251078]], [[55.132344, -2.251078], [55.132252, -2.25104]], [[55.132252, -2.25104], [55.132164, -2.250976]], [[55.132164, -2.250976], [55.13207, -2.250927]], [[55.13207, -2.250927], [55.131981, -2.250862]], [[55.131891, -2.250818], [55.131799, -2.25081]], [[55.131799, -2.25081], [55.131704, -2.25076]], [[55.130127, -2.25072], [55.130053, -2.250827]], [[55.130053, -2.250827], [55.129977, -2.250932]], [[55.129977, -2.250932], [55.129901, -2.251042]], [[55.129901, -2.251042], [55.129815, -2.251085]], [[55.129815, -2.251085], [55.129725, -2.25103]], [[55.129725, -2.25103], [55.129657, -2.250924]], [[55.129203, -2.251321], [55.129113, -2.251372]], [[55.129113, -2.251372], [55.129031, -2.251447]], [[55.129031, -2.251447], [55.128953, -2.25154]], [[55.128953, -2.25154], [55.128879, -2.251647]], [[55.128879, -2.251647], [55.128803, -2.251743]], [[55.128803, -2.251743], [55.128705, -2.251699]], [[55.128445, -2.251803], [55.128355, -2.251861]], [[55.128355, -2.251861], [55.128262, -2.251919]], [[55.128262, -2.251919], [55.128178, -2.251988]], [[55.127767, -2.252384], [55.127683, -2.25246]], [[55.127683, -2.25246], [55.127603, -2.252538]], [[55.127603, -2.252538], [55.127527, -2.252623]], [[55.127527, -2.252623], [55.127449, -2.252719]], [[55.125055, -2.255784], [55.12499, -2.255902]], [[55.124238, -2.256936], [55.124164, -2.257033]], [[55.124164, -2.257033], [55.124167, -2.257194]], [[55.124195, -2.257343], [55.124222, -2.257509]], [[55.12494, -2.262042], [55.124975, -2.262189]], [[55.124975, -2.262189], [55.125007, -2.262343]], [[55.125007, -2.262343], [55.125036, -2.262494]], [[55.125036, -2.262494], [55.125062, -2.262655]], [[55.125062, -2.262655], [55.125088, -2.262806]], [[55.125088, -2.262806], [55.125118, -2.262971]], [[55.125143, -2.263176], [55.12517, -2.263332]], [[55.125393, -2.264749], [55.125414, -2.264923]], [[55.123888, -2.266542], [55.12387, -2.266699]], [[55.123838, -2.266973], [55.12376, -2.267052]], [[55.12376, -2.267052], [55.12367, -2.267011]], [[55.123578, -2.267008], [55.123481, -2.267008]], [[55.123481, -2.267008], [55.12339, -2.266997]], [[55.12339, -2.266997], [55.123299, -2.267052]], [[55.122099, -2.268108], [55.122029, -2.267997]], [[55.122029, -2.267997], [55.121965, -2.267881]], [[55.121965, -2.267881], [55.121908, -2.267746]], [[55.121908, -2.267746], [55.121835, -2.267638]], [[55.121721, -2.267556], [55.121625, -2.267573]], [[55.121625, -2.267573], [55.121561, -2.267592]], [[55.121475, -2.267675], [55.121389, -2.267743]], [[55.120852, -2.268088], [55.120802, -2.268154]], [[55.120802, -2.268154], [55.120746, -2.268282]], [[55.119862, -2.268793], [55.119772, -2.268822]], [[55.118679, -2.269334], [55.118615, -2.269372]], [[55.118615, -2.269372], [55.118515, -2.269392]], [[55.117522, -2.26951], [55.117439, -2.269578]], [[55.117284, -2.269648], [55.117192, -2.269672]], [[55.115491, -2.270205], [55.115434, -2.270208]], [[55.113694, -2.269207], [55.113677, -2.269265]], [[55.113592, -2.26933], [55.113505, -2.269422]], [[55.113505, -2.269422], [55.113444, -2.26946]], [[55.113329, -2.26919], [55.113301, -2.269091]], [[55.113301, -2.269091], [55.113292, -2.268916]], [[55.11311, -2.268354], [55.113092, -2.268274]], [[55.112936, -2.268443], [55.112862, -2.268535]], [[55.112684, -2.268912], [55.112647, -2.268999]], [[55.112595, -2.269144], [55.11254, -2.269275]], [[55.11254, -2.269275], [55.112456, -2.269196]], [[55.112456, -2.269196], [55.112372, -2.269119]], [[55.1121, -2.269167], [55.112009, -2.269166]], [[55.111473, -2.269028], [55.111383, -2.26904]], [[55.111383, -2.26904], [55.111284, -2.269026]], [[55.111284, -2.269026], [55.111193, -2.26902]], [[55.1111, -2.269022], [55.111007, -2.269013]], [[55.111007, -2.269013], [55.110911, -2.269026]], [[55.110911, -2.269026], [55.110822, -2.269044]], [[55.110619, -2.269374], [55.11054, -2.269462]], [[55.11054, -2.269462], [55.110455, -2.269545]], [[55.110302, -2.269744], [55.110222, -2.269841]], [[55.110222, -2.269841], [55.110149, -2.269939]], [[55.109897, -2.27015], [55.109807, -2.27014]], [[55.109807, -2.27014], [55.109725, -2.27023]], [[55.107589, -2.272726], [55.107501, -2.272797]], [[55.106256, -2.273639], [55.106167, -2.273709]], [[55.106167, -2.273709], [55.106072, -2.273764]], [[55.10561, -2.27406], [55.105544, -2.274095]], [[55.105451, -2.274146], [55.105367, -2.274208]], [[55.10255, -2.27641], [55.102468, -2.276483]], [[55.102468, -2.276483], [55.102381, -2.276576]], [[55.100245, -2.278134], [55.100222, -2.278295]], [[55.099872, -2.290476], [55.09978, -2.290418]], [[55.098643, -2.288805], [55.098559, -2.288864]], [[55.095879, -2.288358], [55.095789, -2.288352]], [[55.095736, -2.288216], [55.095659, -2.288103]], [[55.095584, -2.287999], [55.095512, -2.287905]], [[55.095512, -2.287905], [55.095427, -2.287831]], [[55.095427, -2.287831], [55.095362, -2.287697]], [[55.095362, -2.287697], [55.09529, -2.287601]], [[55.094777, -2.287209], [55.094695, -2.287161]], [[55.094513, -2.287022], [55.094413, -2.287028]], [[55.093259, -2.287048], [55.093168, -2.287059]], [[55.093168, -2.287059], [55.093074, -2.287035]], [[55.093074, -2.287035], [55.092999, -2.28694]], [[55.092999, -2.28694], [55.092915, -2.286844]], [[55.092115, -2.286191], [55.09203, -2.286206]], [[55.09203, -2.286206], [55.092004, -2.286371]], [[55.092004, -2.286371], [55.091984, -2.286526]], [[55.091984, -2.286526], [55.091968, -2.286691]], [[55.091947, -2.286851], [55.091957, -2.287007]], [[55.092035, -2.287181], [55.092008, -2.287344]], [[55.091861, -2.288133], [55.091813, -2.288283]], [[55.091813, -2.288283], [55.091731, -2.288393]], [[55.091045, -2.289051], [55.090968, -2.289113]], [[55.090936, -2.289349], [55.090842, -2.289355]], [[55.090842, -2.289355], [55.09075, -2.28937]], [[55.08981, -2.29016], [55.089761, -2.290294]], [[55.089532, -2.291348], [55.089538, -2.291505]], [[55.089538, -2.291505], [55.089504, -2.291658]], [[55.08919, -2.292784], [55.089155, -2.292942]], [[55.088882, -2.293996], [55.088861, -2.294142]], [[55.088864, -2.294987], [55.088846, -2.295151]], [[55.088846, -2.295151], [55.08886, -2.295316]], [[55.088613, -2.295143], [55.088576, -2.294985]], [[55.088576, -2.294985], [55.088486, -2.294954]], [[55.088077, -2.294805], [55.087979, -2.294806]], [[55.087979, -2.294806], [55.0879, -2.294725]], [[55.0879, -2.294725], [55.08781, -2.294717]], [[55.08781, -2.294717], [55.087717, -2.294692]], [[55.087717, -2.294692], [55.087627, -2.294703]], [[55.087627, -2.294703], [55.08753, -2.294705]], [[55.087435, -2.294717], [55.087345, -2.294763]], [[55.087328, -2.295079], [55.087326, -2.295249]], [[55.087326, -2.295249], [55.087351, -2.295411]], [[55.087393, -2.29589], [55.087396, -2.296053]], [[55.087396, -2.296053], [55.087386, -2.296224]], [[55.087383, -2.296389], [55.087398, -2.29656]], [[55.087398, -2.29656], [55.087389, -2.296716]], [[55.087389, -2.296716], [55.087411, -2.296876]], [[55.087389, -2.297237], [55.087326, -2.297367]], [[55.087326, -2.297367], [55.087238, -2.297407]], [[55.087044, -2.297411], [55.086951, -2.297431]], [[55.086951, -2.297431], [55.086862, -2.297488]], [[55.086862, -2.297488], [55.086768, -2.297518]], [[55.086768, -2.297518], [55.086678, -2.297566]], [[55.086678, -2.297566], [55.086585, -2.297609]], [[55.086585, -2.297609], [55.086497, -2.297668]], [[55.086497, -2.297668], [55.086402, -2.297692]], [[55.086402, -2.297692], [55.086306, -2.297655]], [[55.086306, -2.297655], [55.086208, -2.297649]], [[55.086208, -2.297649], [55.086113, -2.297649]], [[55.086113, -2.297649], [55.086017, -2.297599]], [[55.086017, -2.297599], [55.085927, -2.297563]], [[55.085741, -2.297556], [55.085642, -2.297545]], [[55.085642, -2.297545], [55.085549, -2.297523]], [[55.085549, -2.297523], [55.085471, -2.297424]], [[55.085471, -2.297424], [55.085397, -2.29733]], [[55.085397, -2.29733], [55.085312, -2.297259]], [[55.085312, -2.297259], [55.085223, -2.297223]], [[55.085223, -2.297223], [55.085132, -2.297234]], [[55.085132, -2.297234], [55.085046, -2.297281]], [[55.085046, -2.297281], [55.084946, -2.297288]], [[55.084946, -2.297288], [55.084852, -2.297332]], [[55.083989, -2.297675], [55.083891, -2.297701]], [[55.083157, -2.298071], [55.083073, -2.298132]], [[55.082889, -2.298171], [55.0828, -2.298106]], [[55.0828, -2.298106], [55.082709, -2.298061]], [[55.082709, -2.298061], [55.082616, -2.298094]], [[55.082616, -2.298094], [55.082528, -2.298147]], [[55.082528, -2.298147], [55.082435, -2.298126]], [[55.082435, -2.298126], [55.082339, -2.298104]], [[55.082245, -2.298093], [55.082149, -2.298095]], [[55.082149, -2.298095], [55.082058, -2.298098]], [[55.082058, -2.298098], [55.081966, -2.298056]], [[55.081966, -2.298056], [55.081876, -2.298021]], [[55.081876, -2.298021], [55.081783, -2.297986]], [[55.081783, -2.297986], [55.081693, -2.297953]], [[55.081693, -2.297953], [55.081607, -2.297902]], [[55.081607, -2.297902], [55.081515, -2.297862]], [[55.080932, -2.297837], [55.080835, -2.297846]], [[55.080835, -2.297846], [55.08074, -2.297849]], [[55.080642, -2.297874], [55.080544, -2.297878]], [[55.080544, -2.297878], [55.080448, -2.297898]], [[55.080448, -2.297898], [55.080349, -2.297909]], [[55.080349, -2.297909], [55.080257, -2.297919]], [[55.080257, -2.297919], [55.08016, -2.297949]], [[55.08016, -2.297949], [55.080062, -2.297963]], [[55.080062, -2.297963], [55.079971, -2.297985]], [[55.079971, -2.297985], [55.079879, -2.298011]], [[55.079686, -2.298043], [55.079597, -2.298066]], [[55.078572, -2.299051], [55.078513, -2.299186]], [[55.076756, -2.303867], [55.076719, -2.303973]], [[55.076719, -2.303973], [55.076664, -2.304124]], [[55.07139, -2.311481], [55.071312, -2.31158]], [[55.070901, -2.311987], [55.070818, -2.312059]], [[55.070748, -2.312166], [55.070731, -2.31229]], [[55.070697, -2.314052], [55.070705, -2.3142]], [[55.070705, -2.3142], [55.070714, -2.314368]], [[55.070652, -2.317316], [55.07057, -2.317382]], [[55.07057, -2.317382], [55.070481, -2.317445]], [[55.070481, -2.317445], [55.070398, -2.317521]], [[55.070398, -2.317521], [55.070309, -2.317565]], [[55.070309, -2.317565], [55.070215, -2.317591]], [[55.069282, -2.318015], [55.069187, -2.318031]], [[55.06818, -2.317507], [55.068089, -2.317465]], [[55.067546, -2.317161], [55.06749, -2.317036]], [[55.067398, -2.317003], [55.067309, -2.316951]], [[55.064131, -2.316818], [55.064041, -2.316861]], [[55.064041, -2.316861], [55.06395, -2.316917]], [[55.06395, -2.316917], [55.06386, -2.31698]], [[55.06386, -2.31698], [55.063774, -2.317029]], [[55.063774, -2.317029], [55.063685, -2.317087]], [[55.063685, -2.317087], [55.063602, -2.317145]], [[55.063602, -2.317145], [55.063517, -2.317204]], [[55.063417, -2.317582], [55.063409, -2.317453]], [[55.063324, -2.317524], [55.063409, -2.317472]], [[55.060906, -2.318998], [55.060807, -2.319023]], [[55.060807, -2.319023], [55.060724, -2.319093]], [[55.058857, -2.319744], [55.05877, -2.319703]], [[55.05877, -2.319703], [55.058677, -2.319675]], [[55.058578, -2.319669], [55.058481, -2.31969]], [[55.058481, -2.31969], [55.058385, -2.31969]], [[55.058385, -2.31969], [55.058287, -2.319677]], [[55.058287, -2.319677], [55.058191, -2.319665]], [[55.054472, -2.324156], [55.054407, -2.324139]], [[55.053099, -2.327452], [55.053046, -2.327587]], [[55.053046, -2.327587], [55.052949, -2.327614]], [[55.052785, -2.328448], [55.052733, -2.328588]], [[55.051487, -2.332195], [55.051459, -2.332357]], [[55.051459, -2.332357], [55.051411, -2.332494]], [[55.051427, -2.332659], [55.051414, -2.332824]], [[55.051414, -2.332824], [55.051412, -2.332984]], [[55.051363, -2.333173], [55.051292, -2.333288]], [[55.050858, -2.334366], [55.050808, -2.334499]], [[55.050808, -2.334499], [55.050806, -2.334662]], [[55.050806, -2.334662], [55.050772, -2.334829]], [[55.049089, -2.337488], [55.049029, -2.337618]], [[55.049029, -2.337618], [55.048951, -2.337699]], [[55.04712, -2.339421], [55.047045, -2.339535]], [[55.044686, -2.34221], [55.04465, -2.342267]], [[55.044408, -2.342539], [55.044323, -2.342628]], [[55.043051, -2.343689], [55.042957, -2.343706]], [[55.042957, -2.343706], [55.042875, -2.343785]], [[55.036778, -2.34371], [55.036683, -2.343675]], [[55.036683, -2.343675], [55.03659, -2.343686]], [[55.032617, -2.343683], [55.032578, -2.343618]], [[55.03122, -2.345418], [55.031142, -2.345483]], [[55.031142, -2.345483], [55.03106, -2.345586]], [[55.03063, -2.345942], [55.030537, -2.345894]], [[55.030537, -2.345894], [55.030443, -2.345876]], [[55.030443, -2.345876], [55.030345, -2.345897]], [[55.030194, -2.34582], [55.030121, -2.345722]], [[55.029515, -2.34527], [55.029433, -2.345202]], [[55.029431, -2.344824], [55.029468, -2.344673]], [[55.029113, -2.343618], [55.02903, -2.343686]], [[55.02903, -2.343686], [55.028955, -2.343774]], [[55.028871, -2.3437], [55.028814, -2.343576]], [[55.028814, -2.343576], [55.028754, -2.34345]], [[55.028754, -2.34345], [55.028661, -2.343432]], [[55.028661, -2.343432], [55.028566, -2.34337]], [[55.027593, -2.343603], [55.027505, -2.343652]], [[55.027505, -2.343652], [55.02743, -2.34376]], [[55.027071, -2.343893], [55.026983, -2.343929]], [[55.026983, -2.343929], [55.02689, -2.343986]], [[55.025001, -2.34502], [55.024905, -2.345001]], [[55.024905, -2.345001], [55.024809, -2.344985]], [[55.024809, -2.344985], [55.024713, -2.344965]], [[55.024713, -2.344965], [55.024628, -2.344871]], [[55.024557, -2.344763], [55.024503, -2.344617]], [[55.024503, -2.344617], [55.024482, -2.344457]], [[55.024482, -2.344457], [55.024459, -2.344289]], [[55.024459, -2.344289], [55.024465, -2.344132]], [[55.024465, -2.344132], [55.024454, -2.343963]], [[55.024454, -2.343963], [55.024454, -2.343801]], [[55.024454, -2.343801], [55.024446, -2.343629]], [[55.024446, -2.343629], [55.024446, -2.343466]], [[55.024446, -2.343466], [55.024452, -2.343297]], [[55.024452, -2.343297], [55.02446, -2.343131]], [[55.02446, -2.343131], [55.024448, -2.342968]], [[55.024448, -2.342968], [55.02436, -2.343027]], [[55.024308, -2.343167], [55.024234, -2.343269]], [[55.024096, -2.343663], [55.024147, -2.343803]], [[55.024082, -2.34352], [55.024031, -2.343557]], [[55.023722, -2.343652], [55.023631, -2.34368]], [[55.023631, -2.34368], [55.023546, -2.343763]], [[55.023546, -2.343763], [55.023504, -2.343907]], [[55.023504, -2.343907], [55.023437, -2.344019]], [[55.02337, -2.344131], [55.023307, -2.344257]], [[55.023307, -2.344257], [55.023241, -2.34438]], [[55.023241, -2.34438], [55.023172, -2.344494]], [[55.023098, -2.344593], [55.023014, -2.344651]], [[55.022424, -2.344835], [55.022354, -2.344734]], [[55.021896, -2.344766], [55.021803, -2.344792]], [[55.021803, -2.344792], [55.021714, -2.344831]], [[55.021714, -2.344831], [55.021619, -2.344855]], [[55.021619, -2.344855], [55.021533, -2.344926]], [[55.021346, -2.344976], [55.021272, -2.344989]], [[55.021099, -2.345102], [55.021013, -2.345179]], [[55.020924, -2.34515], [55.020841, -2.345203]], [[55.020519, -2.345135], [55.020438, -2.345044]], [[55.02042, -2.344968], [55.020342, -2.344875]], [[55.020256, -2.344823], [55.020215, -2.344681]], [[55.019841, -2.343908], [55.019798, -2.343765]], [[55.019798, -2.343765], [55.019717, -2.343687]], [[55.0193, -2.342656], [55.019255, -2.342528]], [[55.01745, -2.341951], [55.017352, -2.34196]], [[55.016121, -2.342169], [55.016059, -2.342177]], [[55.01607, -2.342151], [55.01598, -2.342224]], [[55.01598, -2.342224], [55.015882, -2.34222]], [[55.01313, -2.343568], [55.013039, -2.343595]], [[55.013039, -2.343595], [55.012943, -2.343615]], [[55.012943, -2.343615], [55.012867, -2.343709]], [[55.012867, -2.343709], [55.012788, -2.343793]], [[55.012788, -2.343793], [55.012701, -2.343852]], [[55.012701, -2.343852], [55.012611, -2.343877]], [[55.012611, -2.343877], [55.012519, -2.343925]], [[55.012161, -2.344146], [55.012071, -2.344146]], [[55.012071, -2.344146], [55.011986, -2.344201]], [[55.011986, -2.344201], [55.011889, -2.344201]], [[55.011889, -2.344201], [55.011795, -2.344182]], [[55.010952, -2.34884], [55.010917, -2.348941]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_90f65dc4863d9e10db3ab49092aca585);
        
    
            var poly_line_7d936ffa9c5b85456e1dfa793636833a = L.polyline(
                [[[55.317412, -2.370216], [55.317368, -2.370056]], [[55.317321, -2.369902], [55.317305, -2.369722]], [[55.317305, -2.369722], [55.317272, -2.369573]], [[55.317272, -2.369573], [55.317223, -2.369434]], [[55.317223, -2.369434], [55.317168, -2.36928]], [[55.317168, -2.36928], [55.317101, -2.369156]], [[55.316688, -2.368038], [55.316642, -2.367893]], [[55.316642, -2.367893], [55.31659, -2.367754]], [[55.31659, -2.367754], [55.316531, -2.367613]], [[55.316531, -2.367613], [55.316506, -2.367461]], [[55.316506, -2.367461], [55.316461, -2.367318]], [[55.316281, -2.366889], [55.316241, -2.366733]], [[55.316241, -2.366733], [55.316199, -2.366575]], [[55.316199, -2.366575], [55.316167, -2.366422]], [[55.316053, -2.366161], [55.316022, -2.36599]], [[55.315904, -2.365615], [55.315838, -2.36548]], [[55.315838, -2.36548], [55.315769, -2.36535]], [[55.315769, -2.36535], [55.315691, -2.365241]], [[55.315691, -2.365241], [55.315633, -2.365101]], [[55.315633, -2.365101], [55.315588, -2.36495]], [[55.315588, -2.36495], [55.315563, -2.364797]], [[55.315563, -2.364797], [55.315505, -2.364652]], [[55.315458, -2.364507], [55.315399, -2.364379]], [[55.315343, -2.364245], [55.315304, -2.364101]], [[55.315304, -2.364101], [55.315264, -2.363941]], [[55.315264, -2.363941], [55.315208, -2.363804]], [[55.315208, -2.363804], [55.31515, -2.363656]], [[55.31515, -2.363656], [55.315083, -2.363513]], [[55.315083, -2.363513], [55.315045, -2.363358]], [[55.315028, -2.36319], [55.314985, -2.363044]], [[55.314913, -2.362926], [55.314842, -2.362827]], [[55.314842, -2.362827], [55.314769, -2.362711]], [[55.312215, -2.36327], [55.312122, -2.363234]], [[55.312122, -2.363234], [55.312033, -2.363205]], [[55.311846, -2.363177], [55.311748, -2.363151]], [[55.311748, -2.363151], [55.31165, -2.36313]], [[55.31165, -2.36313], [55.311557, -2.363142]], [[55.311557, -2.363142], [55.311462, -2.363158]], [[55.310707, -2.363018], [55.3107, -2.362848]], [[55.3107, -2.362848], [55.310669, -2.362677]], [[55.310669, -2.362677], [55.310627, -2.362509]], [[55.310627, -2.362509], [55.31057, -2.36236]], [[55.31057, -2.36236], [55.31051, -2.362231]], [[55.310374, -2.362004], [55.31031, -2.361877]], [[55.31025, -2.36175], [55.310188, -2.361629]], [[55.310188, -2.361629], [55.31012, -2.361495]], [[55.31012, -2.361495], [55.31006, -2.361371]], [[55.31006, -2.361371], [55.309992, -2.361249]], [[55.309992, -2.361249], [55.309922, -2.361124]], [[55.309922, -2.361124], [55.309851, -2.361007]], [[55.309851, -2.361007], [55.309788, -2.360887]], [[55.309788, -2.360887], [55.309721, -2.36076]], [[55.309721, -2.36076], [55.309659, -2.360631]], [[55.309659, -2.360631], [55.309592, -2.360498]], [[55.309592, -2.360498], [55.309525, -2.36037]], [[55.309525, -2.36037], [55.309449, -2.360249]], [[55.309236, -2.359805], [55.309168, -2.3597]], [[55.309168, -2.3597], [55.3091, -2.359582]], [[55.308952, -2.359377], [55.308878, -2.359266]], [[55.308878, -2.359266], [55.308798, -2.359149]], [[55.308798, -2.359149], [55.308723, -2.359032]], [[55.308723, -2.359032], [55.308655, -2.358914]], [[55.308655, -2.358914], [55.308585, -2.3588]], [[55.308585, -2.3588], [55.308517, -2.358693]], [[55.308517, -2.358693], [55.308444, -2.358586]], [[55.308444, -2.358586], [55.308366, -2.358473]], [[55.308366, -2.358473], [55.308296, -2.358341]], [[55.308296, -2.358341], [55.30823, -2.358224]], [[55.30823, -2.358224], [55.308158, -2.358109]], [[55.308158, -2.358109], [55.308092, -2.35798]], [[55.308092, -2.35798], [55.308021, -2.357856]], [[55.308021, -2.357856], [55.307957, -2.357715]], [[55.307957, -2.357715], [55.307897, -2.357593]], [[55.30785, -2.357457], [55.307805, -2.357306]], [[55.307805, -2.357306], [55.307762, -2.357164]], [[55.307762, -2.357164], [55.307718, -2.357025]], [[55.307718, -2.357025], [55.307676, -2.356871]], [[55.307594, -2.356404], [55.30757, -2.35623]], [[55.30757, -2.35623], [55.307549, -2.356071]], [[55.307549, -2.356071], [55.307521, -2.355915]], [[55.307521, -2.355915], [55.307491, -2.35576]], [[55.307491, -2.35576], [55.307449, -2.355608]], [[55.307449, -2.355608], [55.307418, -2.355435]], [[55.307418, -2.355435], [55.307397, -2.35528]], [[55.307397, -2.35528], [55.307369, -2.355106]], [[55.307369, -2.355106], [55.307348, -2.354947]], [[55.307348, -2.354947], [55.307325, -2.354777]], [[55.307325, -2.354777], [55.30729, -2.354609]], [[55.30729, -2.354609], [55.307259, -2.354462]], [[55.307259, -2.354462], [55.307214, -2.354307]], [[55.307214, -2.354307], [55.307179, -2.354156]], [[55.307139, -2.353992], [55.307106, -2.353836]], [[55.307023, -2.353529], [55.306964, -2.353393]], [[55.306964, -2.353393], [55.306894, -2.353279]], [[55.306894, -2.353279], [55.306827, -2.353172]], [[55.306827, -2.353172], [55.306756, -2.35307]], [[55.306756, -2.35307], [55.306681, -2.352978]], [[55.306681, -2.352978], [55.306607, -2.352873]], [[55.306607, -2.352873], [55.306532, -2.35278]], [[55.306532, -2.35278], [55.306446, -2.352693]], [[55.306446, -2.352693], [55.306361, -2.352623]], [[55.306361, -2.352623], [55.306272, -2.352555]], [[55.306272, -2.352555], [55.306187, -2.352478]], [[55.306187, -2.352478], [55.306098, -2.352424]], [[55.306098, -2.352424], [55.306018, -2.352508]], [[55.306018, -2.352508], [55.305984, -2.352675]], [[55.305984, -2.352675], [55.305985, -2.352842]], [[55.305975, -2.353191], [55.30595, -2.35336]], [[55.30595, -2.35336], [55.305918, -2.353531]], [[55.305918, -2.353531], [55.30588, -2.353697]], [[55.30588, -2.353697], [55.305841, -2.35386]], [[55.305841, -2.35386], [55.305805, -2.354013]], [[55.305742, -2.354134], [55.305669, -2.35423]], [[55.305485, -2.35432], [55.305382, -2.354304]], [[55.305382, -2.354304], [55.305288, -2.354239]], [[55.305122, -2.354078], [55.305034, -2.354005]], [[55.305034, -2.354005], [55.304936, -2.35396]], [[55.304936, -2.35396], [55.304835, -2.353927]], [[55.304835, -2.353927], [55.304742, -2.353884]], [[55.304742, -2.353884], [55.304652, -2.353853]], [[55.304652, -2.353853], [55.30456, -2.35382]], [[55.30456, -2.35382], [55.304461, -2.353783]], [[55.304461, -2.353783], [55.30437, -2.353756]], [[55.30437, -2.353756], [55.304277, -2.353724]], [[55.304087, -2.353715], [55.303996, -2.353699]], [[55.303996, -2.353699], [55.303896, -2.353693]], [[55.303805, -2.353661], [55.303712, -2.353631]], [[55.303712, -2.353631], [55.303611, -2.353604]], [[55.303429, -2.353265], [55.303364, -2.353144]], [[55.303364, -2.353144], [55.303311, -2.353009]], [[55.303311, -2.353009], [55.303261, -2.35287]], [[55.303378, -2.353128], [55.30344, -2.353256]], [[55.30344, -2.353256], [55.303496, -2.353395]], [[55.303496, -2.353395], [55.30354, -2.353536]], [[55.303714, -2.353646], [55.303812, -2.353675]], [[55.303812, -2.353675], [55.303905, -2.353704]], [[55.303997, -2.353756], [55.3041, -2.353785]], [[55.3041, -2.353785], [55.304198, -2.353795]], [[55.304198, -2.353795], [55.304299, -2.353816]], [[55.304299, -2.353816], [55.304397, -2.353843]], [[55.304397, -2.353843], [55.304487, -2.35388]], [[55.304487, -2.35388], [55.304587, -2.353902]], [[55.304587, -2.353902], [55.304688, -2.353923]], [[55.304688, -2.353923], [55.30479, -2.35395]], [[55.30479, -2.35395], [55.304886, -2.353965]], [[55.304886, -2.353965], [55.304981, -2.354008]], [[55.304981, -2.354008], [55.305076, -2.354066]], [[55.305076, -2.354066], [55.305171, -2.354147]], [[55.305338, -2.354304], [55.305435, -2.354365]], [[55.305435, -2.354365], [55.30553, -2.354366]], [[55.30553, -2.354366], [55.305619, -2.354276]], [[55.305619, -2.354276], [55.305701, -2.354177]], [[55.305701, -2.354177], [55.305761, -2.354041]], [[55.305761, -2.354041], [55.30581, -2.353884]], [[55.30581, -2.353884], [55.305842, -2.353719]], [[55.305842, -2.353719], [55.305881, -2.353557]], [[55.305881, -2.353557], [55.305908, -2.353379]], [[55.305908, -2.353379], [55.305932, -2.35322]], [[55.305932, -2.35322], [55.305967, -2.353052]], [[55.305967, -2.353052], [55.305974, -2.352872]], [[55.305974, -2.352872], [55.305989, -2.352692]], [[55.305989, -2.352692], [55.306009, -2.352533]], [[55.305939, -2.352246], [55.305871, -2.35211]], [[55.305871, -2.35211], [55.305795, -2.351986]], [[55.305795, -2.351986], [55.305733, -2.351866]], [[55.305733, -2.351866], [55.305672, -2.35175]], [[55.305672, -2.35175], [55.3056, -2.351623]], [[55.305494, -2.35144], [55.305431, -2.351309]], [[55.305431, -2.351309], [55.305369, -2.351184]], [[55.305311, -2.351041], [55.30525, -2.350907]], [[55.30525, -2.350907], [55.305184, -2.350786]], [[55.305184, -2.350786], [55.305123, -2.350649]], [[55.303993, -2.351779], [55.303928, -2.351647]], [[55.303715, -2.351348], [55.303636, -2.35127]], [[55.303326, -2.350914], [55.303255, -2.350804]], [[55.303255, -2.350804], [55.303185, -2.350697]], [[55.302429, -2.347444], [55.302374, -2.347314]], [[55.302374, -2.347314], [55.30232, -2.347169]], [[55.30232, -2.347169], [55.302255, -2.34704]], [[55.302255, -2.34704], [55.302188, -2.346913]], [[55.301559, -2.345456], [55.30147, -2.345363]], [[55.30147, -2.345363], [55.301391, -2.345286]], [[55.301391, -2.345286], [55.301298, -2.345203]], [[55.301298, -2.345203], [55.301217, -2.345103]], [[55.301217, -2.345103], [55.301132, -2.345018]], [[55.300675, -2.344422], [55.300591, -2.34433]], [[55.300591, -2.34433], [55.300517, -2.344231]], [[55.300517, -2.344231], [55.300425, -2.34417]], [[55.300425, -2.34417], [55.300337, -2.344093]], [[55.300337, -2.344093], [55.300265, -2.343994]], [[55.300265, -2.343994], [55.300184, -2.343889]], [[55.300184, -2.343889], [55.300095, -2.343827]], [[55.300095, -2.343827], [55.300002, -2.343762]], [[55.300002, -2.343762], [55.2999, -2.343745]], [[55.2999, -2.343745], [55.299807, -2.343706]], [[55.299807, -2.343706], [55.299714, -2.343652]], [[55.29944, -2.34352], [55.299345, -2.343461]], [[55.299345, -2.343461], [55.299253, -2.343422]], [[55.299253, -2.343422], [55.299165, -2.343363]], [[55.299165, -2.343363], [55.299072, -2.343272]], [[55.298594, -2.343009], [55.298499, -2.343045]], [[55.298499, -2.343045], [55.298409, -2.343076]], [[55.298309, -2.3431], [55.29822, -2.343124]], [[55.29822, -2.343124], [55.298128, -2.343135]], [[55.298128, -2.343135], [55.298038, -2.343084]], [[55.298038, -2.343084], [55.297936, -2.343062]], [[55.297936, -2.343062], [55.297847, -2.343038]], [[55.297847, -2.343038], [55.297758, -2.342992]], [[55.297758, -2.342992], [55.297671, -2.342902]], [[55.297671, -2.342902], [55.297593, -2.342807]], [[55.297593, -2.342807], [55.297538, -2.342676]], [[55.297538, -2.342676], [55.297454, -2.342572]], [[55.297454, -2.342572], [55.297381, -2.342457]], [[55.297097, -2.341999], [55.297, -2.341936]], [[55.297, -2.341936], [55.296928, -2.34183]], [[55.296623, -2.340426], [55.296602, -2.340268]], [[55.296513, -2.340196], [55.296415, -2.340158]], [[55.296415, -2.340158], [55.296323, -2.340117]], [[55.296323, -2.340117], [55.29623, -2.340119]], [[55.29623, -2.340119], [55.296139, -2.340158]], [[55.29568, -2.340594], [55.295584, -2.340606]], [[55.295021, -2.340351], [55.29492, -2.340375]], [[55.29492, -2.340375], [55.294826, -2.340394]], [[55.293863, -2.340606], [55.29377, -2.340632]], [[55.29377, -2.340632], [55.293678, -2.340654]], [[55.293678, -2.340654], [55.293583, -2.340682]], [[55.293296, -2.34076], [55.293199, -2.340791]], [[55.293199, -2.340791], [55.293104, -2.340824]], [[55.293104, -2.340824], [55.293008, -2.340869]], [[55.293008, -2.340869], [55.292911, -2.340918]], [[55.292911, -2.340918], [55.292815, -2.340924]], [[55.292815, -2.340924], [55.292718, -2.340902]], [[55.292718, -2.340902], [55.292625, -2.340869]], [[55.292625, -2.340869], [55.292534, -2.340822]], [[55.292534, -2.340822], [55.292441, -2.340771]], [[55.292441, -2.340771], [55.292355, -2.340701]], [[55.292355, -2.340701], [55.29227, -2.340622]], [[55.29227, -2.340622], [55.29219, -2.340536]], [[55.29219, -2.340536], [55.292101, -2.340445]], [[55.292101, -2.340445], [55.292019, -2.340367]], [[55.291843, -2.340224], [55.291759, -2.340141]], [[55.291759, -2.340141], [55.291668, -2.340066]], [[55.291406, -2.339857], [55.291318, -2.33979]], [[55.291318, -2.33979], [55.291232, -2.339716]], [[55.291232, -2.339716], [55.291141, -2.339645]], [[55.291141, -2.339645], [55.291051, -2.339586]], [[55.291051, -2.339586], [55.29096, -2.339501]], [[55.290701, -2.339297], [55.290614, -2.339226]], [[55.290614, -2.339226], [55.290529, -2.339157]], [[55.290529, -2.339157], [55.290435, -2.3391]], [[55.290435, -2.3391], [55.290351, -2.339021]], [[55.290351, -2.339021], [55.290255, -2.338951]], [[55.290255, -2.338951], [55.290165, -2.338877]], [[55.290165, -2.338877], [55.290078, -2.338819]], [[55.289885, -2.338701], [55.289795, -2.338634]], [[55.289795, -2.338634], [55.289702, -2.338578]], [[55.289702, -2.338578], [55.289613, -2.338498]], [[55.289613, -2.338498], [55.289514, -2.338476]], [[55.289426, -2.338425], [55.28934, -2.338361]], [[55.28934, -2.338361], [55.28925, -2.338299]], [[55.28925, -2.338299], [55.289159, -2.338233]], [[55.289159, -2.338233], [55.289068, -2.338165]], [[55.289068, -2.338165], [55.288975, -2.338115]], [[55.288975, -2.338115], [55.288891, -2.338042]], [[55.287818, -2.337402], [55.287728, -2.337335]], [[55.287728, -2.337335], [55.287633, -2.337309]], [[55.287633, -2.337309], [55.287535, -2.337272]], [[55.287535, -2.337272], [55.287447, -2.337238]], [[55.287447, -2.337238], [55.287346, -2.337228]], [[55.287346, -2.337228], [55.287249, -2.337211]], [[55.287249, -2.337211], [55.287149, -2.337253]], [[55.287149, -2.337253], [55.287045, -2.337238]], [[55.287045, -2.337238], [55.286953, -2.337199]], [[55.286767, -2.33719], [55.286666, -2.337199]], [[55.286666, -2.337199], [55.286572, -2.337228]], [[55.286572, -2.337228], [55.286469, -2.3372]], [[55.286469, -2.3372], [55.286368, -2.337184]], [[55.286368, -2.337184], [55.286279, -2.337156]], [[55.286279, -2.337156], [55.286187, -2.337128]], [[55.286187, -2.337128], [55.286089, -2.337114]], [[55.286089, -2.337114], [55.285998, -2.337098]], [[55.285998, -2.337098], [55.285908, -2.337071]], [[55.285908, -2.337071], [55.285816, -2.337074]], [[55.285816, -2.337074], [55.285725, -2.337096]], [[55.285725, -2.337096], [55.285638, -2.337159]], [[55.284813, -2.337281], [55.284721, -2.33722]], [[55.284721, -2.33722], [55.284625, -2.337173]], [[55.284625, -2.337173], [55.284536, -2.337124]], [[55.284448, -2.337073], [55.284356, -2.337031]], [[55.284356, -2.337031], [55.284258, -2.336995]], [[55.284057, -2.336946], [55.283962, -2.336893]], [[55.283962, -2.336893], [55.283864, -2.336888]], [[55.283864, -2.336888], [55.283764, -2.336876]], [[55.28367, -2.336879], [55.283576, -2.336855]], [[55.283576, -2.336855], [55.283477, -2.336818]], [[55.283477, -2.336818], [55.283382, -2.336787]], [[55.283382, -2.336787], [55.28328, -2.336765]], [[55.28328, -2.336765], [55.283186, -2.336734]], [[55.283186, -2.336734], [55.283085, -2.336713]], [[55.282994, -2.336707], [55.282901, -2.336694]], [[55.282901, -2.336694], [55.282806, -2.336658]], [[55.282806, -2.336658], [55.282706, -2.336628]], [[55.282706, -2.336628], [55.282611, -2.33659]], [[55.282611, -2.33659], [55.282518, -2.336566]], [[55.282518, -2.336566], [55.282422, -2.336548]], [[55.282422, -2.336548], [55.282324, -2.336522]], [[55.282324, -2.336522], [55.282234, -2.336519]], [[55.281861, -2.33649], [55.281773, -2.336431]], [[55.281773, -2.336431], [55.281679, -2.336362]], [[55.281679, -2.336362], [55.281589, -2.336275]], [[55.281589, -2.336275], [55.281506, -2.336183]], [[55.281506, -2.336183], [55.281423, -2.336088]], [[55.281423, -2.336088], [55.281351, -2.335995]], [[55.281351, -2.335995], [55.281275, -2.335879]], [[55.281275, -2.335879], [55.281199, -2.335772]], [[55.281199, -2.335772], [55.281118, -2.33566]], [[55.281118, -2.33566], [55.281034, -2.335574]], [[55.281034, -2.335574], [55.280953, -2.335477]], [[55.280953, -2.335477], [55.280874, -2.335381]], [[55.280874, -2.335381], [55.28079, -2.335278]], [[55.28079, -2.335278], [55.280707, -2.335182]], [[55.280707, -2.335182], [55.280627, -2.335076]], [[55.280379, -2.334907], [55.280297, -2.334805]], [[55.280297, -2.334805], [55.280218, -2.334714]], [[55.280218, -2.334714], [55.28014, -2.334619]], [[55.28014, -2.334619], [55.280061, -2.334527]], [[55.280061, -2.334527], [55.279976, -2.334435]], [[55.279976, -2.334435], [55.279897, -2.334336]], [[55.279897, -2.334336], [55.279813, -2.334234]], [[55.279813, -2.334234], [55.279732, -2.334151]], [[55.279732, -2.334151], [55.279651, -2.334055]], [[55.279651, -2.334055], [55.27957, -2.333938]], [[55.27957, -2.333938], [55.279499, -2.333831]], [[55.279499, -2.333831], [55.279415, -2.333741]], [[55.279415, -2.333741], [55.279334, -2.333663]], [[55.279334, -2.333663], [55.279245, -2.333577]], [[55.279245, -2.333577], [55.279173, -2.333461]], [[55.279102, -2.333353], [55.279038, -2.333225]], [[55.279038, -2.333225], [55.279, -2.333081]], [[55.278926, -2.332433], [55.278909, -2.332275]], [[55.278889, -2.331604], [55.278886, -2.331441]], [[55.278835, -2.330778], [55.278797, -2.330626]], [[55.278797, -2.330626], [55.27875, -2.33047]], [[55.278087, -2.329829], [55.277992, -2.329771]], [[55.277992, -2.329771], [55.277893, -2.329755]], [[55.277893, -2.329755], [55.277801, -2.329717]], [[55.277801, -2.329717], [55.2777, -2.329673]], [[55.2777, -2.329673], [55.277602, -2.329642]], [[55.277602, -2.329642], [55.277509, -2.329625]], [[55.277509, -2.329625], [55.277412, -2.329602]], [[55.277412, -2.329602], [55.277315, -2.32958]], [[55.277315, -2.32958], [55.277222, -2.329574]], [[55.277222, -2.329574], [55.277123, -2.329548]], [[55.277123, -2.329548], [55.277035, -2.329499]], [[55.277035, -2.329499], [55.276935, -2.329451]], [[55.276935, -2.329451], [55.276848, -2.329409]], [[55.276848, -2.329409], [55.276751, -2.329363]], [[55.276751, -2.329363], [55.27666, -2.329307]], [[55.27666, -2.329307], [55.276576, -2.329228]], [[55.276576, -2.329228], [55.276481, -2.329175]], [[55.276481, -2.329175], [55.27639, -2.329112]], [[55.27639, -2.329112], [55.276298, -2.329061]], [[55.276298, -2.329061], [55.276207, -2.329021]], [[55.276207, -2.329021], [55.276114, -2.328972]], [[55.276114, -2.328972], [55.276019, -2.328936]], [[55.276019, -2.328936], [55.275923, -2.328916]], [[55.275923, -2.328916], [55.275831, -2.328895]], [[55.275831, -2.328895], [55.275735, -2.328876]], [[55.275735, -2.328876], [55.275635, -2.328855]], [[55.275635, -2.328855], [55.27554, -2.328836]], [[55.27554, -2.328836], [55.27544, -2.328819]], [[55.275254, -2.328778], [55.275157, -2.32877]], [[55.275157, -2.32877], [55.275066, -2.328756]], [[55.275066, -2.328756], [55.274976, -2.328735]], [[55.274976, -2.328735], [55.274881, -2.328716]], [[55.274881, -2.328716], [55.274784, -2.328707]], [[55.274784, -2.328707], [55.274687, -2.328722]], [[55.274687, -2.328722], [55.274588, -2.328758]], [[55.274588, -2.328758], [55.274488, -2.328788]], [[55.274488, -2.328788], [55.27439, -2.32883]], [[55.27439, -2.32883], [55.274299, -2.328869]], [[55.274299, -2.328869], [55.274209, -2.328901]], [[55.274209, -2.328901], [55.274115, -2.328924]], [[55.274115, -2.328924], [55.274018, -2.328932]], [[55.274018, -2.328932], [55.27393, -2.328894]], [[55.27393, -2.328894], [55.273835, -2.328838]], [[55.273835, -2.328838], [55.273742, -2.32878]], [[55.273742, -2.32878], [55.273662, -2.328701]], [[55.273662, -2.328701], [55.273583, -2.328623]], [[55.273418, -2.328455], [55.273323, -2.328391]], [[55.273323, -2.328391], [55.273239, -2.328306]], [[55.273239, -2.328306], [55.273147, -2.328221]], [[55.273147, -2.328221], [55.273053, -2.328165]], [[55.273053, -2.328165], [55.272979, -2.328076]], [[55.272979, -2.328076], [55.272891, -2.328039]], [[55.272891, -2.328039], [55.272802, -2.327956]], [[55.272802, -2.327956], [55.272715, -2.32789]], [[55.272715, -2.32789], [55.272619, -2.327832]], [[55.272461, -2.327651], [55.272373, -2.327577]], [[55.272373, -2.327577], [55.272281, -2.327508]], [[55.272281, -2.327508], [55.272187, -2.327447]], [[55.272187, -2.327447], [55.272102, -2.327377]], [[55.272102, -2.327377], [55.272015, -2.327307]], [[55.272015, -2.327307], [55.271922, -2.32725]], [[55.27183, -2.327183], [55.27174, -2.32712]], [[55.27174, -2.32712], [55.27165, -2.327047]], [[55.27165, -2.327047], [55.271559, -2.326962]], [[55.271559, -2.326962], [55.271473, -2.326867]], [[55.271473, -2.326867], [55.271386, -2.326787]], [[55.271386, -2.326787], [55.271306, -2.326709]], [[55.271306, -2.326709], [55.271225, -2.326632]], [[55.271225, -2.326632], [55.271139, -2.326558]], [[55.271139, -2.326558], [55.271052, -2.326476]], [[55.271052, -2.326476], [55.270963, -2.326404]], [[55.270963, -2.326404], [55.270877, -2.326328]], [[55.270877, -2.326328], [55.270783, -2.326245]], [[55.270783, -2.326245], [55.270697, -2.326185]], [[55.270697, -2.326185], [55.27061, -2.326122]], [[55.27061, -2.326122], [55.270521, -2.326065]], [[55.270521, -2.326065], [55.270433, -2.326011]], [[55.270433, -2.326011], [55.27034, -2.32593]], [[55.27034, -2.32593], [55.27025, -2.325849]], [[55.27025, -2.325849], [55.270169, -2.32578]], [[55.270169, -2.32578], [55.270079, -2.325721]], [[55.270079, -2.325721], [55.269995, -2.325659]], [[55.269995, -2.325659], [55.269906, -2.325595]], [[55.269906, -2.325595], [55.269811, -2.325532]], [[55.269811, -2.325532], [55.269718, -2.325459]], [[55.269718, -2.325459], [55.269629, -2.325383]], [[55.269629, -2.325383], [55.269539, -2.325303]], [[55.269539, -2.325303], [55.269448, -2.325217]], [[55.269448, -2.325217], [55.269366, -2.325151]], [[55.269366, -2.325151], [55.269275, -2.325096]], [[55.269275, -2.325096], [55.26919, -2.325023]], [[55.26919, -2.325023], [55.269107, -2.324947]], [[55.269107, -2.324947], [55.26902, -2.324879]], [[55.26902, -2.324879], [55.268942, -2.324791]], [[55.268942, -2.324791], [55.268856, -2.324703]], [[55.268856, -2.324703], [55.26876, -2.324628]], [[55.26876, -2.324628], [55.268676, -2.324558]], [[55.268676, -2.324558], [55.268593, -2.324483]], [[55.268593, -2.324483], [55.268493, -2.324441]], [[55.268493, -2.324441], [55.268402, -2.324378]], [[55.268138, -2.324153], [55.268044, -2.324093]], [[55.268044, -2.324093], [55.267958, -2.323997]], [[55.267958, -2.323997], [55.267877, -2.323918]], [[55.267877, -2.323918], [55.267797, -2.323836]], [[55.267797, -2.323836], [55.267712, -2.323774]], [[55.267712, -2.323774], [55.267627, -2.323696]], [[55.267627, -2.323696], [55.26754, -2.323618]], [[55.26754, -2.323618], [55.267454, -2.323556]], [[55.267454, -2.323556], [55.267367, -2.323466]], [[55.267367, -2.323466], [55.267289, -2.323378]], [[55.267289, -2.323378], [55.267202, -2.323293]], [[55.267202, -2.323293], [55.267118, -2.323211]], [[55.267118, -2.323211], [55.267031, -2.323127]], [[55.267031, -2.323127], [55.266938, -2.32307]], [[55.266938, -2.32307], [55.266841, -2.323]], [[55.266841, -2.323], [55.266754, -2.322933]], [[55.266754, -2.322933], [55.266665, -2.322859]], [[55.266494, -2.322722], [55.266405, -2.322665]], [[55.266047, -2.322412], [55.265964, -2.32231]], [[55.265708, -2.322075], [55.265642, -2.321957]], [[55.265642, -2.321957], [55.265569, -2.321833]], [[55.265502, -2.321725], [55.265427, -2.321608]], [[55.265034, -2.321137], [55.264957, -2.321038]], [[55.264957, -2.321038], [55.264874, -2.320929]], [[55.264874, -2.320929], [55.264784, -2.320879]], [[55.264697, -2.320807], [55.264607, -2.320739]], [[55.264069, -2.32044], [55.263979, -2.320376]], [[55.262215, -2.319249], [55.262113, -2.319226]], [[55.262113, -2.319226], [55.262018, -2.31922]], [[55.259579, -2.319242], [55.25948, -2.319227]], [[55.259381, -2.319207], [55.259285, -2.319149]], [[55.259285, -2.319149], [55.259186, -2.319103]], [[55.259092, -2.319052], [55.258995, -2.319002]], [[55.258995, -2.319002], [55.258897, -2.318955]], [[55.258809, -2.318896], [55.258728, -2.318825]], [[55.256829, -2.31851], [55.256731, -2.318491]], [[55.25664, -2.318474], [55.256543, -2.31846]], [[55.256543, -2.31846], [55.256452, -2.318465]], [[55.256349, -2.318469], [55.256252, -2.318434]], [[55.256252, -2.318434], [55.256154, -2.318441]], [[55.255873, -2.318471], [55.255781, -2.318469]], [[55.255502, -2.318456], [55.255405, -2.318472]], [[55.255405, -2.318472], [55.255306, -2.31844]], [[55.255306, -2.31844], [55.255205, -2.318426]], [[55.255205, -2.318426], [55.255106, -2.31842]], [[55.255106, -2.31842], [55.255012, -2.318445]], [[55.254829, -2.31843], [55.254734, -2.318381]], [[55.254734, -2.318381], [55.254638, -2.318368]], [[55.254638, -2.318368], [55.25454, -2.318342]], [[55.25454, -2.318342], [55.254447, -2.318318]], [[55.254447, -2.318318], [55.25435, -2.318264]], [[55.25435, -2.318264], [55.254255, -2.318211]], [[55.254023, -2.318038], [55.253944, -2.317953]], [[55.253944, -2.317953], [55.253863, -2.317873]], [[55.253863, -2.317873], [55.253772, -2.317796]], [[55.253772, -2.317796], [55.253683, -2.317714]], [[55.253683, -2.317714], [55.253594, -2.317634]], [[55.253594, -2.317634], [55.253501, -2.317559]], [[55.253501, -2.317559], [55.253416, -2.317483]], [[55.253416, -2.317483], [55.253332, -2.317393]], [[55.253332, -2.317393], [55.253241, -2.317302]], [[55.253241, -2.317302], [55.253155, -2.317212]], [[55.253155, -2.317212], [55.253068, -2.317125]], [[55.253068, -2.317125], [55.252983, -2.317043]], [[55.252983, -2.317043], [55.252898, -2.316959]], [[55.252898, -2.316959], [55.252817, -2.316871]], [[55.252817, -2.316871], [55.252733, -2.316777]], [[55.252733, -2.316777], [55.252646, -2.316676]], [[55.252646, -2.316676], [55.252556, -2.316586]], [[55.252556, -2.316586], [55.252469, -2.316497]], [[55.252469, -2.316497], [55.252383, -2.316402]], [[55.252383, -2.316402], [55.252296, -2.316308]], [[55.252296, -2.316308], [55.252209, -2.316217]], [[55.252209, -2.316217], [55.252123, -2.316138]], [[55.252123, -2.316138], [55.252038, -2.316059]], [[55.252038, -2.316059], [55.251955, -2.31597]], [[55.251955, -2.31597], [55.251863, -2.315879]], [[55.251863, -2.315879], [55.251783, -2.315802]], [[55.251783, -2.315802], [55.251705, -2.315713]], [[55.251705, -2.315713], [55.251618, -2.315628]], [[55.251618, -2.315628], [55.251528, -2.315544]], [[55.251528, -2.315544], [55.251437, -2.315459]], [[55.251437, -2.315459], [55.251354, -2.315379]], [[55.251354, -2.315379], [55.251267, -2.315297]], [[55.251267, -2.315297], [55.251182, -2.315213]], [[55.251182, -2.315213], [55.251099, -2.315121]], [[55.251099, -2.315121], [55.251015, -2.31504]], [[55.251015, -2.31504], [55.250929, -2.314963]], [[55.250929, -2.314963], [55.250839, -2.314897]], [[55.250839, -2.314897], [55.25075, -2.314812]], [[55.25075, -2.314812], [55.250665, -2.314724]], [[55.250665, -2.314724], [55.250578, -2.31463]], [[55.250578, -2.31463], [55.250494, -2.314538]], [[55.250494, -2.314538], [55.250411, -2.314436]], [[55.250411, -2.314436], [55.250323, -2.314342]], [[55.250323, -2.314342], [55.250235, -2.314247]], [[55.250235, -2.314247], [55.250147, -2.314164]], [[55.250147, -2.314164], [55.250059, -2.314069]], [[55.250059, -2.314069], [55.249971, -2.313981]], [[55.249971, -2.313981], [55.249885, -2.313911]], [[55.249885, -2.313911], [55.249804, -2.313832]], [[55.249804, -2.313832], [55.249723, -2.31376]], [[55.249723, -2.31376], [55.249642, -2.313679]], [[55.249642, -2.313679], [55.249559, -2.313595]], [[55.249559, -2.313595], [55.24947, -2.313509]], [[55.24947, -2.313509], [55.24939, -2.313425]], [[55.24939, -2.313425], [55.249314, -2.31334]], [[55.249314, -2.31334], [55.249239, -2.313247]], [[55.249239, -2.313247], [55.24915, -2.31316]], [[55.24915, -2.31316], [55.249066, -2.313077]], [[55.249066, -2.313077], [55.248987, -2.312994]], [[55.248987, -2.312994], [55.248908, -2.312912]], [[55.248908, -2.312912], [55.248826, -2.312826]], [[55.248826, -2.312826], [55.248739, -2.312743]], [[55.248739, -2.312743], [55.248653, -2.312648]], [[55.248653, -2.312648], [55.24857, -2.312563]], [[55.24857, -2.312563], [55.248487, -2.312474]], [[55.248487, -2.312474], [55.248404, -2.312381]], [[55.248404, -2.312381], [55.24832, -2.312303]], [[55.24832, -2.312303], [55.248235, -2.312221]], [[55.248235, -2.312221], [55.248145, -2.312138]], [[55.248145, -2.312138], [55.248071, -2.312049]], [[55.248071, -2.312049], [55.247995, -2.311962]], [[55.247995, -2.311962], [55.24791, -2.311882]], [[55.24791, -2.311882], [55.247826, -2.311799]], [[55.247826, -2.311799], [55.247741, -2.31173]], [[55.247741, -2.31173], [55.247661, -2.311656]], [[55.247661, -2.311656], [55.247576, -2.311564]], [[55.247576, -2.311564], [55.247486, -2.311478]], [[55.247486, -2.311478], [55.247398, -2.311388]], [[55.247398, -2.311388], [55.247311, -2.311297]], [[55.247311, -2.311297], [55.247235, -2.311207]], [[55.247235, -2.311207], [55.247146, -2.311116]], [[55.247146, -2.311116], [55.247059, -2.31103]], [[55.247059, -2.31103], [55.246974, -2.310946]], [[55.246974, -2.310946], [55.246886, -2.310865]], [[55.246792, -2.310792], [55.246703, -2.310715]], [[55.246703, -2.310715], [55.246621, -2.310651]], [[55.246459, -2.310506], [55.246376, -2.310407]], [[55.246376, -2.310407], [55.246292, -2.310307]], [[55.246292, -2.310307], [55.246213, -2.310229]], [[55.246213, -2.310229], [55.246136, -2.310147]], [[55.246136, -2.310147], [55.246046, -2.31005]], [[55.246046, -2.31005], [55.245968, -2.309963]], [[55.245968, -2.309963], [55.245877, -2.309874]], [[55.245877, -2.309874], [55.245784, -2.309796]], [[55.245784, -2.309796], [55.245691, -2.309717]], [[55.245691, -2.309717], [55.245601, -2.309638]], [[55.245601, -2.309638], [55.245512, -2.309568]], [[55.245512, -2.309568], [55.245428, -2.30949]], [[55.245428, -2.30949], [55.245334, -2.309413]], [[55.245334, -2.309413], [55.245249, -2.309338]], [[55.245249, -2.309338], [55.245156, -2.309265]], [[55.245156, -2.309265], [55.245068, -2.309196]], [[55.245068, -2.309196], [55.244976, -2.309115]], [[55.244976, -2.309115], [55.244892, -2.309045]], [[55.244892, -2.309045], [55.244807, -2.308983]], [[55.244807, -2.308983], [55.244726, -2.30891]], [[55.244726, -2.30891], [55.244644, -2.308831]], [[55.244644, -2.308831], [55.244557, -2.308757]], [[55.244557, -2.308757], [55.244468, -2.308671]], [[55.244468, -2.308671], [55.244377, -2.308599]], [[55.244377, -2.308599], [55.244292, -2.308528]], [[55.244292, -2.308528], [55.2442, -2.308442]], [[55.2442, -2.308442], [55.244112, -2.308369]], [[55.244112, -2.308369], [55.244025, -2.308291]], [[55.244025, -2.308291], [55.243939, -2.308227]], [[55.243939, -2.308227], [55.243847, -2.308132]], [[55.243687, -2.307957], [55.243602, -2.307895]], [[55.243602, -2.307895], [55.243516, -2.307831]], [[55.243516, -2.307831], [55.243432, -2.307755]], [[55.243432, -2.307755], [55.24334, -2.307673]], [[55.24334, -2.307673], [55.243262, -2.307593]], [[55.243262, -2.307593], [55.243176, -2.307511]], [[55.243176, -2.307511], [55.243085, -2.307441]], [[55.243, -2.307367], [55.242914, -2.307287]], [[55.242914, -2.307287], [55.242825, -2.307217]], [[55.242825, -2.307217], [55.242736, -2.307144]], [[55.242736, -2.307144], [55.242649, -2.30706]], [[55.242649, -2.30706], [55.242562, -2.307005]], [[55.242562, -2.307005], [55.242474, -2.306942]], [[55.242474, -2.306942], [55.242388, -2.306872]], [[55.242388, -2.306872], [55.242301, -2.306774]], [[55.242301, -2.306774], [55.242219, -2.306697]], [[55.242219, -2.306697], [55.242129, -2.306622]], [[55.242129, -2.306622], [55.242046, -2.306534]], [[55.241885, -2.30637], [55.241804, -2.306284]], [[55.241804, -2.306284], [55.241716, -2.306225]], [[55.241716, -2.306225], [55.241624, -2.306159]], [[55.241624, -2.306159], [55.241529, -2.306108]], [[55.241529, -2.306108], [55.241435, -2.306057]], [[55.241435, -2.306057], [55.241348, -2.305968]], [[55.241348, -2.305968], [55.241264, -2.305906]], [[55.241264, -2.305906], [55.241187, -2.305807]], [[55.241187, -2.305807], [55.241104, -2.305728]], [[55.241104, -2.305728], [55.241022, -2.305636]], [[55.241022, -2.305636], [55.240941, -2.305564]], [[55.240941, -2.305564], [55.240856, -2.305484]], [[55.240718, -2.305406], [55.240629, -2.305315]], [[55.240629, -2.305315], [55.240542, -2.305254]], [[55.240542, -2.305254], [55.240445, -2.305237]], [[55.240445, -2.305237], [55.240349, -2.305206]], [[55.240008, -2.305058], [55.239916, -2.305011]], [[55.239826, -2.304966], [55.23974, -2.304919]], [[55.23974, -2.304919], [55.239651, -2.304871]], [[55.239651, -2.304871], [55.239562, -2.30483]], [[55.239562, -2.30483], [55.239476, -2.304787]], [[55.239476, -2.304787], [55.239379, -2.304743]], [[55.239379, -2.304743], [55.239283, -2.304711]], [[55.239283, -2.304711], [55.239193, -2.304679]], [[55.239193, -2.304679], [55.239098, -2.304638]], [[55.239098, -2.304638], [55.238998, -2.304604]], [[55.238998, -2.304604], [55.238902, -2.304564]], [[55.238902, -2.304564], [55.238809, -2.304525]], [[55.238673, -2.304471], [55.238584, -2.304435]], [[55.238295, -2.304383], [55.238197, -2.304364]], [[55.238197, -2.304364], [55.238099, -2.304361]], [[55.238099, -2.304361], [55.237996, -2.30436]], [[55.237996, -2.30436], [55.237891, -2.304336]], [[55.237891, -2.304336], [55.237797, -2.304321]], [[55.237797, -2.304321], [55.237707, -2.304309]], [[55.237707, -2.304309], [55.237606, -2.304298]], [[55.237606, -2.304298], [55.237508, -2.30428]], [[55.237508, -2.30428], [55.237411, -2.304266]], [[55.237411, -2.304266], [55.237318, -2.304269]], [[55.237318, -2.304269], [55.237224, -2.304265]], [[55.237224, -2.304265], [55.237132, -2.304256]], [[55.237132, -2.304256], [55.237035, -2.304238]], [[55.237035, -2.304238], [55.236935, -2.304222]], [[55.236935, -2.304222], [55.236835, -2.304209]], [[55.236835, -2.304209], [55.236744, -2.304192]], [[55.236744, -2.304192], [55.236642, -2.304189]], [[55.236642, -2.304189], [55.236549, -2.304164]], [[55.236549, -2.304164], [55.236458, -2.30415]], [[55.236458, -2.30415], [55.236365, -2.304149]], [[55.236365, -2.304149], [55.236272, -2.304174]], [[55.235259, -2.303983], [55.235168, -2.303952]], [[55.235168, -2.303952], [55.235073, -2.303923]], [[55.235073, -2.303923], [55.234983, -2.303889]], [[55.234983, -2.303889], [55.234888, -2.303855]], [[55.234888, -2.303855], [55.234785, -2.303822]], [[55.234785, -2.303822], [55.234697, -2.303785]], [[55.234697, -2.303785], [55.234607, -2.303759]], [[55.234607, -2.303759], [55.234507, -2.303731]], [[55.234507, -2.303731], [55.23441, -2.303705]], [[55.23424, -2.30367], [55.234147, -2.303644]], [[55.234147, -2.303644], [55.234044, -2.303609]], [[55.234044, -2.303609], [55.233943, -2.303582]], [[55.233943, -2.303582], [55.233842, -2.303576]], [[55.233842, -2.303576], [55.233745, -2.303568]], [[55.233745, -2.303568], [55.233648, -2.303558]], [[55.233648, -2.303558], [55.233557, -2.303553]], [[55.233557, -2.303553], [55.233465, -2.303544]], [[55.233465, -2.303544], [55.23337, -2.303543]], [[55.23337, -2.303543], [55.233272, -2.303534]], [[55.233272, -2.303534], [55.233176, -2.303514]], [[55.233176, -2.303514], [55.233082, -2.303499]], [[55.233082, -2.303499], [55.232985, -2.303482]], [[55.232985, -2.303482], [55.232881, -2.30348]], [[55.232881, -2.30348], [55.232777, -2.303464]], [[55.232777, -2.303464], [55.232688, -2.303442]], [[55.232688, -2.303442], [55.232584, -2.303423]], [[55.232584, -2.303423], [55.232485, -2.303403]], [[55.232485, -2.303403], [55.232386, -2.303375]], [[55.232386, -2.303375], [55.232286, -2.303356]], [[55.232286, -2.303356], [55.232184, -2.303344]], [[55.232184, -2.303344], [55.232085, -2.303337]], [[55.232085, -2.303337], [55.231989, -2.30333]], [[55.231989, -2.30333], [55.231891, -2.303328]], [[55.231891, -2.303328], [55.231788, -2.30331]], [[55.231788, -2.30331], [55.231693, -2.303297]], [[55.231693, -2.303297], [55.23159, -2.303285]], [[55.23159, -2.303285], [55.23149, -2.303266]], [[55.23149, -2.303266], [55.231391, -2.303245]], [[55.231391, -2.303245], [55.231295, -2.30323]], [[55.231295, -2.30323], [55.2312, -2.303221]], [[55.2312, -2.303221], [55.231108, -2.303225]], [[55.231108, -2.303225], [55.231015, -2.303212]], [[55.231015, -2.303212], [55.230916, -2.303195]], [[55.230916, -2.303195], [55.230813, -2.303171]], [[55.230813, -2.303171], [55.230722, -2.303157]], [[55.230722, -2.303157], [55.230622, -2.303154]], [[55.230622, -2.303154], [55.230519, -2.303143]], [[55.230519, -2.303143], [55.230418, -2.303131]], [[55.230418, -2.303131], [55.230322, -2.303122]], [[55.230322, -2.303122], [55.230219, -2.303111]], [[55.230219, -2.303111], [55.230115, -2.303101]], [[55.230115, -2.303101], [55.230012, -2.303088]], [[55.230012, -2.303088], [55.229915, -2.303083]], [[55.229915, -2.303083], [55.229816, -2.303081]], [[55.229816, -2.303081], [55.229715, -2.303073]], [[55.229715, -2.303073], [55.229614, -2.303061]], [[55.229614, -2.303061], [55.229511, -2.303068]], [[55.22941, -2.303052], [55.229318, -2.303018]], [[55.229318, -2.303018], [55.229222, -2.303006]], [[55.229222, -2.303006], [55.229125, -2.30299]], [[55.229125, -2.30299], [55.229025, -2.302977]], [[55.229025, -2.302977], [55.228928, -2.30296]], [[55.228928, -2.30296], [55.22883, -2.302951]], [[55.22883, -2.302951], [55.228729, -2.302945]], [[55.228729, -2.302945], [55.228631, -2.302926]], [[55.228631, -2.302926], [55.228537, -2.302899]], [[55.228537, -2.302899], [55.228444, -2.302857]], [[55.228444, -2.302857], [55.228352, -2.302823]], [[55.228352, -2.302823], [55.228258, -2.30279]], [[55.228258, -2.30279], [55.228167, -2.302777]], [[55.228077, -2.302756], [55.227981, -2.302731]], [[55.227981, -2.302731], [55.227881, -2.302691]], [[55.227881, -2.302691], [55.227781, -2.30265]], [[55.227781, -2.30265], [55.227682, -2.302604]], [[55.227593, -2.302559], [55.227497, -2.302529]], [[55.227497, -2.302529], [55.227402, -2.302496]], [[55.227402, -2.302496], [55.227311, -2.302472]], [[55.227123, -2.302418], [55.227028, -2.302397]], [[55.227028, -2.302397], [55.22693, -2.302372]], [[55.22693, -2.302372], [55.226832, -2.302364]], [[55.226832, -2.302364], [55.226735, -2.302365]], [[55.226637, -2.302366], [55.226539, -2.302348]], [[55.226539, -2.302348], [55.226446, -2.302323]], [[55.225629, -2.301823], [55.225542, -2.30174]], [[55.225542, -2.30174], [55.225467, -2.301655]], [[55.225212, -2.301428], [55.225125, -2.30133]], [[55.225125, -2.30133], [55.225049, -2.301223]], [[55.225049, -2.301223], [55.224971, -2.301116]], [[55.224971, -2.301116], [55.224902, -2.301002]], [[55.224902, -2.301002], [55.224822, -2.30089]], [[55.224822, -2.30089], [55.224746, -2.300783]], [[55.224746, -2.300783], [55.224674, -2.300665]], [[55.224674, -2.300665], [55.224596, -2.300571]], [[55.224596, -2.300571], [55.224524, -2.300477]], [[55.224524, -2.300477], [55.224448, -2.300376]], [[55.224448, -2.300376], [55.224369, -2.300267]], [[55.224369, -2.300267], [55.224303, -2.300158]], [[55.224232, -2.30004], [55.224161, -2.299927]], [[55.224161, -2.299927], [55.224084, -2.299812]], [[55.224084, -2.299812], [55.224017, -2.299704]], [[55.224017, -2.299704], [55.223951, -2.299594]], [[55.223951, -2.299594], [55.223884, -2.299478]], [[55.223884, -2.299478], [55.223806, -2.299364]], [[55.223806, -2.299364], [55.223728, -2.299259]], [[55.223728, -2.299259], [55.223649, -2.299148]], [[55.223649, -2.299148], [55.223577, -2.299036]], [[55.223577, -2.299036], [55.223502, -2.298932]], [[55.223335, -2.298761], [55.223262, -2.298665]], [[55.22312, -2.298441], [55.223054, -2.298321]], [[55.223054, -2.298321], [55.222981, -2.298195]], [[55.222981, -2.298195], [55.222903, -2.298076]], [[55.222903, -2.298076], [55.222832, -2.297977]], [[55.222832, -2.297977], [55.222751, -2.297865]], [[55.222751, -2.297865], [55.222668, -2.297752]], [[55.222668, -2.297752], [55.222599, -2.297646]], [[55.222599, -2.297646], [55.222519, -2.297531]], [[55.222519, -2.297531], [55.222436, -2.297424]], [[55.222436, -2.297424], [55.222359, -2.297339]], [[55.222359, -2.297339], [55.222275, -2.29724]], [[55.222275, -2.29724], [55.222196, -2.297135]], [[55.222196, -2.297135], [55.222119, -2.297024]], [[55.222119, -2.297024], [55.222038, -2.296917]], [[55.222038, -2.296917], [55.221959, -2.296811]], [[55.221959, -2.296811], [55.221885, -2.29671]], [[55.221885, -2.29671], [55.221807, -2.296608]], [[55.221807, -2.296608], [55.221734, -2.296507]], [[55.221734, -2.296507], [55.221661, -2.29641]], [[55.221661, -2.29641], [55.221585, -2.296318]], [[55.221585, -2.296318], [55.221509, -2.296217]], [[55.221509, -2.296217], [55.22143, -2.296116]], [[55.22143, -2.296116], [55.221343, -2.296017]], [[55.221343, -2.296017], [55.22126, -2.29592]], [[55.22126, -2.29592], [55.221185, -2.295822]], [[55.221185, -2.295822], [55.221103, -2.295714]], [[55.221103, -2.295714], [55.221024, -2.295621]], [[55.220737, -2.295185], [55.220668, -2.295079]], [[55.220668, -2.295079], [55.220599, -2.294979]], [[55.220599, -2.294979], [55.220526, -2.294856]], [[55.220297, -2.294555], [55.220233, -2.294432]], [[55.220088, -2.29421], [55.220012, -2.294102]], [[55.220012, -2.294102], [55.219948, -2.293988]], [[55.219786, -2.2936], [55.219738, -2.29346]], [[55.219738, -2.29346], [55.219693, -2.293305]], [[55.219079, -2.291281], [55.219067, -2.29111]], [[55.219054, -2.29095], [55.219041, -2.290782]], [[55.21901, -2.290307], [55.218997, -2.290135]], [[55.218916, -2.289321], [55.218898, -2.289163]], [[55.218767, -2.287828], [55.218754, -2.287654]], [[55.218632, -2.286178], [55.218616, -2.286004]], [[55.218616, -2.286004], [55.218604, -2.285836]], [[55.218559, -2.28532], [55.218544, -2.285141]], [[55.218544, -2.285141], [55.218529, -2.284984]], [[55.218529, -2.284984], [55.218511, -2.284811]], [[55.218511, -2.284811], [55.218494, -2.284655]], [[55.218494, -2.284655], [55.21848, -2.284489]], [[55.21848, -2.284489], [55.218487, -2.284312]], [[55.219111, -2.28212], [55.219126, -2.281963]], [[55.219126, -2.281963], [55.219149, -2.281801]], [[55.219149, -2.281801], [55.219161, -2.281624]], [[55.219161, -2.281624], [55.219171, -2.281443]], [[55.219171, -2.281443], [55.219185, -2.281267]], [[55.219185, -2.281267], [55.219196, -2.281091]], [[55.219196, -2.281091], [55.219213, -2.280918]], [[55.219213, -2.280918], [55.219223, -2.280755]], [[55.219223, -2.280755], [55.219235, -2.28058]], [[55.219235, -2.28058], [55.219242, -2.280402]], [[55.219242, -2.280402], [55.219256, -2.280224]], [[55.219256, -2.280224], [55.219266, -2.280057]], [[55.219266, -2.280057], [55.219281, -2.279884]], [[55.219281, -2.279884], [55.219303, -2.279716]], [[55.219303, -2.279716], [55.219314, -2.279539]], [[55.219314, -2.279539], [55.219317, -2.279361]], [[55.219317, -2.279361], [55.219335, -2.279193]], [[55.219335, -2.279193], [55.219358, -2.279025]], [[55.219358, -2.279025], [55.219373, -2.278848]], [[55.219373, -2.278848], [55.219379, -2.278672]], [[55.219379, -2.278672], [55.219385, -2.278501]], [[55.219385, -2.278501], [55.219386, -2.278336]], [[55.219386, -2.278336], [55.219393, -2.278176]], [[55.219393, -2.278176], [55.219398, -2.278001]], [[55.219398, -2.278001], [55.219393, -2.277841]], [[55.219393, -2.277841], [55.219366, -2.277672]], [[55.219234, -2.277324], [55.219157, -2.277211]], [[55.219157, -2.277211], [55.219097, -2.277073]], [[55.218824, -2.276629], [55.218772, -2.276482]], [[55.218772, -2.276482], [55.218705, -2.276343]], [[55.218705, -2.276343], [55.218639, -2.276218]], [[55.218639, -2.276218], [55.218573, -2.276088]], [[55.218573, -2.276088], [55.218505, -2.275969]], [[55.218505, -2.275969], [55.218426, -2.27589]], [[55.218426, -2.27589], [55.218348, -2.275811]], [[55.218051, -2.275181], [55.218003, -2.275018]], [[55.218003, -2.275018], [55.217952, -2.274877]], [[55.217717, -2.274582], [55.217637, -2.274476]], [[55.217637, -2.274476], [55.217569, -2.27437]], [[55.216905, -2.273304], [55.216839, -2.273182]], [[55.216762, -2.273063], [55.216703, -2.27293]], [[55.216703, -2.27293], [55.216651, -2.272796]], [[55.216651, -2.272796], [55.216592, -2.272667]], [[55.216592, -2.272667], [55.216526, -2.272555]], [[55.215094, -2.269536], [55.215075, -2.269361]], [[55.214867, -2.268807], [55.214818, -2.268653]], [[55.214818, -2.268653], [55.214774, -2.268497]], [[55.214741, -2.268341], [55.214708, -2.268178]], [[55.214708, -2.268178], [55.214671, -2.26803]], [[55.214671, -2.26803], [55.214632, -2.267876]], [[55.214632, -2.267876], [55.214605, -2.267718]], [[55.214605, -2.267718], [55.214562, -2.267575]], [[55.214562, -2.267575], [55.214526, -2.267406]], [[55.214526, -2.267406], [55.214469, -2.267262]], [[55.214469, -2.267262], [55.21443, -2.2671]], [[55.214103, -2.265875], [55.21406, -2.265722]], [[55.21406, -2.265722], [55.214013, -2.265582]], [[55.213904, -2.265153], [55.213855, -2.265002]], [[55.213855, -2.265002], [55.213847, -2.264828]], [[55.213847, -2.264828], [55.213826, -2.264662]], [[55.213826, -2.264662], [55.213796, -2.264504]], [[55.213796, -2.264504], [55.213769, -2.26433]], [[55.213769, -2.26433], [55.213727, -2.264167]], [[55.213727, -2.264167], [55.213712, -2.264]], [[55.213665, -2.263844], [55.213614, -2.263714]], [[55.213614, -2.263714], [55.213561, -2.263586]], [[55.213561, -2.263586], [55.213492, -2.263459]], [[55.213398, -2.26318], [55.213397, -2.26302]], [[55.213397, -2.26302], [55.213388, -2.262857]], [[55.213388, -2.262857], [55.213367, -2.262688]], [[55.213279, -2.26241], [55.213239, -2.262262]], [[55.213239, -2.262262], [55.213205, -2.262092]], [[55.213205, -2.262092], [55.213174, -2.261934]], [[55.213174, -2.261934], [55.213134, -2.261789]], [[55.211736, -2.258579], [55.21169, -2.258443]], [[55.210911, -2.256615], [55.210875, -2.256466]], [[55.207761, -2.25259], [55.207699, -2.252473]], [[55.207401, -2.252045], [55.207326, -2.251958]], [[55.206211, -2.250682], [55.206125, -2.250633]], [[55.20594, -2.250557], [55.205842, -2.250507]], [[55.205842, -2.250507], [55.205746, -2.250502]], [[55.205573, -2.250379], [55.20548, -2.250312]], [[55.20548, -2.250312], [55.205392, -2.25025]], [[55.205205, -2.250168], [55.20511, -2.250103]], [[55.20511, -2.250103], [55.205018, -2.250041]], [[55.205018, -2.250041], [55.204931, -2.249989]], [[55.204836, -2.249917], [55.204743, -2.2499]], [[55.2044, -2.24972], [55.20431, -2.2497]], [[55.203766, -2.249423], [55.203684, -2.249335]], [[55.203684, -2.249335], [55.203602, -2.249264]], [[55.203602, -2.249264], [55.20351, -2.249197]], [[55.203324, -2.249104], [55.203234, -2.249069]], [[55.203045, -2.24901], [55.202958, -2.248956]], [[55.202073, -2.248394], [55.201973, -2.24838]], [[55.201871, -2.248418], [55.201774, -2.248435]], [[55.201588, -2.248471], [55.201497, -2.248491]], [[55.20131, -2.248499], [55.201216, -2.248512]], [[55.201216, -2.248512], [55.201123, -2.248484]], [[55.201123, -2.248484], [55.201025, -2.248482]], [[55.201025, -2.248482], [55.200931, -2.248443]], [[55.200512, -2.248083], [55.200427, -2.247997]], [[55.200427, -2.247997], [55.200346, -2.247927]], [[55.200346, -2.247927], [55.200249, -2.247877]], [[55.198027, -2.246923], [55.19793, -2.246906]], [[55.197562, -2.246705], [55.197462, -2.246694]], [[55.197176, -2.246651], [55.197076, -2.246618]], [[55.195709, -2.245524], [55.195611, -2.245513]], [[55.195611, -2.245513], [55.19551, -2.245524]], [[55.195411, -2.24554], [55.195319, -2.245586]], [[55.195319, -2.245586], [55.195227, -2.245609]], [[55.195227, -2.245609], [55.195137, -2.245645]], [[55.195137, -2.245645], [55.195046, -2.245726]], [[55.195046, -2.245726], [55.194967, -2.245803]], [[55.194967, -2.245803], [55.194883, -2.245862]], [[55.194883, -2.245862], [55.194792, -2.245891]], [[55.194524, -2.246037], [55.19443, -2.24606]], [[55.19443, -2.24606], [55.194335, -2.246068]], [[55.194049, -2.246046], [55.193947, -2.246048]], [[55.193947, -2.246048], [55.193861, -2.246118]], [[55.193597, -2.246339], [55.193502, -2.246396]], [[55.193502, -2.246396], [55.193417, -2.246467]], [[55.193417, -2.246467], [55.193331, -2.246533]], [[55.193331, -2.246533], [55.193245, -2.246601]], [[55.193151, -2.246658], [55.193057, -2.246716]], [[55.193057, -2.246716], [55.192968, -2.246808]], [[55.192968, -2.246808], [55.192891, -2.246902]], [[55.192757, -2.247127], [55.192691, -2.247236]], [[55.192691, -2.247236], [55.1926, -2.24733]], [[55.1926, -2.24733], [55.192531, -2.247459]], [[55.192531, -2.247459], [55.192464, -2.247586]], [[55.192464, -2.247586], [55.192399, -2.247729]], [[55.192399, -2.247729], [55.192324, -2.247853]], [[55.192324, -2.247853], [55.19225, -2.247975]], [[55.19225, -2.247975], [55.192216, -2.248122]], [[55.192216, -2.248122], [55.192172, -2.248276]], [[55.192172, -2.248276], [55.192107, -2.248415]], [[55.192107, -2.248415], [55.192043, -2.248531]], [[55.192043, -2.248531], [55.191979, -2.248644]], [[55.191979, -2.248644], [55.191916, -2.24876]], [[55.191916, -2.24876], [55.191834, -2.248848]], [[55.191834, -2.248848], [55.19175, -2.248917]], [[55.191666, -2.249015], [55.191592, -2.249121]], [[55.191592, -2.249121], [55.191512, -2.249224]], [[55.191512, -2.249224], [55.191433, -2.249311]], [[55.191433, -2.249311], [55.191362, -2.249423]], [[55.191362, -2.249423], [55.191287, -2.249516]], [[55.191287, -2.249516], [55.191214, -2.249614]], [[55.191214, -2.249614], [55.191128, -2.249699]], [[55.190971, -2.249886], [55.190891, -2.249975]], [[55.190891, -2.249975], [55.190794, -2.25003]], [[55.190722, -2.250126], [55.19064, -2.25023]], [[55.19064, -2.25023], [55.190565, -2.250331]], [[55.190565, -2.250331], [55.190476, -2.250351]], [[55.190476, -2.250351], [55.190384, -2.250404]], [[55.190212, -2.250542], [55.190121, -2.250611]], [[55.190121, -2.250611], [55.190043, -2.250693]], [[55.190043, -2.250693], [55.189957, -2.250776]], [[55.189497, -2.250895], [55.189396, -2.250901]], [[55.189396, -2.250901], [55.189303, -2.250849]], [[55.189083, -2.250684], [55.188998, -2.250608]], [[55.188998, -2.250608], [55.188916, -2.250543]], [[55.188916, -2.250543], [55.188826, -2.250464]], [[55.188826, -2.250464], [55.188741, -2.250399]], [[55.188741, -2.250399], [55.188657, -2.250337]], [[55.188657, -2.250337], [55.188569, -2.250301]], [[55.188569, -2.250301], [55.188468, -2.25033]], [[55.188468, -2.25033], [55.188371, -2.250333]], [[55.188371, -2.250333], [55.188276, -2.250294]], [[55.188276, -2.250294], [55.188181, -2.250229]], [[55.187994, -2.25015], [55.1879, -2.250095]], [[55.1879, -2.250095], [55.187804, -2.250044]], [[55.187804, -2.250044], [55.187711, -2.249991]], [[55.187711, -2.249991], [55.187616, -2.249935]], [[55.187616, -2.249935], [55.187521, -2.249887]], [[55.187521, -2.249887], [55.187427, -2.249828]], [[55.187427, -2.249828], [55.187334, -2.249764]], [[55.187334, -2.249764], [55.187233, -2.249725]], [[55.186589, -2.249973], [55.186498, -2.250021]], [[55.186228, -2.250188], [55.186155, -2.250281]], [[55.186155, -2.250281], [55.186071, -2.250374]], [[55.186071, -2.250374], [55.185983, -2.250466]], [[55.185779, -2.250732], [55.1857, -2.250833]], [[55.1857, -2.250833], [55.185619, -2.250931]], [[55.185619, -2.250931], [55.185542, -2.251033]], [[55.185542, -2.251033], [55.18547, -2.251141]], [[55.18547, -2.251141], [55.185407, -2.251283]], [[55.185407, -2.251283], [55.185342, -2.251417]], [[55.185342, -2.251417], [55.185289, -2.251544]], [[55.185289, -2.251544], [55.185233, -2.251679]], [[55.185233, -2.251679], [55.185161, -2.251776]], [[55.185161, -2.251776], [55.185072, -2.25185]], [[55.185072, -2.25185], [55.184981, -2.251928]], [[55.184981, -2.251928], [55.184888, -2.251999]], [[55.184888, -2.251999], [55.184798, -2.252046]], [[55.184798, -2.252046], [55.184701, -2.252075]], [[55.184701, -2.252075], [55.184613, -2.252138]], [[55.184613, -2.252138], [55.184524, -2.252187]], [[55.184524, -2.252187], [55.184433, -2.252246]], [[55.184433, -2.252246], [55.184346, -2.252317]], [[55.184346, -2.252317], [55.184248, -2.252368]], [[55.184248, -2.252368], [55.184156, -2.252423]], [[55.184156, -2.252423], [55.184058, -2.252482]], [[55.184058, -2.252482], [55.183971, -2.252547]], [[55.183971, -2.252547], [55.18387, -2.252566]], [[55.18387, -2.252566], [55.183771, -2.252512]], [[55.183771, -2.252512], [55.183671, -2.252477]], [[55.183491, -2.252432], [55.183399, -2.252415]], [[55.183399, -2.252415], [55.183301, -2.25239]], [[55.183301, -2.25239], [55.183202, -2.252361]], [[55.183202, -2.252361], [55.183111, -2.252328]], [[55.183111, -2.252328], [55.183013, -2.252284]], [[55.183013, -2.252284], [55.182917, -2.252265]], [[55.182917, -2.252265], [55.182821, -2.252241]], [[55.182726, -2.252202], [55.182626, -2.25218]], [[55.182626, -2.25218], [55.182529, -2.252146]], [[55.181317, -2.249671], [55.181282, -2.249522]], [[55.180973, -2.247371], [55.180944, -2.247209]], [[55.180767, -2.246594], [55.180687, -2.246681]], [[55.180687, -2.246681], [55.180602, -2.246773]], [[55.180602, -2.246773], [55.180521, -2.246864]], [[55.180521, -2.246864], [55.180441, -2.246946]], [[55.180441, -2.246946], [55.180356, -2.247029]], [[55.180356, -2.247029], [55.180259, -2.247071]], [[55.180156, -2.247055], [55.180061, -2.247024]], [[55.179267, -2.245383], [55.179174, -2.245329]], [[55.179174, -2.245329], [55.179082, -2.245277]], [[55.179082, -2.245277], [55.179001, -2.245174]], [[55.178745, -2.244999], [55.178705, -2.244844]], [[55.178705, -2.244844], [55.178642, -2.244718]], [[55.178642, -2.244718], [55.178584, -2.244593]], [[55.178584, -2.244593], [55.178499, -2.244488]], [[55.178499, -2.244488], [55.178402, -2.244448]], [[55.178402, -2.244448], [55.178349, -2.244316]], [[55.177758, -2.244509], [55.177686, -2.244632]], [[55.177064, -2.245307], [55.177015, -2.245439]], [[55.176977, -2.245588], [55.176899, -2.24568]], [[55.176899, -2.24568], [55.176811, -2.245763]], [[55.176811, -2.245763], [55.176743, -2.245879]], [[55.176743, -2.245879], [55.176668, -2.245987]], [[55.176668, -2.245987], [55.17657, -2.246021]], [[55.17657, -2.246021], [55.176483, -2.246065]], [[55.176483, -2.246065], [55.176392, -2.246085]], [[55.176392, -2.246085], [55.176295, -2.246125]], [[55.175931, -2.246285], [55.175833, -2.246333]], [[55.175833, -2.246333], [55.175743, -2.246385]], [[55.174456, -2.24708], [55.17436, -2.247079]], [[55.17436, -2.247079], [55.174258, -2.247065]], [[55.171473, -2.245381], [55.171383, -2.245325]], [[55.171383, -2.245325], [55.171294, -2.245268]], [[55.171294, -2.245268], [55.171201, -2.245218]], [[55.171201, -2.245218], [55.171112, -2.245145]], [[55.171112, -2.245145], [55.171023, -2.24509]], [[55.171023, -2.24509], [55.170925, -2.245041]], [[55.170749, -2.244915], [55.170661, -2.244847]], [[55.170661, -2.244847], [55.170573, -2.244798]], [[55.170477, -2.244746], [55.170382, -2.244702]], [[55.170382, -2.244702], [55.170285, -2.244637]], [[55.170285, -2.244637], [55.170194, -2.244581]], [[55.170194, -2.244581], [55.170105, -2.24453]], [[55.170105, -2.24453], [55.170006, -2.244485]], [[55.169919, -2.244436], [55.169825, -2.244376]], [[55.169825, -2.244376], [55.169739, -2.244303]], [[55.169739, -2.244303], [55.169642, -2.244263]], [[55.169553, -2.24422], [55.169455, -2.244174]], [[55.169455, -2.244174], [55.169365, -2.244144]], [[55.169365, -2.244144], [55.169274, -2.244122]], [[55.168852, -2.243731], [55.168756, -2.243666]], [[55.168756, -2.243666], [55.168672, -2.243592]], [[55.168672, -2.243592], [55.168579, -2.243546]], [[55.168579, -2.243546], [55.168477, -2.243507]], [[55.168477, -2.243507], [55.168387, -2.243461]], [[55.168286, -2.243433], [55.168193, -2.243376]], [[55.167595, -2.24335], [55.167517, -2.243441]], [[55.167333, -2.243539], [55.167239, -2.24354]], [[55.1666, -2.243511], [55.166507, -2.243533]], [[55.166227, -2.243434], [55.166134, -2.243455]], [[55.165593, -2.243335], [55.165495, -2.243357]], [[55.165495, -2.243357], [55.165398, -2.243406]], [[55.165398, -2.243406], [55.165305, -2.243457]], [[55.165305, -2.243457], [55.165215, -2.243523]], [[55.164708, -2.243972], [55.164623, -2.244057]], [[55.164623, -2.244057], [55.164539, -2.244121]], [[55.164444, -2.244188], [55.164355, -2.244212]], [[55.164355, -2.244212], [55.164266, -2.244233]], [[55.164266, -2.244233], [55.16417, -2.244251]], [[55.16417, -2.244251], [55.164077, -2.24428]], [[55.163987, -2.244341], [55.163905, -2.244409]], [[55.163905, -2.244409], [55.163818, -2.244459]], [[55.163818, -2.244459], [55.163729, -2.2445]], [[55.163462, -2.244507], [55.163364, -2.244533]], [[55.163364, -2.244533], [55.163275, -2.244561]], [[55.163275, -2.244561], [55.163181, -2.244554]], [[55.163181, -2.244554], [55.163092, -2.244532]], [[55.163092, -2.244532], [55.162995, -2.244527]], [[55.162363, -2.244615], [55.162268, -2.244594]], [[55.159777, -2.243593], [55.159675, -2.243595]], [[55.159675, -2.243595], [55.159584, -2.243602]], [[55.159584, -2.243602], [55.159485, -2.243615]], [[55.159394, -2.243645], [55.159299, -2.243672]], [[55.159299, -2.243672], [55.159205, -2.243678]], [[55.159205, -2.243678], [55.159112, -2.243688]], [[55.159112, -2.243688], [55.159018, -2.243697]], [[55.159018, -2.243697], [55.158916, -2.243701]], [[55.158916, -2.243701], [55.158821, -2.243731]], [[55.158821, -2.243731], [55.158729, -2.243763]], [[55.15863, -2.243787], [55.15853, -2.243781]], [[55.15853, -2.243781], [55.158437, -2.243727]], [[55.158437, -2.243727], [55.158347, -2.243746]], [[55.158257, -2.24376], [55.158156, -2.243779]], [[55.158156, -2.243779], [55.158054, -2.243785]], [[55.158054, -2.243785], [55.157959, -2.243797]], [[55.157959, -2.243797], [55.157864, -2.243779]], [[55.157864, -2.243779], [55.157773, -2.243805]], [[55.157773, -2.243805], [55.157679, -2.243833]], [[55.157679, -2.243833], [55.15759, -2.243857]], [[55.15759, -2.243857], [55.157494, -2.243884]], [[55.157494, -2.243884], [55.157395, -2.243924]], [[55.157395, -2.243924], [55.157293, -2.243941]], [[55.157293, -2.243941], [55.157202, -2.243921]], [[55.15683, -2.243765], [55.156749, -2.243691]], [[55.156749, -2.243691], [55.156658, -2.243629]], [[55.1564, -2.243406], [55.156315, -2.243332]], [[55.156315, -2.243332], [55.156229, -2.243258]], [[55.156229, -2.243258], [55.15614, -2.24317]], [[55.156051, -2.243083], [55.155976, -2.242968]], [[55.155976, -2.242968], [55.155893, -2.242862]], [[55.155893, -2.242862], [55.155806, -2.242765]], [[55.155806, -2.242765], [55.155714, -2.242677]], [[55.155714, -2.242677], [55.155634, -2.242606]], [[55.155634, -2.242606], [55.155541, -2.242534]], [[55.155541, -2.242534], [55.155443, -2.242471]], [[55.155443, -2.242471], [55.155356, -2.242424]], [[55.155048, -2.242183], [55.15495, -2.242128]], [[55.15495, -2.242128], [55.154854, -2.242059]], [[55.154854, -2.242059], [55.154764, -2.241996]], [[55.154764, -2.241996], [55.154765, -2.241821]], [[55.154598, -2.241685], [55.154502, -2.241655]], [[55.154502, -2.241655], [55.154409, -2.241604]], [[55.154409, -2.241604], [55.154319, -2.241584]], [[55.154319, -2.241584], [55.15424, -2.241489]], [[55.15424, -2.241489], [55.154178, -2.241346]], [[55.154123, -2.241221], [55.154056, -2.241091]], [[55.154056, -2.241091], [55.153972, -2.240992]], [[55.153898, -2.240875], [55.153853, -2.240731]], [[55.153812, -2.24058], [55.153767, -2.240421]], [[55.153767, -2.240421], [55.153719, -2.240274]], [[55.153544, -2.240076], [55.153476, -2.240201]], [[55.153476, -2.240201], [55.153404, -2.240298]], [[55.153404, -2.240298], [55.153329, -2.240387]], [[55.153329, -2.240387], [55.153253, -2.240477]], [[55.153253, -2.240477], [55.153177, -2.24058]], [[55.153177, -2.24058], [55.153091, -2.240657]], [[55.153091, -2.240657], [55.153016, -2.240752]], [[55.153016, -2.240752], [55.152938, -2.240853]], [[55.152938, -2.240853], [55.152864, -2.240947]], [[55.152864, -2.240947], [55.152786, -2.241032]], [[55.152786, -2.241032], [55.152712, -2.241126]], [[55.152712, -2.241126], [55.152632, -2.241212]], [[55.152632, -2.241212], [55.152553, -2.241313]], [[55.152553, -2.241313], [55.152468, -2.241415]], [[55.152468, -2.241415], [55.15239, -2.24151]], [[55.15239, -2.24151], [55.152309, -2.241619]], [[55.152309, -2.241619], [55.152225, -2.241721]], [[55.152225, -2.241721], [55.152131, -2.241792]], [[55.152131, -2.241792], [55.152053, -2.241904]], [[55.152053, -2.241904], [55.151982, -2.242026]], [[55.151982, -2.242026], [55.15191, -2.24215]], [[55.151833, -2.242246], [55.15176, -2.242345]], [[55.15176, -2.242345], [55.151688, -2.242463]], [[55.151688, -2.242463], [55.151617, -2.242586]], [[55.151617, -2.242586], [55.151544, -2.242696]], [[55.151544, -2.242696], [55.151469, -2.242788]], [[55.151382, -2.242867], [55.151288, -2.242927]], [[55.151288, -2.242927], [55.151202, -2.242991]], [[55.151202, -2.242991], [55.151112, -2.243024]], [[55.151112, -2.243024], [55.151021, -2.243054]], [[55.151021, -2.243054], [55.150921, -2.24308]], [[55.150921, -2.24308], [55.150824, -2.243109]], [[55.150824, -2.243109], [55.150728, -2.243129]], [[55.150458, -2.24316], [55.150364, -2.243157]], [[55.150364, -2.243157], [55.150266, -2.243156]], [[55.150266, -2.243156], [55.150167, -2.243151]], [[55.150167, -2.243151], [55.150071, -2.243151]], [[55.150071, -2.243151], [55.149976, -2.243144]], [[55.149976, -2.243144], [55.149879, -2.243146]], [[55.149879, -2.243146], [55.149779, -2.243139]], [[55.149779, -2.243139], [55.149689, -2.243145]], [[55.149689, -2.243145], [55.149591, -2.243153]], [[55.149591, -2.243153], [55.149497, -2.243181]], [[55.149497, -2.243181], [55.149403, -2.243201]], [[55.149403, -2.243201], [55.149308, -2.243233]], [[55.149308, -2.243233], [55.149212, -2.243259]], [[55.149212, -2.243259], [55.149116, -2.243291]], [[55.149116, -2.243291], [55.149019, -2.243313]], [[55.149019, -2.243313], [55.148923, -2.243335]], [[55.148923, -2.243335], [55.148832, -2.243352]], [[55.148832, -2.243352], [55.148732, -2.243379]], [[55.148732, -2.243379], [55.148634, -2.243409]], [[55.148634, -2.243409], [55.148537, -2.243438]], [[55.148537, -2.243438], [55.148438, -2.243468]], [[55.148161, -2.243545], [55.148068, -2.243569]], [[55.148068, -2.243569], [55.147978, -2.243607]], [[55.147725, -2.243723], [55.14765, -2.243828]], [[55.14765, -2.243828], [55.147564, -2.243901]], [[55.147564, -2.243901], [55.14748, -2.243964]], [[55.147221, -2.244107], [55.147132, -2.244153]], [[55.147132, -2.244153], [55.147039, -2.244194]], [[55.147039, -2.244194], [55.146948, -2.244244]], [[55.146948, -2.244244], [55.146853, -2.244287]], [[55.146853, -2.244287], [55.146753, -2.244321]], [[55.146753, -2.244321], [55.146658, -2.244348]], [[55.146658, -2.244348], [55.146561, -2.244387]], [[55.146561, -2.244387], [55.146464, -2.244418]], [[55.146464, -2.244418], [55.146372, -2.24444]], [[55.146372, -2.24444], [55.146281, -2.244468]], [[55.146281, -2.244468], [55.146189, -2.244497]], [[55.146189, -2.244497], [55.146092, -2.24452]], [[55.146092, -2.24452], [55.145996, -2.244562]], [[55.145996, -2.244562], [55.145905, -2.244616]], [[55.145905, -2.244616], [55.145827, -2.244718]], [[55.145714, -2.244988], [55.145669, -2.245124]], [[55.145669, -2.245124], [55.145619, -2.245257]], [[55.145619, -2.245257], [55.145571, -2.245413]], [[55.145571, -2.245413], [55.145516, -2.245555]], [[55.145516, -2.245555], [55.145461, -2.245704]], [[55.145461, -2.245704], [55.145409, -2.245848]], [[55.145409, -2.245848], [55.145365, -2.245994]], [[55.145365, -2.245994], [55.145311, -2.246128]], [[55.145311, -2.246128], [55.145245, -2.24625]], [[55.144273, -2.249654], [55.14428, -2.249831]], [[55.14428, -2.249831], [55.144292, -2.250008]], [[55.14431, -2.250354], [55.144316, -2.250523]], [[55.144089, -2.252218], [55.144066, -2.252378]], [[55.144099, -2.253013], [55.144142, -2.253177]], [[55.144142, -2.253177], [55.14419, -2.253327]], [[55.144289, -2.253613], [55.14436, -2.25372]], [[55.143952, -2.254727], [55.143889, -2.254844]], [[55.143889, -2.254844], [55.143823, -2.254957]], [[55.143138, -2.255389], [55.143052, -2.25546]], [[55.142963, -2.255493], [55.142862, -2.25552]], [[55.142862, -2.25552], [55.142769, -2.255554]], [[55.142415, -2.255636], [55.142498, -2.255746]], [[55.142639, -2.256318], [55.142617, -2.25648]], [[55.142617, -2.25648], [55.142626, -2.256651]], [[55.142855, -2.256951], [55.142902, -2.257088]], [[55.142902, -2.257088], [55.142986, -2.257201]], [[55.143068, -2.257304], [55.143135, -2.257434]], [[55.143135, -2.257434], [55.14319, -2.257568]], [[55.14319, -2.257568], [55.143234, -2.257722]], [[55.143234, -2.258046], [55.143293, -2.258172]], [[55.143366, -2.258474], [55.143405, -2.258633]], [[55.14349, -2.259417], [55.143443, -2.259555]], [[55.143443, -2.259555], [55.14344, -2.25973]], [[55.143428, -2.259895], [55.143438, -2.260056]], [[55.143438, -2.260056], [55.143442, -2.260217]], [[55.143561, -2.261284], [55.143608, -2.261437]], [[55.143608, -2.261437], [55.143662, -2.261565]], [[55.143924, -2.261646], [55.144013, -2.261575]], [[55.144013, -2.261575], [55.144111, -2.261542]], [[55.144111, -2.261542], [55.144212, -2.261514]], [[55.144212, -2.261514], [55.144304, -2.261454]], [[55.143482, -2.262002], [55.14339, -2.262009]], [[55.142641, -2.26189], [55.142545, -2.261896]], [[55.142545, -2.261896], [55.142445, -2.261891]], [[55.141665, -2.261893], [55.141572, -2.261904]], [[55.141572, -2.261904], [55.141482, -2.261893]], [[55.1413, -2.261891], [55.141205, -2.261902]], [[55.141205, -2.261902], [55.14111, -2.261887]], [[55.140254, -2.261565], [55.140172, -2.261473]], [[55.140172, -2.261473], [55.140078, -2.261401]], [[55.140078, -2.261401], [55.139993, -2.261334]], [[55.139993, -2.261334], [55.139903, -2.2613]], [[55.138178, -2.259778], [55.138094, -2.259693]], [[55.138094, -2.259693], [55.138017, -2.259605]], [[55.138017, -2.259605], [55.137936, -2.25953]], [[55.137936, -2.25953], [55.137852, -2.259467]], [[55.137401, -2.259231], [55.137312, -2.259165]], [[55.137312, -2.259165], [55.137228, -2.25908]], [[55.137228, -2.25908], [55.137152, -2.258987]], [[55.136819, -2.25861], [55.136743, -2.258486]], [[55.136743, -2.258486], [55.136678, -2.258373]], [[55.136678, -2.258373], [55.136603, -2.258273]], [[55.136603, -2.258273], [55.136526, -2.258183]], [[55.136526, -2.258183], [55.13645, -2.258081]], [[55.13645, -2.258081], [55.13638, -2.257978]], [[55.136296, -2.25787], [55.136215, -2.257756]], [[55.136215, -2.257756], [55.136137, -2.257673]], [[55.136072, -2.257549], [55.136012, -2.257433]], [[55.126606, -2.253682], [55.126529, -2.253769]], [[55.12531, -2.265733], [55.125228, -2.265833]], [[55.125228, -2.265833], [55.125136, -2.265894]], [[55.125136, -2.265894], [55.125054, -2.265972]], [[55.125054, -2.265972], [55.124969, -2.266047]], [[55.124969, -2.266047], [55.124881, -2.26612]], [[55.124881, -2.26612], [55.1248, -2.266209]], [[55.1248, -2.266209], [55.124713, -2.266268]], [[55.124713, -2.266268], [55.124623, -2.266281]], [[55.124623, -2.266281], [55.12453, -2.266259]], [[55.12453, -2.266259], [55.124441, -2.266301]], [[55.120603, -2.268487], [55.120506, -2.268521]], [[55.120506, -2.268521], [55.12042, -2.26857]], [[55.120234, -2.268639], [55.120146, -2.268681]], [[55.120048, -2.268712], [55.119952, -2.268762]], [[55.119952, -2.268762], [55.119862, -2.268793]], [[55.119519, -2.269005], [55.119426, -2.269051]], [[55.119426, -2.269051], [55.119337, -2.269099]], [[55.119252, -2.269152], [55.119159, -2.269201]], [[55.119159, -2.269201], [55.119059, -2.269229]], [[55.118231, -2.269437], [55.118137, -2.269462]], [[55.118137, -2.269462], [55.118046, -2.26945]], [[55.117943, -2.269448], [55.11785, -2.269455]], [[55.11785, -2.269455], [55.117758, -2.269458]], [[55.117006, -2.26975], [55.11691, -2.269767]], [[55.11691, -2.269767], [55.116818, -2.269808]], [[55.116818, -2.269808], [55.116724, -2.269849]], [[55.116724, -2.269849], [55.116635, -2.269891]], [[55.116635, -2.269891], [55.11654, -2.269929]], [[55.11654, -2.269929], [55.116441, -2.269963]], [[55.116441, -2.269963], [55.116348, -2.270003]], [[55.116158, -2.270077], [55.116066, -2.270113]], [[55.116066, -2.270113], [55.115965, -2.270153]], [[55.115965, -2.270153], [55.115868, -2.270165]], [[55.114069, -2.268738], [55.113991, -2.268843]], [[55.113923, -2.268947], [55.113853, -2.269046]], [[55.113853, -2.269046], [55.113773, -2.269126]], [[55.113773, -2.269126], [55.113694, -2.269207]], [[55.113292, -2.268916], [55.113271, -2.26876]], [[55.113168, -2.268487], [55.11311, -2.268354]], [[55.108941, -2.271197], [55.108855, -2.271285]], [[55.108855, -2.271285], [55.108771, -2.271368]], [[55.108686, -2.271446], [55.108597, -2.271537]], [[55.106793, -2.273296], [55.106707, -2.273353]], [[55.105702, -2.274], [55.10561, -2.27406]], [[55.104368, -2.274941], [55.10428, -2.274995]], [[55.10428, -2.274995], [55.104195, -2.275061]], [[55.104195, -2.275061], [55.104111, -2.275141]], [[55.104111, -2.275141], [55.10402, -2.275224]], [[55.103236, -2.275827], [55.10315, -2.275908]], [[55.10315, -2.275908], [55.10306, -2.275979]], [[55.10306, -2.275979], [55.10298, -2.276068]], [[55.10298, -2.276068], [55.10289, -2.276122]], [[55.10289, -2.276122], [55.102795, -2.276192]], [[55.101682, -2.277066], [55.101588, -2.277121]], [[55.101412, -2.277229], [55.101323, -2.277277]], [[55.101323, -2.277277], [55.101237, -2.277334]], [[55.101237, -2.277334], [55.101146, -2.277371]], [[55.101146, -2.277371], [55.101053, -2.277408]], [[55.101053, -2.277408], [55.10096, -2.277455]], [[55.10096, -2.277455], [55.100862, -2.277501]], [[55.100862, -2.277501], [55.100771, -2.277562]], [[55.100676, -2.277601], [55.100584, -2.277646]], [[55.100403, -2.277739], [55.100323, -2.277819]], [[55.100323, -2.277819], [55.100278, -2.277973]], [[55.100195, -2.278445], [55.100155, -2.278601]], [[55.100155, -2.278601], [55.100108, -2.278735]], [[55.100108, -2.278735], [55.100065, -2.278874]], [[55.100065, -2.278874], [55.100014, -2.279007]], [[55.100014, -2.279007], [55.099965, -2.279161]], [[55.099965, -2.279161], [55.099917, -2.27932]], [[55.099747, -2.279925], [55.099709, -2.280075]], [[55.09959, -2.280541], [55.099579, -2.280699]], [[55.099818, -2.281961], [55.09985, -2.282124]], [[55.09985, -2.282124], [55.099894, -2.282281]], [[55.099968, -2.282594], [55.100005, -2.282762]], [[55.100005, -2.282762], [55.100047, -2.282917]], [[55.100193, -2.283726], [55.100227, -2.283885]], [[55.100227, -2.283885], [55.100256, -2.284035]], [[55.100256, -2.284035], [55.100285, -2.284185]], [[55.100285, -2.284185], [55.100326, -2.284344]], [[55.100386, -2.284854], [55.100394, -2.28502]], [[55.100394, -2.28502], [55.100407, -2.285175]], [[55.100407, -2.285175], [55.10043, -2.285336]], [[55.10043, -2.285336], [55.100451, -2.28549]], [[55.100512, -2.285812], [55.100554, -2.285956]], [[55.100648, -2.286235], [55.100688, -2.286395]], [[55.100688, -2.286395], [55.100721, -2.286555]], [[55.100721, -2.286555], [55.100751, -2.286719]], [[55.100751, -2.286719], [55.100777, -2.286892]], [[55.100777, -2.286892], [55.100812, -2.287046]], [[55.100892, -2.287529], [55.100902, -2.287695]], [[55.100902, -2.287695], [55.100897, -2.287872]], [[55.100897, -2.287872], [55.100884, -2.288037]], [[55.100884, -2.288037], [55.100859, -2.288199]], [[55.100859, -2.288199], [55.100822, -2.288344]], [[55.100731, -2.288999], [55.100709, -2.289164]], [[55.100709, -2.289164], [55.100682, -2.289316]], [[55.100682, -2.289316], [55.100668, -2.289476]], [[55.100668, -2.289476], [55.100657, -2.289638]], [[55.100657, -2.289638], [55.100655, -2.289805]], [[55.100655, -2.289805], [55.100649, -2.289975]], [[55.100649, -2.289975], [55.100627, -2.290129]], [[55.100336, -2.290951], [55.100252, -2.291013]], [[55.098174, -2.288841], [55.098086, -2.288803]], [[55.098086, -2.288803], [55.09799, -2.288773]], [[55.09799, -2.288773], [55.097897, -2.28876]], [[55.097897, -2.28876], [55.097805, -2.288775]], [[55.097514, -2.288873], [55.097414, -2.288867]], [[55.097414, -2.288867], [55.097313, -2.288856]], [[55.097313, -2.288856], [55.097209, -2.28884]], [[55.097209, -2.28884], [55.097113, -2.288817]], [[55.097113, -2.288817], [55.097017, -2.288771]], [[55.097017, -2.288771], [55.096914, -2.28874]], [[55.096914, -2.28874], [55.096818, -2.288689]], [[55.096818, -2.288689], [55.096724, -2.288619]], [[55.096724, -2.288619], [55.096632, -2.288573]], [[55.093643, -2.287021], [55.093546, -2.287014]], [[55.093546, -2.287014], [55.093451, -2.287055]], [[55.093451, -2.287055], [55.093355, -2.287078]], [[55.09283, -2.286746], [55.092743, -2.286675]], [[55.092569, -2.28651], [55.092479, -2.286449]], [[55.091731, -2.288393], [55.09165, -2.288481]], [[55.09165, -2.288481], [55.091566, -2.288558]], [[55.091478, -2.288645], [55.091393, -2.28873]], [[55.091393, -2.28873], [55.091306, -2.288816]], [[55.091306, -2.288816], [55.09121, -2.288881]], [[55.09121, -2.288881], [55.09113, -2.288972]], [[55.090292, -2.289659], [55.090207, -2.289723]], [[55.089455, -2.291805], [55.089426, -2.291972]], [[55.089155, -2.292942], [55.089118, -2.293092]], [[55.089019, -2.293372], [55.088982, -2.293527]], [[55.088982, -2.293527], [55.088953, -2.293685]], [[55.088953, -2.293685], [55.088905, -2.293829]], [[55.084671, -2.297382], [55.084577, -2.29744]], [[55.078467, -2.299332], [55.078419, -2.299478]], [[55.076801, -2.303726], [55.076756, -2.303867]], [[55.076471, -2.304718], [55.076412, -2.30485]], [[55.076412, -2.30485], [55.076353, -2.304993]], [[55.076353, -2.304993], [55.076302, -2.305145]], [[55.076302, -2.305145], [55.076241, -2.305283]], [[55.076241, -2.305283], [55.076175, -2.305416]], [[55.076175, -2.305416], [55.076119, -2.305548]], [[55.076119, -2.305548], [55.076058, -2.305685]], [[55.076058, -2.305685], [55.076005, -2.305837]], [[55.076005, -2.305837], [55.075958, -2.305972]], [[55.075958, -2.305972], [55.075904, -2.306106]], [[55.075392, -2.307317], [55.075332, -2.307456]], [[55.075332, -2.307456], [55.075275, -2.307606]], [[55.075275, -2.307606], [55.075228, -2.307744]], [[55.075228, -2.307744], [55.075167, -2.307872]], [[55.075167, -2.307872], [55.075118, -2.308007]], [[55.075118, -2.308007], [55.075064, -2.308133]], [[55.074953, -2.308415], [55.074906, -2.308565]], [[55.074906, -2.308565], [55.07484, -2.308703]], [[55.07438, -2.308978], [55.074284, -2.309042]], [[55.074284, -2.309042], [55.074197, -2.309128]], [[55.074197, -2.309128], [55.074105, -2.309194]], [[55.073505, -2.309741], [55.073427, -2.309826]], [[55.072759, -2.310345], [55.072672, -2.310412]], [[55.072249, -2.310809], [55.072159, -2.310871]], [[55.072159, -2.310871], [55.07207, -2.310924]], [[55.071902, -2.311081], [55.071824, -2.311165]], [[55.071573, -2.311364], [55.071478, -2.311423]], [[55.070684, -2.313737], [55.070688, -2.313895]], [[55.070728, -2.314881], [55.070729, -2.31504]], [[55.070729, -2.31504], [55.070727, -2.315218]], [[55.070727, -2.315218], [55.070734, -2.315381]], [[55.070734, -2.315381], [55.070753, -2.315554]], [[55.07076, -2.315879], [55.07077, -2.316042]], [[55.07077, -2.316042], [55.070767, -2.316222]], [[55.070767, -2.316222], [55.070775, -2.316401]], [[55.070775, -2.316401], [55.07078, -2.316564]], [[55.07078, -2.316564], [55.070794, -2.316722]], [[55.067634, -2.317212], [55.067546, -2.317161]], [[55.065527, -2.316283], [55.065436, -2.316311]], [[55.063245, -2.31761], [55.063175, -2.317732]], [[55.063175, -2.317732], [55.063111, -2.317853]], [[55.063111, -2.317853], [55.063035, -2.317938]], [[55.062808, -2.31824], [55.062733, -2.318351]], [[55.062733, -2.318351], [55.062651, -2.31843]], [[55.062651, -2.31843], [55.062568, -2.318512]], [[55.062568, -2.318512], [55.062488, -2.318602]], [[55.061452, -2.318844], [55.061354, -2.318858]], [[55.061354, -2.318858], [55.061263, -2.318929]], [[55.060538, -2.319187], [55.06045, -2.319252]], [[55.060077, -2.319302], [55.059981, -2.319325]], [[55.056841, -2.319643], [55.056744, -2.319617]], [[55.056744, -2.319617], [55.056655, -2.319588]], [[55.056442, -2.319736], [55.056359, -2.319821]], [[55.056359, -2.319821], [55.056311, -2.319965]], [[55.056311, -2.319965], [55.056255, -2.320104]], [[55.056255, -2.320104], [55.056205, -2.320253]], [[55.056205, -2.320253], [55.056161, -2.320391]], [[55.056161, -2.320391], [55.056112, -2.320532]], [[55.0557, -2.321447], [55.055613, -2.321515]], [[55.055613, -2.321515], [55.055535, -2.321614]], [[55.055535, -2.321614], [55.055449, -2.32171]], [[55.055449, -2.32171], [55.055383, -2.321832]], [[55.055383, -2.321832], [55.055323, -2.321953]], [[55.054385, -2.324606], [55.05433, -2.324733]], [[55.05433, -2.324733], [55.05427, -2.324865]], [[55.05427, -2.324865], [55.054204, -2.324971]], [[55.054204, -2.324971], [55.054132, -2.325085]], [[55.054132, -2.325085], [55.054048, -2.325172]], [[55.054048, -2.325172], [55.053976, -2.325272]], [[55.053822, -2.325475], [55.053741, -2.325579]], [[55.053741, -2.325579], [55.053684, -2.325709]], [[55.053684, -2.325709], [55.053628, -2.325858]], [[55.053458, -2.326444], [55.053418, -2.326592]], [[55.053418, -2.326592], [55.053372, -2.326731]], [[55.053372, -2.326731], [55.053331, -2.326883]], [[55.053331, -2.326883], [55.053275, -2.327035]], [[55.053275, -2.327035], [55.053225, -2.327187]], [[55.053225, -2.327187], [55.053174, -2.32734]], [[55.052952, -2.328102], [55.052931, -2.328265]], [[55.052931, -2.328265], [55.052867, -2.328379]], [[55.052679, -2.329079], [55.052629, -2.329216]], [[55.052629, -2.329216], [55.052584, -2.329356]], [[55.052188, -2.330895], [55.052141, -2.331048]], [[55.051941, -2.33161], [55.051891, -2.331747]], [[55.050708, -2.334956], [55.050642, -2.335066]], [[55.046771, -2.339683], [55.046677, -2.339724]], [[55.046677, -2.339724], [55.046598, -2.339826]], [[55.046598, -2.339826], [55.046529, -2.339938]], [[55.046529, -2.339938], [55.046463, -2.340053]], [[55.041347, -2.344331], [55.041245, -2.344337]], [[55.041245, -2.344337], [55.041152, -2.344317]], [[55.040972, -2.344276], [55.040877, -2.344215]], [[55.040877, -2.344215], [55.040784, -2.344185]], [[55.040784, -2.344185], [55.040689, -2.344156]], [[55.040689, -2.344156], [55.040599, -2.344124]], [[55.04033, -2.343947], [55.040241, -2.343856]], [[55.040241, -2.343856], [55.040158, -2.343794]], [[55.040158, -2.343794], [55.040065, -2.343731]], [[55.040065, -2.343731], [55.039968, -2.343671]], [[55.039968, -2.343671], [55.039877, -2.343628]], [[55.039877, -2.343628], [55.039786, -2.343603]], [[55.039786, -2.343603], [55.039695, -2.343596]], [[55.039695, -2.343596], [55.039601, -2.343608]], [[55.039601, -2.343608], [55.039508, -2.34361]], [[55.039508, -2.34361], [55.039413, -2.343617]], [[55.039413, -2.343617], [55.03932, -2.343605]], [[55.03932, -2.343605], [55.039225, -2.343581]], [[55.039225, -2.343581], [55.039132, -2.343539]], [[55.039132, -2.343539], [55.03904, -2.343509]], [[55.03904, -2.343509], [55.038947, -2.343496]], [[55.038947, -2.343496], [55.038856, -2.343489]], [[55.038765, -2.343491], [55.038669, -2.343505]], [[55.038669, -2.343505], [55.038578, -2.343492]], [[55.038, -2.343563], [55.037899, -2.343562]], [[55.037899, -2.343562], [55.037803, -2.343553]], [[55.037803, -2.343553], [55.037713, -2.343556]], [[55.03751, -2.343594], [55.037417, -2.343616]], [[55.036393, -2.343647], [55.036297, -2.343618]], [[55.036297, -2.343618], [55.036198, -2.343574]], [[55.036198, -2.343574], [55.036098, -2.343523]], [[55.036098, -2.343523], [55.036001, -2.343486]], [[55.035429, -2.343274], [55.035334, -2.34325]], [[55.035334, -2.34325], [55.03523, -2.343258]], [[55.03523, -2.343258], [55.035131, -2.343259]], [[55.035031, -2.343274], [55.034931, -2.34327]], [[55.034931, -2.34327], [55.034835, -2.343266]], [[55.034835, -2.343266], [55.03474, -2.343272]], [[55.03474, -2.343272], [55.034641, -2.343296]], [[55.03425, -2.343378], [55.034156, -2.343406]], [[55.034156, -2.343406], [55.034057, -2.34344]], [[55.033968, -2.343471], [55.033872, -2.343486]], [[55.033872, -2.343486], [55.033776, -2.3435]], [[55.033776, -2.3435], [55.033684, -2.343504]], [[55.033684, -2.343504], [55.033591, -2.343526]], [[55.033207, -2.343593], [55.033112, -2.343618]], [[55.033112, -2.343618], [55.033009, -2.343611]], [[55.033009, -2.343611], [55.032906, -2.343607]], [[55.032906, -2.343607], [55.032808, -2.343623]], [[55.032808, -2.343623], [55.03271, -2.34363]], [[55.032453, -2.343846], [55.03237, -2.343939]], [[55.03237, -2.343939], [55.032294, -2.344041]], [[55.032005, -2.344497], [55.031934, -2.344596]], [[55.031934, -2.344596], [55.031863, -2.344699]], [[55.031863, -2.344699], [55.031779, -2.34478]], [[55.031779, -2.34478], [55.031694, -2.344878]], [[55.031393, -2.345261], [55.0313, -2.345338]], [[55.0313, -2.345338], [55.03122, -2.345418]], [[55.03106, -2.345586], [55.030974, -2.345691]], [[55.030974, -2.345691], [55.030889, -2.345776]], [[55.030889, -2.345776], [55.030805, -2.345878]], [[55.028219, -2.34319], [55.028128, -2.343263]], [[55.028128, -2.343263], [55.028045, -2.343326]], [[55.025804, -2.345275], [55.025728, -2.345374]], [[55.022268, -2.344639], [55.022178, -2.344665]], [[55.018671, -2.342019], [55.018573, -2.342004]], [[55.018573, -2.342004], [55.018484, -2.34198]], [[55.018484, -2.34198], [55.018388, -2.341972]], [[55.018388, -2.341972], [55.018294, -2.341967]], [[55.018294, -2.341967], [55.018198, -2.341959]], [[55.018198, -2.341959], [55.018107, -2.34195]], [[55.016496, -2.342049], [55.016401, -2.342052]], [[55.016401, -2.342052], [55.016307, -2.342078]], [[55.016307, -2.342078], [55.016213, -2.342114]], [[55.015882, -2.34222], [55.01578, -2.342225]], [[55.01578, -2.342225], [55.015687, -2.342241]], [[55.015409, -2.342351], [55.015318, -2.342376]], [[55.015318, -2.342376], [55.015231, -2.342437]], [[55.015231, -2.342437], [55.015144, -2.342485]], [[55.015144, -2.342485], [55.015044, -2.342531]], [[55.015044, -2.342531], [55.014949, -2.342565]], [[55.014949, -2.342565], [55.014859, -2.34263]], [[55.014859, -2.34263], [55.014761, -2.342662]], [[55.014761, -2.342662], [55.014668, -2.342701]], [[55.014668, -2.342701], [55.014572, -2.342746]], [[55.014572, -2.342746], [55.01447, -2.342784]], [[55.01447, -2.342784], [55.014378, -2.342852]], [[55.014378, -2.342852], [55.014296, -2.342918]], [[55.014296, -2.342918], [55.014197, -2.342967]], [[55.014197, -2.342967], [55.014097, -2.343015]], [[55.014097, -2.343015], [55.014004, -2.34307]], [[55.014004, -2.34307], [55.013926, -2.343163]], [[55.013926, -2.343163], [55.013859, -2.343284]], [[55.013859, -2.343284], [55.013768, -2.343304]], [[55.013768, -2.343304], [55.013667, -2.343288]], [[55.013667, -2.343288], [55.013571, -2.343342]], [[55.013571, -2.343342], [55.013489, -2.343408]], [[55.013489, -2.343408], [55.013403, -2.343482]], [[55.011097, -2.347896], [55.011056, -2.348043]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_90f65dc4863d9e10db3ab49092aca585);
        
    
            var poly_line_48975ef18e8fcecdb80c73b4cbd62d85 = L.polyline(
                [[[55.314724, -2.362675], [55.314649, -2.362775]], [[55.314649, -2.362775], [55.314622, -2.362794]], [[55.314622, -2.362794], [55.314549, -2.362898]], [[55.309353, -2.360055], [55.309304, -2.359915]], [[55.298796, -2.343031], [55.298696, -2.343006]], [[55.219037, -2.29065], [55.219033, -2.290483]], [[55.21935, -2.277589], [55.219439, -2.27764]], [[55.215083, -2.270201], [55.215085, -2.270036]], [[55.215093, -2.26988], [55.215088, -2.269709]], [[55.213057, -2.261466], [55.21303, -2.261314]], [[55.207236, -2.251836], [55.207162, -2.251741]], [[55.192899, -2.24692], [55.192816, -2.246994]], [[55.189684, -2.250902], [55.189586, -2.250934]], [[55.182016, -2.252038], [55.181935, -2.251946]], [[55.181935, -2.251946], [55.18194, -2.251934]], [[55.18194, -2.251934], [55.181847, -2.251883]], [[55.166125, -2.243452], [55.166028, -2.243447]], [[55.161949, -2.244586], [55.16186, -2.244525]], [[55.144126, -2.254751], [55.144126, -2.254824]], [[55.144126, -2.254824], [55.144222, -2.254273]], [[55.144444, -2.260975], [55.144505, -2.261101]], [[55.139714, -2.261141], [55.139628, -2.261068]], [[55.135857, -2.257174], [55.135786, -2.257068]], [[55.134011, -2.252406], [55.133928, -2.252344]], [[55.125495, -2.265615], [55.125405, -2.265683]], [[55.119778, -2.268809], [55.119695, -2.268873]], [[55.107223, -2.272965], [55.107142, -2.27304]], [[55.099894, -2.290786], [55.09992, -2.290618]], [[55.088352, -2.294942], [55.088266, -2.294866]], [[55.07909, -2.29837], [55.079, -2.298446]], [[55.070731, -2.31229], [55.070683, -2.312437]], [[55.063415, -2.317418], [55.06333, -2.317512]], [[55.054393, -2.324335], [55.054437, -2.324477]], [[55.052746, -2.328607], [55.052746, -2.328772]], [[55.024169, -2.343788], [55.024182, -2.343805]], [[55.024182, -2.343805], [55.024171, -2.343544]], [[55.023938, -2.343575], [55.02391, -2.343612]], [[55.019224, -2.342204], [55.019139, -2.342132]], [[55.010917, -2.348941], [55.010916, -2.348948]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_90f65dc4863d9e10db3ab49092aca585);
        
    
            color_line_90f65dc4863d9e10db3ab49092aca585.addTo(map_2fcb74bc5e955c45492fc94222343fa7);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-4---hadrians-wall-to-garigill" class="level3">
<h3 class="anchored" data-anchor-id="day-4---hadrians-wall-to-garigill">Day 4 - Hadrians Wall to Garigill</h3>
<p>Woke early and stuck my head out of the tent to a beautiful sunrise along the line of the wall.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957124451_10fbf2b565_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qd1nga" target="_blank">Worth Getting Out of Bed</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957124391_6863916db3_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qd1nf8" target="_blank">Sunrise on Hadrians Wall</a></figcaption>
</figure>
</div>
<p>Didn’t hang around too long, collapsed the tent and packed everything away fairly quickly to avoid getting in trouble for camping on (next to) an ancient monument. I don’t eat breakfast so off we went on the undulations of Hadrians Wall.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53957373263_27f0635f45_3k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qd2De2" target="_blank">Home for a week</a></figcaption>
</figure>
</div>
<p>Quickly reached the famous <a href="https://www.openstreetmap.org/node/2780078339" target="_blank">Sycamore Gap</a> passing a couple of climbers who were also camping/bivvying on the wall to make the walk-in to the crag extremely short.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930471518_3943379891_3k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaDLgQ" target="_blank">Sycamore Gap</a></figcaption>
</figure>
</div>
<p>Being up and walking early is lovely, its quiet and there aren’t many people about so it was nice avoiding whatever crowds were to arrive later in the day. There were a few like minded people about, one lady commenting the exact same thing, another walking from Cawfields to Sycamore Gap who had waved from across a gap. The countryside is really quite a friendly place, especially for those out on their own.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930455706_e5bb52d3c8_3k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaDFzd" target="_blank">Steel Rigg</a></figcaption>
</figure>
</div>
<p><a href="https://www.openstreetmap.org/way/273177270" target="_blank">Toilets</a> at Cawfields Lake were very welcome and there was also fresh water available which was useful for the coming day. Hadrians Wall petters out here and crosses some farmland where I met a couple of guys heading North on The Way and encouraged them onwards as they didn’t have too far to go compared to how far they had already come, which served to remind me how much further I still had to go!</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53929549557_905faaa9e6_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaz3cX" target="_blank">Milecastle, Cawfields, Hadrians Wall</a></figcaption>
</figure>
</div>
<p>Passing through <a href="https://www.openstreetmap.org/node/1024847171" target="_blank">Walltown Quarry</a> which has been beautifully transformed into a small nature reserve I stopped in the shop and grabbed a can of Sprite to drink to keep my energy up as I had decided not to detour into Greenhead in search of food (this turned out to be a mistake) and instead carried on passing <a href="https://www.openstreetmap.org/way/337980792" target="_blank">Thirlwall Castle</a>, although as I had a long way to go I only snapped a picture from outside and didn’t explore the grounds. As you cross the railway line shortly after <a href="https://www.openstreetmap.org/way/337970338" target="_blank">Thirlwall View</a> had a little honesty tuck shop for hikers of The Way to re-supply. I didn’t have any change so only took pictures rather than some food. Such tuck shops were to crop up a number of times along The Way and it was lovely to see how generous and helpful people could be towards strangers.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930699203_d7964a2ec8_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaEVXr" target="_blank">Juniper Cottage, Greenhead</a></figcaption>
</figure>
</div>
<p>I survived a game of <a href="https://en.wikipedia.org/wiki/Frogger" target="_blank">Frogger</a> on the A69 but was mildly alarmed by the sign on the gate which warned of biological hazards, although they only seemed to apply to those who undertaking work on telephone masts! The next few kilometers were fairly mundane going gently uphill through grazed fields and low lying moorland. After a couple of hours though and not having had any food I was starting to get tired, my feet were hurting and my pace slowed. It became hard work going up hill and for the first time in four days I wasn’t really enjoying myself. I stopped to cool my feet in a stream which helped a bit but then had more mundane terrain skirting the edge of arable land that led me up the valley.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930790839_c51294e1d2_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaFpcn" target="_blank">Live Shooting &amp; Bio-Security Area</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53929580647_e5ea532f4f_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qazcrZ" target="_blank">Cooling the feet</a></figcaption>
</figure>
</div>
<p>I hoped there would be somewhere to get a snack in Slaggyford but alas not but as I was planning to get to Garigill for the night and had to pass through Alston so figured I’d be able to eat on the way through. Looking at the map I decided that I wasn’t going to do what appeared to be a fairly mundane loop out across a hillside and instead head along the road into Alston.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930476081_2bcd221ea8_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaDMCv" target="_blank">Slaggyford Viaduct</a></figcaption>
</figure>
</div>
<p>Just after joining the road the smell of chips frying wafted up the road from <a href="https://www.thenookfarmshop.com/about" target="_blank">The Nook</a> and I knew instantly where I would be eating. They had burger night on so I ordered a delicious chicken burger which came with a healthy portion of chipps and quaffed a couple of cans of lemon Fanta. Feeling tired I asked staff if there was anywhere to camp in Alston, they didn’t think so but asked another customer who was local who confirmed this but advised to “<em>just camp on the village green, no one will care and lots of people do it</em>”. I thanked the staff and locals for advice and taking their advice shouldered the pack and crossed the adjacent field to reach a track that ran along the <a href="https://www.south-tynedale-railway.org.uk/" target="_blank">South Tynedale Railway</a> which was a nice compact and flat trail into Alston and took me from Northumberland into Cumberland.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930926870_fcf891eb34_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaG6CJ" target="_blank">Cumberland | Northumberland</a></figcaption>
</figure>
</div>
<p>Feeling invigorated by the food I stopped in the Alston House Hotel for a pint and after grabbing some supplies (viz.&nbsp;beer, sweets and lunch for the next day) set off up hill to my original target for the day, Garigill. I’d read about a diversion because the <a href="https://www.nationaltrail.co.uk/en_GB/short-routes/dryburn-bridge-closed-follow-diversion/?trail=pennine-way" target="_blank">Dryburn Bridge was closed due to flood damage</a> which took me a long an alternative trail on the north side of the river which didn’t look as though it had seen much traffic and involved hacking through shoulder height ferns in the fading light.</p>
<p>As I entered Garigill I met a lady out walking her dog who asked if I was intending on camping behind the village hall which I was. She advised me I might want to look elsewhere as there was a wedding reception in the hall that evening and suggested a spot down by the river which would be quieter. Again I was surprised at how welcoming and helpful people were to those trekking The Way and thanked her for her advice. I was too tired to go looking for alternatives though so when I got to the village hall spoke to a couple of guys outside having cigarettes saying I had been hoping to camp out the back that evening. They said I should just go through and pitch up and that I could even join the party and have some curry which was very generous but I was satiated and tired and just wanted to go to bed so I went through and pitched my tent in the far corner under a tree, had a beer and showed some curious children from the wedding what my tent was like then went to bed. A short while later I was woken though as some of the kids decided to use my tent as a target for throwing plastic bottles and cans at. I didn’t bother rising to the bate and stayed quiet in my tent. The music stopped around 23:00 and I heard some arguing (alcohol and families often result in high emotions) but at least the shower of plastic bottles and cans had stopped and I soon drifted off to sleep.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53929563447_5083e5d67e_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaz7kr" target="_blank">Wedding Reception in Garigill</a></figcaption>
</figure>
</div>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-5-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-1" aria-controls="tabset-5-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-5-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-2" aria-controls="tabset-5-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-5-1" class="tab-pane active" aria-labelledby="tabset-5-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb9-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-17"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-ced425f92de0f8f2305d" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-ced425f92de0f8f2305d">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.348998,-2.349042,-2.3492,-2.349357,-2.349516,-2.349512,-2.34967,-2.349827,-2.35,-2.350155,-2.35031,-2.350473,-2.350623,-2.350795,-2.350956,-2.351106,-2.35126,-2.351424,-2.351566,-2.351723,-2.351874,-2.352029,-2.352196,-2.352359,-2.352521,-2.352666,-2.35283,-2.352982,-2.353132,-2.353276,-2.353424,-2.353556,-2.353579,-2.353716,-2.353859,-2.353986,-2.354144,-2.354288,-2.354431,-2.354577,-2.354721,-2.35485,-2.354977,-2.355119,-2.355206,-2.355274,-2.355356,-2.355433,-2.355512,-2.355592,-2.355673,-2.355739,-2.355845,-2.355907,-2.35595,-2.356053,-2.356124,-2.356199,-2.356245,-2.356297,-2.35636,-2.356404,-2.356461,-2.356539,-2.35653,-2.35653,-2.356488,-2.356459,-2.356493,-2.356633,-2.356539,-2.356564,-2.356654,-2.356817,-2.356983,-2.357084,-2.357142,-2.357218,-2.357283,-2.357345,-2.357404,-2.357464,-2.357533,-2.357609,-2.357688,-2.357747,-2.357814,-2.357909,-2.358058,-2.358214,-2.358379,-2.358537,-2.358711,-2.358881,-2.359053,-2.359212,-2.359388,-2.359492,-2.359662,-2.359824,-2.360002,-2.360093,-2.360263,-2.360423,-2.360585,-2.360737,-2.360919,-2.361077,-2.36124,-2.361417,-2.361581,-2.361643,-2.361799,-2.361956,-2.362127,-2.362289,-2.362463,-2.362627,-2.362791,-2.362924,-2.36309,-2.363249,-2.363421,-2.363579,-2.363738,-2.363904,-2.364068,-2.364214,-2.364397,-2.364544,-2.364707,-2.364861,-2.365025,-2.365151,-2.3653,-2.365462,-2.365634,-2.365794,-2.365956,-2.366125,-2.366291,-2.366448,-2.36661,-2.366762,-2.366924,-2.367096,-2.367264,-2.367421,-2.367584,-2.367747,-2.367912,-2.368066,-2.368232,-2.368389,-2.368553,-2.368713,-2.368874,-2.369032,-2.369191,-2.369361,-2.369531,-2.369696,-2.369856,-2.370011,-2.370182,-2.370343,-2.370502,-2.370654,-2.370817,-2.370979,-2.371135,-2.371279,-2.371421,-2.371571,-2.371718,-2.37188,-2.372017,-2.372165,-2.372311,-2.372459,-2.37261,-2.372759,-2.372925,-2.373036,-2.373146,-2.373087,-2.373209,-2.373368,-2.373525,-2.37365,-2.373732,-2.373777,-2.37381,-2.373908,-2.373848,-2.373878,-2.373909,-2.373882,-2.37386,-2.373881,-2.373998,-2.374143,-2.374275,-2.374292,-2.374456,-2.374527,-2.374637,-2.374774,-2.37489,-2.375053,-2.375211,-2.375288,-2.37544,-2.375424,-2.375546,-2.375556,-2.375656,-2.37581,-2.375949,-2.37604,-2.376187,-2.376259,-2.376395,-2.376555,-2.376721,-2.376882,-2.377042,-2.377204,-2.377372,-2.377537,-2.377707,-2.377885,-2.378062,-2.378231,-2.378351,-2.378501,-2.378661,-2.378827,-2.37898,-2.379067,-2.37913,-2.379187,-2.379325,-2.379501,-2.379668,-2.379827,-2.379987,-2.380161,-2.380328,-2.380479,-2.380634,-2.380787,-2.380948,-2.381102,-2.381263,-2.381426,-2.381581,-2.381757,-2.381918,-2.382084,-2.382253,-2.382417,-2.382581,-2.38274,-2.38291,-2.38307,-2.383225,-2.383365,-2.383534,-2.38369,-2.383838,-2.383994,-2.384149,-2.384312,-2.384482,-2.384647,-2.384808,-2.384979,-2.385138,-2.385295,-2.385463,-2.385616,-2.385781,-2.385926,-2.38608,-2.386172,-2.38623,-2.386192,-2.386267,-2.386385,-2.386443,-2.386527,-2.386557,-2.386601,-2.38672,-2.386863,-2.387034,-2.387138,-2.387295,-2.387432,-2.387584,-2.387734,-2.387862,-2.387981,-2.388099,-2.388205,-2.388313,-2.388268,-2.388281,-2.388401,-2.388515,-2.388646,-2.388798,-2.388925,-2.389034,-2.389205,-2.389364,-2.389187,-2.389019,-2.388859,-2.388694,-2.388641,-2.388793,-2.388953,-2.389123,-2.389283,-2.389442,-2.389601,-2.389766,-2.38992,-2.390079,-2.390233,-2.390325,-2.390489,-2.390647,-2.39081,-2.390977,-2.391141,-2.391303,-2.39146,-2.39146,-2.391424,-2.391407,-2.391417,-2.391423,-2.391442,-2.391418,-2.391357,-2.391376,-2.391458,-2.391454,-2.391449,-2.391435,-2.391408,-2.391406,-2.391428,-2.391489,-2.391643,-2.391807,-2.391977,-2.392144,-2.392312,-2.392476,-2.392646,-2.392815,-2.392988,-2.393157,-2.393325,-2.393492,-2.393657,-2.393815,-2.393993,-2.394163,-2.394336,-2.394502,-2.394668,-2.394843,-2.395009,-2.395184,-2.395354,-2.395511,-2.395673,-2.395837,-2.396003,-2.396168,-2.39634,-2.396504,-2.396671,-2.396846,-2.397012,-2.397179,-2.397341,-2.39751,-2.39767,-2.397837,-2.397993,-2.398161,-2.398337,-2.398503,-2.39867,-2.398748,-2.398905,-2.399057,-2.399091,-2.399255,-2.399417,-2.399581,-2.399746,-2.399912,-2.400072,-2.400244,-2.400411,-2.400583,-2.400753,-2.400928,-2.401096,-2.401264,-2.401425,-2.401596,-2.401751,-2.401913,-2.402078,-2.402234,-2.402393,-2.402558,-2.402721,-2.402894,-2.402944,-2.403113,-2.403272,-2.403432,-2.40359,-2.403756,-2.403913,-2.404078,-2.404236,-2.404397,-2.404472,-2.404622,-2.404767,-2.404908,-2.405066,-2.40523,-2.405396,-2.405553,-2.405718,-2.405887,-2.406042,-2.4062,-2.406366,-2.40652,-2.406687,-2.40684,-2.407003,-2.407162,-2.407203,-2.407358,-2.40753,-2.407702,-2.407864,-2.408036,-2.408189,-2.408342,-2.408495,-2.408587,-2.408742,-2.408905,-2.409063,-2.409147,-2.409299,-2.409465,-2.409624,-2.409767,-2.409912,-2.410062,-2.410187,-2.410316,-2.410417,-2.410528,-2.410637,-2.410757,-2.410841,-2.41092,-2.411008,-2.41115,-2.411273,-2.411373,-2.411459,-2.411483,-2.411629,-2.411761,-2.411883,-2.411997,-2.412099,-2.412219,-2.412333,-2.412441,-2.412554,-2.412668,-2.412779,-2.412904,-2.413069,-2.413241,-2.413407,-2.413577,-2.413741,-2.413915,-2.414081,-2.414245,-2.414416,-2.414578,-2.414744,-2.414915,-2.415093,-2.415259,-2.415432,-2.415601,-2.415767,-2.415925,-2.416096,-2.416261,-2.416431,-2.416599,-2.416759,-2.416928,-2.417086,-2.417251,-2.417409,-2.417576,-2.417739,-2.417888,-2.418035,-2.418189,-2.418343,-2.418512,-2.41866,-2.418826,-2.418989,-2.419144,-2.419301,-2.41945,-2.419598,-2.419749,-2.419877,-2.420038,-2.420183,-2.420329,-2.420471,-2.420623,-2.42078,-2.420931,-2.421078,-2.421243,-2.421293,-2.421433,-2.421574,-2.421715,-2.421866,-2.422042,-2.422184,-2.422337,-2.422493,-2.422659,-2.422796,-2.422953,-2.423103,-2.423247,-2.423399,-2.423535,-2.423683,-2.423847,-2.423999,-2.424134,-2.424292,-2.424455,-2.424602,-2.424625,-2.424771,-2.42483,-2.424925,-2.425073,-2.425196,-2.425288,-2.425409,-2.425551,-2.425652,-2.425803,-2.425947,-2.425982,-2.426123,-2.426281,-2.426445,-2.42659,-2.426749,-2.426884,-2.42706,-2.427219,-2.427378,-2.427474,-2.427565,-2.427721,-2.427806,-2.427858,-2.427995,-2.42814,-2.428297,-2.428455,-2.428612,-2.428779,-2.428936,-2.429096,-2.429263,-2.42943,-2.429607,-2.429778,-2.429935,-2.430103,-2.430267,-2.430395,-2.430554,-2.430716,-2.430884,-2.431057,-2.431223,-2.431378,-2.43155,-2.431709,-2.431863,-2.432023,-2.432164,-2.432323,-2.432491,-2.432666,-2.432822,-2.432989,-2.433153,-2.433315,-2.433489,-2.433639,-2.433814,-2.433991,-2.434162,-2.43433,-2.434489,-2.434656,-2.434818,-2.434976,-2.435133,-2.435298,-2.435442,-2.43557,-2.435723,-2.435875,-2.435995,-2.436081,-2.436188,-2.43627,-2.436415,-2.436576,-2.436723,-2.436881,-2.437046,-2.437209,-2.437375,-2.437532,-2.4377,-2.437859,-2.438025,-2.438177,-2.438336,-2.438484,-2.438649,-2.438825,-2.438995,-2.439157,-2.439329,-2.439475,-2.439647,-2.439799,-2.43997,-2.440119,-2.440275,-2.440433,-2.440607,-2.440781,-2.440952,-2.441128,-2.441286,-2.441451,-2.441616,-2.441775,-2.441933,-2.442092,-2.442246,-2.442407,-2.442555,-2.44272,-2.442878,-2.44304,-2.443211,-2.443365,-2.443517,-2.443675,-2.443825,-2.44395,-2.444124,-2.44428,-2.444418,-2.444576,-2.444721,-2.444871,-2.445024,-2.445177,-2.445331,-2.445486,-2.44564,-2.445735,-2.445835,-2.445733,-2.445793,-2.445808,-2.445948,-2.446084,-2.446188,-2.446347,-2.446514,-2.446669,-2.446811,-2.446931,-2.447056,-2.447222,-2.447391,-2.447565,-2.447733,-2.447898,-2.448065,-2.448221,-2.448389,-2.448545,-2.448715,-2.448886,-2.449027,-2.449179,-2.449317,-2.449431,-2.449449,-2.449568,-2.449701,-2.449823,-2.449936,-2.45006,-2.450071,-2.450188,-2.450304,-2.450412,-2.450559,-2.450553,-2.450573,-2.450563,-2.450629,-2.450624,-2.450674,-2.450792,-2.450953,-2.451104,-2.451258,-2.451402,-2.451542,-2.45168,-2.451829,-2.451894,-2.452066,-2.452218,-2.45235,-2.452494,-2.452629,-2.452789,-2.452949,-2.453108,-2.45325,-2.453357,-2.453454,-2.453582,-2.45371,-2.453826,-2.45397,-2.454094,-2.454235,-2.454372,-2.454496,-2.454649,-2.454798,-2.454935,-2.45507,-2.455212,-2.455349,-2.455504,-2.455662,-2.45581,-2.455937,-2.456099,-2.456255,-2.456391,-2.456534,-2.456679,-2.456836,-2.456995,-2.457145,-2.457302,-2.457453,-2.457583,-2.457735,-2.457898,-2.458043,-2.458215,-2.458385,-2.458559,-2.458721,-2.458878,-2.459029,-2.459186,-2.459349,-2.459514,-2.45966,-2.459835,-2.459992,-2.460162,-2.460318,-2.460485,-2.46064,-2.460815,-2.460979,-2.461133,-2.461294,-2.46145,-2.461625,-2.461793,-2.461968,-2.462134,-2.462295,-2.462446,-2.462604,-2.462761,-2.462924,-2.463081,-2.463227,-2.46338,-2.463556,-2.463712,-2.463884,-2.46404,-2.464212,-2.464372,-2.464544,-2.46471,-2.464883,-2.46505,-2.465206,-2.465366,-2.465528,-2.465697,-2.465864,-2.466025,-2.466189,-2.46636,-2.466521,-2.466686,-2.466847,-2.467005,-2.467176,-2.467335,-2.467513,-2.467687,-2.467854,-2.468035,-2.4682,-2.46836,-2.468518,-2.468685,-2.468853,-2.46902,-2.469191,-2.469366,-2.469523,-2.46969,-2.46987,-2.470044,-2.470204,-2.470379,-2.470554,-2.470718,-2.470879,-2.47105,-2.471212,-2.471387,-2.471563,-2.471724,-2.471885,-2.472044,-2.472208,-2.472367,-2.472534,-2.47271,-2.472878,-2.473043,-2.473223,-2.473384,-2.473547,-2.473701,-2.473871,-2.474036,-2.474196,-2.474356,-2.474499,-2.474656,-2.474812,-2.474971,-2.475133,-2.475297,-2.475455,-2.475615,-2.475773,-2.475916,-2.476052,-2.476159,-2.476251,-2.476367,-2.476503,-2.476644,-2.476808,-2.476974,-2.47713,-2.477261,-2.477427,-2.477608,-2.477776,-2.477933,-2.478094,-2.478266,-2.478423,-2.478585,-2.478725,-2.478871,-2.479038,-2.479196,-2.479364,-2.479541,-2.479703,-2.479866,-2.480028,-2.480184,-2.480362,-2.480519,-2.480683,-2.480844,-2.481019,-2.481173,-2.481344,-2.481518,-2.481681,-2.481854,-2.482022,-2.482187,-2.482341,-2.482507,-2.482569,-2.482711,-2.482853,-2.482917,-2.483076,-2.483238,-2.483401,-2.48357,-2.483729,-2.483899,-2.484056,-2.484209,-2.484373,-2.484515,-2.484673,-2.484831,-2.484967,-2.485101,-2.485239,-2.485394,-2.485536,-2.485701,-2.485835,-2.485976,-2.486134,-2.486297,-2.486446,-2.486588,-2.486751,-2.486931,-2.487104,-2.48726,-2.487423,-2.487588,-2.487749,-2.487915,-2.488073,-2.488229,-2.488403,-2.488559,-2.488717,-2.488879,-2.489044,-2.489215,-2.489377,-2.489546,-2.489717,-2.489886,-2.490043,-2.49021,-2.490383,-2.490547,-2.490724,-2.49088,-2.491005,-2.491161,-2.491325,-2.491488,-2.491659,-2.491822,-2.49199,-2.492153,-2.492314,-2.492478,-2.492644,-2.492798,-2.492956,-2.493126,-2.493297,-2.493439,-2.493575,-2.493643,-2.493692,-2.493705,-2.493731,-2.49381,-2.493952,-2.494038,-2.494194,-2.494316,-2.494446,-2.494557,-2.494695,-2.494795,-2.494946,-2.495048,-2.495214,-2.495385,-2.495553,-2.495727,-2.495889,-2.49605,-2.49617,-2.496307,-2.496445,-2.496603,-2.496757,-2.496711,-2.496695,-2.496714,-2.496828,-2.496952,-2.49705,-2.497068,-2.497219,-2.497343,-2.497514,-2.497669,-2.497839,-2.498008,-2.498181,-2.498346,-2.498503,-2.498658,-2.498829,-2.498998,-2.499091,-2.499105,-2.499126,-2.499298,-2.499403,-2.499314,-2.499417,-2.499495,-2.499536,-2.499657,-2.499808,-2.499927,-2.50008,-2.500231,-2.50038,-2.50055,-2.50072,-2.500879,-2.501019,-2.501142,-2.501214,-2.501256,-2.501259,-2.501249,-2.501408,-2.501542,-2.501695,-2.501811,-2.501934,-2.502072,-2.502218,-2.502383,-2.502556,-2.502712,-2.502885,-2.503044,-2.50321,-2.503372,-2.503528,-2.503682,-2.503856,-2.504029,-2.5042,-2.504356,-2.504516,-2.504678,-2.504832,-2.50499,-2.505153,-2.505318,-2.50547,-2.505638,-2.505806,-2.505961,-2.506107,-2.506263,-2.506388,-2.506517,-2.506636,-2.50677,-2.506878,-2.506996,-2.507083,-2.507202,-2.507295,-2.507393,-2.507466,-2.507505,-2.507587,-2.507691,-2.507821,-2.507954,-2.508078,-2.50819,-2.508298,-2.508387,-2.50853,-2.508636,-2.508716,-2.508825,-2.508944,-2.509048,-2.509151,-2.509287,-2.509439,-2.509607,-2.509749,-2.5099,-2.510058,-2.510227,-2.510382,-2.510542,-2.510694,-2.51085,-2.510866,-2.511017,-2.511157,-2.511308,-2.511474,-2.511618,-2.511747,-2.511888,-2.511992,-2.512107,-2.512201,-2.512345,-2.512494,-2.51266,-2.512827,-2.512992,-2.51314,-2.513268,-2.513417,-2.513568,-2.513699,-2.51386,-2.514014,-2.514082,-2.514223,-2.514392,-2.514555,-2.514703,-2.514854,-2.514885,-2.514928,-2.514977,-2.514995,-2.514853,-2.51468,-2.514533,-2.514393,-2.514287,-2.514141,-2.51402,-2.51388,-2.513779,-2.513687,-2.513599,-2.513489,-2.513375,-2.513265,-2.513165,-2.513239,-2.513413,-2.513567,-2.513732,-2.513867,-2.514006,-2.514151,-2.51432,-2.514479,-2.514635,-2.5148,-2.514944,-2.515084,-2.51524,-2.515382,-2.515515,-2.515636,-2.515774,-2.515899,-2.516048,-2.516211,-2.516377,-2.516533,-2.516709,-2.516875,-2.517049,-2.517205,-2.517365,-2.517521,-2.51767,-2.517814,-2.517959,-2.518109,-2.518215,-2.518284,-2.518275,-2.518285,-2.518307,-2.51832,-2.518329,-2.518353,-2.518346,-2.518375,-2.518468,-2.518594,-2.518735,-2.51887,-2.519017,-2.519185,-2.519344,-2.519491,-2.519519,-2.519671,-2.519843,-2.520017,-2.520178,-2.520342,-2.520482,-2.520539,-2.520511,-2.52048,-2.52044,-2.520422,-2.520408,-2.520379,-2.520357,-2.520345,-2.520428,-2.520553,-2.520727,-2.520874,-2.521049,-2.521211,-2.52138,-2.521553,-2.52172,-2.521888,-2.522057,-2.522228,-2.522385,-2.522541,-2.522712,-2.522882,-2.523052,-2.52322,-2.523384,-2.523551,-2.523711,-2.523889,-2.524049,-2.52421,-2.524372,-2.524529,-2.524686,-2.524858,-2.525034,-2.525202,-2.525246,-2.52541,-2.525581,-2.525739,-2.525907,-2.526073,-2.526219,-2.526374,-2.526535,-2.526693,-2.526859,-2.527025,-2.527193,-2.527349,-2.527519,-2.527687,-2.527845,-2.528018,-2.528197,-2.528366,-2.528532,-2.528691,-2.528866,-2.529026,-2.529186,-2.529352,-2.529519,-2.529674,-2.52985,-2.530019,-2.530181,-2.530359,-2.53053,-2.5307,-2.530881,-2.531042,-2.531202,-2.531367,-2.531539,-2.531706,-2.531865,-2.531999,-2.532047,-2.532199,-2.532337,-2.53238,-2.532361,-2.532372,-2.532518,-2.532565,-2.532599,-2.532634,-2.532731,-2.53285,-2.532913,-2.533078,-2.533241,-2.533401,-2.533556,-2.533713,-2.533847,-2.533963,-2.534,-2.534083,-2.534044,-2.534162,-2.534138,-2.534111,-2.534108,-2.534139,-2.534171,-2.534215,-2.534259,-2.534285,-2.5343,-2.534308,-2.534343,-2.534393,-2.534434,-2.534472,-2.534557,-2.534653,-2.534771,-2.534902,-2.535045,-2.535205,-2.535306,-2.535467,-2.535632,-2.535801,-2.535919,-2.536095,-2.536186,-2.536353,-2.536513,-2.536677,-2.536839,-2.536993,-2.536983,-2.536999,-2.537157,-2.537236,-2.537317,-2.537397,-2.537543,-2.537637,-2.53772,-2.537813,-2.537939,-2.538086,-2.538203,-2.538355,-2.538505,-2.538666,-2.538826,-2.538977,-2.539139,-2.539308,-2.539479,-2.539657,-2.539819,-2.539987,-2.540121,-2.540265,-2.54038,-2.540547,-2.540703,-2.540883,-2.541041,-2.541199,-2.541359,-2.541511,-2.541668,-2.541806,-2.541935,-2.542109,-2.54227,-2.542431,-2.542516,-2.542625,-2.542796,-2.542962,-2.54313,-2.543248,-2.543326,-2.543392,-2.543469,-2.543537,-2.543592,-2.543661,-2.543737,-2.54382,-2.543896,-2.543954,-2.544027,-2.544089,-2.544163,-2.5442,-2.544266,-2.544332,-2.544425,-2.544543,-2.54464,-2.544702,-2.544724,-2.544759,-2.544838,-2.544902,-2.544944,-2.544994,-2.545072,-2.545151,-2.545187,-2.545248,-2.545305,-2.545379,-2.545451,-2.545515,-2.545585,-2.545657,-2.545701,-2.545735,-2.545807,-2.545842,-2.545857,-2.545938,-2.545967,-2.546023,-2.546062,-2.546108,-2.546161,-2.546216,-2.546304,-2.546365,-2.546416,-2.546472,-2.546522,-2.546577,-2.546659,-2.546729,-2.546786,-2.546849,-2.546912,-2.546974,-2.547007,-2.547027,-2.547093,-2.547135,-2.547199,-2.547255,-2.547336,-2.547414,-2.547451,-2.547457,-2.547401,-2.547473,-2.547641,-2.547796,-2.547949,-2.547937,-2.547932,-2.547939,-2.547947,-2.547918,-2.547976,-2.547989,-2.548044,-2.548087,-2.54811,-2.548121,-2.548154,-2.548173,-2.548198,-2.548226,-2.548248,-2.548279,-2.548304,-2.54835,-2.548353,-2.548381,-2.548413,-2.548439,-2.548449,-2.548462,-2.548459,-2.548431,-2.548408,-2.548389,-2.548376,-2.548372,-2.548354,-2.548335,-2.548273,-2.548334,-2.548421,-2.548505,-2.548603,-2.548681,-2.548747,-2.548793,-2.54882,-2.548845,-2.548877,-2.548889,-2.548907,-2.548933,-2.548939,-2.548904,-2.548847,-2.548842,-2.548723,-2.548607,-2.548483,-2.54836,-2.548235,-2.548117,-2.548096,-2.547946,-2.547819,-2.547676,-2.547532,-2.547385,-2.54723,-2.547091,-2.54694,-2.546781,-2.546616,-2.546453,-2.546293,-2.546129,-2.545981,-2.545842,-2.545707,-2.5456,-2.5455,-2.545415,-2.545358,-2.545279,-2.545208,-2.54516,-2.545108,-2.54504,-2.544947,-2.544965,-2.545122,-2.545286,-2.545444,-2.545604,-2.54576,-2.545932,-2.546097,-2.546264,-2.546424,-2.546579,-2.546734,-2.54688,-2.547033,-2.547187,-2.547343,-2.5475,-2.547595,-2.547595,-2.5476,-2.547726,-2.547877,-2.548044,-2.548201,-2.54836,-2.548526,-2.548682,-2.548838,-2.548992,-2.549162,-2.549315,-2.549472,-2.549631,-2.549783,-2.549943,-2.550096,-2.550266,-2.550439,-2.550618,-2.550774,-2.550931,-2.551101,-2.551274,-2.551445,-2.55161,-2.551776,-2.551932,-2.552092,-2.552253,-2.552429,-2.552588,-2.552756,-2.55289,-2.553024,-2.553181,-2.553351,-2.553513,-2.553672,-2.55383,-2.553993,-2.554153,-2.554307,-2.554465,-2.554623,-2.55479,-2.554954,-2.55512,-2.555292,-2.555451,-2.555621,-2.555782,-2.555943,-2.556112,-2.556283,-2.556446,-2.556602,-2.556772,-2.556931,-2.557099,-2.557266,-2.557442,-2.557615,-2.557772,-2.557939,-2.558091,-2.558259,-2.558425,-2.55859,-2.558748,-2.558899,-2.559072,-2.559241,-2.559397,-2.559568,-2.559741,-2.559898,-2.560058,-2.56023,-2.560399,-2.560567,-2.56074,-2.560906,-2.56107,-2.561229,-2.561396,-2.56156,-2.561646,-2.561748,-2.561696,-2.561687,-2.561742,-2.561788,-2.561835,-2.561884,-2.561917,-2.561966,-2.562019,-2.562042,-2.562084,-2.562099,-2.562073,-2.561976,-2.561877,-2.561783,-2.56176,-2.561756,-2.561827,-2.561892,-2.561969,-2.562078,-2.562114,-2.56208,-2.562113,-2.562104,-2.562112,-2.562167,-2.56217,-2.562178,-2.562195,-2.562212,-2.562242,-2.562254,-2.562296,-2.562394,-2.562401,-2.562371,-2.562256,-2.562143,-2.562035,-2.561986,-2.561938,-2.561895,-2.561782,-2.561661,-2.561572,-2.561499,-2.561416,-2.561382,-2.561403,-2.561374,-2.561348,-2.561375,-2.561349,-2.561401,-2.56153,-2.56149,-2.561461,-2.561447,-2.56144,-2.561429,-2.561429,-2.561407,-2.561364,-2.561369,-2.561359,-2.561333,-2.561322,-2.56131,-2.561264,-2.561233,-2.561159,-2.561112,-2.561018,-2.560958,-2.560896,-2.560889,-2.560867,-2.560789,-2.5607,-2.560579,-2.560491,-2.560384,-2.56027,-2.560156,-2.560045,-2.559949,-2.559888,-2.559829,-2.559775,-2.559785,-2.559754,-2.55973,-2.559716,-2.559694,-2.559605,-2.559605,-2.559614,-2.559613,-2.559583,-2.559496,-2.559458,-2.559389,-2.559391,-2.559393,-2.559429,-2.559453,-2.559417,-2.559379,-2.559381,-2.559444,-2.559452,-2.559395,-2.55934,-2.559338,-2.55933,-2.559305,-2.559233,-2.559186,-2.559184,-2.55916,-2.559134,-2.558984,-2.558911,-2.558966,-2.559033,-2.558937,-2.558846,-2.558728,-2.558711,-2.558597,-2.558519,-2.558421,-2.558316,-2.558239,-2.558139,-2.558073,-2.557994,-2.557936,-2.557858,-2.557768,-2.557702,-2.557599,-2.557479,-2.557367,-2.557261,-2.557146,-2.55712,-2.557117,-2.557075,-2.557051,-2.557053,-2.557062,-2.557082,-2.557099,-2.5571,-2.557126,-2.55713,-2.557121,-2.557117,-2.557084,-2.557069,-2.557021,-2.556962,-2.5569,-2.556806,-2.55675,-2.556698,-2.556627,-2.556574,-2.556532,-2.556453,-2.55638,-2.556361,-2.556362,-2.556354,-2.556351,-2.556372,-2.556351,-2.556338,-2.556373,-2.556353,-2.556345,-2.55632,-2.556305,-2.556309,-2.556299,-2.556276,-2.556276,-2.55629,-2.556304,-2.556309,-2.556281,-2.556276,-2.556264,-2.556255,-2.556249,-2.556243,-2.556241,-2.556233,-2.556234,-2.556226,-2.556214,-2.556211,-2.556194,-2.556181,-2.556181,-2.556172,-2.556171,-2.556171,-2.556161,-2.556144,-2.556124,-2.556102,-2.556099,-2.556047,-2.556062,-2.556041,-2.556023,-2.556011,-2.555957,-2.555905,-2.555885,-2.555853,-2.55584,-2.555824,-2.555827,-2.555802,-2.555755,-2.555722,-2.555733,-2.555745,-2.555755,-2.555769,-2.555843,-2.555834,-2.555843,-2.555849,-2.555852,-2.555807,-2.555803,-2.555806,-2.555806,-2.555806,-2.555819,-2.555794,-2.555776,-2.555748,-2.555603,-2.55545,-2.555301,-2.555147,-2.555001,-2.554845,-2.554694,-2.554546,-2.5544,-2.554263,-2.554118,-2.553964,-2.55382,-2.553673,-2.553525,-2.553459,-2.553373,-2.553256,-2.553177,-2.55307,-2.552959,-2.552957,-2.552953,-2.552936,-2.552923,-2.552907,-2.552913,-2.552886,-2.552947,-2.552882,-2.55277,-2.552616,-2.55246,-2.552302,-2.552145,-2.551983,-2.551848,-2.551845,-2.551705,-2.551558,-2.551413,-2.551246,-2.551075,-2.550913,-2.550763,-2.5506,-2.550468,-2.550335,-2.550199,-2.550062,-2.549926,-2.549845,-2.549693,-2.549526,-2.549369,-2.54921,-2.54905,-2.548885,-2.548726,-2.548551,-2.548396,-2.548256,-2.548127,-2.547976,-2.54781,-2.547651,-2.547499,-2.547407,-2.547251,-2.547092,-2.546922,-2.546769,-2.546603,-2.546433,-2.546262,-2.546097,-2.545943,-2.545827,-2.545667,-2.545515,-2.545363,-2.545215,-2.545067,-2.544919,-2.544776,-2.544636,-2.544498,-2.544372,-2.544268,-2.544182,-2.544096,-2.543991,-2.543872,-2.543777,-2.543671,-2.543571,-2.543462,-2.543458,-2.543323,-2.543202,-2.54309,-2.542995,-2.542914,-2.542855,-2.542781,-2.542708,-2.542643,-2.542641,-2.542685,-2.542652,-2.542584,-2.542531,-2.542473,-2.542401,-2.542336,-2.542283,-2.54224,-2.542177,-2.542103,-2.542036,-2.541969,-2.541914,-2.541846,-2.541788,-2.541806,-2.541793,-2.541756,-2.541734,-2.541697,-2.541624,-2.54165,-2.541682,-2.54173,-2.541823,-2.54178,-2.541769,-2.541806,-2.54181,-2.541808,-2.541777,-2.541714,-2.541661,-2.541586,-2.541555,-2.541587,-2.541678,-2.54178,-2.541828,-2.541811,-2.54177,-2.5417,-2.541698,-2.541696,-2.541669,-2.541661,-2.541614,-2.54159,-2.541624,-2.541638,-2.541603,-2.541583,-2.541548,-2.541516,-2.54146,-2.541393,-2.541324,-2.541249,-2.541181,-2.541127,-2.541067,-2.541042,-2.541007,-2.541012,-2.541016,-2.541011,-2.541021,-2.541003,-2.540965,-2.54098,-2.54099,-2.541049,-2.541041,-2.540964,-2.54088,-2.540793,-2.540712,-2.540602,-2.540498,-2.540366,-2.54022,-2.540101,-2.539969,-2.539832,-2.539749,-2.539642,-2.539565,-2.539516,-2.539477,-2.539446,-2.539374,-2.539286,-2.539196,-2.53909,-2.538985,-2.538866,-2.538757,-2.538657,-2.538579,-2.538482,-2.538379,-2.538294,-2.538178,-2.538085,-2.537989,-2.537883,-2.537799,-2.537711,-2.537652,-2.537631,-2.537473,-2.537469,-2.537468,-2.537321,-2.537158,-2.537014,-2.536899,-2.536766,-2.536615,-2.53645,-2.536294,-2.536131,-2.535981,-2.535814,-2.535657,-2.535482,-2.535311,-2.535158,-2.535007,-2.534847,-2.534678,-2.534507,-2.534347,-2.534204,-2.53407,-2.533948,-2.533808,-2.533697,-2.533627,-2.533594,-2.533525,-2.533474,-2.533371,-2.533273,-2.533172,-2.533083,-2.532967,-2.532878,-2.532774,-2.532687,-2.532585,-2.532487,-2.532341,-2.532198,-2.532076,-2.531962,-2.531804,-2.531665,-2.531561,-2.531452,-2.531362,-2.53122,-2.531098,-2.530937,-2.530777,-2.530613,-2.530478,-2.530314,-2.530149,-2.529985,-2.529894,-2.529738,-2.529583,-2.529421,-2.529246,-2.529091,-2.528944,-2.528853,-2.528815,-2.528758,-2.528709,-2.528651,-2.528608,-2.528566,-2.528511,-2.528479,-2.528444,-2.528403,-2.528385,-2.528443,-2.528612,-2.528634,-2.52868,-2.528702,-2.528729,-2.528746,-2.528752,-2.528904,-2.528997,-2.529133,-2.529281,-2.529427,-2.529452,-2.529388,-2.529249,-2.529103,-2.529047,-2.529007,-2.529033,-2.529035,-2.529073,-2.529166,-2.529254,-2.529354,-2.52946,-2.529566,-2.529658,-2.529754,-2.529811,-2.529912,-2.530016,-2.530157,-2.530241,-2.530326,-2.530409,-2.530497,-2.530569,-2.530656,-2.53075,-2.530811,-2.53079,-2.530627,-2.530518,-2.530543,-2.530546,-2.530596,-2.530516,-2.530471,-2.530392,-2.530341,-2.530274,-2.530234,-2.53016,-2.530101,-2.530092,-2.530114,-2.530078,-2.530087,-2.530089,-2.530092,-2.530083,-2.530069,-2.53004,-2.530017,-2.530011,-2.529996,-2.529994,-2.52997,-2.529963,-2.529838,-2.529732,-2.529652,-2.529535,-2.529449,-2.529371,-2.529264,-2.529225,-2.529346,-2.52942,-2.529504,-2.529575,-2.52966,-2.529772,-2.529804,-2.529836,-2.52984,-2.52983,-2.529803,-2.529834,-2.52983,-2.529814,-2.529777,-2.529757,-2.529752,-2.529724,-2.52968,-2.529641,-2.529633,-2.52958,-2.529571,-2.529526,-2.529483,-2.52941,-2.52945,-2.529404,-2.529379,-2.529357,-2.529332,-2.529297,-2.52929,-2.529291,-2.529239,-2.529191,-2.529136,-2.529053,-2.528996,-2.528938,-2.528852,-2.528798,-2.528704,-2.528624,-2.528579,-2.528489,-2.528472,-2.52844,-2.528315,-2.528237,-2.528198,-2.528163,-2.528128,-2.528061,-2.527986,-2.527951,-2.527913,-2.527788,-2.5277,-2.527661,-2.527615,-2.527581,-2.527554,-2.527484,-2.527466,-2.527516,-2.527491,-2.527435,-2.527402,-2.527372,-2.527353,-2.527314,-2.527289,-2.527194,-2.527147,-2.527118,-2.527093,-2.52705,-2.527002,-2.526935,-2.526868,-2.526831,-2.526875,-2.526866,-2.526829,-2.526798,-2.526784,-2.526783,-2.526761,-2.526769,-2.526724,-2.526628,-2.526522,-2.526402,-2.526282,-2.526186,-2.526137,-2.526082,-2.52601,-2.525958,-2.525982,-2.526029,-2.526081,-2.526142,-2.526203,-2.52617,-2.526097,-2.525994,-2.525879,-2.525761,-2.525628,-2.525526,-2.525411,-2.525287,-2.525171,-2.52502,-2.524857,-2.524709,-2.524545,-2.524398,-2.524239,-2.524088,-2.52392,-2.523764,-2.523596,-2.523427,-2.523266,-2.523094,-2.522934,-2.522776,-2.522613,-2.522454,-2.522294,-2.522138,-2.521975,-2.521815,-2.521672,-2.521511,-2.521353,-2.521191,-2.521033,-2.52087,-2.520789,-2.520719,-2.520666,-2.520618,-2.52057,-2.52052,-2.520472,-2.520416,-2.520361,-2.520299,-2.52025,-2.520207,-2.520166,-2.520124,-2.520091,-2.520056,-2.520016,-2.51998,-2.519951,-2.519919,-2.519876,-2.519844,-2.519825,-2.519795,-2.519779,-2.519745,-2.519705,-2.519656,-2.519633,-2.519601,-2.51953,-2.519479,-2.519456,-2.519463,-2.519437,-2.519424,-2.519378,-2.519335,-2.519278,-2.519272,-2.519237,-2.519229,-2.519194,-2.519157,-2.519103,-2.519105,-2.519056,-2.519014,-2.518997,-2.518979,-2.518929,-2.518888,-2.518855,-2.518821,-2.518785,-2.51876,-2.518719,-2.518676,-2.518623,-2.518599,-2.518567,-2.518488,-2.518463,-2.518444,-2.518367,-2.518287,-2.518253,-2.518262,-2.518293,-2.518293,-2.518283,-2.518269,-2.518238,-2.518207,-2.518194,-2.518158,-2.518109,-2.518091,-2.518079,-2.518117,-2.518087,-2.518086,-2.518072,-2.518047,-2.518014,-2.517982,-2.517961,-2.517927,-2.517912,-2.51791,-2.517894,-2.517862,-2.51782,-2.517803,-2.517784,-2.517764,-2.517737,-2.517729,-2.517709,-2.517713,-2.517666,-2.517605,-2.517582,-2.517572,-2.517543,-2.517497,-2.517498,-2.51747,-2.517407,-2.517404,-2.517337,-2.517329,-2.517274,-2.517266,-2.517276,-2.517239,-2.5172,-2.517183,-2.517167,-2.517138,-2.517104,-2.517076,-2.517055,-2.517045,-2.517006,-2.516968,-2.516931,-2.516875,-2.51684,-2.516806,-2.516767,-2.516735,-2.516688,-2.516674,-2.516644,-2.5166,-2.516547,-2.516507,-2.51649,-2.516443,-2.516378,-2.51633,-2.516249,-2.516228,-2.516213,-2.51615,-2.516128,-2.516042,-2.515993,-2.515968,-2.515931,-2.515876,-2.515893,-2.515883,-2.515833,-2.51579,-2.51574,-2.515657,-2.515637,-2.515584,-2.515532,-2.515467,-2.515418,-2.515361,-2.515308,-2.51525,-2.515207,-2.51519,-2.515126,-2.515084,-2.514991,-2.514949,-2.514918,-2.514884,-2.514852,-2.514812,-2.514784,-2.514747,-2.514706,-2.514665,-2.514619,-2.51458,-2.514577,-2.51462,-2.514647,-2.514665,-2.514663,-2.514638,-2.514572,-2.514532,-2.514533,-2.514529,-2.514602,-2.514686,-2.514794,-2.514927,-2.515082,-2.5152,-2.515238,-2.515242,-2.515201,-2.515153,-2.514981,-2.514821,-2.514664,-2.514506,-2.514361,-2.514194,-2.51405,-2.513922,-2.513756,-2.513632,-2.513508,-2.513418,-2.513359,-2.513365,-2.51336,-2.51336,-2.513368,-2.51333,-2.513336,-2.513313,-2.513287,-2.513263,-2.513241,-2.513217,-2.513201,-2.513193,-2.513145,-2.513133,-2.513107,-2.513096,-2.513053,-2.513031,-2.512986,-2.512954,-2.512964,-2.512941,-2.512874,-2.512791,-2.512786,-2.512769,-2.512748,-2.512748,-2.512752,-2.512733,-2.512683,-2.512646,-2.512617,-2.512589,-2.512533,-2.512481,-2.512457,-2.512445,-2.512404,-2.512369,-2.512342,-2.51229,-2.512281,-2.512254,-2.512238,-2.51221,-2.512164,-2.512122,-2.512093,-2.512069,-2.512065,-2.512043,-2.512019,-2.511993,-2.511961,-2.511914,-2.511876,-2.511862,-2.511847,-2.511788,-2.511699,-2.511631,-2.511591,-2.511533,-2.511564,-2.511557,-2.511535,-2.511454,-2.511433,-2.511504,-2.511588,-2.511627,-2.51163,-2.511662,-2.511681,-2.511694,-2.511704,-2.51174,-2.511759,-2.51177,-2.511796,-2.511832,-2.511871,-2.511824,-2.511858,-2.511863,-2.511889,-2.51186,-2.511862,-2.511868,-2.511835,-2.511822,-2.511875,-2.511978,-2.512016,-2.512032,-2.512059,-2.512133,-2.51217,-2.512131,-2.512105,-2.512079,-2.51206,-2.511984,-2.5119,-2.511831,-2.511775,-2.511721,-2.51165,-2.511577,-2.511482,-2.511483,-2.511437,-2.511421,-2.51141,-2.511497,-2.5115,-2.511433,-2.511324,-2.511327,-2.511336,-2.51135,-2.511344,-2.511365,-2.511384,-2.511431,-2.511462,-2.511583,-2.511702,-2.511805,-2.511882,-2.511965,-2.512003,-2.512023,-2.512067,-2.512104,-2.512175,-2.512228,-2.512238,-2.512228,-2.512214,-2.512123,-2.512011,-2.511915,-2.511843,-2.511768,-2.511638,-2.511465,-2.511297,-2.511139,-2.510982,-2.510824,-2.510678,-2.510542,-2.51041,-2.510312,-2.510212,-2.510138,-2.510027,-2.509973,-2.509936,-2.509894,-2.509845,-2.509799,-2.509766,-2.509791,-2.509713,-2.509663,-2.509639,-2.509611,-2.509592,-2.509564,-2.509533,-2.509486,-2.509472,-2.509421,-2.509329,-2.509296,-2.509266,-2.509243,-2.509192,-2.509145,-2.509098,-2.509013,-2.50888,-2.508727,-2.508557,-2.508441,-2.508345,-2.508249,-2.508128,-2.508011,-2.50795,-2.507798,-2.507784,-2.507779,-2.507777,-2.507776,-2.50775,-2.507723,-2.507634,-2.507535,-2.507414,-2.507317,-2.507295,-2.507196,-2.507196,-2.507331,-2.507463,-2.507586,-2.507706,-2.507842,-2.507958,-2.508047,-2.508104,-2.508205,-2.508289,-2.508383,-2.508458,-2.508466,-2.508537,-2.508617,-2.508697,-2.508795,-2.508872,-2.508953,-2.509049,-2.509148,-2.509232,-2.509313,-2.50939,-2.509458,-2.509522,-2.509588,-2.509647,-2.50972,-2.509807,-2.509905,-2.509987,-2.510078,-2.510149,-2.510242,-2.510334,-2.510412,-2.510509,-2.510587,-2.510674,-2.510756,-2.510746,-2.510762,-2.51078,-2.510798,-2.510836,-2.510865,-2.510885,-2.510877,-2.510829,-2.510666,-2.51063,-2.510649,-2.510615,-2.510532,-2.510475,-2.510541,-2.51065,-2.510769,-2.510887,-2.510961,-2.511048,-2.511129,-2.511224,-2.511302,-2.511357,-2.511412,-2.51146,-2.511501,-2.511568,-2.511615,-2.511651,-2.511657,-2.511732,-2.511851,-2.511882,-2.511937,-2.511976,-2.512074,-2.51208,-2.512043,-2.512034,-2.512038,-2.512012,-2.511988,-2.511969,-2.511976,-2.512001,-2.512112,-2.512241,-2.51235,-2.512491,-2.512621,-2.512708,-2.512824,-2.512935,-2.513052,-2.513185,-2.513324,-2.513461,-2.51347,-2.51344,-2.513416,-2.51347,-2.513595,-2.513759,-2.5139,-2.514055,-2.51421,-2.514335,-2.514339,-2.514197,-2.514175,-2.514195,-2.514239,-2.514316,-2.514481,-2.514646,-2.514825,-2.514988,-2.515064,-2.515166,-2.515305,-2.51539,-2.515369,-2.515373,-2.515354,-2.515243,-2.51512,-2.514992,-2.51483,-2.514703,-2.514661,-2.514552,-2.514473,-2.514408,-2.514343,-2.514295,-2.514258,-2.514191,-2.514123,-2.514061,-2.513997,-2.51392,-2.513836,-2.513763,-2.513685,-2.513614,-2.513562,-2.513511,-2.513519,-2.513535,-2.513531,-2.513511,-2.513524,-2.513523,-2.51351,-2.513504,-2.513499,-2.513501,-2.513511,-2.513433,-2.513366,-2.513277,-2.513133,-2.513005,-2.512858,-2.512713,-2.512577,-2.512437,-2.512308,-2.512183,-2.512057,-2.512009,-2.511849,-2.511693,-2.511515,-2.511355,-2.511195,-2.511037,-2.511006,-2.511143,-2.511139,-2.511152,-2.511156,-2.511133,-2.51116,-2.511223,-2.511187,-2.511067,-2.510944,-2.510873,-2.510836,-2.510861,-2.510876,-2.510834,-2.510817,-2.51076,-2.510632,-2.510484,-2.510443,-2.5104,-2.51036,-2.510295,-2.510229,-2.510196,-2.510125,-2.510036,-2.509927,-2.509809,-2.509699,-2.509593,-2.509511,-2.509394,-2.509304,-2.509209,-2.509122,-2.509002,-2.50888,-2.508736,-2.508593,-2.508441,-2.508299,-2.508151,-2.508013,-2.507878,-2.507764,-2.507642,-2.507514,-2.507387,-2.507245,-2.507124,-2.507,-2.506879,-2.506747,-2.506603,-2.506473,-2.506354,-2.506231,-2.506106,-2.505987,-2.50586,-2.50575,-2.505619,-2.505483,-2.505324,-2.505176,-2.505018,-2.504885,-2.504743,-2.504581,-2.5044,-2.504236,-2.504078,-2.503927,-2.503782,-2.503641,-2.503495,-2.503353,-2.50319,-2.503106,-2.503017,-2.502907,-2.502796,-2.502683,-2.502556,-2.502447,-2.502364,-2.502279,-2.502168,-2.502031,-2.501917,-2.501819,-2.501715,-2.501656,-2.501566,-2.501462,-2.501374,-2.501285,-2.50121,-2.501146,-2.501083,-2.501037,-2.501002,-2.500958,-2.50091,-2.500852,-2.500805,-2.500738,-2.500697,-2.500638,-2.500583,-2.500498,-2.500421,-2.500345,-2.500256,-2.500157,-2.500087,-2.500005,-2.499957,-2.499877,-2.499807,-2.499735,-2.499645,-2.499568,-2.499503,-2.499435,-2.49936,-2.499277,-2.499198,-2.499135,-2.499056,-2.498956,-2.498846,-2.498835,-2.498804,-2.498739,-2.498701,-2.498667,-2.498596,-2.498437,-2.498291,-2.498157,-2.498022,-2.497911,-2.497819,-2.497741,-2.497631,-2.497509,-2.497456,-2.497372,-2.497274,-2.497171,-2.497054,-2.49693,-2.496814,-2.496702,-2.496552,-2.496409,-2.496287,-2.496128,-2.495999,-2.495855,-2.495706,-2.495556,-2.495411,-2.495286,-2.495158,-2.495044,-2.494951,-2.494923,-2.4948,-2.494713,-2.494614,-2.494462,-2.494345,-2.494227,-2.494064,-2.493928,-2.493788,-2.493672,-2.493516,-2.493357,-2.493205,-2.493045,-2.492927,-2.492755,-2.492597,-2.492427,-2.492271,-2.492122,-2.491962,-2.491798,-2.491638,-2.491472,-2.491311,-2.491148,-2.490997,-2.490849,-2.490702,-2.490554,-2.49042,-2.49035,-2.490308,-2.490222,-2.490153,-2.490079,-2.490005,-2.489873,-2.48979,-2.489749,-2.489676,-2.489581,-2.48954,-2.489465,-2.489332,-2.489227,-2.489115,-2.489019,-2.488934,-2.488846,-2.488727,-2.488581,-2.488433,-2.488303,-2.488177,-2.488083,-2.488032,-2.488044,-2.488066,-2.488095,-2.48818,-2.488267,-2.48835,-2.48844,-2.488518,-2.488606,-2.488693,-2.488806,-2.48891,-2.488998,-2.489046,-2.489052,-2.48906,-2.48909,-2.489098,-2.489147,-2.489119,-2.489144,-2.489145,-2.489199,-2.489304,-2.489371,-2.489432,-2.489501,-2.489502,-2.489387,-2.489268,-2.489148,-2.489003,-2.488875,-2.48875,-2.488627,-2.488501,-2.488392,-2.488325,-2.488237,-2.488205,-2.488174,-2.488116,-2.487999,-2.487875,-2.487719,-2.487556,-2.487399,-2.487313,-2.487208,-2.487074,-2.486941,-2.486833,-2.486697,-2.486554,-2.486437,-2.486313,-2.486175,-2.486044,-2.48594,-2.48584,-2.485786,-2.485856,-2.485909,-2.485965,-2.486033,-2.486085,-2.486148,-2.486217,-2.486199,-2.486188,-2.486129,-2.486031,-2.48596,-2.485914,-2.485896,-2.485867,-2.485769,-2.485663,-2.48553,-2.485378,-2.485229,-2.485079,-2.484915,-2.484779,-2.484654,-2.484535,-2.48443,-2.484318,-2.484224,-2.484139,-2.484069,-2.484043,-2.48396,-2.48389,-2.483818,-2.483781,-2.483646,-2.483566,-2.483509,-2.483482,-2.483427,-2.483325,-2.483217,-2.483112,-2.482994,-2.482853,-2.482744,-2.482637,-2.482558,-2.48248,-2.482455,-2.482345,-2.482306,-2.482257,-2.482187,-2.482106,-2.482027,-2.481896,-2.481802,-2.481725,-2.481629,-2.481548,-2.481428,-2.481324,-2.481212,-2.481107,-2.480978,-2.480862,-2.48076,-2.480656,-2.480541,-2.480448,-2.480332,-2.480222,-2.480118,-2.480082,-2.480014,-2.47996,-2.479899,-2.47989,-2.479903,-2.479886,-2.479814,-2.479722,-2.479655,-2.479638,-2.479545,-2.479462,-2.479399,-2.479357,-2.479302,-2.47926,-2.479204,-2.479163,-2.479101,-2.479083,-2.479098,-2.47902,-2.478947,-2.478922,-2.478873,-2.478829,-2.478776,-2.478715,-2.478678,-2.478663,-2.478636,-2.478682,-2.478761,-2.478769,-2.47861,-2.478458,-2.478309,-2.478121,-2.477959,-2.477793,-2.477636,-2.47748,-2.477401,-2.477327,-2.477256,-2.477198,-2.477077,-2.477068,-2.477051,-2.477137,-2.477223,-2.477238,-2.477172,-2.477127,-2.477082,-2.477047,-2.477049,-2.47705,-2.477051,-2.477049,-2.47699,-2.476916,-2.476913,-2.476899,-2.476877,-2.476855,-2.476837,-2.476796,-2.476768,-2.476738,-2.476747,-2.476748,-2.476682,-2.476679,-2.476633,-2.476621,-2.476617,-2.476585,-2.476584,-2.476593,-2.476557,-2.476529,-2.476535,-2.476504,-2.476494,-2.476463,-2.476435,-2.476419,-2.476405,-2.476407,-2.476406,-2.476304,-2.476191,-2.476098,-2.476,-2.475915,-2.4758,-2.475779,-2.475756,-2.475712,-2.475657,-2.475613,-2.475594,-2.47555,-2.475526,-2.475526,-2.475562,-2.475582,-2.475626,-2.475634,-2.475619,-2.475618,-2.475634,-2.475657,-2.475631,-2.47561,-2.475584,-2.475564,-2.475574,-2.475574,-2.475542,-2.475496,-2.475447,-2.475412,-2.475376,-2.475346,-2.475347,-2.475359,-2.475294,-2.475247,-2.475176,-2.475146,-2.475078,-2.475007,-2.474886,-2.474764,-2.47463,-2.474495,-2.474372,-2.474248,-2.474123,-2.474001,-2.473864,-2.47375,-2.473623,-2.473492,-2.473373,-2.47324,-2.473129,-2.473025,-2.472904,-2.472781,-2.472652,-2.472534,-2.472411,-2.472287,-2.472162,-2.472032,-2.471913,-2.471786,-2.471661,-2.471546,-2.471709,-2.471859,-2.471997,-2.472149,-2.472194,-2.47208,-2.466867,-2.466984,-2.467123,-2.467244,-2.467365,-2.467485,-2.467618,-2.467717,-2.467837,-2.467949,-2.468062,-2.468187,-2.468326,-2.468447,-2.468547,-2.468685,-2.468817,-2.468956,-2.469086,-2.469196,-2.469062,-2.468971,-2.468828,-2.468716,-2.468595,-2.468478,-2.468358,-2.468231,-2.468112,-2.467989,-2.467868,-2.467753,-2.467636,-2.467521,-2.467409,-2.467288,-2.46717,-2.467041,-2.466931,-2.466821,-2.466703,-2.466585,-2.466464,-2.466346,-2.46623,-2.466121,-2.466,-2.46588,-2.465764,-2.465643,-2.465541,-2.465431,-2.465314,-2.465196,-2.465071,-2.464947,-2.464824,-2.464713,-2.464599,-2.46448,-2.46435,-2.464243,-2.46413,-2.464007,-2.463896,-2.463793,-2.463684,-2.463569,-2.463459,-2.463333,-2.463216,-2.463214,-2.463109,-2.462992,-2.462869,-2.462757,-2.462638,-2.462532,-2.46242,-2.462315,-2.462181,-2.462065,-2.461949,-2.461827,-2.4617,-2.461575,-2.461461,-2.461352,-2.461245,-2.461139,-2.461021,-2.460905,-2.460789,-2.460673,-2.460562,-2.460446,-2.460318,-2.460195,-2.460084,-2.45995,-2.459834,-2.459728,-2.459611,-2.459491,-2.459367,-2.459252,-2.459121,-2.458985,-2.45886,-2.45871,-2.458589,-2.458466,-2.45832,-2.458198,-2.458075,-2.457939,-2.457805,-2.457673,-2.45752,-2.457386,-2.457262,-2.457129,-2.456995,-2.456842,-2.456697,-2.456558,-2.45642,-2.456261,-2.456131,-2.455976,-2.455839,-2.455703,-2.455541,-2.45538,-2.455215,-2.455052,-2.454911,-2.454756,-2.45461,-2.454477,-2.454314,-2.454162,-2.454016,-2.453845,-2.453696,-2.45356,-2.453413,-2.453262,-2.453135,-2.452977,-2.452827,-2.452683,-2.45254,-2.452408,-2.452276,-2.452141,-2.451997,-2.451877,-2.451734,-2.451601,-2.451466,-2.451339,-2.451212,-2.451099,-2.450965,-2.450832,-2.450719,-2.450604,-2.450484,-2.450364,-2.450258,-2.450159,-2.450033,-2.449913,-2.449813,-2.449686,-2.449573,-2.449482,-2.449372,-2.449297,-2.449246,-2.449177,-2.449083,-2.448989,-2.448865,-2.448809,-2.448725,-2.448654,-2.448591,-2.448521,-2.448453,-2.448399,-2.448323,-2.44824,-2.44819,-2.448113,-2.448025,-2.44795,-2.447887,-2.447807,-2.44773,-2.447652,-2.447612,-2.447555,-2.447483,-2.447407,-2.447324,-2.447273,-2.447226,-2.447141,-2.447067,-2.447,-2.446925,-2.446869,-2.446833,-2.446768,-2.446696,-2.446616,-2.446548,-2.44648,-2.446412,-2.446354,-2.446279,-2.446191,-2.446117,-2.446077,-2.446031,-2.445963,-2.445896,-2.44583,-2.445778,-2.445708,-2.445634,-2.445574,-2.445507,-2.445428,-2.445368,-2.44531,-2.445258,-2.445187,-2.445117,-2.445057,-2.444994,-2.444947,-2.444906,-2.444874,-2.444822,-2.444781,-2.444852,-2.44483,-2.444814,-2.444812,-2.444777,-2.444737,-2.444698,-2.444669,-2.444664,-2.444657,-2.444654,-2.444642,-2.444635,-2.444625,-2.444598,-2.444567,-2.444514,-2.444453,-2.444374,-2.444341,-2.44429,-2.444232,-2.444097,-2.444114,-2.444057,-2.443981,-2.443928,-2.443904,-2.443831,-2.443782,-2.443716,-2.44364,-2.443603,-2.443547,-2.443501,-2.443449,-2.443389,-2.443321,-2.44326,-2.443181,-2.443096,-2.443006,-2.442931,-2.442862,-2.442806,-2.442726,-2.442667,-2.442613,-2.442559,-2.442521,-2.442442,-2.442301,-2.442131,-2.44198,-2.441957,-2.441899,-2.441796,-2.441679,-2.441545,-2.441447,-2.441433,-2.441462,-2.441465,-2.441446,-2.441442,-2.441493,-2.441507,-2.441536,-2.441586,-2.441592,-2.441652,-2.44169,-2.441635,-2.441727,-2.441739,-2.441689,-2.441557,-2.441501,-2.441394,-2.441389,-2.441362,-2.441385,-2.441421,-2.441463,-2.441505,-2.441453,-2.441528,-2.441631,-2.441625,-2.441677,-2.441676,-2.441704,-2.441808,-2.441809,-2.441857,-2.441993,-2.441792,-2.44189,-2.44188,-2.44182,-2.441767,-2.441752,-2.441682,-2.441511,-2.441675,-2.441681,-2.441672,-2.441701,-2.441709,-2.441735,-2.441787,-2.441893,-2.441954,-2.441973,-2.44202,-2.442005,-2.442073,-2.442015,-2.442005,-2.441979,-2.441962,-2.441959,-2.441914,-2.441973,-2.442019,-2.442027,-2.442079,-2.44206,-2.442097,-2.442126,-2.442158,-2.442191,-2.442227,-2.442273,-2.442314,-2.442344,-2.44237,-2.442251,-2.442206,-2.442136,-2.442103,-2.44207,-2.442045,-2.442073,-2.442129,-2.44214,-2.442161,-2.442145,-2.442104,-2.442064,-2.442073,-2.442066,-2.442073,-2.442056,-2.442054,-2.442055,-2.44205,-2.442043,-2.442033,-2.442003,-2.441995,-2.441956,-2.441945,-2.441943,-2.441908,-2.441904,-2.441911,-2.441906,-2.441904,-2.441889,-2.441879,-2.441886,-2.441883,-2.441891,-2.441888,-2.441896,-2.441895,-2.441877,-2.441859,-2.441872,-2.441908,-2.441938,-2.441923,-2.441907,-2.441927,-2.441916,-2.441872,-2.441826,-2.441845,-2.441877,-2.441908,-2.441898,-2.441879,-2.441847,-2.441835,-2.44181,-2.441784,-2.441754,-2.441761,-2.441764,-2.441783,-2.441736,-2.441732,-2.44171,-2.441682,-2.441654,-2.441621,-2.44172,-2.441824,-2.441886,-2.441921,-2.44193,-2.441951,-2.441937,-2.441948,-2.441948,-2.441918,-2.441909,-2.441884,-2.44184,-2.441814,-2.441776,-2.441781,-2.441756,-2.441728,-2.441701,-2.441677,-2.441613,-2.44161,-2.441564,-2.441511,-2.441505,-2.441457,-2.441412,-2.441383,-2.441345,-2.441299,-2.441243,-2.441205,-2.441177,-2.441159,-2.441127,-2.441092,-2.441045,-2.440977,-2.440925,-2.440903,-2.440931,-2.440916,-2.440905,-2.440927,-2.440908,-2.440905,-2.440933,-2.440971,-2.44104,-2.441108,-2.441146,-2.441202,-2.441266,-2.441365,-2.441405,-2.441451,-2.441498,-2.441536,-2.44155,-2.441512,-2.441434,-2.441395,-2.441352,-2.441343,-2.441281,-2.441228,-2.441193,-2.4412,-2.441231,-2.441231,-2.441231,-2.441235,-2.441237,-2.441234,-2.441237,-2.441237,-2.441246,-2.441259,-2.441281,-2.441274,-2.441295,-2.441322,-2.441336,-2.441352,-2.441364,-2.441393,-2.441401,-2.441433,-2.441456,-2.441442,-2.441455,-2.441544,-2.44158,-2.441615,-2.441655,-2.441692,-2.4417,-2.441722,-2.441739,-2.441739,-2.441742,-2.441785,-2.441829,-2.441839,-2.441837,-2.441848,-2.441833,-2.441825,-2.441835,-2.441822,-2.441828,-2.441827,-2.441817,-2.441827,-2.44183,-2.441905,-2.44196,-2.44202,-2.442058,-2.441992,-2.441879,-2.441885,-2.441869,-2.441872,-2.441897,-2.441952,-2.442025,-2.442085,-2.44216,-2.442219,-2.442265,-2.442344,-2.442391,-2.442413,-2.442451,-2.442496,-2.442543,-2.442579,-2.442607,-2.442633,-2.442644,-2.442677,-2.442676,-2.442718,-2.442755,-2.442769,-2.442774,-2.442796,-2.442785,-2.442793,-2.442804,-2.442821,-2.442817,-2.442813,-2.442813,-2.442824,-2.442841,-2.442855,-2.442867,-2.442856,-2.442872,-2.442867,-2.442867,-2.442851,-2.442834,-2.442835,-2.44284,-2.44282,-2.442795,-2.442776,-2.442739,-2.442694,-2.44267,-2.442635,-2.442607,-2.442583,-2.442557,-2.442524,-2.442508,-2.442477,-2.442416,-2.442385,-2.442234,-2.442078,-2.441915,-2.441763,-2.441614,-2.441533,-2.441451,-2.441377,-2.441318,-2.441278,-2.441275,-2.441215,-2.441173,-2.441134,-2.441093,-2.441038,-2.440973,-2.440918,-2.440863,-2.440797,-2.440732,-2.440661,-2.440583,-2.440531,-2.440458,-2.440328,-2.440201,-2.440079,-2.439946,-2.439805,-2.439654,-2.439506,-2.439364,-2.439221,-2.439084,-2.438943,-2.438903,-2.438797,-2.438711,-2.43862,-2.438524,-2.438393,-2.438243,-2.438085,-2.43793,-2.437782,-2.43766,-2.437575,-2.437536,-2.437417,-2.43731,-2.437154,-2.436999,-2.436967,-2.436814,-2.436658,-2.436526,-2.436394,-2.436253,-2.436132,-2.435992,-2.435837,-2.435711,-2.43558,-2.435452,-2.435309,-2.435175,-2.43503,-2.434886,-2.434748,-2.434619,-2.434489,-2.434355,-2.434218,-2.434072,-2.433933,-2.433783,-2.433644,-2.433508,-2.433399,-2.43328,-2.433152,-2.433027,-2.432895,-2.432763,-2.432642,-2.432515,-2.432389,-2.432279,-2.432175,-2.432045,-2.431902,-2.431758,-2.431674,-2.431551,-2.431404,-2.431239,-2.431128,-2.431033,-2.430904,-2.430765,-2.430654,-2.43053,-2.430412,-2.430283,-2.430228,-2.430098,-2.429972,-2.429848,-2.42983,-2.429718,-2.429589,-2.429545,-2.429463,-2.429382,-2.429338,-2.429227,-2.429089,-2.428969,-2.428847,-2.428746,-2.428632,-2.428511,-2.428364,-2.428225,-2.428058,-2.427912,-2.427872,-2.427861,-2.427773,-2.427726,-2.427575,-2.427424,-2.427251,-2.427087,-2.42698,-2.426822,-2.42665,-2.4265,-2.42634,-2.42619,-2.426035,-2.425869,-2.425839,-2.42566,-2.425502,-2.42534,-2.425174,-2.425176,-2.425084,-2.424959,-2.424816,-2.424765,-2.42464,-2.424481,-2.424332,-2.424173,-2.424021,-2.423883,-2.423733,-2.423597,-2.423458,-2.423335,-2.423263,-2.423084,-2.422924,-2.422767,-2.422613,-2.422474,-2.42233,-2.422177,-2.422023,-2.421879,-2.421742,-2.421599,-2.421456,-2.421417,-2.421277,-2.421125,-2.420979,-2.420828,-2.420689,-2.420559,-2.420444,-2.420275,-2.420136,-2.419967,-2.419818,-2.419789,-2.419661,-2.419525,-2.419387,-2.41925,-2.419117,-2.418984,-2.418838,-2.418766,-2.41864,-2.418503,-2.418353,-2.418238,-2.418139,-2.417995,-2.417946,-2.41779,-2.417631,-2.417484,-2.417343,-2.417334,-2.417201,-2.417034,-2.416883,-2.416731,-2.416595,-2.416465,-2.416331,-2.416158,-2.415999,-2.415843,-2.415779,-2.415609,-2.415476,-2.415315,-2.41517,-2.415023,-2.41494,-2.414776,-2.414624,-2.414486,-2.414332,-2.414182,-2.414029,-2.413875,-2.413709,-2.413555,-2.413422,-2.413433,-2.413288,-2.413148,-2.413006,-2.412831,-2.412673,-2.412497,-2.412329,-2.412178,-2.412021,-2.411913,-2.411771,-2.411609,-2.411462,-2.411329,-2.411189,-2.411054,-2.410913,-2.410784,-2.410638,-2.4105,-2.410372,-2.410221,-2.410078,-2.409962,-2.409809,-2.40966,-2.409513,-2.409369,-2.409236,-2.409084,-2.408956,-2.408824,-2.408677,-2.408559,-2.408418,-2.408276,-2.408127,-2.407979,-2.407833,-2.407686,-2.407534,-2.40738,-2.407242,-2.407197,-2.407061,-2.406948,-2.406804,-2.406671,-2.406531,-2.406409,-2.406278,-2.406162,-2.406006,-2.405861,-2.405721,-2.405567,-2.405438,-2.405438,-2.405286,-2.405147,-2.405011,-2.404883,-2.404733,-2.40458,-2.40443,-2.404276,-2.404129,-2.403967,-2.403806,-2.403668,-2.403532,-2.403393,-2.403265,-2.403111,-2.402983,-2.402854,-2.402712,-2.402575,-2.402435,-2.402299,-2.402163,-2.40203,-2.40192,-2.401831,-2.401732,-2.401635,-2.401515,-2.401354,-2.401203,-2.401075,-2.400955,-2.400807,-2.400647,-2.400492,-2.400327,-2.400181,-2.400019,-2.399881,-2.39973,-2.399587,-2.399463,-2.399311,-2.399153,-2.399253,-2.399395,-2.399562,-2.399716,-2.399873,-2.400038,-2.400199,-2.400358,-2.400513,-2.400665,-2.400825,-2.400979,-2.401143,-2.401305,-2.401478,-2.401542,-2.401558,-2.401561,-2.401535,-2.401475,-2.401384,-2.401305,-2.401229,-2.401131,-2.401,-2.400855,-2.400715,-2.400555,-2.400379,-2.400217,-2.400067,-2.399938,-2.399826,-2.399701,-2.399578,-2.399582,-2.399499,-2.399399,-2.399346,-2.399286,-2.399242,-2.399222,-2.399199,-2.399133,-2.399025,-2.398916,-2.39882,-2.398701,-2.398592,-2.398477,-2.39836,-2.398236,-2.398122,-2.397992,-2.397876,-2.39777,-2.397658,-2.397537,-2.397442,-2.397327,-2.397212,-2.397117,-2.397163,-2.397296,-2.397406,-2.397403,-2.397336,-2.397208,-2.397093,-2.396994,-2.396896,-2.396797,-2.396748,-2.396734,-2.396719,-2.396685,-2.396533,-2.396578,-2.396435,-2.396368,-2.396518,-2.396516,-2.39667,-2.396671,-2.39667],"lat":[55.01089,55.010898,55.010874,55.010849,55.010828,55.010827,55.010793,55.010757,55.010742,55.010709,55.010679,55.010666,55.010641,55.010616,55.010586,55.010544,55.010515,55.010486,55.010441,55.010404,55.010363,55.010345,55.010345,55.010319,55.01028,55.010237,55.010207,55.010167,55.010141,55.010099,55.010045,55.009992,55.009983,55.009929,55.009874,55.00982,55.009776,55.00973,55.009676,55.009635,55.009582,55.009516,55.009455,55.009401,55.009324,55.009236,55.009155,55.009072,55.008986,55.008903,55.008818,55.008728,55.008657,55.008564,55.008475,55.0084,55.008314,55.008227,55.008141,55.008055,55.007968,55.007877,55.007794,55.007711,55.007611,55.00756,55.007473,55.007381,55.007284,55.007311,55.007233,55.007144,55.007062,55.007038,55.007038,55.006958,55.00687,55.006783,55.006694,55.006607,55.006516,55.006433,55.006345,55.006263,55.006182,55.006097,55.006001,55.005916,55.005865,55.005843,55.005837,55.005831,55.005846,55.005842,55.00583,55.005822,55.005805,55.005807,55.005817,55.005804,55.005799,55.005806,55.005788,55.005769,55.005744,55.005718,55.005687,55.005663,55.005637,55.00562,55.005589,55.00559,55.005577,55.005548,55.005533,55.005512,55.005496,55.005479,55.005453,55.005406,55.005378,55.00538,55.005382,55.005383,55.005377,55.005366,55.005372,55.005337,55.005337,55.005301,55.005313,55.005297,55.005281,55.005269,55.005225,55.005212,55.005193,55.005197,55.005192,55.005197,55.005176,55.005171,55.005176,55.005153,55.005149,55.00513,55.005116,55.005112,55.005111,55.005097,55.005084,55.005065,55.005041,55.005025,55.005004,55.004974,55.004954,55.004939,55.004924,55.004906,55.004885,55.004867,55.00485,55.00483,55.004806,55.004777,55.004765,55.00472,55.004682,55.004648,55.004624,55.004582,55.00454,55.004489,55.004453,55.00441,55.00436,55.004304,55.004269,55.004218,55.00418,55.004131,55.004141,55.00414,55.004074,55.003985,55.003928,55.003929,55.003919,55.003863,55.003772,55.003681,55.003593,55.003597,55.003505,55.003408,55.003323,55.00342,55.003517,55.003576,55.00351,55.003477,55.003425,55.003412,55.003419,55.003502,55.003572,55.003622,55.003686,55.00371,55.003742,55.003744,55.003775,55.003776,55.003719,55.003621,55.003546,55.003527,55.003579,55.003653,55.003645,55.003562,55.003563,55.003579,55.003593,55.003596,55.003585,55.003579,55.003589,55.003584,55.003575,55.003564,55.003539,55.003508,55.003438,55.003403,55.003402,55.003367,55.003347,55.00327,55.003185,55.003113,55.003066,55.003044,55.003026,55.003,55.002957,55.002948,55.002925,55.002892,55.002856,55.002826,55.002804,55.002779,55.002762,55.002734,55.002717,55.002725,55.002718,55.002709,55.002698,55.002685,55.002673,55.00266,55.002636,55.002591,55.002557,55.002502,55.002495,55.002464,55.002433,55.002405,55.002374,55.00235,55.002324,55.002293,55.002281,55.002262,55.002253,55.002249,55.002245,55.002216,55.00219,55.002158,55.002112,55.002031,55.001945,55.001857,55.001826,55.001766,55.001753,55.001674,55.001596,55.001505,55.001493,55.001441,55.001432,55.001428,55.00145,55.001511,55.001545,55.001561,55.001618,55.001683,55.001748,55.001814,55.001886,55.001973,55.001977,55.002037,55.002102,55.002163,55.00219,55.00225,55.002319,55.002303,55.002307,55.002318,55.002346,55.002363,55.002347,55.002395,55.00235,55.002387,55.002416,55.002428,55.002428,55.002404,55.002373,55.002345,55.002341,55.002321,55.002319,55.002304,55.002294,55.002293,55.002279,55.002274,55.002278,55.002252,55.002264,55.002362,55.002462,55.002552,55.002647,55.002738,55.002827,55.002911,55.002926,55.002837,55.00274,55.00265,55.002552,55.002451,55.002394,55.002303,55.002238,55.002215,55.002221,55.002231,55.002233,55.002224,55.002219,55.002214,55.002221,55.002207,55.002199,55.002183,55.002183,55.002169,55.002189,55.002196,55.002196,55.002189,55.002187,55.002187,55.002187,55.002186,55.002187,55.002197,55.00221,55.002219,55.002218,55.002204,55.002197,55.002188,55.002179,55.00218,55.002184,55.002187,55.00218,55.002177,55.002169,55.002148,55.002154,55.002162,55.002167,55.002184,55.002187,55.002181,55.002185,55.002183,55.002205,55.002205,55.002223,55.00224,55.002251,55.002276,55.002276,55.002278,55.00229,55.002294,55.002287,55.002272,55.002262,55.00225,55.002238,55.002216,55.002197,55.002179,55.002168,55.002158,55.002135,55.002122,55.00211,55.002094,55.002084,55.00209,55.002085,55.002071,55.002071,55.00206,55.002051,55.002049,55.002036,55.002017,55.002003,55.002008,55.001981,55.001998,55.001951,55.001944,55.001926,55.001902,55.001884,55.00186,55.001838,55.001814,55.0018,55.001784,55.001764,55.00174,55.001713,55.001672,55.001637,55.00162,55.001601,55.00158,55.001567,55.001549,55.001538,55.001518,55.001487,55.001459,55.001446,55.001424,55.001402,55.00136,55.001343,55.001313,55.001272,55.00123,55.00119,55.001137,55.001086,55.00102,55.000948,55.000864,55.000788,55.000714,55.000637,55.00056,55.000472,55.000389,55.000338,55.000283,55.00022,55.000141,55.000047,55.000005,54.999941,54.999884,54.999819,54.999749,54.999676,54.999612,54.999544,54.999474,54.999403,54.999338,54.999271,54.999234,54.999219,54.999198,54.999184,54.999167,54.999153,54.999129,54.999104,54.999083,54.99907,54.999052,54.999038,54.999039,54.999019,54.999006,54.999016,54.999004,54.998985,54.998974,54.99897,54.998949,54.998948,54.998932,54.998914,54.998884,54.998862,54.998833,54.998794,54.998764,54.998721,54.998683,54.998655,54.998631,54.998617,54.998584,54.998555,54.998512,54.998472,54.998439,54.99841,54.99837,54.998343,54.99828,54.998257,54.99822,54.998187,54.998139,54.998095,54.998066,54.998025,54.997977,54.997958,54.997946,54.997894,54.997854,54.997815,54.997781,54.997761,54.997712,54.997662,54.997616,54.997583,54.997528,54.997495,54.997466,54.997423,54.997395,54.997339,54.997302,54.997273,54.997235,54.997176,54.997137,54.997105,54.997063,54.997069,54.997025,54.996938,54.996891,54.996853,54.99679,54.996711,54.996652,54.996609,54.996537,54.996503,54.996457,54.996446,54.9964,54.996366,54.99633,54.99629,54.996249,54.99619,54.996159,54.996124,54.996093,54.996015,54.995935,54.995914,54.995877,54.995789,54.995743,54.995706,54.995705,54.995727,54.99574,54.995742,54.99572,54.995707,54.995715,54.995719,54.995721,54.995739,54.995753,54.995778,54.995788,54.995776,54.995781,54.995821,54.995853,54.995853,54.99589,54.995918,54.995914,54.995915,54.995938,54.99595,54.995995,54.996012,54.996025,54.996039,54.99601,54.995992,54.995983,54.995976,54.995974,54.995946,54.995923,54.995895,54.995871,54.995855,54.995846,54.995822,54.995807,54.995795,54.995768,54.99576,54.995724,54.995664,54.995622,54.995579,54.995505,54.995424,54.995357,54.995285,54.99524,54.995237,54.995282,54.995317,54.995338,54.995352,54.995359,54.995362,54.995366,54.995368,54.995358,54.995327,54.995304,54.995275,54.995255,54.995251,54.995241,54.995232,54.9952,54.995164,54.995144,54.995122,54.995107,54.995077,54.99506,54.995051,54.995035,54.995029,54.995031,54.99502,54.995007,54.994976,54.994956,54.994928,54.994916,54.994891,54.994865,54.994838,54.994806,54.994786,54.994779,54.994767,54.994749,54.994727,54.994689,54.994653,54.994614,54.994552,54.994556,54.994514,54.994461,54.99441,54.994372,54.994328,54.99428,54.994241,54.994201,54.994167,54.99412,54.994125,54.994049,54.99398,54.993896,54.993886,54.993828,54.993761,54.99372,54.99373,54.993758,54.993773,54.993816,54.993852,54.993778,54.993789,54.993779,54.993774,54.993756,54.993737,54.993726,54.993724,54.993698,54.993668,54.993637,54.993615,54.993569,54.993516,54.993469,54.993404,54.993396,54.993325,54.993273,54.99321,54.993146,54.993083,54.993073,54.993011,54.992935,54.99287,54.992824,54.992827,54.993069,54.992876,54.992966,54.992994,54.993079,54.993152,54.993151,54.99312,54.993086,54.993052,54.992995,54.992934,54.992986,54.993077,54.993077,54.993124,54.993172,54.993229,54.993287,54.993327,54.993355,54.993392,54.993449,54.993521,54.993597,54.993662,54.993715,54.993776,54.993829,54.993889,54.993941,54.994002,54.994063,54.994112,54.994161,54.994209,54.994271,54.994316,54.994369,54.994414,54.994446,54.994498,54.994559,54.994607,54.994655,54.994712,54.994748,54.994795,54.994848,54.994894,54.994931,54.994971,54.995003,54.995054,54.995104,54.995138,54.995172,54.995202,54.995224,54.995244,54.995274,54.995287,54.995311,54.995335,54.995364,54.995383,54.995417,54.995424,54.995422,54.995419,54.995412,54.995402,54.995376,54.995351,54.995341,54.995324,54.995315,54.995291,54.995266,54.995249,54.99525,54.995214,54.995193,54.995169,54.995134,54.9951,54.995069,54.99503,54.994995,54.994975,54.994957,54.994987,54.995016,54.995039,54.995058,54.995079,54.995088,54.995118,54.995143,54.995168,54.995194,54.995221,54.995235,54.995242,54.995227,54.995197,54.995174,54.995149,54.995147,54.99515,54.995158,54.995163,54.995166,54.995165,54.995167,54.995194,54.995213,54.995229,54.995245,54.995208,54.99517,54.995161,54.995175,54.995166,54.995169,54.995174,54.995186,54.995195,54.995186,54.995178,54.995182,54.995196,54.995203,54.995197,54.995192,54.995178,54.995185,54.995187,54.995199,54.995216,54.995216,54.995221,54.995224,54.995222,54.995224,54.995221,54.99521,54.995186,54.99517,54.995198,54.995221,54.995263,54.995255,54.995232,54.995199,54.99516,54.995112,54.995085,54.995069,54.995042,54.995011,54.994979,54.994961,54.994924,54.9949,54.994853,54.994902,54.994977,54.995056,54.995121,54.995189,54.995251,54.99527,54.995284,54.995292,54.995358,54.995363,54.995368,54.995369,54.995381,54.995403,54.995394,54.995388,54.995375,54.99538,54.995339,54.995334,54.995347,54.995338,54.995314,54.995314,54.9953,54.995284,54.995261,54.995255,54.995227,54.995233,54.995214,54.995197,54.995182,54.99517,54.995154,54.99513,54.995131,54.995139,54.995169,54.995203,54.995209,54.995218,54.995262,54.995304,54.99532,54.995357,54.995374,54.995418,54.99543,54.995444,54.99544,54.995477,54.995514,54.995521,54.99556,54.995605,54.995645,54.995695,54.995753,54.995808,54.995848,54.995889,54.995906,54.995954,54.996008,54.996037,54.996067,54.996115,54.996177,54.996212,54.996222,54.996202,54.996196,54.99619,54.996206,54.996224,54.996197,54.996178,54.996147,54.996127,54.996115,54.996107,54.996084,54.996054,54.996042,54.996031,54.996004,54.995983,54.995969,54.995964,54.995982,54.99599,54.996004,54.996009,54.995989,54.995982,54.99598,54.995963,54.995987,54.995982,54.995966,54.99594,54.995921,54.995905,54.995885,54.995865,54.995844,54.995814,54.99579,54.995772,54.995725,54.995669,54.995581,54.995486,54.995396,54.9953,54.995222,54.995183,54.995154,54.995124,54.995129,54.995077,54.995013,54.995055,54.995111,54.995066,54.995091,54.995112,54.995133,54.995132,54.995122,54.99509,54.995081,54.995014,54.994967,54.994905,54.994874,54.994858,54.994768,54.994667,54.994568,54.994501,54.994431,54.994352,54.99428,54.994243,54.994233,54.99423,54.994212,54.994189,54.994192,54.994187,54.994168,54.994137,54.994117,54.994098,54.994066,54.993994,54.993903,54.993813,54.993808,54.993865,54.993791,54.993716,54.993636,54.993545,54.993488,54.993448,54.993447,54.993418,54.993388,54.993341,54.993307,54.993281,54.993258,54.99323,54.993167,54.993087,54.992994,54.992898,54.992808,54.992826,54.992876,54.99292,54.992967,54.993035,54.993093,54.993134,54.993156,54.993174,54.993187,54.993192,54.993195,54.9932,54.993202,54.993195,54.993171,54.993162,54.993149,54.993133,54.993122,54.9931,54.993063,54.993022,54.992974,54.992939,54.992904,54.992872,54.992843,54.99283,54.992815,54.992774,54.992735,54.992661,54.992598,54.99254,54.992477,54.992411,54.992352,54.992275,54.992207,54.992131,54.992049,54.991964,54.991875,54.991787,54.991716,54.99165,54.991586,54.991523,54.99145,54.991381,54.991303,54.991252,54.991178,54.991101,54.991028,54.990963,54.990893,54.990814,54.990756,54.990712,54.990719,54.990672,54.990712,54.990689,54.990691,54.990712,54.990698,54.990674,54.990653,54.990665,54.990625,54.990571,54.990532,54.990548,54.9905,54.99044,54.990399,54.990326,54.990253,54.99018,54.990132,54.9901,54.990072,54.990054,54.990063,54.990031,54.98998,54.989932,54.989887,54.989828,54.989827,54.989792,54.989706,54.989645,54.989642,54.989624,54.989592,54.989562,54.989469,54.989376,54.989287,54.98928,54.989237,54.989207,54.989162,54.989116,54.989047,54.989007,54.988937,54.988887,54.988817,54.988739,54.98866,54.988589,54.988522,54.98845,54.988368,54.988325,54.988319,54.988346,54.988377,54.988426,54.98847,54.988511,54.988538,54.988569,54.988591,54.988568,54.988529,54.988474,54.988416,54.988363,54.988308,54.988246,54.988202,54.988148,54.988096,54.98805,54.988028,54.988033,54.988053,54.988043,54.98804,54.988032,54.988026,54.988011,54.987978,54.987936,54.987903,54.987857,54.987783,54.98769,54.987594,54.987499,54.987399,54.987303,54.987203,54.987103,54.987006,54.986913,54.98683,54.986761,54.986703,54.986652,54.986619,54.986653,54.986688,54.986654,54.986654,54.986702,54.986724,54.986734,54.986749,54.986779,54.986831,54.986924,54.987017,54.98711,54.9872,54.987297,54.987388,54.987479,54.987576,54.98767,54.987749,54.987815,54.987819,54.987786,54.98779,54.987785,54.987771,54.987763,54.987769,54.987773,54.987784,54.987789,54.987795,54.987805,54.987821,54.987832,54.987834,54.987849,54.987852,54.98785,54.98786,54.987855,54.987864,54.987869,54.987881,54.987881,54.987881,54.987887,54.987879,54.987889,54.987894,54.987902,54.987894,54.98792,54.987914,54.987911,54.987868,54.987911,54.98794,54.987929,54.987916,54.987915,54.987915,54.987912,54.987931,54.987934,54.987956,54.987975,54.987984,54.987979,54.987983,54.987988,54.988001,54.988015,54.988013,54.988009,54.98801,54.988019,54.988027,54.988036,54.988028,54.988034,54.988035,54.988046,54.988049,54.988052,54.988041,54.988046,54.988043,54.988032,54.988018,54.987971,54.987943,54.98791,54.987858,54.98777,54.987678,54.987574,54.987608,54.987703,54.987802,54.987902,54.987985,54.988052,54.988136,54.988164,54.988157,54.988132,54.988111,54.988136,54.988187,54.988254,54.988343,54.988422,54.98843,54.988357,54.988261,54.988162,54.988068,54.987977,54.987886,54.987796,54.987706,54.987607,54.987509,54.987408,54.987309,54.987214,54.987118,54.987029,54.986938,54.98686,54.986795,54.986734,54.986681,54.986644,54.986668,54.986697,54.986704,54.986735,54.986796,54.986801,54.986804,54.986813,54.986787,54.986773,54.986747,54.986737,54.986646,54.986631,54.986615,54.98655,54.986473,54.986458,54.986414,54.986335,54.986302,54.986226,54.986171,54.986138,54.986117,54.986138,54.986106,54.986088,54.986078,54.986038,54.986055,54.986042,54.986033,54.986024,54.986006,54.985985,54.986034,54.985987,54.985923,54.985908,54.985923,54.985915,54.985903,54.985929,54.985951,54.985997,54.98604,54.986084,54.986138,54.986131,54.986111,54.986071,54.985991,54.985923,54.98594,54.985957,54.985952,54.985947,54.98586,54.985777,54.985686,54.985601,54.985516,54.985434,54.985347,54.985265,54.985176,54.98509,54.985004,54.984911,54.984828,54.984738,54.984644,54.984562,54.984486,54.984414,54.984344,54.984254,54.984162,54.984067,54.983984,54.983896,54.983808,54.983712,54.983628,54.983544,54.983453,54.983368,54.983283,54.983192,54.983102,54.983016,54.982934,54.982854,54.982786,54.982697,54.982609,54.982517,54.982448,54.982367,54.982271,54.982178,54.982087,54.981996,54.981911,54.981822,54.981734,54.981651,54.98156,54.981468,54.981379,54.981286,54.981199,54.981112,54.981024,54.980939,54.980848,54.980758,54.980664,54.980571,54.980487,54.980394,54.980309,54.980224,54.980137,54.980058,54.980018,54.979922,54.979836,54.97975,54.979734,54.979706,54.97968,54.979582,54.979483,54.979383,54.979326,54.979231,54.979141,54.979044,54.978948,54.978851,54.978753,54.978657,54.978556,54.978467,54.978371,54.978272,54.978176,54.978081,54.977986,54.977891,54.977796,54.977702,54.977604,54.977513,54.977413,54.977319,54.977222,54.977132,54.977099,54.977002,54.976908,54.976813,54.976717,54.976626,54.976572,54.976479,54.976403,54.976327,54.976255,54.976172,54.976083,54.975989,54.975894,54.975804,54.975714,54.975621,54.975531,54.975437,54.975338,54.975242,54.97515,54.975114,54.975038,54.974962,54.974889,54.974825,54.974757,54.974688,54.974667,54.974627,54.974569,54.974518,54.974473,54.97444,54.974392,54.974341,54.974311,54.97429,54.974258,54.974228,54.974205,54.974173,54.974133,54.974075,54.974008,54.973937,54.973858,54.973776,54.97369,54.973603,54.973511,54.973425,54.973332,54.973248,54.973174,54.973088,54.973082,54.973047,54.973019,54.972998,54.972992,54.972984,54.97298,54.972968,54.972957,54.972939,54.972905,54.972857,54.972836,54.972809,54.972778,54.972732,54.97266,54.97257,54.972478,54.972418,54.972389,54.972358,54.972325,54.972288,54.972257,54.972227,54.972194,54.972166,54.972142,54.972118,54.972088,54.972059,54.972035,54.972008,54.971989,54.971967,54.971943,54.97194,54.971944,54.971955,54.97197,54.971986,54.971997,54.972006,54.972015,54.972024,54.972031,54.972058,54.972068,54.972094,54.972098,54.972086,54.972141,54.972178,54.972192,54.972196,54.972197,54.972213,54.972236,54.972242,54.972262,54.972285,54.972301,54.972319,54.972334,54.97235,54.972367,54.972384,54.972406,54.972428,54.97245,54.972469,54.972488,54.972507,54.972527,54.97254,54.972558,54.972573,54.972597,54.972619,54.972636,54.972652,54.972675,54.972701,54.97272,54.972733,54.972746,54.972759,54.972798,54.972817,54.972834,54.972851,54.972867,54.97289,54.972916,54.972943,54.972958,54.97298,54.973004,54.973027,54.973059,54.97307,54.973088,54.973111,54.97313,54.973117,54.973038,54.972949,54.972852,54.972758,54.972662,54.972566,54.972479,54.972388,54.972299,54.972207,54.972116,54.972025,54.971931,54.971836,54.971758,54.971685,54.971603,54.971512,54.971415,54.971334,54.971244,54.971164,54.971092,54.970999,54.970904,54.970812,54.970721,54.970627,54.97054,54.970447,54.970348,54.970257,54.970165,54.970077,54.969984,54.969896,54.969824,54.969726,54.969679,54.969606,54.969529,54.969463,54.96937,54.96928,54.969188,54.969123,54.969065,54.968988,54.968954,54.96887,54.968781,54.96869,54.968598,54.968509,54.968412,54.968313,54.968226,54.968169,54.968076,54.967987,54.967896,54.967801,54.96771,54.967614,54.967523,54.967431,54.96734,54.967246,54.967151,54.96706,54.966968,54.96688,54.966789,54.966705,54.966609,54.966522,54.966438,54.966346,54.966248,54.966158,54.966072,54.965986,54.965919,54.965837,54.965771,54.96571,54.965645,54.965573,54.965493,54.965404,54.965317,54.965225,54.965126,54.965037,54.964939,54.96484,54.964745,54.964669,54.964569,54.964468,54.964371,54.964278,54.964189,54.964091,54.964007,54.963911,54.96381,54.963719,54.963623,54.963533,54.963435,54.963341,54.96325,54.963156,54.963064,54.962968,54.962867,54.96277,54.962675,54.962593,54.962496,54.962403,54.962354,54.962453,54.962416,54.962335,54.962297,54.962208,54.962127,54.962053,54.96199,54.961899,54.961821,54.961741,54.961662,54.961591,54.961509,54.961431,54.961343,54.961266,54.961173,54.961089,54.961012,54.960922,54.960847,54.960777,54.960703,54.960633,54.96056,54.96047,54.960375,54.960279,54.960225,54.960129,54.960059,54.959969,54.95987,54.959774,54.959682,54.959583,54.959492,54.959398,54.959307,54.959214,54.959122,54.959036,54.958948,54.958863,54.958768,54.95868,54.95859,54.958495,54.9584,54.958311,54.958224,54.958123,54.958024,54.957934,54.957835,54.95774,54.95765,54.957556,54.95746,54.957362,54.957267,54.957168,54.957066,54.956976,54.956883,54.956786,54.956685,54.956594,54.956501,54.956411,54.956316,54.956216,54.956125,54.956032,54.955938,54.955846,54.955748,54.955656,54.955554,54.955456,54.955366,54.955266,54.955175,54.955076,54.954979,54.954883,54.954785,54.954693,54.954595,54.954501,54.954411,54.954311,54.954214,54.954128,54.954034,54.953938,54.953846,54.953748,54.953658,54.953562,54.953466,54.953372,54.953282,54.953189,54.953181,54.953089,54.952991,54.952901,54.952805,54.952704,54.95261,54.952515,54.952429,54.952333,54.952236,54.952141,54.952042,54.951946,54.951854,54.951754,54.951662,54.95157,54.951473,54.951378,54.951279,54.951265,54.951227,54.951192,54.951154,54.951121,54.951085,54.951039,54.951002,54.950968,54.950932,54.950879,54.950834,54.950789,54.950743,54.9507,54.950651,54.950558,54.950476,54.950411,54.950332,54.950263,54.950188,54.950162,54.950067,54.949978,54.949883,54.949785,54.949693,54.949598,54.949512,54.949426,54.949352,54.949335,54.949309,54.949297,54.949291,54.94928,54.94933,54.949342,54.949384,54.949418,54.94946,54.949488,54.949504,54.949531,54.94956,54.949579,54.949635,54.949697,54.949758,54.949808,54.949856,54.949815,54.94979,54.94978,54.94979,54.949791,54.949797,54.949806,54.949817,54.94982,54.949801,54.949749,54.949695,54.949648,54.949623,54.949589,54.949559,54.949555,54.949565,54.949563,54.949549,54.94953,54.94952,54.949517,54.949513,54.949502,54.949468,54.949396,54.949371,54.949337,54.949293,54.949247,54.949217,54.949164,54.949116,54.949064,54.949022,54.948955,54.948888,54.948808,54.948728,54.948653,54.948581,54.948509,54.948428,54.948346,54.948279,54.948187,54.948139,54.948068,54.948,54.947925,54.947848,54.947765,54.947682,54.947597,54.947507,54.94748,54.947387,54.947294,54.947211,54.947119,54.947033,54.946942,54.946854,54.946763,54.946677,54.946594,54.946504,54.946418,54.946335,54.946238,54.946157,54.946062,54.945965,54.945869,54.945779,54.94568,54.945587,54.945505,54.945409,54.945315,54.945229,54.945173,54.945075,54.944993,54.9449,54.944817,54.944719,54.944622,54.944528,54.944436,54.944348,54.94426,54.944163,54.944077,54.944008,54.943935,54.943841,54.943751,54.943664,54.94357,54.943477,54.943377,54.943283,54.943186,54.943089,54.942997,54.942904,54.942811,54.942721,54.942627,54.942532,54.942438,54.942347,54.94226,54.94218,54.942097,54.94201,54.941925,54.941837,54.941748,54.941653,54.941556,54.941458,54.94136,54.941264,54.941174,54.941082,54.941074,54.940981,54.940912,54.940831,54.940745,54.940661,54.940583,54.940506,54.940424,54.940361,54.940325,54.940312,54.940374,54.940429,54.940429,54.940352,54.940262,54.940167,54.94007,54.939978,54.939891,54.939811,54.939734,54.939667,54.9396,54.939532,54.939466,54.939386,54.939304,54.939216,54.939146,54.939061,54.938992,54.938919,54.938848,54.938771,54.93869,54.938603,54.938519,54.938419,54.938419,54.938356,54.938263,54.93822,54.938216,54.938167,54.938103,54.938049,54.938008,54.937979,54.937955,54.937924,54.937888,54.937878,54.937882,54.937882,54.937863,54.937821,54.937793,54.937755,54.937727,54.937693,54.937649,54.937596,54.937544,54.93748,54.937429,54.93738,54.937293,54.937203,54.937117,54.937019,54.936935,54.936861,54.936782,54.936693,54.936625,54.936546,54.936477,54.936392,54.93631,54.936225,54.936181,54.936134,54.936075,54.936047,54.936011,54.935968,54.935892,54.935816,54.935754,54.935704,54.935643,54.93562,54.935634,54.935644,54.935615,54.935605,54.935615,54.935647,54.935633,54.935647,54.93563,54.935629,54.935612,54.935642,54.935631,54.935557,54.935523,54.935426,54.935329,54.935238,54.935143,54.935045,54.934956,54.934857,54.934757,54.93466,54.934569,54.934537,54.93454,54.934592,54.934502,54.934402,54.934311,54.934212,54.934135,54.934101,54.934027,54.933974,54.93393,54.933897,54.933885,54.933799,54.933746,54.9337,54.933637,54.933545,54.933455,54.933362,54.933268,54.933195,54.93312,54.933049,54.932981,54.932903,54.93283,54.932754,54.93267,54.932591,54.93252,54.932472,54.932392,54.932309,54.932226,54.93215,54.932068,54.931993,54.931915,54.931831,54.931738,54.931725,54.931725,54.931634,54.93154,54.931451,54.931361,54.931273,54.93119,54.931098,54.931004,54.930907,54.93082,54.930735,54.930638,54.930541,54.930447,54.930348,54.930253,54.930156,54.930065,54.929969,54.929877,54.929781,54.929686,54.929584,54.929489,54.929395,54.929351,54.929286,54.929208,54.929125,54.929063,54.928983,54.928893,54.928822,54.928772,54.928705,54.928625,54.928548,54.928465,54.928379,54.928315,54.928226,54.928135,54.928039,54.927946,54.927851,54.927824,54.92773,54.927633,54.92754,54.927445,54.927353,54.927256,54.927159,54.927072,54.926974,54.926883,54.926789,54.926703,54.926609,54.926525,54.92649,54.926403,54.926356,54.926259,54.926165,54.926076,54.925983,54.925887,54.925798,54.925712,54.925623,54.925542,54.925455,54.925366,54.925278,54.925191,54.925106,54.925023,54.924932,54.924844,54.924749,54.924656,54.924591,54.924508,54.924416,54.924319,54.924229,54.924139,54.92406,54.923968,54.923875,54.92381,54.923733,54.923645,54.923556,54.923464,54.923367,54.923277,54.923185,54.92309,54.922992,54.922896,54.922804,54.922704,54.922611,54.922522,54.92243,54.922356,54.922267,54.922171,54.92208,54.921989,54.921901,54.921814,54.921726,54.921634,54.921545,54.921451,54.921363,54.921268,54.921172,54.921146,54.92105,54.921042,54.92095,54.920873,54.920807,54.92074,54.920679,54.920602,54.920514,54.920425,54.920343,54.920258,54.92016,54.92007,54.919992,54.919904,54.919818,54.919729,54.919644,54.919567,54.919506,54.919445,54.919388,54.91932,54.919254,54.919194,54.919134,54.919084,54.919049,54.91901,54.918984,54.91894,54.918923,54.918898,54.918885,54.918872,54.918861,54.918851,54.918841,54.918839,54.918836,54.918824,54.918814,54.918823,54.918829,54.918829,54.918805,54.918784,54.918745,54.918738,54.918728,54.918716,54.918733,54.918737,54.918736,54.918652,54.918565,54.91848,54.918393,54.918297,54.918205,54.918114,54.918027,54.917937,54.917849,54.917754,54.917667,54.91757,54.917474,54.917385,54.917296,54.917202,54.917111,54.917016,54.916921,54.916832,54.916736,54.916642,54.916543,54.916452,54.916365,54.916275,54.916176,54.916084,54.915999,54.915913,54.915859,54.915769,54.915671,54.915574,54.915482,54.915393,54.915301,54.915203,54.915105,54.915015,54.914925,54.91483,54.914762,54.914662,54.914565,54.914474,54.914375,54.914285,54.914195,54.914102,54.914006,54.913912,54.913815,54.913716,54.913622,54.913529,54.913443,54.913346,54.913255,54.913168,54.913076,54.912985,54.912893,54.912816,54.912728,54.912685,54.912592,54.912497,54.912401,54.912301,54.912202,54.912103,54.91201,54.911921,54.91183,54.911738,54.911647,54.911559,54.911462,54.911361,54.911268,54.911169,54.911075,54.910984,54.910891,54.910797,54.910703,54.910606,54.910512,54.910424,54.910336,54.910243,54.910152,54.910055,54.909963,54.909871,54.909777,54.909679,54.909588,54.909505,54.909407,54.909317,54.909227,54.909132,54.909038,54.908947,54.908864,54.908766,54.908677,54.908582,54.908492,54.908393,54.908303,54.908205,54.908116,54.908021,54.907929,54.907837,54.907745,54.907654,54.907564,54.90747,54.90737,54.907279,54.907188,54.907099,54.907003,54.906956,54.906866,54.906767,54.906679,54.906582,54.906484,54.906391,54.906303,54.906213,54.906123,54.906034,54.90594,54.905852,54.905768,54.905679,54.905589,54.9055,54.905411,54.905328,54.905236,54.905147,54.905059,54.905002,54.904908,54.904808,54.90472,54.904623,54.904536,54.904452,54.90436,54.904267,54.904177,54.904089,54.903997,54.903904,54.903812,54.903717,54.903623,54.903531,54.903449,54.903356,54.903278,54.903188,54.903098,54.903,54.902902,54.902804,54.902708,54.90261,54.902515,54.902423,54.902326,54.902228,54.902129,54.902031,54.901941,54.901881,54.901789,54.901696,54.901612,54.901518,54.901422,54.901348,54.90126,54.901184,54.901117,54.901064,54.901012,54.900953,54.900864,54.900832,54.900743,54.900656,54.900672,54.900669,54.900655,54.900654,54.900645,54.900617,54.900582,54.900559,54.900504,54.900446,54.900384,54.900307,54.900232,54.900133,54.900035,54.899942,54.899839,54.899744,54.89965,54.89956,54.899467,54.899372,54.899273,54.899184,54.899094,54.898992,54.898894,54.8988,54.898697,54.898603,54.898509,54.898415,54.898322,54.898234,54.898134,54.898038,54.897945,54.897862,54.897767,54.897665,54.897572,54.897472,54.897371,54.897267,54.897168,54.897073,54.896975,54.896878,54.896794,54.896703,54.896611,54.896519,54.896429,54.896336,54.896244,54.896151,54.896056,54.895958,54.895863,54.895763,54.895675,54.895582,54.895491,54.8954,54.895306,54.895216,54.895119,54.895026,54.894929,54.894834,54.894738,54.894645,54.894552,54.894464,54.894386,54.894302,54.894212,54.894128,54.894037,54.893943,54.893852,54.893773,54.893776,54.893695,54.893604,54.893512,54.893421,54.893329,54.893238,54.893144,54.893044,54.892948,54.892853,54.892754,54.892663,54.892564,54.892473,54.892436,54.892338,54.892237,54.892142,54.892046,54.891954,54.891859,54.89183,54.891739,54.891648,54.891581,54.891489,54.891389,54.891295,54.891209,54.891119,54.891026,54.890933,54.890839,54.890741,54.89066,54.890577,54.890488,54.890396,54.890303,54.89022,54.890133,54.890055,54.89002,54.889925,54.889835,54.889767,54.889682,54.889582,54.889496,54.889424,54.889327,54.889228,54.889137,54.889042,54.888951,54.888853,54.888765,54.888675,54.888621,54.888553,54.888481,54.888398,54.888313,54.888222,54.88813,54.88804,54.887951,54.887861,54.88777,54.88768,54.887589,54.887496,54.887416,54.887342,54.887267,54.887179,54.887098,54.887047,54.887066,54.887059,54.887048,54.887034,54.887006,54.886964,54.886914,54.886848,54.886763,54.88668,54.886598,54.886524,54.886428,54.886333,54.886238,54.886152,54.886062,54.885973,54.885908,54.885825,54.885734,54.885637,54.885544,54.885447,54.885355,54.88526,54.885173,54.885082,54.885072,54.884996,54.884899,54.884805,54.88471,54.884615,54.884524,54.884428,54.884343,54.884282,54.884222,54.884186,54.884124,54.88405,54.883968,54.883898,54.883828,54.883812,54.883781,54.883693,54.883599,54.883496,54.883394,54.883299,54.883202,54.883124,54.883041,54.882969,54.882895,54.882854,54.882781,54.882778,54.882717,54.882667,54.882612,54.882544,54.882562,54.882492,54.882412,54.882328,54.882255,54.882176,54.882099,54.882014,54.881922,54.881868,54.881782,54.881699,54.881617,54.88153,54.881445,54.881366,54.881283,54.8812,54.88112,54.881038,54.880957,54.880869,54.880782,54.880694,54.880611,54.88053,54.880453,54.880372,54.880293,54.880208,54.880123,54.880045,54.879963,54.879878,54.879797,54.879712,54.879636,54.879619,54.879525,54.879431,54.879329,54.879232,54.879132,54.879036,54.878939,54.878896,54.87888,54.878821,54.87872,54.878624,54.878539,54.878451,54.878363,54.878291,54.878218,54.878148,54.878062,54.878001,54.877919,54.877841,54.877758,54.877673,54.877587,54.87749,54.877396,54.877307,54.877212,54.877115,54.8771,54.877018,54.87695,54.876856,54.876766,54.876668,54.876586,54.876496,54.876403,54.876308,54.876211,54.87612,54.87603,54.875929,54.875835,54.875745,54.875678,54.875614,54.875547,54.875493,54.875434,54.875356,54.875295,54.87523,54.875162,54.8751,54.875039,54.874994,54.874986,54.874895,54.8748,54.874712,54.874651,54.874626,54.874573,54.874543,54.874503,54.874448,54.874423,54.874368,54.874271,54.874215,54.874311,54.874398,54.874435,54.874457,54.874462,54.874436,54.874354,54.874285,54.874227,54.874143,54.874042,54.87395,54.873856,54.873788,54.873718,54.873655,54.873647,54.873586,54.873518,54.873448,54.873367,54.873284,54.873196,54.873102,54.873013,54.872923,54.87284,54.872746,54.872664,54.872575,54.872494,54.8724,54.872311,54.872225,54.872136,54.872046,54.871948,54.871989,54.871891,54.871797,54.871704,54.871613,54.871517,54.871421,54.87133,54.871232,54.871137,54.871052,54.870961,54.87088,54.870827,54.870763,54.87071,54.870664,54.870608,54.87056,54.870507,54.870443,54.870379,54.87035,54.870314,54.870312,54.870336,54.870327,54.870299,54.870287,54.870287,54.870236,54.870139,54.870045,54.869945,54.869899,54.869808,54.869725,54.869695,54.869637,54.869615,54.869521,54.869428,54.869381,54.869287,54.8692,54.86911,54.869024,54.868969,54.868918,54.868828,54.868734,54.868634,54.868551,54.86846,54.868371,54.868283,54.868208,54.868142,54.868077,54.868002,54.867935,54.867846,54.86777,54.867696,54.867615,54.867532,54.86746,54.867394,54.867347,54.867311,54.867268,54.86722,54.867178,54.86713,54.867064,54.867001,54.866935,54.86688,54.866818,54.866767,54.866709,54.866655,54.866598,54.866543,54.866482,54.866421,54.866363,54.866293,54.866228,54.866168,54.866099,54.866029,54.865978,54.865931,54.865881,54.865823,54.865773,54.865711,54.865668,54.865653,54.865652,54.86566,54.865679,54.865715,54.865756,54.8658,54.865835,54.865875,54.865878,54.865792,54.865717,54.865642,54.865562,54.865492,54.865423,54.86535,54.865262,54.865185,54.865103,54.865044,54.864966,54.864887,54.864813,54.864753,54.864666,54.864582,54.864497,54.864417,54.864327,54.864243,54.86415,54.864055,54.863962,54.86387,54.863773,54.863681,54.863586,54.863501,54.86341,54.863324,54.863235,54.86316,54.863078,54.862992,54.862902,54.862815,54.862731,54.862637,54.862551,54.862465,54.862379,54.862297,54.862215,54.862122,54.862038,54.861948,54.861863,54.861772,54.861683,54.861593,54.861503,54.861426,54.861355,54.861287,54.861192,54.861103,54.861078,54.860986,54.860905,54.860902,54.860886,54.860831,54.860786,54.860714,54.860631,54.860542,54.860468,54.860385,54.860292,54.860207,54.860131,54.86006,54.859989,54.859923,54.859854,54.859788,54.859744,54.859693,54.859637,54.859594,54.859538,54.859489,54.859439,54.859396,54.859343,54.859286,54.859227,54.859155,54.859081,54.858982,54.858905,54.858829,54.858815,54.858786,54.858724,54.858661,54.858636,54.858583,54.858532,54.858481,54.85847,54.858449,54.858425,54.858401,54.858402,54.858383,54.858362,54.858345,54.858325,54.858287,54.858256,54.85822,54.858238,54.858244,54.858253,54.858231,54.858186,54.858151,54.858117,54.85807,54.858022,54.857939,54.857851,54.857807,54.857722,54.857636,54.857567,54.85751,54.857433,54.857342,54.857258,54.857181,54.85713,54.857044,54.856984,54.856911,54.856833,54.856752,54.856672,54.856591,54.856522,54.85647,54.856418,54.856359,54.856293,54.856219,54.856133,54.856041,54.855945,54.855849,54.855765,54.85568,54.855591,54.855507,54.855428,54.855353,54.85527,54.855203,54.855132,54.855054,54.854967,54.854871,54.854775,54.854677,54.854584,54.854495,54.854402,54.854328,54.854236,54.854148,54.85407,54.853983,54.85395,54.853864,54.853828,54.853764,54.853704,54.853636,54.853579,54.853526,54.853469,54.853413,54.853346,54.853274,54.853191,54.853109,54.853021,54.85293,54.852841,54.852771,54.852707,54.852668,54.852657,54.852639,54.852622,54.852554,54.852501,54.852452,54.852386,54.852342,54.852292,54.852224,54.852168,54.852112,54.852054,54.851982,54.851906,54.85185,54.851769,54.851676,54.851589,54.851505,54.851414,54.851324,54.851233,54.851143,54.851057,54.850966,54.850893,54.85081,54.850718,54.850628,54.850543,54.850468,54.850398,54.850342,54.850308,54.850269,54.850238,54.850211,54.85016,54.850101,54.850036,54.849959,54.849885,54.849812,54.849728,54.849647,54.849642,54.849564,54.849475,54.84939,54.849328,54.849273,54.84919,54.849097,54.849002,54.848912,54.84883,54.848759,54.84869,54.848627,54.848576,54.848507,54.848431,54.848351,54.848267,54.848257,54.848188,54.848093,54.848007,54.847915,54.847834,54.847755,54.847699,54.84762,54.847539,54.847465,54.847388,54.847328,54.84726,54.847197,54.84712,54.847051,54.84698,54.846912,54.846841,54.846765,54.846685,54.846618,54.846553,54.846485,54.846443,54.846359,54.846273,54.846183,54.846094,54.846002,54.845904,54.845821,54.845735,54.845649,54.845557,54.845481,54.8454,54.845313,54.845221,54.845129,54.845041,54.844951,54.844859,54.84477,54.844729,54.844634,54.844549,54.844469,54.844431,54.844342,54.844251,54.844156,54.84407,54.84398,54.843886,54.843792,54.843704,54.843627,54.843535,54.843519,54.84349,54.843462,54.843447,54.84343,54.843417,54.843422,54.84339,54.843311,54.843228,54.843136,54.843052,54.842986,54.842896,54.842807,54.842725,54.842644,54.842594,54.842507,54.842419,54.842331,54.842237,54.84214,54.842046,54.841955,54.841854,54.841763,54.841674,54.84158,54.841488,54.841392,54.841301,54.841204,54.84111,54.841016,54.840921,54.840827,54.8408,54.840715,54.840616,54.840525,54.840435,54.840342,54.840253,54.840163,54.840074,54.839978,54.839885,54.839782,54.839681,54.839589,54.839495,54.8394,54.839303,54.839206,54.839112,54.839017,54.838949,54.83888,54.838807,54.838727,54.838677,54.838607,54.83853,54.838436,54.83834,54.838248,54.83816,54.838069,54.83798,54.837891,54.8378,54.837703,54.83761,54.837517,54.837418,54.837326,54.837232,54.837137,54.837035,54.836944,54.836848,54.836756,54.836656,54.83656,54.836469,54.83638,54.836289,54.836199,54.83611,54.836013,54.835924,54.835833,54.835745,54.835661,54.83557,54.835479,54.835439,54.835352,54.83527,54.835201,54.835134,54.83507,54.83501,54.834941,54.834869,54.834804,54.83474,54.834675,54.83461,54.834545,54.834477,54.834415,54.834354,54.83429,54.834222,54.834158,54.834098,54.834042,54.833981,54.833924,54.833854,54.83379,54.833737,54.833675,54.833615,54.833558,54.833488,54.833463,54.833518,54.833565,54.833537,54.833563,54.833614,54.834048,54.834108,54.83417,54.834229,54.834299,54.834357,54.834423,54.834503,54.83457,54.834639,54.834711,54.834773,54.834835,54.834906,54.834987,54.835044,54.8351,54.835162,54.835226,54.835295,54.835234,54.835158,54.835113,54.835037,54.834966,54.834903,54.834839,54.834771,54.834701,54.834638,54.834571,54.834504,54.834437,54.834363,54.834299,54.834227,54.834166,54.834099,54.834031,54.833965,54.833891,54.833823,54.833755,54.83369,54.83362,54.833549,54.833483,54.83342,54.833355,54.833287,54.833211,54.833141,54.833073,54.832998,54.832933,54.832864,54.832793,54.832718,54.832655,54.832593,54.832528,54.832454,54.832392,54.832323,54.832258,54.83219,54.832123,54.832047,54.831982,54.831911,54.831851,54.831856,54.831776,54.831703,54.83164,54.831574,54.8315,54.831432,54.831357,54.831289,54.831225,54.831158,54.831098,54.831029,54.830966,54.830901,54.83083,54.830757,54.83069,54.830622,54.830553,54.830489,54.830419,54.830347,54.83028,54.830208,54.830147,54.830077,54.83001,54.829947,54.829886,54.829812,54.829739,54.829674,54.829607,54.829542,54.829481,54.829411,54.829337,54.829278,54.829213,54.829146,54.829092,54.82903,54.828975,54.828927,54.828871,54.828817,54.828775,54.828719,54.828657,54.828605,54.828547,54.82849,54.828436,54.828386,54.828333,54.828286,54.82823,54.82818,54.828136,54.828088,54.828059,54.828018,54.827969,54.82794,54.827901,54.827855,54.827819,54.827772,54.827731,54.827683,54.827646,54.827614,54.827579,54.827523,54.827476,54.827428,54.827374,54.827336,54.827281,54.827233,54.827183,54.827134,54.827081,54.827017,54.826962,54.826905,54.82685,54.82679,54.826739,54.826682,54.826617,54.826549,54.826485,54.82643,54.826366,54.826304,54.826246,54.826179,54.826102,54.826028,54.825956,54.825875,54.825802,54.82574,54.82567,54.825594,54.825512,54.825429,54.825339,54.825253,54.825171,54.825093,54.825019,54.824934,54.824841,54.824751,54.824664,54.824577,54.824488,54.824401,54.824321,54.824231,54.824141,54.824055,54.823977,54.823893,54.823802,54.823713,54.82363,54.823542,54.823455,54.823362,54.823273,54.823186,54.823098,54.823007,54.822916,54.822832,54.822744,54.822655,54.822567,54.822479,54.822385,54.8223,54.822219,54.82213,54.822048,54.82196,54.821869,54.821775,54.821694,54.821616,54.821537,54.821443,54.821348,54.821262,54.821174,54.821079,54.820986,54.820896,54.820815,54.820727,54.820643,54.820552,54.820469,54.820384,54.820288,54.820207,54.820121,54.820032,54.819945,54.819854,54.81976,54.81967,54.819577,54.819484,54.81943,54.81933,54.81923,54.81914,54.819045,54.818955,54.818858,54.818756,54.818657,54.818561,54.818467,54.818372,54.818272,54.818171,54.818077,54.817986,54.817893,54.817805,54.817716,54.81762,54.817527,54.817485,54.817438,54.817371,54.81728,54.817188,54.817089,54.816995,54.81691,54.816823,54.816726,54.816647,54.816555,54.816462,54.816372,54.816281,54.816195,54.816113,54.816028,54.81594,54.815851,54.815765,54.815674,54.815579,54.815493,54.815404,54.815321,54.815234,54.815144,54.81505,54.814963,54.814906,54.814916,54.814873,54.814776,54.814686,54.814611,54.814538,54.814487,54.814411,54.814308,54.814212,54.81412,54.814019,54.813921,54.81382,54.813716,54.813625,54.813526,54.81343,54.813343,54.813254,54.813168,54.813089,54.812991,54.812901,54.81284,54.812754,54.812679,54.812586,54.812489,54.812396,54.812308,54.81221,54.812116,54.812016,54.811919,54.811828,54.811733,54.811639,54.81154,54.811444,54.811368,54.811273,54.81118,54.811204,54.811128,54.811197,54.811193,54.811287,54.811372,54.811466,54.811531,54.811541,54.811531,54.811437,54.811405,54.811313,54.811212,54.811114,54.811027,54.810954,54.810865,54.810765,54.810673,54.810661,54.810747,54.810831,54.810922,54.811014,54.811105,54.811119,54.811027,54.81093,54.810835,54.810745,54.810657,54.810559,54.810462,54.810368,54.810268,54.810175,54.810086,54.809988,54.8099,54.809803,54.809713,54.809672,54.809763,54.809743,54.809654,54.809554,54.809455,54.809361,54.809299,54.809206,54.809108,54.80901,54.808923,54.808824,54.808733,54.808632,54.808534,54.808436,54.808343,54.808251,54.808158,54.808053,54.807961,54.807872,54.807778,54.807683,54.80759,54.807499,54.80742,54.807326,54.807232,54.807138,54.807043,54.806952,54.806858,54.806767,54.806667,54.806571,54.806468,54.806374,54.806279,54.806184,54.806087,54.805991,54.805896,54.805802,54.805706,54.805609,54.805516,54.805421,54.805328,54.805236,54.805135,54.805038,54.804946,54.804846,54.804747,54.804659,54.804565,54.804468,54.80437,54.804272,54.804176,54.80408,54.803984,54.803894,54.803798,54.803704,54.803608,54.803515,54.803465,54.803381,54.803304,54.80322,54.803123,54.803027,54.802933,54.802913,54.802822,54.802729,54.80263,54.802535,54.802439,54.802344,54.802246,54.802154,54.802059,54.801961,54.801868,54.80177,54.801672,54.801583,54.801483,54.801394,54.801305,54.801215,54.801128,54.801032,54.800954,54.800857,54.800763,54.800673,54.800579,54.800489,54.800398,54.800305,54.800282,54.800187,54.800099,54.800005,54.799906,54.799836,54.799738,54.799644,54.799553,54.799459,54.799365,54.799274,54.799176,54.799086,54.798995,54.798906,54.798818,54.798733,54.79866,54.798569,54.79848,54.798386,54.798292,54.798191,54.7981,54.798021,54.797932,54.797845,54.797842,54.797756,54.797692,54.797601,54.797511,54.797417,54.797321,54.797221,54.797129,54.79703,54.796932,54.796839,54.796748,54.796653,54.796553,54.796452,54.796351,54.796258,54.79616,54.796061,54.795966,54.79587,54.795777,54.795684,54.79559,54.795497,54.795398,54.795304,54.795227,54.795135,54.795041,54.794947,54.79485,54.794759,54.794661,54.794566,54.794467,54.794369,54.794281,54.794186,54.794114,54.794018,54.793919,54.793827,54.793732,54.79364,54.793649,54.793554,54.79346,54.79337,54.793275,54.79318,54.793091,54.792998,54.792909,54.792819,54.792729,54.79266,54.79257,54.79248,54.792379,54.792283,54.792227,54.792138,54.792046,54.791957,54.791873,54.791782,54.791692,54.791605,54.791516,54.791418,54.79133,54.791234,54.791143,54.791052,54.790958,54.790863,54.790769,54.790677,54.790582,54.79049,54.7904,54.79031,54.790214,54.790123,54.790023,54.789927,54.78983,54.789737,54.789646,54.789546,54.789445,54.789346,54.789248,54.78915,54.789054,54.788962,54.78887,54.788771,54.788678,54.788578,54.788524,54.788428,54.788338,54.788243,54.788141,54.788048,54.787957,54.787867,54.78777,54.787678,54.787579,54.787483,54.787393,54.787299,54.787206,54.787122,54.787109,54.787137,54.787095,54.787111,54.787156,54.787178,54.7871,54.787012,54.78693,54.786842,54.786838,54.786746,54.786662,54.786572,54.786479,54.786386,54.786297,54.786213,54.786125,54.786032,54.785941,54.785852,54.785765,54.785682,54.785588,54.785504,54.785444,54.78538,54.785321,54.785265,54.785226,54.785181,54.785133,54.785091,54.785051,54.784989,54.78494,54.784934,54.784854,54.784772,54.784688,54.784608,54.784548,54.784513,54.784474,54.784438,54.784391,54.78433,54.784247,54.784155,54.784089,54.784058,54.78403,54.784043,54.784055,54.784015,54.783982,54.783942,54.783891,54.783841,54.783781,54.783729,54.783705,54.783649,54.783597,54.783541,54.783499,54.783443,54.783398,54.783349,54.783298,54.783244,54.78319,54.783136,54.783078,54.783038,54.782991,54.782943,54.782894,54.782847,54.78278,54.782709,54.782652,54.782585,54.78252,54.782469,54.782402,54.782336,54.782268,54.782197,54.782118,54.782058,54.782008,54.781973,54.781953,54.781888,54.781849,54.781819,54.781749,54.781692,54.78163,54.781585,54.781521,54.781461,54.781398,54.781342,54.781326,54.781263,54.781203,54.78114,54.781131,54.781067,54.781006,54.780991,54.780907,54.780827,54.780738,54.780661,54.780611,54.780543,54.780483,54.78042,54.780353,54.78029,54.780237,54.780184,54.780203,54.780149,54.780061,54.779961,54.779884,54.779829,54.779782,54.779745,54.779731,54.77972,54.779652,54.779637,54.779616,54.779588,54.77956,54.77953,54.779502,54.779498,54.779502,54.779496,54.77947,54.779478,54.779458,54.779456,54.779381,54.779315,54.77926,54.779174,54.779113,54.779076,54.779024,54.778988,54.778947,54.778904,54.778867,54.778803,54.778748,54.778689,54.778612,54.778592,54.778564,54.778519,54.778479,54.778433,54.778383,54.77834,54.778306,54.778266,54.778213,54.778174,54.778123,54.778082,54.778022,54.777979,54.777934,54.777883,54.777831,54.777776,54.77771,54.777682,54.777633,54.777595,54.777562,54.777565,54.777501,54.77744,54.777387,54.777332,54.777282,54.777226,54.77718,54.777147,54.777088,54.77703,54.776996,54.776935,54.776857,54.776821,54.776785,54.776757,54.776733,54.776698,54.776654,54.776649,54.776593,54.776558,54.776525,54.776473,54.776429,54.776369,54.776321,54.776301,54.776303,54.776287,54.776218,54.776198,54.776174,54.776177,54.776166,54.776131,54.776112,54.776075,54.776022,54.775966,54.775942,54.775912,54.775877,54.775839,54.775802,54.775772,54.775722,54.775724,54.775679,54.775629,54.775645,54.775631,54.775629,54.77563,54.775631,54.775609,54.775608,54.775611,54.775568,54.775527,54.775468,54.775412,54.775358,54.775307,54.775262,54.775198,54.775154,54.775103,54.775064,54.775015,54.774966,54.774921,54.774879,54.774844,54.774804,54.774763,54.774707,54.774669,54.774618,54.77457,54.774529,54.774468,54.77443,54.77438,54.774335,54.774287,54.774237,54.77419,54.774146,54.774108,54.774065,54.77403,54.773985,54.773922,54.773883,54.773837,54.773797,54.77373,54.773674,54.773605,54.773622,54.773672,54.773722,54.773756,54.773812,54.773858,54.773835,54.773776,54.773732,54.773678,54.773629,54.773582,54.77354,54.77351,54.773475,54.773434,54.773389,54.773343,54.773293,54.773239,54.773188,54.773135,54.773081,54.773017,54.772967,54.772909,54.772853,54.772805,54.772761,54.772705,54.77264,54.772561,54.772485,54.772398,54.772324,54.772317,54.772348,54.7724,54.772463,54.772498,54.772517,54.772528,54.772551,54.772593,54.772626,54.772671,54.772694,54.772745,54.772806,54.772854,54.772865,54.772793,54.772757,54.772722,54.772676,54.772633,54.772592,54.772564,54.772531,54.772495,54.772468,54.77244,54.772404,54.772364,54.772333,54.772303,54.772217,54.772123,54.772019,54.771923,54.771829,54.771749,54.77166,54.77157,54.771497,54.771445,54.771403,54.77135,54.771308,54.771277,54.771232,54.77119,54.771136,54.77107,54.771009,54.770944,54.770936,54.770856,54.77077,54.77068,54.770589,54.770489,54.770392,54.770302,54.770211,54.770138,54.770068,54.769997,54.769932,54.769861,54.769792,54.769729,54.769657,54.769587,54.769521,54.769449,54.769375,54.769303,54.76923,54.769141,54.769073,54.769006,54.76892,54.768834,54.768779,54.76871,54.768709,54.768613,54.768544,54.768465,54.76838,54.768295,54.768217,54.768119,54.768024,54.767932,54.76787,54.767893,54.767906,54.767954,54.767942,54.767919,54.767918,54.767906,54.767906,54.767907]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[54.76787,55.010898],"lng":[-2.562401,-2.348998]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-5-2" class="tab-pane" aria-labelledby="tabset-5-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-17"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_985e22549b59ee099c6658e9f7969709 {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_985e22549b59ee099c6658e9f7969709&quot; ></div>
        
</body>
<script>
    
    
            var map_985e22549b59ee099c6658e9f7969709 = L.map(
                &quot;map_985e22549b59ee099c6658e9f7969709&quot;,
                {
                    center: [54.91263943280085, -2.4793040247071354],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_f5c54cebda645ea749a7c62b959abd27 = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_f5c54cebda645ea749a7c62b959abd27.addTo(map_985e22549b59ee099c6658e9f7969709);
        
    
            var tile_layer_753b12627d2fbf93efa2a7a14c4ffe17 = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_753b12627d2fbf93efa2a7a14c4ffe17.addTo(map_985e22549b59ee099c6658e9f7969709);
        
    
            var color_line_5999c2911d4c591637100e16959f1fa3 = L.featureGroup(
                {
}
            );
        
    
            var poly_line_5221f2160f358c087e24a6e01752d1c7 = L.polyline(
                [[[55.01089, -2.348998], [55.010898, -2.349042]], [[55.010828, -2.349516], [55.010827, -2.349512]], [[55.007311, -2.356633], [55.007233, -2.356539]], [[55.005806, -2.360093], [55.005788, -2.360263]], [[55.00414, -2.373036], [55.004074, -2.373146]], [[55.003597, -2.373908], [55.003505, -2.373848]], [[55.003323, -2.373909], [55.00342, -2.373882]], [[55.003576, -2.373881], [55.00351, -2.373998]], [[55.00351, -2.373998], [55.003477, -2.374143]], [[55.003477, -2.374143], [55.003425, -2.374275]], [[55.003419, -2.374456], [55.003502, -2.374527]], [[55.003775, -2.37544], [55.003776, -2.375424]], [[55.003776, -2.375424], [55.003719, -2.375546]], [[55.001826, -2.386267], [55.001766, -2.386385]], [[55.001753, -2.386443], [55.001674, -2.386527]], [[55.001596, -2.386557], [55.001505, -2.386601]], [[55.001561, -2.387734], [55.001618, -2.387862]], [[55.001973, -2.388268], [55.001977, -2.388281]], [[55.002395, -2.388641], [55.00235, -2.388793]], [[55.002252, -2.39146], [55.002264, -2.39146]], [[55.002911, -2.391357], [55.002926, -2.391376]], [[55.002394, -2.391406], [55.002303, -2.391428]], [[55.002303, -2.391428], [55.002238, -2.391489]], [[55.002185, -2.398748], [55.002183, -2.398905]], [[55.001998, -2.404767], [55.001951, -2.404908]], [[55.00162, -2.407203], [55.001601, -2.407358]], [[55.001343, -2.409147], [55.001313, -2.409299]], [[54.996457, -2.425947], [54.996446, -2.425982]], [[54.99372, -2.446188], [54.99373, -2.446347]], [[54.993396, -2.449449], [54.993325, -2.449568]], [[54.99532, -2.482917], [54.995357, -2.483076]], [[54.995129, -2.494316], [54.995077, -2.494446]], [[54.99428, -2.497068], [54.994243, -2.497219]], [[54.994243, -2.497219], [54.994233, -2.497343]], [[54.993865, -2.499403], [54.993791, -2.499314]], [[54.990665, -2.510866], [54.990625, -2.511017]], [[54.986654, -2.519491], [54.986654, -2.519519]], [[54.988422, -2.534083], [54.98843, -2.534044]], [[54.986737, -2.536993], [54.986646, -2.536983]], [[54.986631, -2.536999], [54.986615, -2.537157]], [[54.986302, -2.53772], [54.986226, -2.537813]], [[54.986117, -2.538203], [54.986138, -2.538355]], [[54.980018, -2.547451], [54.979922, -2.547457]], [[54.979326, -2.547947], [54.979231, -2.547918]], [[54.975114, -2.548842], [54.975038, -2.548723]], [[54.973088, -2.544965], [54.973082, -2.545122]], [[54.968954, -2.561499], [54.96887, -2.561416]], [[54.962297, -2.558966], [54.962208, -2.559033]], [[54.953181, -2.555827], [54.953089, -2.555802]], [[54.950162, -2.552957], [54.950067, -2.552953]], [[54.94933, -2.551848], [54.949342, -2.551845]], [[54.949342, -2.551845], [54.949384, -2.551705]], [[54.944993, -2.541769], [54.9449, -2.541806]], [[54.9449, -2.541806], [54.944817, -2.54181]], [[54.941074, -2.54099], [54.940981, -2.541049]], [[54.938356, -2.537469], [54.938263, -2.537468]], [[54.935754, -2.531362], [54.935704, -2.53122]], [[54.935631, -2.528944], [54.935557, -2.528853]], [[54.935557, -2.528853], [54.935523, -2.528815]], [[54.934537, -2.528443], [54.93454, -2.528612]], [[54.93454, -2.528612], [54.934592, -2.528634]], [[54.933897, -2.529427], [54.933885, -2.529452]], [[54.933637, -2.529047], [54.933545, -2.529007]], [[54.931725, -2.530518], [54.931634, -2.530543]], [[54.928772, -2.529225], [54.928705, -2.529346]], [[54.92649, -2.52945], [54.926403, -2.529404]], [[54.926403, -2.529404], [54.926356, -2.529379]], [[54.92105, -2.526761], [54.921042, -2.526769]], [[54.921042, -2.526769], [54.92095, -2.526724]], [[54.919992, -2.526081], [54.919904, -2.526142]], [[54.914762, -2.519103], [54.914662, -2.519105]], [[54.906956, -2.516806], [54.906866, -2.516767]], [[54.901881, -2.514665], [54.901789, -2.514663]], [[54.900864, -2.515238], [54.900832, -2.515242]], [[54.900832, -2.515242], [54.900743, -2.515201]], [[54.900743, -2.515201], [54.900656, -2.515153]], [[54.893773, -2.511454], [54.893776, -2.511433]], [[54.893776, -2.511433], [54.893695, -2.511504]], [[54.892436, -2.511824], [54.892338, -2.511858]], [[54.891739, -2.511822], [54.891648, -2.511875]], [[54.889767, -2.51141], [54.889682, -2.511497]], [[54.885908, -2.509791], [54.885825, -2.509713]], [[54.885072, -2.509421], [54.884996, -2.509329]], [[54.883781, -2.507798], [54.883693, -2.507784]], [[54.882781, -2.507196], [54.882778, -2.507196]], [[54.882778, -2.507196], [54.882717, -2.507331]], [[54.881868, -2.508537], [54.881782, -2.508617]], [[54.879636, -2.510756], [54.879619, -2.510746]], [[54.8771, -2.511657], [54.877018, -2.511732]], [[54.874994, -2.513461], [54.874986, -2.51347]], [[54.874423, -2.514339], [54.874368, -2.514197]], [[54.87035, -2.512009], [54.870314, -2.511849]], [[54.870314, -2.511849], [54.870312, -2.511693]], [[54.870287, -2.511006], [54.870236, -2.511143]], [[54.869899, -2.511133], [54.869808, -2.51116]], [[54.864753, -2.501656], [54.864666, -2.501566]], [[54.861078, -2.498701], [54.860986, -2.498667]], [[54.857567, -2.490005], [54.85751, -2.489873]], [[54.85713, -2.48954], [54.857044, -2.489465]], [[54.85395, -2.489432], [54.853864, -2.489501]], [[54.853864, -2.489501], [54.853828, -2.489502]], [[54.853828, -2.489502], [54.853764, -2.489387]], [[54.85185, -2.485786], [54.851769, -2.485856]], [[54.851057, -2.486188], [54.850966, -2.486129]], [[54.850543, -2.485867], [54.850468, -2.485769]], [[54.849647, -2.484069], [54.849642, -2.484043]], [[54.849642, -2.484043], [54.849564, -2.48396]], [[54.848257, -2.482455], [54.848188, -2.482345]], [[54.846443, -2.480082], [54.846359, -2.480014]], [[54.842594, -2.477238], [54.842507, -2.477172]], [[54.8408, -2.476748], [54.840715, -2.476682]], [[54.840074, -2.476593], [54.839978, -2.476557]], [[54.838677, -2.475915], [54.838607, -2.4758]], [[54.838607, -2.4758], [54.83853, -2.475779]], [[54.83853, -2.475779], [54.838436, -2.475756]], [[54.833563, -2.472194], [54.833614, -2.47208]], [[54.833614, -2.47208], [54.834048, -2.466867]], [[54.831851, -2.463216], [54.831856, -2.463214]], [[54.817485, -2.444232], [54.817438, -2.444097]], [[54.817438, -2.444097], [54.817371, -2.444114]], [[54.811204, -2.441993], [54.811128, -2.441792]], [[54.811437, -2.441681], [54.811405, -2.441672]], [[54.810673, -2.44202], [54.810661, -2.442005]], [[54.810661, -2.442005], [54.810747, -2.442073]], [[54.811105, -2.441962], [54.811119, -2.441959]], [[54.809743, -2.442136], [54.809654, -2.442103]], [[54.803465, -2.441621], [54.803381, -2.44172]], [[54.802913, -2.441937], [54.802822, -2.441948]], [[54.797845, -2.441352], [54.797842, -2.441343]], [[54.797756, -2.441281], [54.797692, -2.441228]], [[54.79364, -2.441835], [54.793649, -2.441822]], [[54.793649, -2.441822], [54.793554, -2.441828]], [[54.787122, -2.442416], [54.787109, -2.442385]], [[54.787109, -2.442385], [54.787137, -2.442234]], [[54.787178, -2.441614], [54.7871, -2.441533]], [[54.786842, -2.441318], [54.786838, -2.441278]], [[54.786838, -2.441278], [54.786746, -2.441275]], [[54.784934, -2.438903], [54.784854, -2.438797]], [[54.784058, -2.43731], [54.78403, -2.437154]], [[54.78403, -2.437154], [54.784043, -2.436999]], [[54.784043, -2.436999], [54.784055, -2.436967]], [[54.781326, -2.430228], [54.781263, -2.430098]], [[54.780991, -2.429545], [54.780907, -2.429463]], [[54.779498, -2.425869], [54.779502, -2.425839]], [[54.779458, -2.425174], [54.779456, -2.425176]], [[54.779456, -2.425176], [54.779381, -2.425084]], [[54.777147, -2.418766], [54.777088, -2.41864]], [[54.776821, -2.417995], [54.776785, -2.417946]], [[54.776785, -2.417946], [54.776757, -2.41779]], [[54.776654, -2.417343], [54.776649, -2.417334]], [[54.776174, -2.415476], [54.776177, -2.415315]], [[54.776177, -2.415315], [54.776166, -2.41517]], [[54.776112, -2.41494], [54.776075, -2.414776]], [[54.775722, -2.413422], [54.775724, -2.413433]], [[54.775679, -2.413288], [54.775629, -2.413148]], [[54.775608, -2.412021], [54.775611, -2.411913]], [[54.773858, -2.405438], [54.773835, -2.405286]], [[54.76871, -2.397406], [54.768709, -2.397403]], [[54.768613, -2.397336], [54.768544, -2.397208]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5999c2911d4c591637100e16959f1fa3);
        
    
            var poly_line_307fc9b08295e4a080afa6f0b100e905 = L.polyline(
                [[[55.010898, -2.349042], [55.010874, -2.3492]], [[55.010849, -2.349357], [55.010828, -2.349516]], [[55.010793, -2.34967], [55.010757, -2.349827]], [[55.009992, -2.353556], [55.009983, -2.353579]], [[55.009929, -2.353716], [55.009874, -2.353859]], [[55.007611, -2.35653], [55.00756, -2.35653]], [[55.007233, -2.356539], [55.007144, -2.356564]], [[55.005799, -2.360002], [55.005806, -2.360093]], [[55.005589, -2.361581], [55.00559, -2.361643]], [[55.00559, -2.361643], [55.005577, -2.361799]], [[55.005281, -2.365025], [55.005269, -2.365151]], [[55.005269, -2.365151], [55.005225, -2.3653]], [[55.004141, -2.372925], [55.00414, -2.373036]], [[55.004074, -2.373146], [55.003985, -2.373087]], [[55.003985, -2.373087], [55.003928, -2.373209]], [[55.003593, -2.37381], [55.003597, -2.373908]], [[55.003505, -2.373848], [55.003408, -2.373878]], [[55.00342, -2.373882], [55.003517, -2.37386]], [[55.003742, -2.375211], [55.003744, -2.375288]], [[55.003744, -2.375288], [55.003775, -2.37544]], [[55.003719, -2.375546], [55.003621, -2.375556]], [[55.003653, -2.37604], [55.003645, -2.376187]], [[55.003645, -2.376187], [55.003562, -2.376259]], [[55.003562, -2.376259], [55.003563, -2.376395]], [[55.003563, -2.376395], [55.003579, -2.376555]], [[55.003347, -2.37898], [55.00327, -2.379067]], [[55.00327, -2.379067], [55.003185, -2.37913]], [[55.003185, -2.37913], [55.003113, -2.379187]], [[55.003113, -2.379187], [55.003066, -2.379325]], [[55.003066, -2.379325], [55.003044, -2.379501]], [[55.001674, -2.386527], [55.001596, -2.386557]], [[55.001505, -2.386601], [55.001493, -2.38672]], [[55.001493, -2.38672], [55.001441, -2.386863]], [[55.001432, -2.387034], [55.001428, -2.387138]], [[55.001428, -2.387138], [55.00145, -2.387295]], [[55.001545, -2.387584], [55.001561, -2.387734]], [[55.001618, -2.387862], [55.001683, -2.387981]], [[55.001748, -2.388099], [55.001814, -2.388205]], [[55.001814, -2.388205], [55.001886, -2.388313]], [[55.001886, -2.388313], [55.001973, -2.388268]], [[55.002037, -2.388401], [55.002102, -2.388515]], [[55.00235, -2.388793], [55.002387, -2.388953]], [[55.002264, -2.39146], [55.002362, -2.391424]], [[55.002837, -2.391458], [55.00274, -2.391454]], [[55.002238, -2.391489], [55.002215, -2.391643]], [[55.002181, -2.39867], [55.002185, -2.398748]], [[55.002183, -2.398905], [55.002205, -2.399057]], [[55.002205, -2.399057], [55.002205, -2.399091]], [[55.002223, -2.399255], [55.00224, -2.399417]], [[55.002084, -2.402894], [55.00209, -2.402944]], [[55.002003, -2.404397], [55.002008, -2.404472]], [[55.002008, -2.404472], [55.001981, -2.404622]], [[55.001637, -2.407162], [55.00162, -2.407203]], [[55.001459, -2.408495], [55.001446, -2.408587]], [[55.001446, -2.408587], [55.001424, -2.408742]], [[55.000283, -2.411273], [55.00022, -2.411373]], [[54.999474, -2.412554], [54.999403, -2.412668]], [[54.999403, -2.412668], [54.999338, -2.412779]], [[54.999338, -2.412779], [54.999271, -2.412904]], [[54.997958, -2.421243], [54.997946, -2.421293]], [[54.997063, -2.424602], [54.997069, -2.424625]], [[54.997025, -2.424771], [54.996938, -2.42483]], [[54.996891, -2.424925], [54.996853, -2.425073]], [[54.996503, -2.425803], [54.996457, -2.425947]], [[54.9964, -2.426123], [54.996366, -2.426281]], [[54.995914, -2.427721], [54.995877, -2.427806]], [[54.995877, -2.427806], [54.995789, -2.427858]], [[54.995706, -2.42814], [54.995705, -2.428297]], [[54.994049, -2.445835], [54.99398, -2.445733]], [[54.993896, -2.445793], [54.993886, -2.445808]], [[54.993886, -2.445808], [54.993828, -2.445948]], [[54.993852, -2.446931], [54.993778, -2.447056]], [[54.993083, -2.45006], [54.993073, -2.450071]], [[54.993011, -2.450188], [54.992935, -2.450304]], [[54.992824, -2.450559], [54.992827, -2.450553]], [[54.992994, -2.450624], [54.993079, -2.450674]], [[54.995262, -2.482711], [54.995304, -2.482853]], [[54.995304, -2.482853], [54.99532, -2.482917]], [[54.995982, -2.491005], [54.99598, -2.491161]], [[54.995183, -2.493952], [54.995154, -2.494038]], [[54.995154, -2.494038], [54.995124, -2.494194]], [[54.995124, -2.494194], [54.995129, -2.494316]], [[54.995077, -2.494446], [54.995013, -2.494557]], [[54.995013, -2.494557], [54.995055, -2.494695]], [[54.995055, -2.494695], [54.995111, -2.494795]], [[54.995111, -2.494795], [54.995066, -2.494946]], [[54.995066, -2.494946], [54.995091, -2.495048]], [[54.994352, -2.49705], [54.99428, -2.497068]], [[54.994233, -2.497343], [54.99423, -2.497514]], [[54.993903, -2.499105], [54.993813, -2.499126]], [[54.993808, -2.499298], [54.993865, -2.499403]], [[54.993791, -2.499314], [54.993716, -2.499417]], [[54.993448, -2.499808], [54.993447, -2.499927]], [[54.993447, -2.499927], [54.993418, -2.50008]], [[54.993418, -2.50008], [54.993388, -2.500231]], [[54.992826, -2.501408], [54.992876, -2.501542]], [[54.992967, -2.501811], [54.993035, -2.501934]], [[54.990653, -2.51085], [54.990665, -2.510866]], [[54.990132, -2.512345], [54.9901, -2.512494]], [[54.9901, -2.512494], [54.990072, -2.51266]], [[54.989287, -2.514977], [54.98928, -2.514995]], [[54.98928, -2.514995], [54.989237, -2.514853]], [[54.986702, -2.519671], [54.986724, -2.519843]], [[54.987889, -2.525202], [54.987894, -2.525246]], [[54.987894, -2.525246], [54.987902, -2.52541]], [[54.987943, -2.532047], [54.98791, -2.532199]], [[54.988357, -2.534162], [54.988261, -2.534138]], [[54.986644, -2.535205], [54.986668, -2.535306]], [[54.986668, -2.535306], [54.986697, -2.535467]], [[54.986801, -2.536095], [54.986804, -2.536186]], [[54.986813, -2.536353], [54.986787, -2.536513]], [[54.986615, -2.537157], [54.98655, -2.537236]], [[54.98655, -2.537236], [54.986473, -2.537317]], [[54.986473, -2.537317], [54.986458, -2.537397]], [[54.986458, -2.537397], [54.986414, -2.537543]], [[54.986414, -2.537543], [54.986335, -2.537637]], [[54.986335, -2.537637], [54.986302, -2.53772]], [[54.986226, -2.537813], [54.986171, -2.537939]], [[54.986171, -2.537939], [54.986138, -2.538086]], [[54.986138, -2.538086], [54.986117, -2.538203]], [[54.986138, -2.538355], [54.986106, -2.538505]], [[54.985952, -2.54313], [54.985947, -2.543248]], [[54.983453, -2.545187], [54.983368, -2.545248]], [[54.983192, -2.545379], [54.983102, -2.545451]], [[54.982854, -2.545657], [54.982786, -2.545701]], [[54.982517, -2.545842], [54.982448, -2.545857]], [[54.982448, -2.545857], [54.982367, -2.545938]], [[54.980058, -2.547414], [54.980018, -2.547451]], [[54.979922, -2.547457], [54.979836, -2.547401]], [[54.977132, -2.548431], [54.977099, -2.548408]], [[54.977099, -2.548408], [54.977002, -2.548389]], [[54.97515, -2.548847], [54.975114, -2.548842]], [[54.974688, -2.548117], [54.974667, -2.548096]], [[54.974627, -2.547946], [54.974569, -2.547819]], [[54.973174, -2.544947], [54.973088, -2.544965]], [[54.973082, -2.545122], [54.973047, -2.545286]], [[54.972086, -2.55289], [54.972141, -2.553024]], [[54.97313, -2.56156], [54.973117, -2.561646]], [[54.973117, -2.561646], [54.973038, -2.561748]], [[54.971836, -2.562073], [54.971758, -2.561976]], [[54.971334, -2.561827], [54.971244, -2.561892]], [[54.970999, -2.562114], [54.970904, -2.56208]], [[54.970348, -2.562178], [54.970257, -2.562195]], [[54.970257, -2.562195], [54.970165, -2.562212]], [[54.970165, -2.562212], [54.970077, -2.562242]], [[54.970077, -2.562242], [54.969984, -2.562254]], [[54.969984, -2.562254], [54.969896, -2.562296]], [[54.969726, -2.562401], [54.969679, -2.562371]], [[54.969679, -2.562371], [54.969606, -2.562256]], [[54.968988, -2.561572], [54.968954, -2.561499]], [[54.96887, -2.561416], [54.968781, -2.561382]], [[54.965573, -2.560045], [54.965493, -2.559949]], [[54.962403, -2.559184], [54.962354, -2.55916]], [[54.962354, -2.55916], [54.962453, -2.559134]], [[54.962416, -2.558984], [54.962335, -2.558911]], [[54.962335, -2.558911], [54.962297, -2.558966]], [[54.962208, -2.559033], [54.962127, -2.558937]], [[54.960279, -2.557075], [54.960225, -2.557051]], [[54.960225, -2.557051], [54.960129, -2.557053]], [[54.960129, -2.557053], [54.960059, -2.557062]], [[54.960059, -2.557062], [54.959969, -2.557082]], [[54.953189, -2.555824], [54.953181, -2.555827]], [[54.951279, -2.555776], [54.951265, -2.555748]], [[54.951265, -2.555748], [54.951227, -2.555603]], [[54.950188, -2.552959], [54.950162, -2.552957]], [[54.949598, -2.552886], [54.949512, -2.552947]], [[54.949856, -2.549926], [54.949815, -2.549845]], [[54.949559, -2.547499], [54.949555, -2.547407]], [[54.949555, -2.547407], [54.949565, -2.547251]], [[54.949565, -2.547251], [54.949563, -2.547092]], [[54.948187, -2.543458], [54.948139, -2.543323]], [[54.947507, -2.542643], [54.94748, -2.542641]], [[54.94748, -2.542641], [54.947387, -2.542685]], [[54.945505, -2.541624], [54.945409, -2.54165]], [[54.945229, -2.54173], [54.945173, -2.541823]], [[54.945173, -2.541823], [54.945075, -2.54178]], [[54.945075, -2.54178], [54.944993, -2.541769]], [[54.944817, -2.54181], [54.944719, -2.541808]], [[54.941082, -2.54098], [54.941074, -2.54099]], [[54.940981, -2.541049], [54.940912, -2.541041]], [[54.940312, -2.540101], [54.940374, -2.539969]], [[54.940429, -2.539832], [54.940429, -2.539749]], [[54.940429, -2.539749], [54.940352, -2.539642]], [[54.938419, -2.537473], [54.938356, -2.537469]], [[54.938263, -2.537468], [54.93822, -2.537321]], [[54.937429, -2.533808], [54.93738, -2.533697]], [[54.93738, -2.533697], [54.937293, -2.533627]], [[54.936075, -2.532076], [54.936047, -2.531962]], [[54.936047, -2.531962], [54.936011, -2.531804]], [[54.935633, -2.529894], [54.935647, -2.529738]], [[54.935523, -2.528815], [54.935426, -2.528758]], [[54.934569, -2.528385], [54.934537, -2.528443]], [[54.934502, -2.52868], [54.934402, -2.528702]], [[54.934135, -2.528752], [54.934101, -2.528904]], [[54.933799, -2.529388], [54.933746, -2.529249]], [[54.933746, -2.529249], [54.9337, -2.529103]], [[54.9337, -2.529103], [54.933637, -2.529047]], [[54.933545, -2.529007], [54.933455, -2.529033]], [[54.933455, -2.529033], [54.933362, -2.529035]], [[54.933362, -2.529035], [54.933268, -2.529073]], [[54.931725, -2.530627], [54.931725, -2.530518]], [[54.931634, -2.530543], [54.93154, -2.530546]], [[54.929395, -2.52997], [54.929351, -2.529963]], [[54.929351, -2.529963], [54.929286, -2.529838]], [[54.928822, -2.529264], [54.928772, -2.529225]], [[54.928705, -2.529346], [54.928625, -2.52942]], [[54.927851, -2.529803], [54.927824, -2.529834]], [[54.92773, -2.52983], [54.927633, -2.529814]], [[54.926525, -2.52941], [54.92649, -2.52945]], [[54.926356, -2.529379], [54.926259, -2.529357]], [[54.921814, -2.526935], [54.921726, -2.526868]], [[54.921726, -2.526868], [54.921634, -2.526831]], [[54.921363, -2.526829], [54.921268, -2.526798]], [[54.921172, -2.526784], [54.921146, -2.526783]], [[54.921146, -2.526783], [54.92105, -2.526761]], [[54.92095, -2.526724], [54.920873, -2.526628]], [[54.920873, -2.526628], [54.920807, -2.526522]], [[54.920807, -2.526522], [54.92074, -2.526402]], [[54.92074, -2.526402], [54.920679, -2.526282]], [[54.92007, -2.526029], [54.919992, -2.526081]], [[54.919904, -2.526142], [54.919818, -2.526203]], [[54.918737, -2.52087], [54.918736, -2.520789]], [[54.918736, -2.520789], [54.918652, -2.520719]], [[54.918565, -2.520666], [54.91848, -2.520618]], [[54.915913, -2.519479], [54.915859, -2.519456]], [[54.915859, -2.519456], [54.915769, -2.519463]], [[54.914662, -2.519105], [54.914565, -2.519056]], [[54.912728, -2.518253], [54.912685, -2.518262]], [[54.912685, -2.518262], [54.912592, -2.518293]], [[54.909588, -2.517666], [54.909505, -2.517605]], [[54.907003, -2.51684], [54.906956, -2.516806]], [[54.905002, -2.515876], [54.904908, -2.515893]], [[54.901941, -2.514647], [54.901881, -2.514665]], [[54.901789, -2.514663], [54.901696, -2.514638]], [[54.901422, -2.514533], [54.901348, -2.514529]], [[54.901348, -2.514529], [54.90126, -2.514602]], [[54.900656, -2.515153], [54.900672, -2.514981]], [[54.900654, -2.514506], [54.900645, -2.514361]], [[54.900645, -2.514361], [54.900617, -2.514194]], [[54.900232, -2.513359], [54.900133, -2.513365]], [[54.898134, -2.512964], [54.898038, -2.512941]], [[54.893852, -2.511535], [54.893773, -2.511454]], [[54.892473, -2.511871], [54.892436, -2.511824]], [[54.891859, -2.511868], [54.89183, -2.511835]], [[54.890055, -2.511482], [54.89002, -2.511483]], [[54.89002, -2.511483], [54.889925, -2.511437]], [[54.889835, -2.511421], [54.889767, -2.51141]], [[54.889682, -2.511497], [54.889582, -2.5115]], [[54.888675, -2.511462], [54.888621, -2.511583]], [[54.888621, -2.511583], [54.888553, -2.511702]], [[54.885082, -2.509472], [54.885072, -2.509421]], [[54.882854, -2.507295], [54.882781, -2.507196]], [[54.881922, -2.508466], [54.881868, -2.508537]], [[54.879619, -2.510746], [54.879525, -2.510762]], [[54.878939, -2.510877], [54.878896, -2.510829]], [[54.878896, -2.510829], [54.87888, -2.510666]], [[54.878062, -2.510961], [54.878001, -2.511048]], [[54.878001, -2.511048], [54.877919, -2.511129]], [[54.877115, -2.511651], [54.8771, -2.511657]], [[54.877018, -2.511732], [54.87695, -2.511851]], [[54.875745, -2.512001], [54.875678, -2.512112]], [[54.874986, -2.51347], [54.874895, -2.51344]], [[54.874448, -2.514335], [54.874423, -2.514339]], [[54.873586, -2.514703], [54.873518, -2.514661]], [[54.871948, -2.513519], [54.871989, -2.513535]], [[54.871891, -2.513531], [54.871797, -2.513511]], [[54.870312, -2.511693], [54.870336, -2.511515]], [[54.870287, -2.511037], [54.870287, -2.511006]], [[54.870236, -2.511143], [54.870139, -2.511139]], [[54.869945, -2.511156], [54.869899, -2.511133]], [[54.869808, -2.51116], [54.869725, -2.511223]], [[54.869725, -2.511223], [54.869695, -2.511187]], [[54.869695, -2.511187], [54.869637, -2.511067]], [[54.869637, -2.511067], [54.869615, -2.510944]], [[54.869615, -2.510944], [54.869521, -2.510873]], [[54.869428, -2.510836], [54.869381, -2.510861]], [[54.864666, -2.501566], [54.864582, -2.501462]], [[54.861287, -2.498835], [54.861192, -2.498804]], [[54.861103, -2.498739], [54.861078, -2.498701]], [[54.860986, -2.498667], [54.860905, -2.498596]], [[54.860905, -2.498596], [54.860902, -2.498437]], [[54.860902, -2.498437], [54.860886, -2.498291]], [[54.858829, -2.494713], [54.858815, -2.494614]], [[54.858815, -2.494614], [54.858786, -2.494462]], [[54.858724, -2.494345], [54.858661, -2.494227]], [[54.858532, -2.493788], [54.858481, -2.493672]], [[54.858401, -2.493045], [54.858402, -2.492927]], [[54.858402, -2.492927], [54.858383, -2.492755]], [[54.857851, -2.490308], [54.857807, -2.490222]], [[54.857807, -2.490222], [54.857722, -2.490153]], [[54.857636, -2.490079], [54.857567, -2.490005]], [[54.85751, -2.489873], [54.857433, -2.48979]], [[54.857181, -2.489581], [54.85713, -2.48954]], [[54.854402, -2.489119], [54.854328, -2.489144]], [[54.854328, -2.489144], [54.854236, -2.489145]], [[54.854236, -2.489145], [54.854148, -2.489199]], [[54.853983, -2.489371], [54.85395, -2.489432]], [[54.853764, -2.489387], [54.853704, -2.489268]], [[54.852639, -2.487399], [54.852622, -2.487313]], [[54.852622, -2.487313], [54.852554, -2.487208]], [[54.852554, -2.487208], [54.852501, -2.487074]], [[54.851906, -2.48584], [54.85185, -2.485786]], [[54.851143, -2.486199], [54.851057, -2.486188]], [[54.850966, -2.486129], [54.850893, -2.486031]], [[54.850628, -2.485896], [54.850543, -2.485867]], [[54.850468, -2.485769], [54.850398, -2.485663]], [[54.850398, -2.485663], [54.850342, -2.48553]], [[54.84939, -2.483818], [54.849328, -2.483781]], [[54.849328, -2.483781], [54.849273, -2.483646]], [[54.848267, -2.48248], [54.848257, -2.482455]], [[54.847699, -2.481896], [54.84762, -2.481802]], [[54.846485, -2.480118], [54.846443, -2.480082]], [[54.84477, -2.479101], [54.844729, -2.479083]], [[54.844729, -2.479083], [54.844634, -2.479098]], [[54.844469, -2.478947], [54.844431, -2.478922]], [[54.844431, -2.478922], [54.844342, -2.478873]], [[54.842644, -2.477223], [54.842594, -2.477238]], [[54.842507, -2.477172], [54.842419, -2.477127]], [[54.840827, -2.476747], [54.8408, -2.476748]], [[54.839978, -2.476557], [54.839885, -2.476529]], [[54.838727, -2.476], [54.838677, -2.475915]], [[54.838436, -2.475756], [54.83834, -2.475712]], [[54.835924, -2.475346], [54.835833, -2.475347]], [[54.835833, -2.475347], [54.835745, -2.475359]], [[54.835745, -2.475359], [54.835661, -2.475294]], [[54.835479, -2.475176], [54.835439, -2.475146]], [[54.835352, -2.475078], [54.83527, -2.475007]], [[54.833537, -2.472149], [54.833563, -2.472194]], [[54.831776, -2.463109], [54.831703, -2.462992]], [[54.828719, -2.457386], [54.828657, -2.457262]], [[54.822479, -2.446869], [54.822385, -2.446833]], [[54.81943, -2.444852], [54.81933, -2.44483]], [[54.818561, -2.444657], [54.818467, -2.444654]], [[54.817371, -2.444114], [54.81728, -2.444057]], [[54.811128, -2.441792], [54.811197, -2.44189]], [[54.811197, -2.44189], [54.811193, -2.44188]], [[54.811405, -2.441672], [54.811313, -2.441701]], [[54.810747, -2.442073], [54.810831, -2.442015]], [[54.810831, -2.442015], [54.810922, -2.442005]], [[54.810922, -2.442005], [54.811014, -2.441979]], [[54.811014, -2.441979], [54.811105, -2.441962]], [[54.811027, -2.441914], [54.81093, -2.441973]], [[54.809672, -2.442251], [54.809763, -2.442206]], [[54.809763, -2.442206], [54.809743, -2.442136]], [[54.809299, -2.442129], [54.809206, -2.44214]], [[54.807499, -2.441943], [54.80742, -2.441908]], [[54.80742, -2.441908], [54.807326, -2.441904]], [[54.803515, -2.441654], [54.803465, -2.441621]], [[54.802933, -2.441951], [54.802913, -2.441937]], [[54.802822, -2.441948], [54.802729, -2.441948]], [[54.801032, -2.441412], [54.800954, -2.441383]], [[54.800305, -2.441127], [54.800282, -2.441092]], [[54.800187, -2.441045], [54.800099, -2.440977]], [[54.799906, -2.440903], [54.799836, -2.440931]], [[54.799836, -2.440931], [54.799738, -2.440916]], [[54.797692, -2.441228], [54.797601, -2.441193]], [[54.797601, -2.441193], [54.797511, -2.4412]], [[54.794186, -2.441829], [54.794114, -2.441839]], [[54.794114, -2.441839], [54.794018, -2.441837]], [[54.792729, -2.441992], [54.79266, -2.441879]], [[54.79266, -2.441879], [54.79257, -2.441885]], [[54.792227, -2.441952], [54.792138, -2.442025]], [[54.788578, -2.442834], [54.788524, -2.442835]], [[54.788524, -2.442835], [54.788428, -2.44284]], [[54.787137, -2.442234], [54.787095, -2.442078]], [[54.7871, -2.441533], [54.787012, -2.441451]], [[54.78494, -2.438943], [54.784934, -2.438903]], [[54.784089, -2.437417], [54.784058, -2.43731]], [[54.784015, -2.436814], [54.783982, -2.436658]], [[54.783942, -2.436526], [54.783891, -2.436394]], [[54.781973, -2.431758], [54.781953, -2.431674]], [[54.781953, -2.431674], [54.781888, -2.431551]], [[54.781749, -2.431128], [54.781692, -2.431033]], [[54.781692, -2.431033], [54.78163, -2.430904]], [[54.78163, -2.430904], [54.781585, -2.430765]], [[54.781342, -2.430283], [54.781326, -2.430228]], [[54.78114, -2.429848], [54.781131, -2.42983]], [[54.781067, -2.429718], [54.781006, -2.429589]], [[54.781006, -2.429589], [54.780991, -2.429545]], [[54.780907, -2.429463], [54.780827, -2.429382]], [[54.780543, -2.428969], [54.780483, -2.428847]], [[54.780483, -2.428847], [54.78042, -2.428746]], [[54.779829, -2.427726], [54.779782, -2.427575]], [[54.779496, -2.42566], [54.77947, -2.425502]], [[54.778612, -2.423263], [54.778592, -2.423084]], [[54.778123, -2.421456], [54.778082, -2.421417]], [[54.778082, -2.421417], [54.778022, -2.421277]], [[54.777562, -2.419818], [54.777565, -2.419789]], [[54.777565, -2.419789], [54.777501, -2.419661]], [[54.776757, -2.41779], [54.776733, -2.417631]], [[54.776593, -2.417201], [54.776558, -2.417034]], [[54.776218, -2.415779], [54.776198, -2.415609]], [[54.776198, -2.415609], [54.776174, -2.415476]], [[54.776166, -2.41517], [54.776131, -2.415023]], [[54.776131, -2.415023], [54.776112, -2.41494]], [[54.775629, -2.413148], [54.775645, -2.413006]], [[54.775611, -2.411913], [54.775568, -2.411771]], [[54.775103, -2.4105], [54.775064, -2.410372]], [[54.774921, -2.409962], [54.774879, -2.409809]], [[54.774065, -2.407242], [54.77403, -2.407197]], [[54.77403, -2.407197], [54.773985, -2.407061]], [[54.773812, -2.405438], [54.773858, -2.405438]], [[54.772865, -2.399153], [54.772793, -2.399253]], [[54.770944, -2.399578], [54.770936, -2.399582]], [[54.770856, -2.399499], [54.77077, -2.399399]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5999c2911d4c591637100e16959f1fa3);
        
    
            var poly_line_2bfaa80a87e54d537120cb338c212bb7 = L.polyline(
                [[[55.010874, -2.3492], [55.010849, -2.349357]], [[55.010757, -2.349827], [55.010742, -2.35]], [[55.010742, -2.35], [55.010709, -2.350155]], [[55.010709, -2.350155], [55.010679, -2.35031]], [[55.010679, -2.35031], [55.010666, -2.350473]], [[55.010515, -2.35126], [55.010486, -2.351424]], [[55.010486, -2.351424], [55.010441, -2.351566]], [[55.010167, -2.352982], [55.010141, -2.353132]], [[55.010141, -2.353132], [55.010099, -2.353276]], [[55.009072, -2.355433], [55.008986, -2.355512]], [[55.008986, -2.355512], [55.008903, -2.355592]], [[55.008903, -2.355592], [55.008818, -2.355673]], [[55.008141, -2.356245], [55.008055, -2.356297]], [[55.008055, -2.356297], [55.007968, -2.35636]], [[55.007968, -2.35636], [55.007877, -2.356404]], [[55.007711, -2.356539], [55.007611, -2.35653]], [[55.00756, -2.35653], [55.007473, -2.356488]], [[55.007284, -2.356493], [55.007311, -2.356633]], [[55.005805, -2.359388], [55.005807, -2.359492]], [[55.005807, -2.359492], [55.005817, -2.359662]], [[55.005804, -2.359824], [55.005799, -2.360002]], [[55.005788, -2.360263], [55.005769, -2.360423]], [[55.005577, -2.361799], [55.005548, -2.361956]], [[55.005313, -2.364707], [55.005297, -2.364861]], [[55.005297, -2.364861], [55.005281, -2.365025]], [[55.005225, -2.3653], [55.005212, -2.365462]], [[55.005212, -2.365462], [55.005193, -2.365634]], [[55.005193, -2.365634], [55.005197, -2.365794]], [[55.005111, -2.367584], [55.005097, -2.367747]], [[55.005097, -2.367747], [55.005084, -2.367912]], [[55.004954, -2.368874], [55.004939, -2.369032]], [[55.004939, -2.369032], [55.004924, -2.369191]], [[55.004924, -2.369191], [55.004906, -2.369361]], [[55.004304, -2.372165], [55.004269, -2.372311]], [[55.004269, -2.372311], [55.004218, -2.372459]], [[55.004131, -2.372759], [55.004141, -2.372925]], [[55.003928, -2.373209], [55.003929, -2.373368]], [[55.003929, -2.373368], [55.003919, -2.373525]], [[55.003681, -2.373777], [55.003593, -2.37381]], [[55.003408, -2.373878], [55.003323, -2.373909]], [[55.003517, -2.37386], [55.003576, -2.373881]], [[55.003502, -2.374527], [55.003572, -2.374637]], [[55.003527, -2.37581], [55.003579, -2.375949]], [[55.003579, -2.375949], [55.003653, -2.37604]], [[55.003579, -2.376555], [55.003593, -2.376721]], [[55.003367, -2.378827], [55.003347, -2.37898]], [[55.003, -2.379827], [55.002957, -2.379987]], [[55.002957, -2.379987], [55.002948, -2.380161]], [[55.001857, -2.386192], [55.001826, -2.386267]], [[55.001441, -2.386863], [55.001432, -2.387034]], [[55.00145, -2.387295], [55.001511, -2.387432]], [[55.001511, -2.387432], [55.001545, -2.387584]], [[55.001683, -2.387981], [55.001748, -2.388099]], [[55.002102, -2.388515], [55.002163, -2.388646]], [[55.002163, -2.388646], [55.00219, -2.388798]], [[55.00219, -2.388798], [55.00225, -2.388925]], [[55.00225, -2.388925], [55.002319, -2.389034]], [[55.002319, -2.389034], [55.002303, -2.389205]], [[55.002303, -2.389205], [55.002307, -2.389364]], [[55.002307, -2.389364], [55.002318, -2.389187]], [[55.002347, -2.388694], [55.002395, -2.388641]], [[55.002321, -2.390233], [55.002319, -2.390325]], [[55.002319, -2.390325], [55.002304, -2.390489]], [[55.002278, -2.391303], [55.002252, -2.39146]], [[55.002647, -2.391423], [55.002738, -2.391442]], [[55.002827, -2.391418], [55.002911, -2.391357]], [[55.002451, -2.391408], [55.002394, -2.391406]], [[55.002183, -2.393492], [55.002169, -2.393657]], [[55.002169, -2.393657], [55.002189, -2.393815]], [[55.00221, -2.395511], [55.002219, -2.395673]], [[55.002197, -2.396168], [55.002188, -2.39634]], [[55.002154, -2.397837], [55.002162, -2.397993]], [[55.002162, -2.397993], [55.002167, -2.398161]], [[55.002167, -2.398161], [55.002184, -2.398337]], [[55.002184, -2.398337], [55.002187, -2.398503]], [[55.002187, -2.398503], [55.002181, -2.39867]], [[55.002179, -2.401751], [55.002168, -2.401913]], [[55.002168, -2.401913], [55.002158, -2.402078]], [[55.002158, -2.402078], [55.002135, -2.402234]], [[55.002135, -2.402234], [55.002122, -2.402393]], [[55.002122, -2.402393], [55.00211, -2.402558]], [[55.002085, -2.403113], [55.002071, -2.403272]], [[55.002049, -2.403913], [55.002036, -2.404078]], [[55.002036, -2.404078], [55.002017, -2.404236]], [[55.001981, -2.404622], [55.001998, -2.404767]], [[55.001951, -2.404908], [55.001944, -2.405066]], [[55.001601, -2.407358], [55.00158, -2.40753]], [[55.001487, -2.408342], [55.001459, -2.408495]], [[55.00136, -2.409063], [55.001343, -2.409147]], [[55.001313, -2.409299], [55.001272, -2.409465]], [[55.00022, -2.411373], [55.000141, -2.411459]], [[54.999941, -2.411761], [54.999884, -2.411883]], [[54.999884, -2.411883], [54.999819, -2.411997]], [[54.999544, -2.412441], [54.999474, -2.412554]], [[54.999271, -2.412904], [54.999234, -2.413069]], [[54.999129, -2.414081], [54.999104, -2.414245]], [[54.999104, -2.414245], [54.999083, -2.414416]], [[54.998257, -2.420038], [54.99822, -2.420183]], [[54.99822, -2.420183], [54.998187, -2.420329]], [[54.998187, -2.420329], [54.998139, -2.420471]], [[54.997946, -2.421293], [54.997894, -2.421433]], [[54.997495, -2.422953], [54.997466, -2.423103]], [[54.997302, -2.423683], [54.997273, -2.423847]], [[54.997273, -2.423847], [54.997235, -2.423999]], [[54.997176, -2.424134], [54.997137, -2.424292]], [[54.996938, -2.42483], [54.996891, -2.424925]], [[54.996853, -2.425073], [54.99679, -2.425196]], [[54.996652, -2.425409], [54.996609, -2.425551]], [[54.996609, -2.425551], [54.996537, -2.425652]], [[54.996537, -2.425652], [54.996503, -2.425803]], [[54.995935, -2.427565], [54.995914, -2.427721]], [[54.995789, -2.427858], [54.995743, -2.427995]], [[54.995743, -2.427995], [54.995706, -2.42814]], [[54.995705, -2.428297], [54.995727, -2.428455]], [[54.995742, -2.428779], [54.99572, -2.428936]], [[54.99572, -2.428936], [54.995707, -2.429096]], [[54.995788, -2.430267], [54.995776, -2.430395]], [[54.995776, -2.430395], [54.995781, -2.430554]], [[54.995781, -2.430554], [54.995821, -2.430716]], [[54.995821, -2.430716], [54.995853, -2.430884]], [[54.995938, -2.431863], [54.99595, -2.432023]], [[54.99595, -2.432023], [54.995995, -2.432164]], [[54.995995, -2.432164], [54.996012, -2.432323]], [[54.996012, -2.432323], [54.996025, -2.432491]], [[54.995983, -2.433153], [54.995976, -2.433315]], [[54.995976, -2.433315], [54.995974, -2.433489]], [[54.995974, -2.433489], [54.995946, -2.433639]], [[54.995357, -2.436188], [54.995285, -2.43627]], [[54.995285, -2.43627], [54.99524, -2.436415]], [[54.99524, -2.436415], [54.995237, -2.436576]], [[54.995237, -2.436576], [54.995282, -2.436723]], [[54.995282, -2.436723], [54.995317, -2.436881]], [[54.994653, -2.443675], [54.994614, -2.443825]], [[54.994614, -2.443825], [54.994552, -2.44395]], [[54.99412, -2.44564], [54.994125, -2.445735]], [[54.993761, -2.446084], [54.99372, -2.446188]], [[54.99373, -2.446347], [54.993758, -2.446514]], [[54.993816, -2.446811], [54.993852, -2.446931]], [[54.993778, -2.447056], [54.993789, -2.447222]], [[54.993404, -2.449431], [54.993396, -2.449449]], [[54.993325, -2.449568], [54.993273, -2.449701]], [[54.992966, -2.450629], [54.992994, -2.450624]], [[54.993079, -2.450674], [54.993152, -2.450792]], [[54.993077, -2.451894], [54.993077, -2.452066]], [[54.993077, -2.452066], [54.993124, -2.452218]], [[54.995417, -2.45966], [54.995424, -2.459835]], [[54.994975, -2.46338], [54.994957, -2.463556]], [[54.994957, -2.463556], [54.994987, -2.463712]], [[54.99517, -2.468518], [54.995161, -2.468685]], [[54.995161, -2.468685], [54.995175, -2.468853]], [[54.995196, -2.470379], [54.995203, -2.470554]], [[54.995203, -2.470554], [54.995197, -2.470718]], [[54.9949, -2.475773], [54.994853, -2.475916]], [[54.994853, -2.475916], [54.994902, -2.476052]], [[54.994902, -2.476052], [54.994977, -2.476159]], [[54.995375, -2.478585], [54.99538, -2.478725]], [[54.99538, -2.478725], [54.995339, -2.478871]], [[54.995347, -2.479196], [54.995338, -2.479364]], [[54.995227, -2.480519], [54.995233, -2.480683]], [[54.995209, -2.482507], [54.995218, -2.482569]], [[54.995357, -2.483076], [54.995374, -2.483238]], [[54.995444, -2.483729], [54.99544, -2.483899]], [[54.99544, -2.483899], [54.995477, -2.484056]], [[54.995477, -2.484056], [54.995514, -2.484209]], [[54.995848, -2.485394], [54.995889, -2.485536]], [[54.996067, -2.486297], [54.996115, -2.486446]], [[54.996115, -2.486446], [54.996177, -2.486588]], [[54.995989, -2.49088], [54.995982, -2.491005]], [[54.995987, -2.491488], [54.995982, -2.491659]], [[54.995982, -2.491659], [54.995966, -2.491822]], [[54.995966, -2.491822], [54.99594, -2.49199]], [[54.995905, -2.492314], [54.995885, -2.492478]], [[54.995814, -2.492956], [54.99579, -2.493126]], [[54.99579, -2.493126], [54.995772, -2.493297]], [[54.995725, -2.493439], [54.995669, -2.493575]], [[54.995669, -2.493575], [54.995581, -2.493643]], [[54.995396, -2.493705], [54.9953, -2.493731]], [[54.9953, -2.493731], [54.995222, -2.49381]], [[54.995222, -2.49381], [54.995183, -2.493952]], [[54.995091, -2.495048], [54.995112, -2.495214]], [[54.994858, -2.496757], [54.994768, -2.496711]], [[54.994568, -2.496714], [54.994501, -2.496828]], [[54.994501, -2.496828], [54.994431, -2.496952]], [[54.99423, -2.497514], [54.994212, -2.497669]], [[54.994212, -2.497669], [54.994189, -2.497839]], [[54.993994, -2.499091], [54.993903, -2.499105]], [[54.993813, -2.499126], [54.993808, -2.499298]], [[54.993716, -2.499417], [54.993636, -2.499495]], [[54.993636, -2.499495], [54.993545, -2.499536]], [[54.993545, -2.499536], [54.993488, -2.499657]], [[54.993488, -2.499657], [54.993448, -2.499808]], [[54.993388, -2.500231], [54.993341, -2.50038]], [[54.993341, -2.50038], [54.993307, -2.50055]], [[54.993258, -2.500879], [54.99323, -2.501019]], [[54.99323, -2.501019], [54.993167, -2.501142]], [[54.992898, -2.501259], [54.992808, -2.501249]], [[54.992808, -2.501249], [54.992826, -2.501408]], [[54.992876, -2.501542], [54.99292, -2.501695]], [[54.99292, -2.501695], [54.992967, -2.501811]], [[54.993035, -2.501934], [54.993093, -2.502072]], [[54.992477, -2.50677], [54.992411, -2.506878]], [[54.991178, -2.508636], [54.991101, -2.508716]], [[54.990756, -2.509287], [54.990712, -2.509439]], [[54.990712, -2.509439], [54.990719, -2.509607]], [[54.990719, -2.509607], [54.990672, -2.509749]], [[54.990672, -2.509749], [54.990712, -2.5099]], [[54.990712, -2.5099], [54.990689, -2.510058]], [[54.990625, -2.511017], [54.990571, -2.511157]], [[54.99044, -2.511747], [54.990399, -2.511888]], [[54.99018, -2.512201], [54.990132, -2.512345]], [[54.990072, -2.51266], [54.990054, -2.512827]], [[54.990054, -2.512827], [54.990063, -2.512992]], [[54.989562, -2.514854], [54.989469, -2.514885]], [[54.989469, -2.514885], [54.989376, -2.514928]], [[54.989376, -2.514928], [54.989287, -2.514977]], [[54.988368, -2.513165], [54.988325, -2.513239]], [[54.988325, -2.513239], [54.988319, -2.513413]], [[54.988011, -2.517521], [54.987978, -2.51767]], [[54.986688, -2.519344], [54.986654, -2.519491]], [[54.98767, -2.520345], [54.987749, -2.520428]], [[54.987749, -2.520428], [54.987815, -2.520553]], [[54.987894, -2.525581], [54.98792, -2.525739]], [[54.98792, -2.525739], [54.987914, -2.525907]], [[54.987971, -2.531999], [54.987943, -2.532047]], [[54.987574, -2.532372], [54.987608, -2.532518]], [[54.988136, -2.533713], [54.988187, -2.533847]], [[54.988343, -2.534], [54.988422, -2.534083]], [[54.986735, -2.535801], [54.986796, -2.535919]], [[54.986796, -2.535919], [54.986801, -2.536095]], [[54.986747, -2.536839], [54.986737, -2.536993]], [[54.986078, -2.538826], [54.986038, -2.538977]], [[54.985929, -2.541199], [54.985951, -2.541359]], [[54.985947, -2.543248], [54.98586, -2.543326]], [[54.985777, -2.543392], [54.985686, -2.543469]], [[54.985686, -2.543469], [54.985601, -2.543537]], [[54.985601, -2.543537], [54.985516, -2.543592]], [[54.985516, -2.543592], [54.985434, -2.543661]], [[54.984562, -2.544332], [54.984486, -2.544425]], [[54.984486, -2.544425], [54.984414, -2.544543]], [[54.984414, -2.544543], [54.984344, -2.54464]], [[54.984344, -2.54464], [54.984254, -2.544702]], [[54.984254, -2.544702], [54.984162, -2.544724]], [[54.984162, -2.544724], [54.984067, -2.544759]], [[54.984067, -2.544759], [54.983984, -2.544838]], [[54.983984, -2.544838], [54.983896, -2.544902]], [[54.983896, -2.544902], [54.983808, -2.544944]], [[54.983808, -2.544944], [54.983712, -2.544994]], [[54.983712, -2.544994], [54.983628, -2.545072]], [[54.983544, -2.545151], [54.983453, -2.545187]], [[54.983368, -2.545248], [54.983283, -2.545305]], [[54.983283, -2.545305], [54.983192, -2.545379]], [[54.983102, -2.545451], [54.983016, -2.545515]], [[54.983016, -2.545515], [54.982934, -2.545585]], [[54.982934, -2.545585], [54.982854, -2.545657]], [[54.982786, -2.545701], [54.982697, -2.545735]], [[54.981112, -2.546729], [54.981024, -2.546786]], [[54.981024, -2.546786], [54.980939, -2.546849]], [[54.980137, -2.547336], [54.980058, -2.547414]], [[54.979836, -2.547401], [54.97975, -2.547473]], [[54.97975, -2.547473], [54.979734, -2.547641]], [[54.97968, -2.547949], [54.979582, -2.547937]], [[54.979582, -2.547937], [54.979483, -2.547932]], [[54.979383, -2.547939], [54.979326, -2.547947]], [[54.979231, -2.547918], [54.979141, -2.547976]], [[54.978371, -2.548198], [54.978272, -2.548226]], [[54.978272, -2.548226], [54.978176, -2.548248]], [[54.977891, -2.54835], [54.977796, -2.548353]], [[54.977796, -2.548353], [54.977702, -2.548381]], [[54.977513, -2.548439], [54.977413, -2.548449]], [[54.977413, -2.548449], [54.977319, -2.548462]], [[54.976626, -2.548335], [54.976572, -2.548273]], [[54.976572, -2.548273], [54.976479, -2.548334]], [[54.976479, -2.548334], [54.976403, -2.548421]], [[54.976403, -2.548421], [54.976327, -2.548505]], [[54.975714, -2.548877], [54.975621, -2.548889]], [[54.975621, -2.548889], [54.975531, -2.548907]], [[54.975242, -2.548904], [54.97515, -2.548847]], [[54.975038, -2.548723], [54.974962, -2.548607]], [[54.973248, -2.54504], [54.973174, -2.544947]], [[54.97266, -2.547595], [54.97257, -2.547595]], [[54.97257, -2.547595], [54.972478, -2.5476]], [[54.972098, -2.552756], [54.972086, -2.55289]], [[54.972207, -2.562019], [54.972116, -2.562042]], [[54.971931, -2.562099], [54.971836, -2.562073]], [[54.971758, -2.561976], [54.971685, -2.561877]], [[54.971685, -2.561877], [54.971603, -2.561783]], [[54.971603, -2.561783], [54.971512, -2.56176]], [[54.971512, -2.56176], [54.971415, -2.561756]], [[54.971415, -2.561756], [54.971334, -2.561827]], [[54.971244, -2.561892], [54.971164, -2.561969]], [[54.971092, -2.562078], [54.970999, -2.562114]], [[54.970904, -2.56208], [54.970812, -2.562113]], [[54.970812, -2.562113], [54.970721, -2.562104]], [[54.970721, -2.562104], [54.970627, -2.562112]], [[54.970627, -2.562112], [54.97054, -2.562167]], [[54.97054, -2.562167], [54.970447, -2.56217]], [[54.970447, -2.56217], [54.970348, -2.562178]], [[54.969896, -2.562296], [54.969824, -2.562394]], [[54.969824, -2.562394], [54.969726, -2.562401]], [[54.969529, -2.562143], [54.969463, -2.562035]], [[54.969463, -2.562035], [54.96937, -2.561986]], [[54.96937, -2.561986], [54.96928, -2.561938]], [[54.96928, -2.561938], [54.969188, -2.561895]], [[54.969188, -2.561895], [54.969123, -2.561782]], [[54.969123, -2.561782], [54.969065, -2.561661]], [[54.969065, -2.561661], [54.968988, -2.561572]], [[54.968412, -2.561375], [54.968313, -2.561349]], [[54.968313, -2.561349], [54.968226, -2.561401]], [[54.968226, -2.561401], [54.968169, -2.56153]], [[54.968169, -2.56153], [54.968076, -2.56149]], [[54.968076, -2.56149], [54.967987, -2.561461]], [[54.96771, -2.561429], [54.967614, -2.561429]], [[54.967614, -2.561429], [54.967523, -2.561407]], [[54.966609, -2.561112], [54.966522, -2.561018]], [[54.966522, -2.561018], [54.966438, -2.560958]], [[54.965645, -2.560156], [54.965573, -2.560045]], [[54.965493, -2.559949], [54.965404, -2.559888]], [[54.962453, -2.559134], [54.962416, -2.558984]], [[54.962053, -2.558846], [54.96199, -2.558728]], [[54.96199, -2.558728], [54.961899, -2.558711]], [[54.961741, -2.558519], [54.961662, -2.558421]], [[54.961591, -2.558316], [54.961509, -2.558239]], [[54.961509, -2.558239], [54.961431, -2.558139]], [[54.961431, -2.558139], [54.961343, -2.558073]], [[54.961343, -2.558073], [54.961266, -2.557994]], [[54.961089, -2.557858], [54.961012, -2.557768]], [[54.960375, -2.557117], [54.960279, -2.557075]], [[54.959774, -2.5571], [54.959682, -2.557126]], [[54.958768, -2.55675], [54.95868, -2.556698]], [[54.95868, -2.556698], [54.95859, -2.556627]], [[54.95859, -2.556627], [54.958495, -2.556574]], [[54.958123, -2.556361], [54.958024, -2.556362]], [[54.958024, -2.556362], [54.957934, -2.556354]], [[54.956501, -2.556304], [54.956411, -2.556309]], [[54.956411, -2.556309], [54.956316, -2.556281]], [[54.954034, -2.556062], [54.953938, -2.556041]], [[54.953938, -2.556041], [54.953846, -2.556023]], [[54.953562, -2.555905], [54.953466, -2.555885]], [[54.953089, -2.555802], [54.952991, -2.555755]], [[54.952991, -2.555755], [54.952901, -2.555722]], [[54.952901, -2.555722], [54.952805, -2.555733]], [[54.952805, -2.555733], [54.952704, -2.555745]], [[54.952704, -2.555745], [54.95261, -2.555755]], [[54.952236, -2.555843], [54.952141, -2.555849]], [[54.952141, -2.555849], [54.952042, -2.555852]], [[54.952042, -2.555852], [54.951946, -2.555807]], [[54.951946, -2.555807], [54.951854, -2.555803]], [[54.951854, -2.555803], [54.951754, -2.555806]], [[54.951754, -2.555806], [54.951662, -2.555806]], [[54.951662, -2.555806], [54.95157, -2.555806]], [[54.951227, -2.555603], [54.951192, -2.55545]], [[54.950067, -2.552953], [54.949978, -2.552936]], [[54.949693, -2.552913], [54.949598, -2.552886]], [[54.949512, -2.552947], [54.949426, -2.552882]], [[54.949426, -2.552882], [54.949352, -2.55277]], [[54.949352, -2.55277], [54.949335, -2.552616]], [[54.94928, -2.551983], [54.94933, -2.551848]], [[54.949384, -2.551705], [54.949418, -2.551558]], [[54.94946, -2.551413], [54.949488, -2.551246]], [[54.94956, -2.550763], [54.949579, -2.5506]], [[54.949579, -2.5506], [54.949635, -2.550468]], [[54.949635, -2.550468], [54.949697, -2.550335]], [[54.949697, -2.550335], [54.949758, -2.550199]], [[54.949758, -2.550199], [54.949808, -2.550062]], [[54.949808, -2.550062], [54.949856, -2.549926]], [[54.949815, -2.549845], [54.94979, -2.549693]], [[54.94979, -2.549369], [54.949791, -2.54921]], [[54.949791, -2.54921], [54.949797, -2.54905]], [[54.949563, -2.547092], [54.949549, -2.546922]], [[54.949371, -2.545667], [54.949337, -2.545515]], [[54.949337, -2.545515], [54.949293, -2.545363]], [[54.948888, -2.544268], [54.948808, -2.544182]], [[54.948581, -2.543872], [54.948509, -2.543777]], [[54.948509, -2.543777], [54.948428, -2.543671]], [[54.948279, -2.543462], [54.948187, -2.543458]], [[54.948139, -2.543323], [54.948068, -2.543202]], [[54.947387, -2.542685], [54.947294, -2.542652]], [[54.945587, -2.541697], [54.945505, -2.541624]], [[54.945409, -2.54165], [54.945315, -2.541682]], [[54.945315, -2.541682], [54.945229, -2.54173]], [[54.944719, -2.541808], [54.944622, -2.541777]], [[54.944008, -2.54178], [54.943935, -2.541828]], [[54.943935, -2.541828], [54.943841, -2.541811]], [[54.943841, -2.541811], [54.943751, -2.54177]], [[54.943751, -2.54177], [54.943664, -2.5417]], [[54.942811, -2.541603], [54.942721, -2.541583]], [[54.942721, -2.541583], [54.942627, -2.541548]], [[54.942627, -2.541548], [54.942532, -2.541516]], [[54.942532, -2.541516], [54.942438, -2.54146]], [[54.942438, -2.54146], [54.942347, -2.541393]], [[54.942347, -2.541393], [54.94226, -2.541324]], [[54.941837, -2.541042], [54.941748, -2.541007]], [[54.941748, -2.541007], [54.941653, -2.541012]], [[54.941556, -2.541016], [54.941458, -2.541011]], [[54.941458, -2.541011], [54.94136, -2.541021]], [[54.940912, -2.541041], [54.940831, -2.540964]], [[54.940325, -2.54022], [54.940312, -2.540101]], [[54.940352, -2.539642], [54.940262, -2.539565]], [[54.9396, -2.538985], [54.939532, -2.538866]], [[54.939532, -2.538866], [54.939466, -2.538757]], [[54.939304, -2.538579], [54.939216, -2.538482]], [[54.93822, -2.537321], [54.938216, -2.537158]], [[54.938216, -2.537158], [54.938167, -2.537014]], [[54.938167, -2.537014], [54.938103, -2.536899]], [[54.938103, -2.536899], [54.938049, -2.536766]], [[54.938049, -2.536766], [54.938008, -2.536615]], [[54.93748, -2.533948], [54.937429, -2.533808]], [[54.937293, -2.533627], [54.937203, -2.533594]], [[54.936011, -2.531804], [54.935968, -2.531665]], [[54.935968, -2.531665], [54.935892, -2.531561]], [[54.935816, -2.531452], [54.935754, -2.531362]], [[54.935704, -2.53122], [54.935643, -2.531098]], [[54.935644, -2.530613], [54.935615, -2.530478]], [[54.935615, -2.530478], [54.935605, -2.530314]], [[54.935647, -2.529985], [54.935633, -2.529894]], [[54.935647, -2.529738], [54.93563, -2.529583]], [[54.935612, -2.529246], [54.935642, -2.529091]], [[54.935642, -2.529091], [54.935631, -2.528944]], [[54.934212, -2.528746], [54.934135, -2.528752]], [[54.934101, -2.528904], [54.934027, -2.528997]], [[54.934027, -2.528997], [54.933974, -2.529133]], [[54.933974, -2.529133], [54.93393, -2.529281]], [[54.93393, -2.529281], [54.933897, -2.529427]], [[54.933268, -2.529073], [54.933195, -2.529166]], [[54.933195, -2.529166], [54.93312, -2.529254]], [[54.93312, -2.529254], [54.933049, -2.529354]], [[54.933049, -2.529354], [54.932981, -2.52946]], [[54.93283, -2.529658], [54.932754, -2.529754]], [[54.932754, -2.529754], [54.93267, -2.529811]], [[54.93267, -2.529811], [54.932591, -2.529912]], [[54.932591, -2.529912], [54.93252, -2.530016]], [[54.93252, -2.530016], [54.932472, -2.530157]], [[54.932472, -2.530157], [54.932392, -2.530241]], [[54.932392, -2.530241], [54.932309, -2.530326]], [[54.932309, -2.530326], [54.932226, -2.530409]], [[54.931831, -2.530811], [54.931738, -2.53079]], [[54.931738, -2.53079], [54.931725, -2.530627]], [[54.93154, -2.530546], [54.931451, -2.530596]], [[54.931451, -2.530596], [54.931361, -2.530516]], [[54.93119, -2.530392], [54.931098, -2.530341]], [[54.931098, -2.530341], [54.931004, -2.530274]], [[54.931004, -2.530274], [54.930907, -2.530234]], [[54.930907, -2.530234], [54.93082, -2.53016]], [[54.930638, -2.530092], [54.930541, -2.530114]], [[54.929969, -2.530069], [54.929877, -2.53004]], [[54.929489, -2.529994], [54.929395, -2.52997]], [[54.929286, -2.529838], [54.929208, -2.529732]], [[54.929208, -2.529732], [54.929125, -2.529652]], [[54.929125, -2.529652], [54.929063, -2.529535]], [[54.928625, -2.52942], [54.928548, -2.529504]], [[54.928548, -2.529504], [54.928465, -2.529575]], [[54.928465, -2.529575], [54.928379, -2.52966]], [[54.928379, -2.52966], [54.928315, -2.529772]], [[54.928315, -2.529772], [54.928226, -2.529804]], [[54.928226, -2.529804], [54.928135, -2.529836]], [[54.928135, -2.529836], [54.928039, -2.52984]], [[54.926789, -2.529571], [54.926703, -2.529526]], [[54.926609, -2.529483], [54.926525, -2.52941]], [[54.926259, -2.529357], [54.926165, -2.529332]], [[54.924844, -2.528489], [54.924749, -2.528472]], [[54.924139, -2.528061], [54.92406, -2.527986]], [[54.92406, -2.527986], [54.923968, -2.527951]], [[54.923968, -2.527951], [54.923875, -2.527913]], [[54.92381, -2.527788], [54.923733, -2.5277]], [[54.923733, -2.5277], [54.923645, -2.527661]], [[54.923645, -2.527661], [54.923556, -2.527615]], [[54.923367, -2.527554], [54.923277, -2.527484]], [[54.923277, -2.527484], [54.923185, -2.527466]], [[54.923185, -2.527466], [54.92309, -2.527516]], [[54.92309, -2.527516], [54.922992, -2.527491]], [[54.922992, -2.527491], [54.922896, -2.527435]], [[54.922896, -2.527435], [54.922804, -2.527402]], [[54.922611, -2.527353], [54.922522, -2.527314]], [[54.922522, -2.527314], [54.92243, -2.527289]], [[54.92243, -2.527289], [54.922356, -2.527194]], [[54.922356, -2.527194], [54.922267, -2.527147]], [[54.922267, -2.527147], [54.922171, -2.527118]], [[54.922171, -2.527118], [54.92208, -2.527093]], [[54.921989, -2.52705], [54.921901, -2.527002]], [[54.921901, -2.527002], [54.921814, -2.526935]], [[54.921634, -2.526831], [54.921545, -2.526875]], [[54.921545, -2.526875], [54.921451, -2.526866]], [[54.921451, -2.526866], [54.921363, -2.526829]], [[54.921268, -2.526798], [54.921172, -2.526784]], [[54.920679, -2.526282], [54.920602, -2.526186]], [[54.920602, -2.526186], [54.920514, -2.526137]], [[54.920514, -2.526137], [54.920425, -2.526082]], [[54.920425, -2.526082], [54.920343, -2.52601]], [[54.920343, -2.52601], [54.920258, -2.525958]], [[54.920258, -2.525958], [54.92016, -2.525982]], [[54.92016, -2.525982], [54.92007, -2.526029]], [[54.919818, -2.526203], [54.919729, -2.52617]], [[54.919729, -2.52617], [54.919644, -2.526097]], [[54.919644, -2.526097], [54.919567, -2.525994]], [[54.919567, -2.525994], [54.919506, -2.525879]], [[54.919445, -2.525761], [54.919388, -2.525628]], [[54.919388, -2.525628], [54.91932, -2.525526]], [[54.91932, -2.525526], [54.919254, -2.525411]], [[54.919254, -2.525411], [54.919194, -2.525287]], [[54.919194, -2.525287], [54.919134, -2.525171]], [[54.919134, -2.525171], [54.919084, -2.52502]], [[54.919084, -2.52502], [54.919049, -2.524857]], [[54.919049, -2.524857], [54.91901, -2.524709]], [[54.91901, -2.524709], [54.918984, -2.524545]], [[54.91894, -2.524398], [54.918923, -2.524239]], [[54.918923, -2.524239], [54.918898, -2.524088]], [[54.918898, -2.524088], [54.918885, -2.52392]], [[54.918836, -2.522934], [54.918824, -2.522776]], [[54.918824, -2.522776], [54.918814, -2.522613]], [[54.918814, -2.522613], [54.918823, -2.522454]], [[54.918823, -2.522454], [54.918829, -2.522294]], [[54.918829, -2.522294], [54.918829, -2.522138]], [[54.918829, -2.522138], [54.918805, -2.521975]], [[54.918784, -2.521815], [54.918745, -2.521672]], [[54.918745, -2.521672], [54.918738, -2.521511]], [[54.918716, -2.521191], [54.918733, -2.521033]], [[54.918733, -2.521033], [54.918737, -2.52087]], [[54.918652, -2.520719], [54.918565, -2.520666]], [[54.91848, -2.520618], [54.918393, -2.52057]], [[54.918393, -2.52057], [54.918297, -2.52052]], [[54.917385, -2.520056], [54.917296, -2.520016]], [[54.917296, -2.520016], [54.917202, -2.51998]], [[54.917202, -2.51998], [54.917111, -2.519951]], [[54.917111, -2.519951], [54.917016, -2.519919]], [[54.917016, -2.519919], [54.916921, -2.519876]], [[54.916832, -2.519844], [54.916736, -2.519825]], [[54.916736, -2.519825], [54.916642, -2.519795]], [[54.916642, -2.519795], [54.916543, -2.519779]], [[54.916084, -2.519601], [54.915999, -2.51953]], [[54.915999, -2.51953], [54.915913, -2.519479]], [[54.915769, -2.519463], [54.915671, -2.519437]], [[54.915393, -2.519335], [54.915301, -2.519278]], [[54.915301, -2.519278], [54.915203, -2.519272]], [[54.915203, -2.519272], [54.915105, -2.519237]], [[54.915105, -2.519237], [54.915015, -2.519229]], [[54.915015, -2.519229], [54.914925, -2.519194]], [[54.91483, -2.519157], [54.914762, -2.519103]], [[54.913912, -2.518821], [54.913815, -2.518785]], [[54.913815, -2.518785], [54.913716, -2.51876]], [[54.912592, -2.518293], [54.912497, -2.518293]], [[54.91183, -2.518109], [54.911738, -2.518091]], [[54.911738, -2.518091], [54.911647, -2.518079]], [[54.911647, -2.518079], [54.911559, -2.518117]], [[54.911559, -2.518117], [54.911462, -2.518087]], [[54.909871, -2.517729], [54.909777, -2.517709]], [[54.909777, -2.517709], [54.909679, -2.517713]], [[54.909679, -2.517713], [54.909588, -2.517666]], [[54.909505, -2.517605], [54.909407, -2.517582]], [[54.909407, -2.517582], [54.909317, -2.517572]], [[54.909317, -2.517572], [54.909227, -2.517543]], [[54.909227, -2.517543], [54.909132, -2.517497]], [[54.909132, -2.517497], [54.909038, -2.517498]], [[54.909038, -2.517498], [54.908947, -2.51747]], [[54.908766, -2.517404], [54.908677, -2.517337]], [[54.908677, -2.517337], [54.908582, -2.517329]], [[54.908582, -2.517329], [54.908492, -2.517274]], [[54.908492, -2.517274], [54.908393, -2.517266]], [[54.907929, -2.517167], [54.907837, -2.517138]], [[54.907837, -2.517138], [54.907745, -2.517104]], [[54.907188, -2.516931], [54.907099, -2.516875]], [[54.907099, -2.516875], [54.907003, -2.51684]], [[54.906866, -2.516767], [54.906767, -2.516735]], [[54.906391, -2.5166], [54.906303, -2.516547]], [[54.906303, -2.516547], [54.906213, -2.516507]], [[54.906213, -2.516507], [54.906123, -2.51649]], [[54.905059, -2.515931], [54.905002, -2.515876]], [[54.904908, -2.515893], [54.904808, -2.515883]], [[54.901696, -2.514638], [54.901612, -2.514572]], [[54.901612, -2.514572], [54.901518, -2.514532]], [[54.901518, -2.514532], [54.901422, -2.514533]], [[54.90126, -2.514602], [54.901184, -2.514686]], [[54.901184, -2.514686], [54.901117, -2.514794]], [[54.901117, -2.514794], [54.901064, -2.514927]], [[54.900953, -2.5152], [54.900864, -2.515238]], [[54.900672, -2.514981], [54.900669, -2.514821]], [[54.900655, -2.514664], [54.900654, -2.514506]], [[54.900617, -2.514194], [54.900582, -2.51405]], [[54.900582, -2.51405], [54.900559, -2.513922]], [[54.900559, -2.513922], [54.900504, -2.513756]], [[54.900307, -2.513418], [54.900232, -2.513359]], [[54.899942, -2.51336], [54.899839, -2.513368]], [[54.899839, -2.513368], [54.899744, -2.51333]], [[54.899744, -2.51333], [54.89965, -2.513336]], [[54.89965, -2.513336], [54.89956, -2.513313]], [[54.899094, -2.513201], [54.898992, -2.513193]], [[54.898697, -2.513107], [54.898603, -2.513096]], [[54.898603, -2.513096], [54.898509, -2.513053]], [[54.898234, -2.512954], [54.898134, -2.512964]], [[54.898038, -2.512941], [54.897945, -2.512874]], [[54.897945, -2.512874], [54.897862, -2.512791]], [[54.897862, -2.512791], [54.897767, -2.512786]], [[54.897767, -2.512786], [54.897665, -2.512769]], [[54.897572, -2.512748], [54.897472, -2.512748]], [[54.897472, -2.512748], [54.897371, -2.512752]], [[54.897371, -2.512752], [54.897267, -2.512733]], [[54.896519, -2.512445], [54.896429, -2.512404]], [[54.895958, -2.512254], [54.895863, -2.512238]], [[54.895863, -2.512238], [54.895763, -2.51221]], [[54.895763, -2.51221], [54.895675, -2.512164]], [[54.895675, -2.512164], [54.895582, -2.512122]], [[54.895582, -2.512122], [54.895491, -2.512093]], [[54.894929, -2.511961], [54.894834, -2.511914]], [[54.894464, -2.511788], [54.894386, -2.511699]], [[54.894386, -2.511699], [54.894302, -2.511631]], [[54.894128, -2.511533], [54.894037, -2.511564]], [[54.894037, -2.511564], [54.893943, -2.511557]], [[54.893329, -2.511662], [54.893238, -2.511681]], [[54.893238, -2.511681], [54.893144, -2.511694]], [[54.893144, -2.511694], [54.893044, -2.511704]], [[54.892338, -2.511858], [54.892237, -2.511863]], [[54.891648, -2.511875], [54.891581, -2.511978]], [[54.89066, -2.511984], [54.890577, -2.5119]], [[54.890577, -2.5119], [54.890488, -2.511831]], [[54.889925, -2.511437], [54.889835, -2.511421]], [[54.889582, -2.5115], [54.889496, -2.511433]], [[54.889496, -2.511433], [54.889424, -2.511324]], [[54.889424, -2.511324], [54.889327, -2.511327]], [[54.889137, -2.51135], [54.889042, -2.511344]], [[54.889042, -2.511344], [54.888951, -2.511365]], [[54.888853, -2.511384], [54.888765, -2.511431]], [[54.888765, -2.511431], [54.888675, -2.511462]], [[54.888553, -2.511702], [54.888481, -2.511805]], [[54.888481, -2.511805], [54.888398, -2.511882]], [[54.888398, -2.511882], [54.888313, -2.511965]], [[54.888313, -2.511965], [54.888222, -2.512003]], [[54.888222, -2.512003], [54.88813, -2.512023]], [[54.88813, -2.512023], [54.88804, -2.512067]], [[54.88768, -2.512238], [54.887589, -2.512228]], [[54.887098, -2.511768], [54.887047, -2.511638]], [[54.885973, -2.509766], [54.885908, -2.509791]], [[54.885825, -2.509713], [54.885734, -2.509663]], [[54.884996, -2.509329], [54.884899, -2.509296]], [[54.883828, -2.508011], [54.883812, -2.50795]], [[54.883693, -2.507784], [54.883599, -2.507779]], [[54.882895, -2.507317], [54.882854, -2.507295]], [[54.882717, -2.507331], [54.882667, -2.507463]], [[54.882544, -2.507706], [54.882562, -2.507842]], [[54.882176, -2.508289], [54.882099, -2.508383]], [[54.882014, -2.508458], [54.881922, -2.508466]], [[54.881782, -2.508617], [54.881699, -2.508697]], [[54.88112, -2.509313], [54.881038, -2.50939]], [[54.880372, -2.509987], [54.880293, -2.510078]], [[54.879712, -2.510674], [54.879636, -2.510756]], [[54.879036, -2.510885], [54.878939, -2.510877]], [[54.87888, -2.510666], [54.878821, -2.51063]], [[54.878821, -2.51063], [54.87872, -2.510649]], [[54.878539, -2.510532], [54.878451, -2.510475]], [[54.878451, -2.510475], [54.878363, -2.510541]], [[54.878363, -2.510541], [54.878291, -2.51065]], [[54.878148, -2.510887], [54.878062, -2.510961]], [[54.877919, -2.511129], [54.877841, -2.511224]], [[54.87695, -2.511851], [54.876856, -2.511882]], [[54.876766, -2.511937], [54.876668, -2.511976]], [[54.876403, -2.512043], [54.876308, -2.512034]], [[54.876308, -2.512034], [54.876211, -2.512038]], [[54.87603, -2.511988], [54.875929, -2.511969]], [[54.875929, -2.511969], [54.875835, -2.511976]], [[54.875835, -2.511976], [54.875745, -2.512001]], [[54.875678, -2.512112], [54.875614, -2.512241]], [[54.875614, -2.512241], [54.875547, -2.51235]], [[54.875493, -2.512491], [54.875434, -2.512621]], [[54.875434, -2.512621], [54.875356, -2.512708]], [[54.875356, -2.512708], [54.875295, -2.512824]], [[54.875162, -2.513052], [54.8751, -2.513185]], [[54.8751, -2.513185], [54.875039, -2.513324]], [[54.874712, -2.51347], [54.874651, -2.513595]], [[54.874651, -2.513595], [54.874626, -2.513759]], [[54.874543, -2.514055], [54.874503, -2.51421]], [[54.874368, -2.514197], [54.874271, -2.514175]], [[54.874271, -2.514175], [54.874215, -2.514195]], [[54.874215, -2.514195], [54.874311, -2.514239]], [[54.873647, -2.51483], [54.873586, -2.514703]], [[54.873518, -2.514661], [54.873448, -2.514552]], [[54.870379, -2.512057], [54.87035, -2.512009]], [[54.870336, -2.511515], [54.870327, -2.511355]], [[54.870139, -2.511139], [54.870045, -2.511152]], [[54.869521, -2.510873], [54.869428, -2.510836]], [[54.869381, -2.510861], [54.869287, -2.510876]], [[54.869024, -2.51076], [54.868969, -2.510632]], [[54.86846, -2.510229], [54.868371, -2.510196]], [[54.868371, -2.510196], [54.868283, -2.510125]], [[54.868208, -2.510036], [54.868142, -2.509927]], [[54.867846, -2.509511], [54.86777, -2.509394]], [[54.865875, -2.503353], [54.865878, -2.50319]], [[54.865878, -2.50319], [54.865792, -2.503106]], [[54.865792, -2.503106], [54.865717, -2.503017]], [[54.865717, -2.503017], [54.865642, -2.502907]], [[54.865492, -2.502683], [54.865423, -2.502556]], [[54.864813, -2.501715], [54.864753, -2.501656]], [[54.864055, -2.501037], [54.863962, -2.501002]], [[54.861593, -2.499135], [54.861503, -2.499056]], [[54.861355, -2.498846], [54.861287, -2.498835]], [[54.861192, -2.498804], [54.861103, -2.498739]], [[54.860886, -2.498291], [54.860831, -2.498157]], [[54.858786, -2.494462], [54.858724, -2.494345]], [[54.858661, -2.494227], [54.858636, -2.494064]], [[54.858636, -2.494064], [54.858583, -2.493928]], [[54.858583, -2.493928], [54.858532, -2.493788]], [[54.858481, -2.493672], [54.85847, -2.493516]], [[54.858449, -2.493357], [54.858425, -2.493205]], [[54.858425, -2.493205], [54.858401, -2.493045]], [[54.858325, -2.492271], [54.858287, -2.492122]], [[54.858256, -2.491962], [54.85822, -2.491798]], [[54.85822, -2.491798], [54.858238, -2.491638]], [[54.858151, -2.490849], [54.858117, -2.490702]], [[54.858117, -2.490702], [54.85807, -2.490554]], [[54.85807, -2.490554], [54.858022, -2.49042]], [[54.858022, -2.49042], [54.857939, -2.49035]], [[54.857939, -2.49035], [54.857851, -2.490308]], [[54.857722, -2.490153], [54.857636, -2.490079]], [[54.857433, -2.48979], [54.857342, -2.489749]], [[54.857342, -2.489749], [54.857258, -2.489676]], [[54.857258, -2.489676], [54.857181, -2.489581]], [[54.857044, -2.489465], [54.856984, -2.489332]], [[54.856418, -2.488433], [54.856359, -2.488303]], [[54.856359, -2.488303], [54.856293, -2.488177]], [[54.856219, -2.488083], [54.856133, -2.488032]], [[54.856133, -2.488032], [54.856041, -2.488044]], [[54.856041, -2.488044], [54.855945, -2.488066]], [[54.855945, -2.488066], [54.855849, -2.488095]], [[54.855849, -2.488095], [54.855765, -2.48818]], [[54.855054, -2.488998], [54.854967, -2.489046]], [[54.854967, -2.489046], [54.854871, -2.489052]], [[54.854495, -2.489147], [54.854402, -2.489119]], [[54.854148, -2.489199], [54.85407, -2.489304]], [[54.85407, -2.489304], [54.853983, -2.489371]], [[54.853413, -2.488627], [54.853346, -2.488501]], [[54.853346, -2.488501], [54.853274, -2.488392]], [[54.853109, -2.488237], [54.853021, -2.488205]], [[54.853021, -2.488205], [54.85293, -2.488174]], [[54.85293, -2.488174], [54.852841, -2.488116]], [[54.852841, -2.488116], [54.852771, -2.487999]], [[54.852771, -2.487999], [54.852707, -2.487875]], [[54.852707, -2.487875], [54.852668, -2.487719]], [[54.852668, -2.487719], [54.852657, -2.487556]], [[54.852657, -2.487556], [54.852639, -2.487399]], [[54.852501, -2.487074], [54.852452, -2.486941]], [[54.852452, -2.486941], [54.852386, -2.486833]], [[54.852386, -2.486833], [54.852342, -2.486697]], [[54.852342, -2.486697], [54.852292, -2.486554]], [[54.852224, -2.486437], [54.852168, -2.486313]], [[54.852168, -2.486313], [54.852112, -2.486175]], [[54.852054, -2.486044], [54.851982, -2.48594]], [[54.851982, -2.48594], [54.851906, -2.48584]], [[54.851769, -2.485856], [54.851676, -2.485909]], [[54.851676, -2.485909], [54.851589, -2.485965]], [[54.851589, -2.485965], [54.851505, -2.486033]], [[54.851505, -2.486033], [54.851414, -2.486085]], [[54.851233, -2.486217], [54.851143, -2.486199]], [[54.850893, -2.486031], [54.85081, -2.48596]], [[54.85081, -2.48596], [54.850718, -2.485914]], [[54.850718, -2.485914], [54.850628, -2.485896]], [[54.850342, -2.48553], [54.850308, -2.485378]], [[54.850308, -2.485378], [54.850269, -2.485229]], [[54.850269, -2.485229], [54.850238, -2.485079]], [[54.850238, -2.485079], [54.850211, -2.484915]], [[54.850211, -2.484915], [54.85016, -2.484779]], [[54.85016, -2.484779], [54.850101, -2.484654]], [[54.850101, -2.484654], [54.850036, -2.484535]], [[54.850036, -2.484535], [54.849959, -2.48443]], [[54.849885, -2.484318], [54.849812, -2.484224]], [[54.849812, -2.484224], [54.849728, -2.484139]], [[54.849728, -2.484139], [54.849647, -2.484069]], [[54.849564, -2.48396], [54.849475, -2.48389]], [[54.849475, -2.48389], [54.84939, -2.483818]], [[54.849273, -2.483646], [54.84919, -2.483566]], [[54.849097, -2.483509], [54.849002, -2.483482]], [[54.849002, -2.483482], [54.848912, -2.483427]], [[54.848912, -2.483427], [54.84883, -2.483325]], [[54.84883, -2.483325], [54.848759, -2.483217]], [[54.848759, -2.483217], [54.84869, -2.483112]], [[54.84869, -2.483112], [54.848627, -2.482994]], [[54.848576, -2.482853], [54.848507, -2.482744]], [[54.848507, -2.482744], [54.848431, -2.482637]], [[54.848431, -2.482637], [54.848351, -2.482558]], [[54.848351, -2.482558], [54.848267, -2.48248]], [[54.848188, -2.482345], [54.848093, -2.482306]], [[54.848093, -2.482306], [54.848007, -2.482257]], [[54.848007, -2.482257], [54.847915, -2.482187]], [[54.847915, -2.482187], [54.847834, -2.482106]], [[54.847834, -2.482106], [54.847755, -2.482027]], [[54.847755, -2.482027], [54.847699, -2.481896]], [[54.84762, -2.481802], [54.847539, -2.481725]], [[54.847539, -2.481725], [54.847465, -2.481629]], [[54.847465, -2.481629], [54.847388, -2.481548]], [[54.847388, -2.481548], [54.847328, -2.481428]], [[54.847328, -2.481428], [54.84726, -2.481324]], [[54.84726, -2.481324], [54.847197, -2.481212]], [[54.847197, -2.481212], [54.84712, -2.481107]], [[54.84698, -2.480862], [54.846912, -2.48076]], [[54.846841, -2.480656], [54.846765, -2.480541]], [[54.846765, -2.480541], [54.846685, -2.480448]], [[54.846685, -2.480448], [54.846618, -2.480332]], [[54.846359, -2.480014], [54.846273, -2.47996]], [[54.846273, -2.47996], [54.846183, -2.479899]], [[54.846183, -2.479899], [54.846094, -2.47989]], [[54.846094, -2.47989], [54.846002, -2.479903]], [[54.846002, -2.479903], [54.845904, -2.479886]], [[54.845904, -2.479886], [54.845821, -2.479814]], [[54.845821, -2.479814], [54.845735, -2.479722]], [[54.845735, -2.479722], [54.845649, -2.479655]], [[54.845649, -2.479655], [54.845557, -2.479638]], [[54.845557, -2.479638], [54.845481, -2.479545]], [[54.845481, -2.479545], [54.8454, -2.479462]], [[54.8454, -2.479462], [54.845313, -2.479399]], [[54.845313, -2.479399], [54.845221, -2.479357]], [[54.845221, -2.479357], [54.845129, -2.479302]], [[54.844859, -2.479163], [54.84477, -2.479101]], [[54.844634, -2.479098], [54.844549, -2.47902]], [[54.844549, -2.47902], [54.844469, -2.478947]], [[54.844251, -2.478829], [54.844156, -2.478776]], [[54.844156, -2.478776], [54.84407, -2.478715]], [[54.84407, -2.478715], [54.84398, -2.478678]], [[54.843627, -2.478761], [54.843535, -2.478769]], [[54.843535, -2.478769], [54.843519, -2.47861]], [[54.843519, -2.47861], [54.84349, -2.478458]], [[54.84349, -2.478458], [54.843462, -2.478309]], [[54.84339, -2.47748], [54.843311, -2.477401]], [[54.843311, -2.477401], [54.843228, -2.477327]], [[54.843052, -2.477198], [54.842986, -2.477077]], [[54.842986, -2.477077], [54.842896, -2.477068]], [[54.842896, -2.477068], [54.842807, -2.477051]], [[54.842807, -2.477051], [54.842725, -2.477137]], [[54.842725, -2.477137], [54.842644, -2.477223]], [[54.842419, -2.477127], [54.842331, -2.477082]], [[54.842331, -2.477082], [54.842237, -2.477047]], [[54.842237, -2.477047], [54.84214, -2.477049]], [[54.84214, -2.477049], [54.842046, -2.47705]], [[54.842046, -2.47705], [54.841955, -2.477051]], [[54.841488, -2.476899], [54.841392, -2.476877]], [[54.841392, -2.476877], [54.841301, -2.476855]], [[54.841301, -2.476855], [54.841204, -2.476837]], [[54.841204, -2.476837], [54.84111, -2.476796]], [[54.841016, -2.476768], [54.840921, -2.476738]], [[54.840921, -2.476738], [54.840827, -2.476747]], [[54.840715, -2.476682], [54.840616, -2.476679]], [[54.840435, -2.476621], [54.840342, -2.476617]], [[54.840342, -2.476617], [54.840253, -2.476585]], [[54.840253, -2.476585], [54.840163, -2.476584]], [[54.840163, -2.476584], [54.840074, -2.476593]], [[54.839681, -2.476504], [54.839589, -2.476494]], [[54.839589, -2.476494], [54.839495, -2.476463]], [[54.839495, -2.476463], [54.8394, -2.476435]], [[54.8394, -2.476435], [54.839303, -2.476419]], [[54.839303, -2.476419], [54.839206, -2.476405]], [[54.839112, -2.476407], [54.839017, -2.476406]], [[54.839017, -2.476406], [54.838949, -2.476304]], [[54.838949, -2.476304], [54.83888, -2.476191]], [[54.83888, -2.476191], [54.838807, -2.476098]], [[54.838807, -2.476098], [54.838727, -2.476]], [[54.83834, -2.475712], [54.838248, -2.475657]], [[54.838248, -2.475657], [54.83816, -2.475613]], [[54.83816, -2.475613], [54.838069, -2.475594]], [[54.838069, -2.475594], [54.83798, -2.47555]], [[54.83798, -2.47555], [54.837891, -2.475526]], [[54.837703, -2.475562], [54.83761, -2.475582]], [[54.83761, -2.475582], [54.837517, -2.475626]], [[54.837517, -2.475626], [54.837418, -2.475634]], [[54.837418, -2.475634], [54.837326, -2.475619]], [[54.837326, -2.475619], [54.837232, -2.475618]], [[54.836756, -2.475584], [54.836656, -2.475564]], [[54.836656, -2.475564], [54.83656, -2.475574]], [[54.83656, -2.475574], [54.836469, -2.475574]], [[54.836469, -2.475574], [54.83638, -2.475542]], [[54.83638, -2.475542], [54.836289, -2.475496]], [[54.836289, -2.475496], [54.836199, -2.475447]], [[54.836199, -2.475447], [54.83611, -2.475412]], [[54.83611, -2.475412], [54.836013, -2.475376]], [[54.836013, -2.475376], [54.835924, -2.475346]], [[54.835661, -2.475294], [54.83557, -2.475247]], [[54.83557, -2.475247], [54.835479, -2.475176]], [[54.835134, -2.474764], [54.83507, -2.47463]], [[54.833488, -2.471546], [54.833463, -2.471709]], [[54.833463, -2.471709], [54.833518, -2.471859]], [[54.833565, -2.471997], [54.833537, -2.472149]], [[54.835234, -2.469062], [54.835158, -2.468971]], [[54.831703, -2.462992], [54.83164, -2.462869]], [[54.83164, -2.462869], [54.831574, -2.462757]], [[54.831158, -2.462065], [54.831098, -2.461949]], [[54.831098, -2.461949], [54.831029, -2.461827]], [[54.831029, -2.461827], [54.830966, -2.4617]], [[54.830966, -2.4617], [54.830901, -2.461575]], [[54.829481, -2.459121], [54.829411, -2.458985]], [[54.82903, -2.458198], [54.828975, -2.458075]], [[54.828975, -2.458075], [54.828927, -2.457939]], [[54.828775, -2.45752], [54.828719, -2.457386]], [[54.826304, -2.450604], [54.826246, -2.450484]], [[54.825019, -2.448865], [54.824934, -2.448809]], [[54.824055, -2.448113], [54.823977, -2.448025]], [[54.822567, -2.446925], [54.822479, -2.446869]], [[54.822385, -2.446833], [54.8223, -2.446768]], [[54.819484, -2.444781], [54.81943, -2.444852]], [[54.818657, -2.444664], [54.818561, -2.444657]], [[54.818467, -2.444654], [54.818372, -2.444642]], [[54.817527, -2.44429], [54.817485, -2.444232]], [[54.81505, -2.442521], [54.814963, -2.442442]], [[54.814906, -2.442301], [54.814916, -2.442131]], [[54.814916, -2.442131], [54.814873, -2.44198]], [[54.814538, -2.441679], [54.814487, -2.441545]], [[54.814487, -2.441545], [54.814411, -2.441447]], [[54.81343, -2.441592], [54.813343, -2.441652]], [[54.813089, -2.441727], [54.812991, -2.441739]], [[54.812991, -2.441739], [54.812901, -2.441689]], [[54.812901, -2.441689], [54.81284, -2.441557]], [[54.812116, -2.441505], [54.812016, -2.441453]], [[54.81118, -2.441857], [54.811204, -2.441993]], [[54.811287, -2.44182], [54.811372, -2.441767]], [[54.811466, -2.441752], [54.811531, -2.441682]], [[54.811541, -2.441511], [54.811531, -2.441675]], [[54.810865, -2.441954], [54.810765, -2.441973]], [[54.810765, -2.441973], [54.810673, -2.44202]], [[54.809713, -2.44237], [54.809672, -2.442251]], [[54.809361, -2.442073], [54.809299, -2.442129]], [[54.809206, -2.44214], [54.809108, -2.442161]], [[54.807872, -2.442003], [54.807778, -2.441995]], [[54.807778, -2.441995], [54.807683, -2.441956]], [[54.807683, -2.441956], [54.80759, -2.441945]], [[54.80759, -2.441945], [54.807499, -2.441943]], [[54.807326, -2.441904], [54.807232, -2.441911]], [[54.807232, -2.441911], [54.807138, -2.441906]], [[54.803381, -2.44172], [54.803304, -2.441824]], [[54.803123, -2.441921], [54.803027, -2.44193]], [[54.803027, -2.44193], [54.802933, -2.441951]], [[54.802059, -2.441781], [54.801961, -2.441756]], [[54.801672, -2.441677], [54.801583, -2.441613]], [[54.801583, -2.441613], [54.801483, -2.44161]], [[54.801483, -2.44161], [54.801394, -2.441564]], [[54.801394, -2.441564], [54.801305, -2.441511]], [[54.801305, -2.441511], [54.801215, -2.441505]], [[54.801215, -2.441505], [54.801128, -2.441457]], [[54.801128, -2.441457], [54.801032, -2.441412]], [[54.800954, -2.441383], [54.800857, -2.441345]], [[54.800398, -2.441159], [54.800305, -2.441127]], [[54.800099, -2.440977], [54.800005, -2.440925]], [[54.800005, -2.440925], [54.799906, -2.440903]], [[54.798569, -2.441405], [54.79848, -2.441451]], [[54.797932, -2.441395], [54.797845, -2.441352]], [[54.797511, -2.4412], [54.797417, -2.441231]], [[54.796839, -2.441237], [54.796748, -2.441237]], [[54.796553, -2.441259], [54.796452, -2.441281]], [[54.796452, -2.441281], [54.796351, -2.441274]], [[54.796061, -2.441336], [54.795966, -2.441352]], [[54.795966, -2.441352], [54.79587, -2.441364]], [[54.795777, -2.441393], [54.795684, -2.441401]], [[54.795684, -2.441401], [54.79559, -2.441433]], [[54.79559, -2.441433], [54.795497, -2.441456]], [[54.794467, -2.441739], [54.794369, -2.441742]], [[54.794369, -2.441742], [54.794281, -2.441785]], [[54.794281, -2.441785], [54.794186, -2.441829]], [[54.793554, -2.441828], [54.79346, -2.441827]], [[54.793275, -2.441827], [54.79318, -2.44183]], [[54.79318, -2.44183], [54.793091, -2.441905]], [[54.792819, -2.442058], [54.792729, -2.441992]], [[54.79257, -2.441885], [54.79248, -2.441869]], [[54.792283, -2.441897], [54.792227, -2.441952]], [[54.792138, -2.442025], [54.792046, -2.442085]], [[54.791873, -2.442219], [54.791782, -2.442265]], [[54.791782, -2.442265], [54.791692, -2.442344]], [[54.791052, -2.442607], [54.790958, -2.442633]], [[54.7904, -2.442769], [54.79031, -2.442774]], [[54.79031, -2.442774], [54.790214, -2.442796]], [[54.789248, -2.442855], [54.78915, -2.442867]], [[54.788962, -2.442872], [54.78887, -2.442867]], [[54.78887, -2.442867], [54.788771, -2.442867]], [[54.788771, -2.442867], [54.788678, -2.442851]], [[54.788678, -2.442851], [54.788578, -2.442834]], [[54.788428, -2.44284], [54.788338, -2.44282]], [[54.787483, -2.442557], [54.787393, -2.442524]], [[54.787393, -2.442524], [54.787299, -2.442508]], [[54.787299, -2.442508], [54.787206, -2.442477]], [[54.787206, -2.442477], [54.787122, -2.442416]], [[54.787156, -2.441763], [54.787178, -2.441614]], [[54.787012, -2.441451], [54.78693, -2.441377]], [[54.78693, -2.441377], [54.786842, -2.441318]], [[54.786746, -2.441275], [54.786662, -2.441215]], [[54.786572, -2.441173], [54.786479, -2.441134]], [[54.786125, -2.440918], [54.786032, -2.440863]], [[54.786032, -2.440863], [54.785941, -2.440797]], [[54.785941, -2.440797], [54.785852, -2.440732]], [[54.785504, -2.440458], [54.785444, -2.440328]], [[54.785444, -2.440328], [54.78538, -2.440201]], [[54.78538, -2.440201], [54.785321, -2.440079]], [[54.785321, -2.440079], [54.785265, -2.439946]], [[54.785265, -2.439946], [54.785226, -2.439805]], [[54.785226, -2.439805], [54.785181, -2.439654]], [[54.784989, -2.439084], [54.78494, -2.438943]], [[54.784854, -2.438797], [54.784772, -2.438711]], [[54.784247, -2.437575], [54.784155, -2.437536]], [[54.784155, -2.437536], [54.784089, -2.437417]], [[54.783982, -2.436658], [54.783942, -2.436526]], [[54.783729, -2.435992], [54.783705, -2.435837]], [[54.783705, -2.435837], [54.783649, -2.435711]], [[54.783649, -2.435711], [54.783597, -2.43558]], [[54.783597, -2.43558], [54.783541, -2.435452]], [[54.783541, -2.435452], [54.783499, -2.435309]], [[54.783499, -2.435309], [54.783443, -2.435175]], [[54.783298, -2.434748], [54.783244, -2.434619]], [[54.783244, -2.434619], [54.78319, -2.434489]], [[54.78319, -2.434489], [54.783136, -2.434355]], [[54.783136, -2.434355], [54.783078, -2.434218]], [[54.782894, -2.433644], [54.782847, -2.433508]], [[54.782847, -2.433508], [54.78278, -2.433399]], [[54.78278, -2.433399], [54.782709, -2.43328]], [[54.78252, -2.432895], [54.782469, -2.432763]], [[54.782469, -2.432763], [54.782402, -2.432642]], [[54.782402, -2.432642], [54.782336, -2.432515]], [[54.782058, -2.432045], [54.782008, -2.431902]], [[54.782008, -2.431902], [54.781973, -2.431758]], [[54.781888, -2.431551], [54.781849, -2.431404]], [[54.781461, -2.43053], [54.781398, -2.430412]], [[54.781398, -2.430412], [54.781342, -2.430283]], [[54.781263, -2.430098], [54.781203, -2.429972]], [[54.780827, -2.429382], [54.780738, -2.429338]], [[54.780738, -2.429338], [54.780661, -2.429227]], [[54.780611, -2.429089], [54.780543, -2.428969]], [[54.78042, -2.428746], [54.780353, -2.428632]], [[54.780353, -2.428632], [54.78029, -2.428511]], [[54.78029, -2.428511], [54.780237, -2.428364]], [[54.780237, -2.428364], [54.780184, -2.428225]], [[54.780184, -2.428225], [54.780203, -2.428058]], [[54.780203, -2.428058], [54.780149, -2.427912]], [[54.780149, -2.427912], [54.780061, -2.427872]], [[54.779884, -2.427773], [54.779829, -2.427726]], [[54.77972, -2.427087], [54.779652, -2.42698]], [[54.779652, -2.42698], [54.779637, -2.426822]], [[54.779588, -2.4265], [54.77956, -2.42634]], [[54.77956, -2.42634], [54.77953, -2.42619]], [[54.77953, -2.42619], [54.779502, -2.426035]], [[54.779502, -2.426035], [54.779498, -2.425869]], [[54.779381, -2.425084], [54.779315, -2.424959]], [[54.779174, -2.424765], [54.779113, -2.42464]], [[54.779113, -2.42464], [54.779076, -2.424481]], [[54.778947, -2.424021], [54.778904, -2.423883]], [[54.778904, -2.423883], [54.778867, -2.423733]], [[54.778867, -2.423733], [54.778803, -2.423597]], [[54.778689, -2.423335], [54.778612, -2.423263]], [[54.778592, -2.423084], [54.778564, -2.422924]], [[54.778022, -2.421277], [54.777979, -2.421125]], [[54.777979, -2.421125], [54.777934, -2.420979]], [[54.777776, -2.420559], [54.77771, -2.420444]], [[54.77771, -2.420444], [54.777682, -2.420275]], [[54.777682, -2.420275], [54.777633, -2.420136]], [[54.77718, -2.418838], [54.777147, -2.418766]], [[54.777088, -2.41864], [54.77703, -2.418503]], [[54.776935, -2.418238], [54.776857, -2.418139]], [[54.776857, -2.418139], [54.776821, -2.417995]], [[54.776698, -2.417484], [54.776654, -2.417343]], [[54.776287, -2.415843], [54.776218, -2.415779]], [[54.776075, -2.414776], [54.776022, -2.414624]], [[54.776022, -2.414624], [54.775966, -2.414486]], [[54.775966, -2.414486], [54.775942, -2.414332]], [[54.775772, -2.413555], [54.775722, -2.413422]], [[54.775645, -2.413006], [54.775631, -2.412831]], [[54.775609, -2.412178], [54.775608, -2.412021]], [[54.775568, -2.411771], [54.775527, -2.411609]], [[54.775198, -2.410784], [54.775154, -2.410638]], [[54.775154, -2.410638], [54.775103, -2.4105]], [[54.775064, -2.410372], [54.775015, -2.410221]], [[54.774879, -2.409809], [54.774844, -2.40966]], [[54.774844, -2.40966], [54.774804, -2.409513]], [[54.774529, -2.408677], [54.774468, -2.408559]], [[54.774468, -2.408559], [54.77443, -2.408418]], [[54.774146, -2.407534], [54.774108, -2.40738]], [[54.774108, -2.40738], [54.774065, -2.407242]], [[54.773985, -2.407061], [54.773922, -2.406948]], [[54.773797, -2.406531], [54.77373, -2.406409]], [[54.773622, -2.406006], [54.773672, -2.405861]], [[54.773672, -2.405861], [54.773722, -2.405721]], [[54.773722, -2.405721], [54.773756, -2.405567]], [[54.773756, -2.405567], [54.773812, -2.405438]], [[54.773835, -2.405286], [54.773776, -2.405147]], [[54.772317, -2.401354], [54.772348, -2.401203]], [[54.772348, -2.401203], [54.7724, -2.401075]], [[54.7724, -2.401075], [54.772463, -2.400955]], [[54.772517, -2.400647], [54.772528, -2.400492]], [[54.772528, -2.400492], [54.772551, -2.400327]], [[54.772551, -2.400327], [54.772593, -2.400181]], [[54.772593, -2.400181], [54.772626, -2.400019]], [[54.772626, -2.400019], [54.772671, -2.399881]], [[54.772671, -2.399881], [54.772694, -2.39973]], [[54.772694, -2.39973], [54.772745, -2.399587]], [[54.772745, -2.399587], [54.772806, -2.399463]], [[54.772806, -2.399463], [54.772854, -2.399311]], [[54.772854, -2.399311], [54.772865, -2.399153]], [[54.772793, -2.399253], [54.772757, -2.399395]], [[54.769729, -2.39836], [54.769657, -2.398236]], [[54.768779, -2.397296], [54.76871, -2.397406]], [[54.767932, -2.396719], [54.76787, -2.396685]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5999c2911d4c591637100e16959f1fa3);
        
    
            var poly_line_f2e844b50b462bea1091d045d4af7319 = L.polyline(
                [[[55.010827, -2.349512], [55.010793, -2.34967]], [[55.009983, -2.353579], [55.009929, -2.353716]], [[55.003425, -2.374275], [55.003412, -2.374292]], [[55.003412, -2.374292], [55.003419, -2.374456]], [[55.001766, -2.386385], [55.001753, -2.386443]], [[55.001977, -2.388281], [55.002037, -2.388401]], [[55.002926, -2.391376], [55.002837, -2.391458]], [[55.002205, -2.399091], [55.002223, -2.399255]], [[55.00209, -2.402944], [55.002085, -2.403113]], [[54.997069, -2.424625], [54.997025, -2.424771]], [[54.996446, -2.425982], [54.9964, -2.426123]], [[54.994125, -2.445735], [54.994049, -2.445835]], [[54.993073, -2.450071], [54.993011, -2.450188]], [[54.992827, -2.450553], [54.993069, -2.450573]], [[54.995218, -2.482569], [54.995262, -2.482711]], [[54.986654, -2.519519], [54.986702, -2.519671]], [[54.98843, -2.534044], [54.988357, -2.534162]], [[54.986804, -2.536186], [54.986813, -2.536353]], [[54.986646, -2.536983], [54.986631, -2.536999]], [[54.974667, -2.548096], [54.974627, -2.547946]], [[54.934592, -2.528634], [54.934502, -2.52868]], [[54.933885, -2.529452], [54.933799, -2.529388]], [[54.927824, -2.529834], [54.92773, -2.52983]], [[54.89183, -2.511835], [54.891739, -2.511822]], [[54.883812, -2.50795], [54.883781, -2.507798]], [[54.871989, -2.513535], [54.871891, -2.513531]], [[54.835439, -2.475146], [54.835352, -2.475078]], [[54.831856, -2.463214], [54.831776, -2.463109]], [[54.811193, -2.44188], [54.811287, -2.44182]], [[54.811531, -2.441682], [54.811541, -2.441511]], [[54.811119, -2.441959], [54.811027, -2.441914]], [[54.800282, -2.441092], [54.800187, -2.441045]], [[54.797842, -2.441343], [54.797756, -2.441281]], [[54.784055, -2.436967], [54.784015, -2.436814]], [[54.781131, -2.42983], [54.781067, -2.429718]], [[54.779502, -2.425839], [54.779496, -2.42566]], [[54.776649, -2.417334], [54.776593, -2.417201]], [[54.775724, -2.413433], [54.775679, -2.413288]], [[54.770936, -2.399582], [54.770856, -2.399499]], [[54.768709, -2.397403], [54.768613, -2.397336]], [[54.76787, -2.396685], [54.767893, -2.396533]], [[54.767893, -2.396533], [54.767906, -2.396578]], [[54.767906, -2.396578], [54.767954, -2.396435]], [[54.767954, -2.396435], [54.767942, -2.396368]], [[54.767942, -2.396368], [54.767919, -2.396518]], [[54.767919, -2.396518], [54.767918, -2.396516]], [[54.767918, -2.396516], [54.767906, -2.39667]], [[54.767906, -2.39667], [54.767906, -2.396671]], [[54.767906, -2.396671], [54.767907, -2.39667]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5999c2911d4c591637100e16959f1fa3);
        
    
            var poly_line_03a639841fee88a7d5cf8259628456ef = L.polyline(
                [[[55.010666, -2.350473], [55.010641, -2.350623]], [[55.010641, -2.350623], [55.010616, -2.350795]], [[55.010616, -2.350795], [55.010586, -2.350956]], [[55.010586, -2.350956], [55.010544, -2.351106]], [[55.010544, -2.351106], [55.010515, -2.35126]], [[55.010441, -2.351566], [55.010404, -2.351723]], [[55.010404, -2.351723], [55.010363, -2.351874]], [[55.010363, -2.351874], [55.010345, -2.352029]], [[55.010345, -2.352029], [55.010345, -2.352196]], [[55.010345, -2.352196], [55.010319, -2.352359]], [[55.010319, -2.352359], [55.01028, -2.352521]], [[55.01028, -2.352521], [55.010237, -2.352666]], [[55.010237, -2.352666], [55.010207, -2.35283]], [[55.010207, -2.35283], [55.010167, -2.352982]], [[55.010099, -2.353276], [55.010045, -2.353424]], [[55.010045, -2.353424], [55.009992, -2.353556]], [[55.009874, -2.353859], [55.00982, -2.353986]], [[55.00982, -2.353986], [55.009776, -2.354144]], [[55.009776, -2.354144], [55.00973, -2.354288]], [[55.00973, -2.354288], [55.009676, -2.354431]], [[55.009676, -2.354431], [55.009635, -2.354577]], [[55.009635, -2.354577], [55.009582, -2.354721]], [[55.009455, -2.354977], [55.009401, -2.355119]], [[55.009401, -2.355119], [55.009324, -2.355206]], [[55.009324, -2.355206], [55.009236, -2.355274]], [[55.009236, -2.355274], [55.009155, -2.355356]], [[55.009155, -2.355356], [55.009072, -2.355433]], [[55.008818, -2.355673], [55.008728, -2.355739]], [[55.008728, -2.355739], [55.008657, -2.355845]], [[55.008657, -2.355845], [55.008564, -2.355907]], [[55.008564, -2.355907], [55.008475, -2.35595]], [[55.008475, -2.35595], [55.0084, -2.356053]], [[55.0084, -2.356053], [55.008314, -2.356124]], [[55.008314, -2.356124], [55.008227, -2.356199]], [[55.008227, -2.356199], [55.008141, -2.356245]], [[55.007877, -2.356404], [55.007794, -2.356461]], [[55.007794, -2.356461], [55.007711, -2.356539]], [[55.007381, -2.356459], [55.007284, -2.356493]], [[55.007038, -2.356817], [55.007038, -2.356983]], [[55.007038, -2.356983], [55.006958, -2.357084]], [[55.006345, -2.357533], [55.006263, -2.357609]], [[55.005831, -2.358537], [55.005846, -2.358711]], [[55.005846, -2.358711], [55.005842, -2.358881]], [[55.005817, -2.359662], [55.005804, -2.359824]], [[55.005769, -2.360423], [55.005744, -2.360585]], [[55.005744, -2.360585], [55.005718, -2.360737]], [[55.005718, -2.360737], [55.005687, -2.360919]], [[55.005687, -2.360919], [55.005663, -2.361077]], [[55.00562, -2.361417], [55.005589, -2.361581]], [[55.005548, -2.361956], [55.005533, -2.362127]], [[55.005533, -2.362127], [55.005512, -2.362289]], [[55.005512, -2.362289], [55.005496, -2.362463]], [[55.005496, -2.362463], [55.005479, -2.362627]], [[55.005479, -2.362627], [55.005453, -2.362791]], [[55.005453, -2.362791], [55.005406, -2.362924]], [[55.005406, -2.362924], [55.005378, -2.36309]], [[55.005378, -2.36309], [55.00538, -2.363249]], [[55.00538, -2.363249], [55.005382, -2.363421]], [[55.005382, -2.363421], [55.005383, -2.363579]], [[55.005383, -2.363579], [55.005377, -2.363738]], [[55.005301, -2.364544], [55.005313, -2.364707]], [[55.005197, -2.365794], [55.005192, -2.365956]], [[55.005192, -2.365956], [55.005197, -2.366125]], [[55.005197, -2.366125], [55.005176, -2.366291]], [[55.005171, -2.366448], [55.005176, -2.36661]], [[55.005176, -2.36661], [55.005153, -2.366762]], [[55.005149, -2.366924], [55.00513, -2.367096]], [[55.00513, -2.367096], [55.005116, -2.367264]], [[55.005116, -2.367264], [55.005112, -2.367421]], [[55.005112, -2.367421], [55.005111, -2.367584]], [[55.005084, -2.367912], [55.005065, -2.368066]], [[55.005065, -2.368066], [55.005041, -2.368232]], [[55.005041, -2.368232], [55.005025, -2.368389]], [[55.005025, -2.368389], [55.005004, -2.368553]], [[55.005004, -2.368553], [55.004974, -2.368713]], [[55.004974, -2.368713], [55.004954, -2.368874]], [[55.004906, -2.369361], [55.004885, -2.369531]], [[55.004885, -2.369531], [55.004867, -2.369696]], [[55.004867, -2.369696], [55.00485, -2.369856]], [[55.00485, -2.369856], [55.00483, -2.370011]], [[55.00483, -2.370011], [55.004806, -2.370182]], [[55.004806, -2.370182], [55.004777, -2.370343]], [[55.004777, -2.370343], [55.004765, -2.370502]], [[55.004648, -2.370979], [55.004624, -2.371135]], [[55.004624, -2.371135], [55.004582, -2.371279]], [[55.004582, -2.371279], [55.00454, -2.371421]], [[55.00454, -2.371421], [55.004489, -2.371571]], [[55.004489, -2.371571], [55.004453, -2.371718]], [[55.004453, -2.371718], [55.00441, -2.37188]], [[55.00441, -2.37188], [55.00436, -2.372017]], [[55.00436, -2.372017], [55.004304, -2.372165]], [[55.004218, -2.372459], [55.00418, -2.37261]], [[55.00418, -2.37261], [55.004131, -2.372759]], [[55.003919, -2.373525], [55.003863, -2.37365]], [[55.003863, -2.37365], [55.003772, -2.373732]], [[55.003772, -2.373732], [55.003681, -2.373777]], [[55.003572, -2.374637], [55.003622, -2.374774]], [[55.003622, -2.374774], [55.003686, -2.37489]], [[55.003686, -2.37489], [55.00371, -2.375053]], [[55.00371, -2.375053], [55.003742, -2.375211]], [[55.003621, -2.375556], [55.003546, -2.375656]], [[55.003546, -2.375656], [55.003527, -2.37581]], [[55.003593, -2.376721], [55.003596, -2.376882]], [[55.003508, -2.378231], [55.003438, -2.378351]], [[55.003438, -2.378351], [55.003403, -2.378501]], [[55.003402, -2.378661], [55.003367, -2.378827]], [[55.003044, -2.379501], [55.003026, -2.379668]], [[55.003026, -2.379668], [55.003, -2.379827]], [[55.002948, -2.380161], [55.002925, -2.380328]], [[55.002925, -2.380328], [55.002892, -2.380479]], [[55.002762, -2.381263], [55.002734, -2.381426]], [[55.002734, -2.381426], [55.002717, -2.381581]], [[55.002717, -2.381581], [55.002725, -2.381757]], [[55.002725, -2.381757], [55.002718, -2.381918]], [[55.002718, -2.381918], [55.002709, -2.382084]], [[55.002709, -2.382084], [55.002698, -2.382253]], [[55.002698, -2.382253], [55.002685, -2.382417]], [[55.002685, -2.382417], [55.002673, -2.382581]], [[55.002557, -2.383225], [55.002502, -2.383365]], [[55.002502, -2.383365], [55.002495, -2.383534]], [[55.002495, -2.383534], [55.002464, -2.38369]], [[55.002433, -2.383838], [55.002405, -2.383994]], [[55.002405, -2.383994], [55.002374, -2.384149]], [[55.002374, -2.384149], [55.00235, -2.384312]], [[55.002324, -2.384482], [55.002293, -2.384647]], [[55.002293, -2.384647], [55.002281, -2.384808]], [[55.002253, -2.385138], [55.002249, -2.385295]], [[55.002249, -2.385295], [55.002245, -2.385463]], [[55.002245, -2.385463], [55.002216, -2.385616]], [[55.002216, -2.385616], [55.00219, -2.385781]], [[55.00219, -2.385781], [55.002158, -2.385926]], [[55.002158, -2.385926], [55.002112, -2.38608]], [[55.002112, -2.38608], [55.002031, -2.386172]], [[55.002031, -2.386172], [55.001945, -2.38623]], [[55.001945, -2.38623], [55.001857, -2.386192]], [[55.002318, -2.389187], [55.002346, -2.389019]], [[55.002346, -2.389019], [55.002363, -2.388859]], [[55.002363, -2.388859], [55.002347, -2.388694]], [[55.002416, -2.389123], [55.002428, -2.389283]], [[55.002428, -2.389283], [55.002428, -2.389442]], [[55.002428, -2.389442], [55.002404, -2.389601]], [[55.002404, -2.389601], [55.002373, -2.389766]], [[55.002373, -2.389766], [55.002345, -2.38992]], [[55.002341, -2.390079], [55.002321, -2.390233]], [[55.002294, -2.390647], [55.002293, -2.39081]], [[55.002293, -2.39081], [55.002279, -2.390977]], [[55.002279, -2.390977], [55.002274, -2.391141]], [[55.002274, -2.391141], [55.002278, -2.391303]], [[55.002362, -2.391424], [55.002462, -2.391407]], [[55.002462, -2.391407], [55.002552, -2.391417]], [[55.002552, -2.391417], [55.002647, -2.391423]], [[55.002738, -2.391442], [55.002827, -2.391418]], [[55.00274, -2.391454], [55.00265, -2.391449]], [[55.00265, -2.391449], [55.002552, -2.391435]], [[55.002552, -2.391435], [55.002451, -2.391408]], [[55.002215, -2.391643], [55.002221, -2.391807]], [[55.002221, -2.391807], [55.002231, -2.391977]], [[55.002231, -2.391977], [55.002233, -2.392144]], [[55.002233, -2.392144], [55.002224, -2.392312]], [[55.002224, -2.392312], [55.002219, -2.392476]], [[55.002219, -2.392476], [55.002214, -2.392646]], [[55.002214, -2.392646], [55.002221, -2.392815]], [[55.002221, -2.392815], [55.002207, -2.392988]], [[55.002199, -2.393157], [55.002183, -2.393325]], [[55.002183, -2.393325], [55.002183, -2.393492]], [[55.002189, -2.393815], [55.002196, -2.393993]], [[55.002196, -2.393993], [55.002196, -2.394163]], [[55.002189, -2.394336], [55.002187, -2.394502]], [[55.002187, -2.394502], [55.002187, -2.394668]], [[55.002187, -2.394668], [55.002187, -2.394843]], [[55.002187, -2.394843], [55.002186, -2.395009]], [[55.002186, -2.395009], [55.002187, -2.395184]], [[55.002187, -2.395184], [55.002197, -2.395354]], [[55.002197, -2.395354], [55.00221, -2.395511]], [[55.002219, -2.395673], [55.002218, -2.395837]], [[55.002218, -2.395837], [55.002204, -2.396003]], [[55.002204, -2.396003], [55.002197, -2.396168]], [[55.002188, -2.39634], [55.002179, -2.396504]], [[55.002179, -2.396504], [55.00218, -2.396671]], [[55.00218, -2.396671], [55.002184, -2.396846]], [[55.002184, -2.396846], [55.002187, -2.397012]], [[55.002187, -2.397012], [55.00218, -2.397179]], [[55.00218, -2.397179], [55.002177, -2.397341]], [[55.002177, -2.397341], [55.002169, -2.39751]], [[55.002169, -2.39751], [55.002148, -2.39767]], [[55.002148, -2.39767], [55.002154, -2.397837]], [[55.00224, -2.399417], [55.002251, -2.399581]], [[55.002251, -2.399581], [55.002276, -2.399746]], [[55.002276, -2.399746], [55.002276, -2.399912]], [[55.002276, -2.399912], [55.002278, -2.400072]], [[55.002278, -2.400072], [55.00229, -2.400244]], [[55.00229, -2.400244], [55.002294, -2.400411]], [[55.002294, -2.400411], [55.002287, -2.400583]], [[55.002287, -2.400583], [55.002272, -2.400753]], [[55.002238, -2.401264], [55.002216, -2.401425]], [[55.002216, -2.401425], [55.002197, -2.401596]], [[55.002197, -2.401596], [55.002179, -2.401751]], [[55.00211, -2.402558], [55.002094, -2.402721]], [[55.002094, -2.402721], [55.002084, -2.402894]], [[55.002071, -2.403432], [55.00206, -2.40359]], [[55.00206, -2.40359], [55.002051, -2.403756]], [[55.002051, -2.403756], [55.002049, -2.403913]], [[55.002017, -2.404236], [55.002003, -2.404397]], [[55.001944, -2.405066], [55.001926, -2.40523]], [[55.001926, -2.40523], [55.001902, -2.405396]], [[55.001902, -2.405396], [55.001884, -2.405553]], [[55.001814, -2.406042], [55.0018, -2.4062]], [[55.0018, -2.4062], [55.001784, -2.406366]], [[55.001764, -2.40652], [55.00174, -2.406687]], [[55.00174, -2.406687], [55.001713, -2.40684]], [[55.001713, -2.40684], [55.001672, -2.407003]], [[55.001672, -2.407003], [55.001637, -2.407162]], [[55.00158, -2.40753], [55.001567, -2.407702]], [[55.001567, -2.407702], [55.001549, -2.407864]], [[55.001549, -2.407864], [55.001538, -2.408036]], [[55.001538, -2.408036], [55.001518, -2.408189]], [[55.001518, -2.408189], [55.001487, -2.408342]], [[55.001424, -2.408742], [55.001402, -2.408905]], [[55.001086, -2.410062], [55.00102, -2.410187]], [[55.00102, -2.410187], [55.000948, -2.410316]], [[55.000948, -2.410316], [55.000864, -2.410417]], [[55.000389, -2.411008], [55.000338, -2.41115]], [[55.000338, -2.41115], [55.000283, -2.411273]], [[55.000141, -2.411459], [55.000047, -2.411483]], [[55.000047, -2.411483], [55.000005, -2.411629]], [[55.000005, -2.411629], [54.999941, -2.411761]], [[54.999749, -2.412099], [54.999676, -2.412219]], [[54.999676, -2.412219], [54.999612, -2.412333]], [[54.999612, -2.412333], [54.999544, -2.412441]], [[54.999234, -2.413069], [54.999219, -2.413241]], [[54.999219, -2.413241], [54.999198, -2.413407]], [[54.999198, -2.413407], [54.999184, -2.413577]], [[54.999184, -2.413577], [54.999167, -2.413741]], [[54.999167, -2.413741], [54.999153, -2.413915]], [[54.999153, -2.413915], [54.999129, -2.414081]], [[54.999083, -2.414416], [54.99907, -2.414578]], [[54.99907, -2.414578], [54.999052, -2.414744]], [[54.999052, -2.414744], [54.999038, -2.414915]], [[54.999038, -2.414915], [54.999039, -2.415093]], [[54.999039, -2.415093], [54.999019, -2.415259]], [[54.999019, -2.415259], [54.999006, -2.415432]], [[54.999016, -2.415601], [54.999004, -2.415767]], [[54.999004, -2.415767], [54.998985, -2.415925]], [[54.998985, -2.415925], [54.998974, -2.416096]], [[54.998974, -2.416096], [54.99897, -2.416261]], [[54.998948, -2.416599], [54.998932, -2.416759]], [[54.998932, -2.416759], [54.998914, -2.416928]], [[54.998914, -2.416928], [54.998884, -2.417086]], [[54.998884, -2.417086], [54.998862, -2.417251]], [[54.998862, -2.417251], [54.998833, -2.417409]], [[54.998794, -2.417576], [54.998764, -2.417739]], [[54.998764, -2.417739], [54.998721, -2.417888]], [[54.998631, -2.418343], [54.998617, -2.418512]], [[54.998617, -2.418512], [54.998584, -2.41866]], [[54.998584, -2.41866], [54.998555, -2.418826]], [[54.99841, -2.41945], [54.99837, -2.419598]], [[54.99837, -2.419598], [54.998343, -2.419749]], [[54.998343, -2.419749], [54.99828, -2.419877]], [[54.99828, -2.419877], [54.998257, -2.420038]], [[54.998139, -2.420471], [54.998095, -2.420623]], [[54.998095, -2.420623], [54.998066, -2.42078]], [[54.998025, -2.420931], [54.997977, -2.421078]], [[54.997977, -2.421078], [54.997958, -2.421243]], [[54.997854, -2.421574], [54.997815, -2.421715]], [[54.997815, -2.421715], [54.997781, -2.421866]], [[54.997662, -2.422337], [54.997616, -2.422493]], [[54.997616, -2.422493], [54.997583, -2.422659]], [[54.997583, -2.422659], [54.997528, -2.422796]], [[54.997528, -2.422796], [54.997495, -2.422953]], [[54.997466, -2.423103], [54.997423, -2.423247]], [[54.997339, -2.423535], [54.997302, -2.423683]], [[54.997235, -2.423999], [54.997176, -2.424134]], [[54.997137, -2.424292], [54.997105, -2.424455]], [[54.997105, -2.424455], [54.997063, -2.424602]], [[54.99679, -2.425196], [54.996711, -2.425288]], [[54.996711, -2.425288], [54.996652, -2.425409]], [[54.996366, -2.426281], [54.99633, -2.426445]], [[54.99633, -2.426445], [54.99629, -2.42659]], [[54.99629, -2.42659], [54.996249, -2.426749]], [[54.996093, -2.427378], [54.996015, -2.427474]], [[54.996015, -2.427474], [54.995935, -2.427565]], [[54.995727, -2.428455], [54.99574, -2.428612]], [[54.99574, -2.428612], [54.995742, -2.428779]], [[54.995707, -2.429096], [54.995715, -2.429263]], [[54.995715, -2.429263], [54.995719, -2.42943]], [[54.995719, -2.42943], [54.995721, -2.429607]], [[54.995721, -2.429607], [54.995739, -2.429778]], [[54.995739, -2.429778], [54.995753, -2.429935]], [[54.995753, -2.429935], [54.995778, -2.430103]], [[54.995778, -2.430103], [54.995788, -2.430267]], [[54.995853, -2.430884], [54.995853, -2.431057]], [[54.995853, -2.431057], [54.99589, -2.431223]], [[54.995918, -2.431378], [54.995914, -2.43155]], [[54.995914, -2.43155], [54.995915, -2.431709]], [[54.995915, -2.431709], [54.995938, -2.431863]], [[54.996025, -2.432491], [54.996039, -2.432666]], [[54.996039, -2.432666], [54.99601, -2.432822]], [[54.99601, -2.432822], [54.995992, -2.432989]], [[54.995992, -2.432989], [54.995983, -2.433153]], [[54.995946, -2.433639], [54.995923, -2.433814]], [[54.995923, -2.433814], [54.995895, -2.433991]], [[54.995822, -2.434656], [54.995807, -2.434818]], [[54.995795, -2.434976], [54.995768, -2.435133]], [[54.995768, -2.435133], [54.99576, -2.435298]], [[54.995724, -2.435442], [54.995664, -2.43557]], [[54.995664, -2.43557], [54.995622, -2.435723]], [[54.995622, -2.435723], [54.995579, -2.435875]], [[54.995579, -2.435875], [54.995505, -2.435995]], [[54.995505, -2.435995], [54.995424, -2.436081]], [[54.995424, -2.436081], [54.995357, -2.436188]], [[54.995317, -2.436881], [54.995338, -2.437046]], [[54.995338, -2.437046], [54.995352, -2.437209]], [[54.995352, -2.437209], [54.995359, -2.437375]], [[54.995359, -2.437375], [54.995362, -2.437532]], [[54.995362, -2.437532], [54.995366, -2.4377]], [[54.995366, -2.4377], [54.995368, -2.437859]], [[54.995368, -2.437859], [54.995358, -2.438025]], [[54.995358, -2.438025], [54.995327, -2.438177]], [[54.995144, -2.439647], [54.995122, -2.439799]], [[54.995122, -2.439799], [54.995107, -2.43997]], [[54.995107, -2.43997], [54.995077, -2.440119]], [[54.995031, -2.440952], [54.99502, -2.441128]], [[54.99502, -2.441128], [54.995007, -2.441286]], [[54.994928, -2.441775], [54.994916, -2.441933]], [[54.994916, -2.441933], [54.994891, -2.442092]], [[54.994779, -2.442878], [54.994767, -2.44304]], [[54.994767, -2.44304], [54.994749, -2.443211]], [[54.994727, -2.443365], [54.994689, -2.443517]], [[54.994689, -2.443517], [54.994653, -2.443675]], [[54.994552, -2.44395], [54.994556, -2.444124]], [[54.994556, -2.444124], [54.994514, -2.44428]], [[54.994514, -2.44428], [54.994461, -2.444418]], [[54.994461, -2.444418], [54.99441, -2.444576]], [[54.99441, -2.444576], [54.994372, -2.444721]], [[54.994372, -2.444721], [54.994328, -2.444871]], [[54.994328, -2.444871], [54.99428, -2.445024]], [[54.99428, -2.445024], [54.994241, -2.445177]], [[54.994241, -2.445177], [54.994201, -2.445331]], [[54.994201, -2.445331], [54.994167, -2.445486]], [[54.994167, -2.445486], [54.99412, -2.44564]], [[54.99398, -2.445733], [54.993896, -2.445793]], [[54.993828, -2.445948], [54.993761, -2.446084]], [[54.993773, -2.446669], [54.993816, -2.446811]], [[54.993789, -2.447222], [54.993779, -2.447391]], [[54.993737, -2.447898], [54.993726, -2.448065]], [[54.993726, -2.448065], [54.993724, -2.448221]], [[54.993569, -2.449027], [54.993516, -2.449179]], [[54.993516, -2.449179], [54.993469, -2.449317]], [[54.993273, -2.449701], [54.99321, -2.449823]], [[54.99321, -2.449823], [54.993146, -2.449936]], [[54.993146, -2.449936], [54.993083, -2.45006]], [[54.992935, -2.450304], [54.99287, -2.450412]], [[54.99287, -2.450412], [54.992824, -2.450559]], [[54.993152, -2.450792], [54.993151, -2.450953]], [[54.993052, -2.451402], [54.992995, -2.451542]], [[54.992986, -2.451829], [54.993077, -2.451894]], [[54.993124, -2.452218], [54.993172, -2.45235]], [[54.993172, -2.45235], [54.993229, -2.452494]], [[54.993229, -2.452494], [54.993287, -2.452629]], [[54.993287, -2.452629], [54.993327, -2.452789]], [[54.993327, -2.452789], [54.993355, -2.452949]], [[54.993449, -2.45325], [54.993521, -2.453357]], [[54.993521, -2.453357], [54.993597, -2.453454]], [[54.993597, -2.453454], [54.993662, -2.453582]], [[54.993662, -2.453582], [54.993715, -2.45371]], [[54.993715, -2.45371], [54.993776, -2.453826]], [[54.993829, -2.45397], [54.993889, -2.454094]], [[54.993889, -2.454094], [54.993941, -2.454235]], [[54.993941, -2.454235], [54.994002, -2.454372]], [[54.994002, -2.454372], [54.994063, -2.454496]], [[54.994063, -2.454496], [54.994112, -2.454649]], [[54.994209, -2.454935], [54.994271, -2.45507]], [[54.994271, -2.45507], [54.994316, -2.455212]], [[54.994316, -2.455212], [54.994369, -2.455349]], [[54.994369, -2.455349], [54.994414, -2.455504]], [[54.994414, -2.455504], [54.994446, -2.455662]], [[54.994446, -2.455662], [54.994498, -2.45581]], [[54.994498, -2.45581], [54.994559, -2.455937]], [[54.994655, -2.456255], [54.994712, -2.456391]], [[54.994712, -2.456391], [54.994748, -2.456534]], [[54.994795, -2.456679], [54.994848, -2.456836]], [[54.994848, -2.456836], [54.994894, -2.456995]], [[54.995054, -2.457583], [54.995104, -2.457735]], [[54.995172, -2.458043], [54.995202, -2.458215]], [[54.995202, -2.458215], [54.995224, -2.458385]], [[54.995224, -2.458385], [54.995244, -2.458559]], [[54.995287, -2.458878], [54.995311, -2.459029]], [[54.995311, -2.459029], [54.995335, -2.459186]], [[54.995335, -2.459186], [54.995364, -2.459349]], [[54.995383, -2.459514], [54.995417, -2.45966]], [[54.995424, -2.459835], [54.995422, -2.459992]], [[54.995412, -2.460318], [54.995402, -2.460485]], [[54.995402, -2.460485], [54.995376, -2.46064]], [[54.995376, -2.46064], [54.995351, -2.460815]], [[54.995169, -2.462446], [54.995134, -2.462604]], [[54.995069, -2.462924], [54.99503, -2.463081]], [[54.99503, -2.463081], [54.994995, -2.463227]], [[54.994995, -2.463227], [54.994975, -2.46338]], [[54.994987, -2.463712], [54.995016, -2.463884]], [[54.995016, -2.463884], [54.995039, -2.46404]], [[54.995039, -2.46404], [54.995058, -2.464212]], [[54.995058, -2.464212], [54.995079, -2.464372]], [[54.995079, -2.464372], [54.995088, -2.464544]], [[54.995118, -2.46471], [54.995143, -2.464883]], [[54.995143, -2.464883], [54.995168, -2.46505]], [[54.995168, -2.46505], [54.995194, -2.465206]], [[54.995194, -2.465206], [54.995221, -2.465366]], [[54.995221, -2.465366], [54.995235, -2.465528]], [[54.995242, -2.465697], [54.995227, -2.465864]], [[54.995227, -2.465864], [54.995197, -2.466025]], [[54.995197, -2.466025], [54.995174, -2.466189]], [[54.995158, -2.466847], [54.995163, -2.467005]], [[54.995213, -2.467854], [54.995229, -2.468035]], [[54.995229, -2.468035], [54.995245, -2.4682]], [[54.995208, -2.46836], [54.99517, -2.468518]], [[54.995186, -2.469523], [54.995195, -2.46969]], [[54.995195, -2.46969], [54.995186, -2.46987]], [[54.995178, -2.470044], [54.995182, -2.470204]], [[54.995182, -2.470204], [54.995196, -2.470379]], [[54.995197, -2.470718], [54.995192, -2.470879]], [[54.995192, -2.470879], [54.995178, -2.47105]], [[54.995178, -2.47105], [54.995185, -2.471212]], [[54.995185, -2.471212], [54.995187, -2.471387]], [[54.995187, -2.471387], [54.995199, -2.471563]], [[54.995199, -2.471563], [54.995216, -2.471724]], [[54.995216, -2.471724], [54.995216, -2.471885]], [[54.995216, -2.471885], [54.995221, -2.472044]], [[54.995221, -2.472044], [54.995224, -2.472208]], [[54.995224, -2.472534], [54.995221, -2.47271]], [[54.995221, -2.47271], [54.99521, -2.472878]], [[54.995198, -2.473384], [54.995221, -2.473547]], [[54.995221, -2.473547], [54.995263, -2.473701]], [[54.994979, -2.475297], [54.994961, -2.475455]], [[54.994961, -2.475455], [54.994924, -2.475615]], [[54.994924, -2.475615], [54.9949, -2.475773]], [[54.994977, -2.476159], [54.995056, -2.476251]], [[54.995056, -2.476251], [54.995121, -2.476367]], [[54.995121, -2.476367], [54.995189, -2.476503]], [[54.99527, -2.476808], [54.995284, -2.476974]], [[54.995284, -2.476974], [54.995292, -2.47713]], [[54.995292, -2.47713], [54.995358, -2.477261]], [[54.995358, -2.477261], [54.995363, -2.477427]], [[54.995334, -2.479038], [54.995347, -2.479196]], [[54.995338, -2.479364], [54.995314, -2.479541]], [[54.995261, -2.480184], [54.995255, -2.480362]], [[54.995255, -2.480362], [54.995227, -2.480519]], [[54.995233, -2.480683], [54.995214, -2.480844]], [[54.995214, -2.480844], [54.995197, -2.481019]], [[54.99517, -2.481344], [54.995154, -2.481518]], [[54.995154, -2.481518], [54.99513, -2.481681]], [[54.99513, -2.481681], [54.995131, -2.481854]], [[54.995131, -2.481854], [54.995139, -2.482022]], [[54.995139, -2.482022], [54.995169, -2.482187]], [[54.995169, -2.482187], [54.995203, -2.482341]], [[54.995374, -2.483238], [54.995418, -2.483401]], [[54.995418, -2.483401], [54.99543, -2.48357]], [[54.99543, -2.48357], [54.995444, -2.483729]], [[54.995514, -2.484209], [54.995521, -2.484373]], [[54.995521, -2.484373], [54.99556, -2.484515]], [[54.99556, -2.484515], [54.995605, -2.484673]], [[54.995605, -2.484673], [54.995645, -2.484831]], [[54.995645, -2.484831], [54.995695, -2.484967]], [[54.995695, -2.484967], [54.995753, -2.485101]], [[54.995753, -2.485101], [54.995808, -2.485239]], [[54.995808, -2.485239], [54.995848, -2.485394]], [[54.995889, -2.485536], [54.995906, -2.485701]], [[54.995906, -2.485701], [54.995954, -2.485835]], [[54.995954, -2.485835], [54.996008, -2.485976]], [[54.996008, -2.485976], [54.996037, -2.486134]], [[54.996037, -2.486134], [54.996067, -2.486297]], [[54.996177, -2.486588], [54.996212, -2.486751]], [[54.996212, -2.486751], [54.996222, -2.486931]], [[54.996196, -2.48726], [54.99619, -2.487423]], [[54.99619, -2.487423], [54.996206, -2.487588]], [[54.996206, -2.487588], [54.996224, -2.487749]], [[54.996224, -2.487749], [54.996197, -2.487915]], [[54.996197, -2.487915], [54.996178, -2.488073]], [[54.996178, -2.488073], [54.996147, -2.488229]], [[54.996147, -2.488229], [54.996127, -2.488403]], [[54.996127, -2.488403], [54.996115, -2.488559]], [[54.996115, -2.488559], [54.996107, -2.488717]], [[54.996107, -2.488717], [54.996084, -2.488879]], [[54.996084, -2.488879], [54.996054, -2.489044]], [[54.996042, -2.489215], [54.996031, -2.489377]], [[54.996031, -2.489377], [54.996004, -2.489546]], [[54.996004, -2.489546], [54.995983, -2.489717]], [[54.995969, -2.489886], [54.995964, -2.490043]], [[54.995964, -2.490043], [54.995982, -2.49021]], [[54.995982, -2.49021], [54.99599, -2.490383]], [[54.99599, -2.490383], [54.996004, -2.490547]], [[54.996004, -2.490547], [54.996009, -2.490724]], [[54.996009, -2.490724], [54.995989, -2.49088]], [[54.99598, -2.491161], [54.995963, -2.491325]], [[54.995963, -2.491325], [54.995987, -2.491488]], [[54.99594, -2.49199], [54.995921, -2.492153]], [[54.995921, -2.492153], [54.995905, -2.492314]], [[54.995885, -2.492478], [54.995865, -2.492644]], [[54.995865, -2.492644], [54.995844, -2.492798]], [[54.995844, -2.492798], [54.995814, -2.492956]], [[54.995772, -2.493297], [54.995725, -2.493439]], [[54.995581, -2.493643], [54.995486, -2.493692]], [[54.995486, -2.493692], [54.995396, -2.493705]], [[54.995133, -2.495385], [54.995132, -2.495553]], [[54.995132, -2.495553], [54.995122, -2.495727]], [[54.995122, -2.495727], [54.99509, -2.495889]], [[54.99509, -2.495889], [54.995081, -2.49605]], [[54.995081, -2.49605], [54.995014, -2.49617]], [[54.995014, -2.49617], [54.994967, -2.496307]], [[54.994967, -2.496307], [54.994905, -2.496445]], [[54.994874, -2.496603], [54.994858, -2.496757]], [[54.994768, -2.496711], [54.994667, -2.496695]], [[54.994667, -2.496695], [54.994568, -2.496714]], [[54.994431, -2.496952], [54.994352, -2.49705]], [[54.994189, -2.497839], [54.994192, -2.498008]], [[54.994187, -2.498181], [54.994168, -2.498346]], [[54.994168, -2.498346], [54.994137, -2.498503]], [[54.994137, -2.498503], [54.994117, -2.498658]], [[54.994117, -2.498658], [54.994098, -2.498829]], [[54.994066, -2.498998], [54.993994, -2.499091]], [[54.993307, -2.50055], [54.993281, -2.50072]], [[54.993281, -2.50072], [54.993258, -2.500879]], [[54.993167, -2.501142], [54.993087, -2.501214]], [[54.993087, -2.501214], [54.992994, -2.501256]], [[54.992994, -2.501256], [54.992898, -2.501259]], [[54.993093, -2.502072], [54.993134, -2.502218]], [[54.993134, -2.502218], [54.993156, -2.502383]], [[54.993174, -2.502556], [54.993187, -2.502712]], [[54.993187, -2.502712], [54.993192, -2.502885]], [[54.993192, -2.502885], [54.993195, -2.503044]], [[54.993195, -2.503044], [54.9932, -2.50321]], [[54.9932, -2.50321], [54.993202, -2.503372]], [[54.993202, -2.503372], [54.993195, -2.503528]], [[54.993195, -2.503528], [54.993171, -2.503682]], [[54.993171, -2.503682], [54.993162, -2.503856]], [[54.993162, -2.503856], [54.993149, -2.504029]], [[54.993149, -2.504029], [54.993133, -2.5042]], [[54.993133, -2.5042], [54.993122, -2.504356]], [[54.993122, -2.504356], [54.9931, -2.504516]], [[54.9931, -2.504516], [54.993063, -2.504678]], [[54.993063, -2.504678], [54.993022, -2.504832]], [[54.993022, -2.504832], [54.992974, -2.50499]], [[54.992974, -2.50499], [54.992939, -2.505153]], [[54.992939, -2.505153], [54.992904, -2.505318]], [[54.992904, -2.505318], [54.992872, -2.50547]], [[54.992872, -2.50547], [54.992843, -2.505638]], [[54.992843, -2.505638], [54.99283, -2.505806]], [[54.99283, -2.505806], [54.992815, -2.505961]], [[54.992815, -2.505961], [54.992774, -2.506107]], [[54.992774, -2.506107], [54.992735, -2.506263]], [[54.992735, -2.506263], [54.992661, -2.506388]], [[54.992661, -2.506388], [54.992598, -2.506517]], [[54.992598, -2.506517], [54.99254, -2.506636]], [[54.99254, -2.506636], [54.992477, -2.50677]], [[54.992411, -2.506878], [54.992352, -2.506996]], [[54.992352, -2.506996], [54.992275, -2.507083]], [[54.992275, -2.507083], [54.992207, -2.507202]], [[54.992207, -2.507202], [54.992131, -2.507295]], [[54.992131, -2.507295], [54.992049, -2.507393]], [[54.992049, -2.507393], [54.991964, -2.507466]], [[54.991964, -2.507466], [54.991875, -2.507505]], [[54.991875, -2.507505], [54.991787, -2.507587]], [[54.991787, -2.507587], [54.991716, -2.507691]], [[54.991716, -2.507691], [54.99165, -2.507821]], [[54.99165, -2.507821], [54.991586, -2.507954]], [[54.991586, -2.507954], [54.991523, -2.508078]], [[54.991303, -2.508387], [54.991252, -2.50853]], [[54.991252, -2.50853], [54.991178, -2.508636]], [[54.991101, -2.508716], [54.991028, -2.508825]], [[54.991028, -2.508825], [54.990963, -2.508944]], [[54.990814, -2.509151], [54.990756, -2.509287]], [[54.990691, -2.510227], [54.990712, -2.510382]], [[54.990712, -2.510382], [54.990698, -2.510542]], [[54.990698, -2.510542], [54.990674, -2.510694]], [[54.990674, -2.510694], [54.990653, -2.51085]], [[54.990532, -2.511308], [54.990548, -2.511474]], [[54.990548, -2.511474], [54.9905, -2.511618]], [[54.9905, -2.511618], [54.99044, -2.511747]], [[54.990399, -2.511888], [54.990326, -2.511992]], [[54.990253, -2.512107], [54.99018, -2.512201]], [[54.990063, -2.512992], [54.990031, -2.51314]], [[54.990031, -2.51314], [54.98998, -2.513268]], [[54.98998, -2.513268], [54.989932, -2.513417]], [[54.989932, -2.513417], [54.989887, -2.513568]], [[54.989887, -2.513568], [54.989828, -2.513699]], [[54.989828, -2.513699], [54.989827, -2.51386]], [[54.989827, -2.51386], [54.989792, -2.514014]], [[54.989792, -2.514014], [54.989706, -2.514082]], [[54.989706, -2.514082], [54.989645, -2.514223]], [[54.989642, -2.514392], [54.989624, -2.514555]], [[54.989624, -2.514555], [54.989592, -2.514703]], [[54.989592, -2.514703], [54.989562, -2.514854]], [[54.989237, -2.514853], [54.989207, -2.51468]], [[54.989047, -2.514287], [54.989007, -2.514141]], [[54.989007, -2.514141], [54.988937, -2.51402]], [[54.988937, -2.51402], [54.988887, -2.51388]], [[54.988887, -2.51388], [54.988817, -2.513779]], [[54.988817, -2.513779], [54.988739, -2.513687]], [[54.988739, -2.513687], [54.98866, -2.513599]], [[54.98866, -2.513599], [54.988589, -2.513489]], [[54.988589, -2.513489], [54.988522, -2.513375]], [[54.988522, -2.513375], [54.98845, -2.513265]], [[54.98845, -2.513265], [54.988368, -2.513165]], [[54.988346, -2.513567], [54.988377, -2.513732]], [[54.988377, -2.513732], [54.988426, -2.513867]], [[54.988426, -2.513867], [54.98847, -2.514006]], [[54.98847, -2.514006], [54.988511, -2.514151]], [[54.988474, -2.515084], [54.988416, -2.51524]], [[54.988308, -2.515515], [54.988246, -2.515636]], [[54.988246, -2.515636], [54.988202, -2.515774]], [[54.988028, -2.516377], [54.988033, -2.516533]], [[54.988033, -2.516533], [54.988053, -2.516709]], [[54.98804, -2.517049], [54.988032, -2.517205]], [[54.988026, -2.517365], [54.988011, -2.517521]], [[54.987978, -2.51767], [54.987936, -2.517814]], [[54.987857, -2.518109], [54.987783, -2.518215]], [[54.987499, -2.518285], [54.987399, -2.518307]], [[54.987399, -2.518307], [54.987303, -2.51832]], [[54.987303, -2.51832], [54.987203, -2.518329]], [[54.987203, -2.518329], [54.987103, -2.518353]], [[54.986913, -2.518375], [54.98683, -2.518468]], [[54.98683, -2.518468], [54.986761, -2.518594]], [[54.986761, -2.518594], [54.986703, -2.518735]], [[54.986703, -2.518735], [54.986652, -2.51887]], [[54.986652, -2.51887], [54.986619, -2.519017]], [[54.986619, -2.519017], [54.986653, -2.519185]], [[54.986653, -2.519185], [54.986688, -2.519344]], [[54.986724, -2.519843], [54.986734, -2.520017]], [[54.986734, -2.520017], [54.986749, -2.520178]], [[54.986749, -2.520178], [54.986779, -2.520342]], [[54.986779, -2.520342], [54.986831, -2.520482]], [[54.986831, -2.520482], [54.986924, -2.520539]], [[54.986924, -2.520539], [54.987017, -2.520511]], [[54.987017, -2.520511], [54.98711, -2.52048]], [[54.98711, -2.52048], [54.9872, -2.52044]], [[54.9872, -2.52044], [54.987297, -2.520422]], [[54.987297, -2.520422], [54.987388, -2.520408]], [[54.987388, -2.520408], [54.987479, -2.520379]], [[54.987479, -2.520379], [54.987576, -2.520357]], [[54.987815, -2.520553], [54.987819, -2.520727]], [[54.987819, -2.520727], [54.987786, -2.520874]], [[54.987786, -2.520874], [54.98779, -2.521049]], [[54.98779, -2.521049], [54.987785, -2.521211]], [[54.987785, -2.521211], [54.987771, -2.52138]], [[54.987771, -2.52138], [54.987763, -2.521553]], [[54.987769, -2.52172], [54.987773, -2.521888]], [[54.987773, -2.521888], [54.987784, -2.522057]], [[54.987784, -2.522057], [54.987789, -2.522228]], [[54.987789, -2.522228], [54.987795, -2.522385]], [[54.987795, -2.522385], [54.987805, -2.522541]], [[54.987832, -2.522882], [54.987834, -2.523052]], [[54.987834, -2.523052], [54.987849, -2.52322]], [[54.987849, -2.52322], [54.987852, -2.523384]], [[54.987852, -2.523384], [54.98785, -2.523551]], [[54.98785, -2.523551], [54.98786, -2.523711]], [[54.98786, -2.523711], [54.987855, -2.523889]], [[54.987855, -2.523889], [54.987864, -2.524049]], [[54.987869, -2.52421], [54.987881, -2.524372]], [[54.987881, -2.524372], [54.987881, -2.524529]], [[54.987881, -2.524529], [54.987881, -2.524686]], [[54.987902, -2.52541], [54.987894, -2.525581]], [[54.987911, -2.526073], [54.987868, -2.526219]], [[54.987868, -2.526219], [54.987911, -2.526374]], [[54.987915, -2.527025], [54.987915, -2.527193]], [[54.987915, -2.527193], [54.987912, -2.527349]], [[54.987912, -2.527349], [54.987931, -2.527519]], [[54.987931, -2.527519], [54.987934, -2.527687]], [[54.987956, -2.527845], [54.987975, -2.528018]], [[54.987975, -2.528018], [54.987984, -2.528197]], [[54.987983, -2.528532], [54.987988, -2.528691]], [[54.987988, -2.528691], [54.988001, -2.528866]], [[54.988009, -2.529352], [54.98801, -2.529519]], [[54.98801, -2.529519], [54.988019, -2.529674]], [[54.988019, -2.529674], [54.988027, -2.52985]], [[54.988035, -2.53053], [54.988046, -2.5307]], [[54.988041, -2.531202], [54.988046, -2.531367]], [[54.988046, -2.531367], [54.988043, -2.531539]], [[54.988043, -2.531539], [54.988032, -2.531706]], [[54.988032, -2.531706], [54.988018, -2.531865]], [[54.988018, -2.531865], [54.987971, -2.531999]], [[54.98791, -2.532199], [54.987858, -2.532337]], [[54.987608, -2.532518], [54.987703, -2.532565]], [[54.987902, -2.532634], [54.987985, -2.532731]], [[54.987985, -2.532731], [54.988052, -2.53285]], [[54.988132, -2.533401], [54.988111, -2.533556]], [[54.988111, -2.533556], [54.988136, -2.533713]], [[54.988187, -2.533847], [54.988254, -2.533963]], [[54.988254, -2.533963], [54.988343, -2.534]], [[54.988068, -2.534108], [54.987977, -2.534139]], [[54.987977, -2.534139], [54.987886, -2.534171]], [[54.987706, -2.534259], [54.987607, -2.534285]], [[54.987309, -2.534343], [54.987214, -2.534393]], [[54.987214, -2.534393], [54.987118, -2.534434]], [[54.986795, -2.534771], [54.986734, -2.534902]], [[54.986734, -2.534902], [54.986681, -2.535045]], [[54.986681, -2.535045], [54.986644, -2.535205]], [[54.986697, -2.535467], [54.986704, -2.535632]], [[54.986704, -2.535632], [54.986735, -2.535801]], [[54.986787, -2.536513], [54.986773, -2.536677]], [[54.986773, -2.536677], [54.986747, -2.536839]], [[54.986106, -2.538505], [54.986088, -2.538666]], [[54.986088, -2.538666], [54.986078, -2.538826]], [[54.986038, -2.538977], [54.986055, -2.539139]], [[54.986055, -2.539139], [54.986042, -2.539308]], [[54.986042, -2.539308], [54.986033, -2.539479]], [[54.986033, -2.539479], [54.986024, -2.539657]], [[54.986024, -2.539657], [54.986006, -2.539819]], [[54.986006, -2.539819], [54.985985, -2.539987]], [[54.985985, -2.539987], [54.986034, -2.540121]], [[54.986034, -2.540121], [54.985987, -2.540265]], [[54.985987, -2.540265], [54.985923, -2.54038]], [[54.985923, -2.54038], [54.985908, -2.540547]], [[54.985908, -2.540547], [54.985923, -2.540703]], [[54.985923, -2.540703], [54.985915, -2.540883]], [[54.985915, -2.540883], [54.985903, -2.541041]], [[54.985903, -2.541041], [54.985929, -2.541199]], [[54.985951, -2.541359], [54.985997, -2.541511]], [[54.985997, -2.541511], [54.98604, -2.541668]], [[54.98604, -2.541668], [54.986084, -2.541806]], [[54.986084, -2.541806], [54.986138, -2.541935]], [[54.986138, -2.541935], [54.986131, -2.542109]], [[54.986131, -2.542109], [54.986111, -2.54227]], [[54.986111, -2.54227], [54.986071, -2.542431]], [[54.986071, -2.542431], [54.985991, -2.542516]], [[54.985991, -2.542516], [54.985923, -2.542625]], [[54.985923, -2.542625], [54.98594, -2.542796]], [[54.98594, -2.542796], [54.985957, -2.542962]], [[54.985957, -2.542962], [54.985952, -2.54313]], [[54.98586, -2.543326], [54.985777, -2.543392]], [[54.985434, -2.543661], [54.985347, -2.543737]], [[54.984911, -2.544089], [54.984828, -2.544163]], [[54.984828, -2.544163], [54.984738, -2.5442]], [[54.984738, -2.5442], [54.984644, -2.544266]], [[54.984644, -2.544266], [54.984562, -2.544332]], [[54.983628, -2.545072], [54.983544, -2.545151]], [[54.982697, -2.545735], [54.982609, -2.545807]], [[54.982609, -2.545807], [54.982517, -2.545842]], [[54.982367, -2.545938], [54.982271, -2.545967]], [[54.982271, -2.545967], [54.982178, -2.546023]], [[54.982178, -2.546023], [54.982087, -2.546062]], [[54.982087, -2.546062], [54.981996, -2.546108]], [[54.981996, -2.546108], [54.981911, -2.546161]], [[54.981911, -2.546161], [54.981822, -2.546216]], [[54.981822, -2.546216], [54.981734, -2.546304]], [[54.981734, -2.546304], [54.981651, -2.546365]], [[54.981651, -2.546365], [54.98156, -2.546416]], [[54.98156, -2.546416], [54.981468, -2.546472]], [[54.981468, -2.546472], [54.981379, -2.546522]], [[54.981379, -2.546522], [54.981286, -2.546577]], [[54.981286, -2.546577], [54.981199, -2.546659]], [[54.981199, -2.546659], [54.981112, -2.546729]], [[54.980939, -2.546849], [54.980848, -2.546912]], [[54.980848, -2.546912], [54.980758, -2.546974]], [[54.980758, -2.546974], [54.980664, -2.547007]], [[54.980664, -2.547007], [54.980571, -2.547027]], [[54.980571, -2.547027], [54.980487, -2.547093]], [[54.980487, -2.547093], [54.980394, -2.547135]], [[54.980394, -2.547135], [54.980309, -2.547199]], [[54.980309, -2.547199], [54.980224, -2.547255]], [[54.980224, -2.547255], [54.980137, -2.547336]], [[54.979734, -2.547641], [54.979706, -2.547796]], [[54.979706, -2.547796], [54.97968, -2.547949]], [[54.979141, -2.547976], [54.979044, -2.547989]], [[54.979044, -2.547989], [54.978948, -2.548044]], [[54.978948, -2.548044], [54.978851, -2.548087]], [[54.978851, -2.548087], [54.978753, -2.54811]], [[54.978753, -2.54811], [54.978657, -2.548121]], [[54.978657, -2.548121], [54.978556, -2.548154]], [[54.978556, -2.548154], [54.978467, -2.548173]], [[54.978467, -2.548173], [54.978371, -2.548198]], [[54.978176, -2.548248], [54.978081, -2.548279]], [[54.978081, -2.548279], [54.977986, -2.548304]], [[54.977986, -2.548304], [54.977891, -2.54835]], [[54.977702, -2.548381], [54.977604, -2.548413]], [[54.977604, -2.548413], [54.977513, -2.548439]], [[54.977319, -2.548462], [54.977222, -2.548459]], [[54.977222, -2.548459], [54.977132, -2.548431]], [[54.977002, -2.548389], [54.976908, -2.548376]], [[54.976908, -2.548376], [54.976813, -2.548372]], [[54.976813, -2.548372], [54.976717, -2.548354]], [[54.976717, -2.548354], [54.976626, -2.548335]], [[54.976327, -2.548505], [54.976255, -2.548603]], [[54.976255, -2.548603], [54.976172, -2.548681]], [[54.976172, -2.548681], [54.976083, -2.548747]], [[54.976083, -2.548747], [54.975989, -2.548793]], [[54.975989, -2.548793], [54.975894, -2.54882]], [[54.975894, -2.54882], [54.975804, -2.548845]], [[54.975804, -2.548845], [54.975714, -2.548877]], [[54.975531, -2.548907], [54.975437, -2.548933]], [[54.975437, -2.548933], [54.975338, -2.548939]], [[54.975338, -2.548939], [54.975242, -2.548904]], [[54.974825, -2.54836], [54.974757, -2.548235]], [[54.974757, -2.548235], [54.974688, -2.548117]], [[54.974569, -2.547819], [54.974518, -2.547676]], [[54.974518, -2.547676], [54.974473, -2.547532]], [[54.974473, -2.547532], [54.97444, -2.547385]], [[54.97444, -2.547385], [54.974392, -2.54723]], [[54.974392, -2.54723], [54.974341, -2.547091]], [[54.974341, -2.547091], [54.974311, -2.54694]], [[54.974311, -2.54694], [54.97429, -2.546781]], [[54.97429, -2.546781], [54.974258, -2.546616]], [[54.974258, -2.546616], [54.974228, -2.546453]], [[54.974228, -2.546453], [54.974205, -2.546293]], [[54.974205, -2.546293], [54.974173, -2.546129]], [[54.974173, -2.546129], [54.974133, -2.545981]], [[54.974133, -2.545981], [54.974075, -2.545842]], [[54.974075, -2.545842], [54.974008, -2.545707]], [[54.974008, -2.545707], [54.973937, -2.5456]], [[54.973937, -2.5456], [54.973858, -2.5455]], [[54.973858, -2.5455], [54.973776, -2.545415]], [[54.97369, -2.545358], [54.973603, -2.545279]], [[54.973603, -2.545279], [54.973511, -2.545208]], [[54.973511, -2.545208], [54.973425, -2.54516]], [[54.973425, -2.54516], [54.973332, -2.545108]], [[54.973332, -2.545108], [54.973248, -2.54504]], [[54.973047, -2.545286], [54.973019, -2.545444]], [[54.973019, -2.545444], [54.972998, -2.545604]], [[54.972992, -2.54576], [54.972984, -2.545932]], [[54.972984, -2.545932], [54.97298, -2.546097]], [[54.97298, -2.546097], [54.972968, -2.546264]], [[54.972968, -2.546264], [54.972957, -2.546424]], [[54.972957, -2.546424], [54.972939, -2.546579]], [[54.972905, -2.546734], [54.972857, -2.54688]], [[54.972857, -2.54688], [54.972836, -2.547033]], [[54.972836, -2.547033], [54.972809, -2.547187]], [[54.972809, -2.547187], [54.972778, -2.547343]], [[54.972778, -2.547343], [54.972732, -2.5475]], [[54.972732, -2.5475], [54.97266, -2.547595]], [[54.972478, -2.5476], [54.972418, -2.547726]], [[54.972418, -2.547726], [54.972389, -2.547877]], [[54.972389, -2.547877], [54.972358, -2.548044]], [[54.972358, -2.548044], [54.972325, -2.548201]], [[54.972325, -2.548201], [54.972288, -2.54836]], [[54.972288, -2.54836], [54.972257, -2.548526]], [[54.972257, -2.548526], [54.972227, -2.548682]], [[54.972166, -2.548992], [54.972142, -2.549162]], [[54.972142, -2.549162], [54.972118, -2.549315]], [[54.972118, -2.549315], [54.972088, -2.549472]], [[54.972088, -2.549472], [54.972059, -2.549631]], [[54.972059, -2.549631], [54.972035, -2.549783]], [[54.971989, -2.550096], [54.971967, -2.550266]], [[54.971967, -2.550266], [54.971943, -2.550439]], [[54.971943, -2.550439], [54.97194, -2.550618]], [[54.97194, -2.550618], [54.971944, -2.550774]], [[54.971944, -2.550774], [54.971955, -2.550931]], [[54.971955, -2.550931], [54.97197, -2.551101]], [[54.97197, -2.551101], [54.971986, -2.551274]], [[54.971986, -2.551274], [54.971997, -2.551445]], [[54.971997, -2.551445], [54.972006, -2.55161]], [[54.972024, -2.551932], [54.972031, -2.552092]], [[54.972031, -2.552092], [54.972058, -2.552253]], [[54.972058, -2.552253], [54.972068, -2.552429]], [[54.972068, -2.552429], [54.972094, -2.552588]], [[54.972094, -2.552588], [54.972098, -2.552756]], [[54.972141, -2.553024], [54.972178, -2.553181]], [[54.972178, -2.553181], [54.972192, -2.553351]], [[54.972192, -2.553351], [54.972196, -2.553513]], [[54.972196, -2.553513], [54.972197, -2.553672]], [[54.972197, -2.553672], [54.972213, -2.55383]], [[54.972213, -2.55383], [54.972236, -2.553993]], [[54.972236, -2.553993], [54.972242, -2.554153]], [[54.972242, -2.554153], [54.972262, -2.554307]], [[54.972262, -2.554307], [54.972285, -2.554465]], [[54.972301, -2.554623], [54.972319, -2.55479]], [[54.972319, -2.55479], [54.972334, -2.554954]], [[54.972334, -2.554954], [54.97235, -2.55512]], [[54.97235, -2.55512], [54.972367, -2.555292]], [[54.972367, -2.555292], [54.972384, -2.555451]], [[54.972384, -2.555451], [54.972406, -2.555621]], [[54.972406, -2.555621], [54.972428, -2.555782]], [[54.972428, -2.555782], [54.97245, -2.555943]], [[54.97245, -2.555943], [54.972469, -2.556112]], [[54.972469, -2.556112], [54.972488, -2.556283]], [[54.972488, -2.556283], [54.972507, -2.556446]], [[54.972507, -2.556446], [54.972527, -2.556602]], [[54.972558, -2.556931], [54.972573, -2.557099]], [[54.972573, -2.557099], [54.972597, -2.557266]], [[54.972597, -2.557266], [54.972619, -2.557442]], [[54.972652, -2.557772], [54.972675, -2.557939]], [[54.972675, -2.557939], [54.972701, -2.558091]], [[54.972701, -2.558091], [54.97272, -2.558259]], [[54.97272, -2.558259], [54.972733, -2.558425]], [[54.972759, -2.558748], [54.972798, -2.558899]], [[54.972798, -2.558899], [54.972817, -2.559072]], [[54.972851, -2.559397], [54.972867, -2.559568]], [[54.972867, -2.559568], [54.97289, -2.559741]], [[54.97289, -2.559741], [54.972916, -2.559898]], [[54.972943, -2.560058], [54.972958, -2.56023]], [[54.972958, -2.56023], [54.97298, -2.560399]], [[54.97298, -2.560399], [54.973004, -2.560567]], [[54.973004, -2.560567], [54.973027, -2.56074]], [[54.973027, -2.56074], [54.973059, -2.560906]], [[54.973059, -2.560906], [54.97307, -2.56107]], [[54.973088, -2.561229], [54.973111, -2.561396]], [[54.973111, -2.561396], [54.97313, -2.56156]], [[54.973038, -2.561748], [54.972949, -2.561696]], [[54.972949, -2.561696], [54.972852, -2.561687]], [[54.972852, -2.561687], [54.972758, -2.561742]], [[54.972758, -2.561742], [54.972662, -2.561788]], [[54.972662, -2.561788], [54.972566, -2.561835]], [[54.972566, -2.561835], [54.972479, -2.561884]], [[54.972479, -2.561884], [54.972388, -2.561917]], [[54.972388, -2.561917], [54.972299, -2.561966]], [[54.972299, -2.561966], [54.972207, -2.562019]], [[54.972116, -2.562042], [54.972025, -2.562084]], [[54.972025, -2.562084], [54.971931, -2.562099]], [[54.971164, -2.561969], [54.971092, -2.562078]], [[54.969606, -2.562256], [54.969529, -2.562143]], [[54.968781, -2.561382], [54.96869, -2.561403]], [[54.96869, -2.561403], [54.968598, -2.561374]], [[54.968598, -2.561374], [54.968509, -2.561348]], [[54.968509, -2.561348], [54.968412, -2.561375]], [[54.967987, -2.561461], [54.967896, -2.561447]], [[54.967896, -2.561447], [54.967801, -2.56144]], [[54.967801, -2.56144], [54.96771, -2.561429]], [[54.967523, -2.561407], [54.967431, -2.561364]], [[54.967431, -2.561364], [54.96734, -2.561369]], [[54.96734, -2.561369], [54.967246, -2.561359]], [[54.967246, -2.561359], [54.967151, -2.561333]], [[54.967151, -2.561333], [54.96706, -2.561322]], [[54.96706, -2.561322], [54.966968, -2.56131]], [[54.966968, -2.56131], [54.96688, -2.561264]], [[54.96688, -2.561264], [54.966789, -2.561233]], [[54.966789, -2.561233], [54.966705, -2.561159]], [[54.966705, -2.561159], [54.966609, -2.561112]], [[54.966438, -2.560958], [54.966346, -2.560896]], [[54.966346, -2.560896], [54.966248, -2.560889]], [[54.966248, -2.560889], [54.966158, -2.560867]], [[54.966158, -2.560867], [54.966072, -2.560789]], [[54.966072, -2.560789], [54.965986, -2.5607]], [[54.965986, -2.5607], [54.965919, -2.560579]], [[54.965919, -2.560579], [54.965837, -2.560491]], [[54.965837, -2.560491], [54.965771, -2.560384]], [[54.965771, -2.560384], [54.96571, -2.56027]], [[54.96571, -2.56027], [54.965645, -2.560156]], [[54.965404, -2.559888], [54.965317, -2.559829]], [[54.965317, -2.559829], [54.965225, -2.559775]], [[54.965225, -2.559775], [54.965126, -2.559785]], [[54.965126, -2.559785], [54.965037, -2.559754]], [[54.965037, -2.559754], [54.964939, -2.55973]], [[54.964939, -2.55973], [54.96484, -2.559716]], [[54.96484, -2.559716], [54.964745, -2.559694]], [[54.964745, -2.559694], [54.964669, -2.559605]], [[54.964669, -2.559605], [54.964569, -2.559605]], [[54.964569, -2.559605], [54.964468, -2.559614]], [[54.964468, -2.559614], [54.964371, -2.559613]], [[54.964371, -2.559613], [54.964278, -2.559583]], [[54.964278, -2.559583], [54.964189, -2.559496]], [[54.964189, -2.559496], [54.964091, -2.559458]], [[54.964091, -2.559458], [54.964007, -2.559389]], [[54.964007, -2.559389], [54.963911, -2.559391]], [[54.963911, -2.559391], [54.96381, -2.559393]], [[54.96381, -2.559393], [54.963719, -2.559429]], [[54.963719, -2.559429], [54.963623, -2.559453]], [[54.963623, -2.559453], [54.963533, -2.559417]], [[54.963533, -2.559417], [54.963435, -2.559379]], [[54.963435, -2.559379], [54.963341, -2.559381]], [[54.963341, -2.559381], [54.96325, -2.559444]], [[54.96325, -2.559444], [54.963156, -2.559452]], [[54.963156, -2.559452], [54.963064, -2.559395]], [[54.963064, -2.559395], [54.962968, -2.55934]], [[54.962968, -2.55934], [54.962867, -2.559338]], [[54.962867, -2.559338], [54.96277, -2.55933]], [[54.96277, -2.55933], [54.962675, -2.559305]], [[54.962675, -2.559305], [54.962593, -2.559233]], [[54.962593, -2.559233], [54.962496, -2.559186]], [[54.962496, -2.559186], [54.962403, -2.559184]], [[54.962127, -2.558937], [54.962053, -2.558846]], [[54.961899, -2.558711], [54.961821, -2.558597]], [[54.961821, -2.558597], [54.961741, -2.558519]], [[54.961662, -2.558421], [54.961591, -2.558316]], [[54.961266, -2.557994], [54.961173, -2.557936]], [[54.961173, -2.557936], [54.961089, -2.557858]], [[54.961012, -2.557768], [54.960922, -2.557702]], [[54.960922, -2.557702], [54.960847, -2.557599]], [[54.960847, -2.557599], [54.960777, -2.557479]], [[54.960777, -2.557479], [54.960703, -2.557367]], [[54.960703, -2.557367], [54.960633, -2.557261]], [[54.960633, -2.557261], [54.96056, -2.557146]], [[54.96056, -2.557146], [54.96047, -2.55712]], [[54.96047, -2.55712], [54.960375, -2.557117]], [[54.959969, -2.557082], [54.95987, -2.557099]], [[54.95987, -2.557099], [54.959774, -2.5571]], [[54.959682, -2.557126], [54.959583, -2.55713]], [[54.959583, -2.55713], [54.959492, -2.557121]], [[54.959492, -2.557121], [54.959398, -2.557117]], [[54.959398, -2.557117], [54.959307, -2.557084]], [[54.959307, -2.557084], [54.959214, -2.557069]], [[54.959214, -2.557069], [54.959122, -2.557021]], [[54.959122, -2.557021], [54.959036, -2.556962]], [[54.959036, -2.556962], [54.958948, -2.5569]], [[54.958948, -2.5569], [54.958863, -2.556806]], [[54.958863, -2.556806], [54.958768, -2.55675]], [[54.958495, -2.556574], [54.9584, -2.556532]], [[54.9584, -2.556532], [54.958311, -2.556453]], [[54.958311, -2.556453], [54.958224, -2.55638]], [[54.958224, -2.55638], [54.958123, -2.556361]], [[54.957934, -2.556354], [54.957835, -2.556351]], [[54.957835, -2.556351], [54.95774, -2.556372]], [[54.95774, -2.556372], [54.95765, -2.556351]], [[54.95765, -2.556351], [54.957556, -2.556338]], [[54.957556, -2.556338], [54.95746, -2.556373]], [[54.95746, -2.556373], [54.957362, -2.556353]], [[54.957362, -2.556353], [54.957267, -2.556345]], [[54.957267, -2.556345], [54.957168, -2.55632]], [[54.957168, -2.55632], [54.957066, -2.556305]], [[54.957066, -2.556305], [54.956976, -2.556309]], [[54.956976, -2.556309], [54.956883, -2.556299]], [[54.956883, -2.556299], [54.956786, -2.556276]], [[54.956786, -2.556276], [54.956685, -2.556276]], [[54.956685, -2.556276], [54.956594, -2.55629]], [[54.956594, -2.55629], [54.956501, -2.556304]], [[54.956316, -2.556281], [54.956216, -2.556276]], [[54.956216, -2.556276], [54.956125, -2.556264]], [[54.956125, -2.556264], [54.956032, -2.556255]], [[54.956032, -2.556255], [54.955938, -2.556249]], [[54.955938, -2.556249], [54.955846, -2.556243]], [[54.955846, -2.556243], [54.955748, -2.556241]], [[54.955748, -2.556241], [54.955656, -2.556233]], [[54.955656, -2.556233], [54.955554, -2.556234]], [[54.955554, -2.556234], [54.955456, -2.556226]], [[54.955456, -2.556226], [54.955366, -2.556214]], [[54.955366, -2.556214], [54.955266, -2.556211]], [[54.955266, -2.556211], [54.955175, -2.556194]], [[54.955175, -2.556194], [54.955076, -2.556181]], [[54.955076, -2.556181], [54.954979, -2.556181]], [[54.954979, -2.556181], [54.954883, -2.556172]], [[54.954883, -2.556172], [54.954785, -2.556171]], [[54.954785, -2.556171], [54.954693, -2.556171]], [[54.954693, -2.556171], [54.954595, -2.556161]], [[54.954595, -2.556161], [54.954501, -2.556144]], [[54.954501, -2.556144], [54.954411, -2.556124]], [[54.954411, -2.556124], [54.954311, -2.556102]], [[54.954311, -2.556102], [54.954214, -2.556099]], [[54.954214, -2.556099], [54.954128, -2.556047]], [[54.954128, -2.556047], [54.954034, -2.556062]], [[54.953846, -2.556023], [54.953748, -2.556011]], [[54.953748, -2.556011], [54.953658, -2.555957]], [[54.953658, -2.555957], [54.953562, -2.555905]], [[54.953466, -2.555885], [54.953372, -2.555853]], [[54.953372, -2.555853], [54.953282, -2.55584]], [[54.953282, -2.55584], [54.953189, -2.555824]], [[54.95261, -2.555755], [54.952515, -2.555769]], [[54.952515, -2.555769], [54.952429, -2.555843]], [[54.952429, -2.555843], [54.952333, -2.555834]], [[54.952333, -2.555834], [54.952236, -2.555843]], [[54.95157, -2.555806], [54.951473, -2.555819]], [[54.951473, -2.555819], [54.951378, -2.555794]], [[54.951378, -2.555794], [54.951279, -2.555776]], [[54.951192, -2.55545], [54.951154, -2.555301]], [[54.951154, -2.555301], [54.951121, -2.555147]], [[54.951121, -2.555147], [54.951085, -2.555001]], [[54.951085, -2.555001], [54.951039, -2.554845]], [[54.951039, -2.554845], [54.951002, -2.554694]], [[54.950968, -2.554546], [54.950932, -2.5544]], [[54.950932, -2.5544], [54.950879, -2.554263]], [[54.950879, -2.554263], [54.950834, -2.554118]], [[54.950834, -2.554118], [54.950789, -2.553964]], [[54.950789, -2.553964], [54.950743, -2.55382]], [[54.950743, -2.55382], [54.9507, -2.553673]], [[54.9507, -2.553673], [54.950651, -2.553525]], [[54.950651, -2.553525], [54.950558, -2.553459]], [[54.950558, -2.553459], [54.950476, -2.553373]], [[54.950476, -2.553373], [54.950411, -2.553256]], [[54.950411, -2.553256], [54.950332, -2.553177]], [[54.950263, -2.55307], [54.950188, -2.552959]], [[54.949978, -2.552936], [54.949883, -2.552923]], [[54.949883, -2.552923], [54.949785, -2.552907]], [[54.949785, -2.552907], [54.949693, -2.552913]], [[54.949335, -2.552616], [54.949309, -2.55246]], [[54.949309, -2.55246], [54.949297, -2.552302]], [[54.949297, -2.552302], [54.949291, -2.552145]], [[54.949291, -2.552145], [54.94928, -2.551983]], [[54.949418, -2.551558], [54.94946, -2.551413]], [[54.949488, -2.551246], [54.949504, -2.551075]], [[54.949504, -2.551075], [54.949531, -2.550913]], [[54.949531, -2.550913], [54.94956, -2.550763]], [[54.94979, -2.549693], [54.94978, -2.549526]], [[54.94978, -2.549526], [54.94979, -2.549369]], [[54.949797, -2.54905], [54.949806, -2.548885]], [[54.949806, -2.548885], [54.949817, -2.548726]], [[54.949817, -2.548726], [54.94982, -2.548551]], [[54.94982, -2.548551], [54.949801, -2.548396]], [[54.949801, -2.548396], [54.949749, -2.548256]], [[54.949749, -2.548256], [54.949695, -2.548127]], [[54.949695, -2.548127], [54.949648, -2.547976]], [[54.949648, -2.547976], [54.949623, -2.54781]], [[54.949589, -2.547651], [54.949559, -2.547499]], [[54.949549, -2.546922], [54.94953, -2.546769]], [[54.94952, -2.546603], [54.949517, -2.546433]], [[54.949517, -2.546433], [54.949513, -2.546262]], [[54.949513, -2.546262], [54.949502, -2.546097]], [[54.949502, -2.546097], [54.949468, -2.545943]], [[54.949468, -2.545943], [54.949396, -2.545827]], [[54.949396, -2.545827], [54.949371, -2.545667]], [[54.949293, -2.545363], [54.949247, -2.545215]], [[54.949247, -2.545215], [54.949217, -2.545067]], [[54.949217, -2.545067], [54.949164, -2.544919]], [[54.949164, -2.544919], [54.949116, -2.544776]], [[54.949116, -2.544776], [54.949064, -2.544636]], [[54.949064, -2.544636], [54.949022, -2.544498]], [[54.949022, -2.544498], [54.948955, -2.544372]], [[54.948955, -2.544372], [54.948888, -2.544268]], [[54.948808, -2.544182], [54.948728, -2.544096]], [[54.948728, -2.544096], [54.948653, -2.543991]], [[54.948653, -2.543991], [54.948581, -2.543872]], [[54.948428, -2.543671], [54.948346, -2.543571]], [[54.948346, -2.543571], [54.948279, -2.543462]], [[54.948068, -2.543202], [54.948, -2.54309]], [[54.948, -2.54309], [54.947925, -2.542995]], [[54.947925, -2.542995], [54.947848, -2.542914]], [[54.947848, -2.542914], [54.947765, -2.542855]], [[54.947765, -2.542855], [54.947682, -2.542781]], [[54.947682, -2.542781], [54.947597, -2.542708]], [[54.947597, -2.542708], [54.947507, -2.542643]], [[54.947294, -2.542652], [54.947211, -2.542584]], [[54.947211, -2.542584], [54.947119, -2.542531]], [[54.947119, -2.542531], [54.947033, -2.542473]], [[54.947033, -2.542473], [54.946942, -2.542401]], [[54.946942, -2.542401], [54.946854, -2.542336]], [[54.946854, -2.542336], [54.946763, -2.542283]], [[54.946763, -2.542283], [54.946677, -2.54224]], [[54.946677, -2.54224], [54.946594, -2.542177]], [[54.946594, -2.542177], [54.946504, -2.542103]], [[54.946504, -2.542103], [54.946418, -2.542036]], [[54.946335, -2.541969], [54.946238, -2.541914]], [[54.946238, -2.541914], [54.946157, -2.541846]], [[54.946157, -2.541846], [54.946062, -2.541788]], [[54.946062, -2.541788], [54.945965, -2.541806]], [[54.945965, -2.541806], [54.945869, -2.541793]], [[54.945869, -2.541793], [54.945779, -2.541756]], [[54.945779, -2.541756], [54.94568, -2.541734]], [[54.94568, -2.541734], [54.945587, -2.541697]], [[54.944622, -2.541777], [54.944528, -2.541714]], [[54.944528, -2.541714], [54.944436, -2.541661]], [[54.944436, -2.541661], [54.944348, -2.541586]], [[54.944348, -2.541586], [54.94426, -2.541555]], [[54.94426, -2.541555], [54.944163, -2.541587]], [[54.944163, -2.541587], [54.944077, -2.541678]], [[54.944077, -2.541678], [54.944008, -2.54178]], [[54.943664, -2.5417], [54.94357, -2.541698]], [[54.94357, -2.541698], [54.943477, -2.541696]], [[54.943477, -2.541696], [54.943377, -2.541669]], [[54.943377, -2.541669], [54.943283, -2.541661]], [[54.943283, -2.541661], [54.943186, -2.541614]], [[54.943186, -2.541614], [54.943089, -2.54159]], [[54.943089, -2.54159], [54.942997, -2.541624]], [[54.942997, -2.541624], [54.942904, -2.541638]], [[54.942904, -2.541638], [54.942811, -2.541603]], [[54.94226, -2.541324], [54.94218, -2.541249]], [[54.94218, -2.541249], [54.942097, -2.541181]], [[54.942097, -2.541181], [54.94201, -2.541127]], [[54.94201, -2.541127], [54.941925, -2.541067]], [[54.941925, -2.541067], [54.941837, -2.541042]], [[54.941653, -2.541012], [54.941556, -2.541016]], [[54.94136, -2.541021], [54.941264, -2.541003]], [[54.941264, -2.541003], [54.941174, -2.540965]], [[54.941174, -2.540965], [54.941082, -2.54098]], [[54.940831, -2.540964], [54.940745, -2.54088]], [[54.940745, -2.54088], [54.940661, -2.540793]], [[54.940583, -2.540712], [54.940506, -2.540602]], [[54.940506, -2.540602], [54.940424, -2.540498]], [[54.940424, -2.540498], [54.940361, -2.540366]], [[54.940361, -2.540366], [54.940325, -2.54022]], [[54.940374, -2.539969], [54.940429, -2.539832]], [[54.940262, -2.539565], [54.940167, -2.539516]], [[54.940167, -2.539516], [54.94007, -2.539477]], [[54.94007, -2.539477], [54.939978, -2.539446]], [[54.939978, -2.539446], [54.939891, -2.539374]], [[54.939891, -2.539374], [54.939811, -2.539286]], [[54.939811, -2.539286], [54.939734, -2.539196]], [[54.939734, -2.539196], [54.939667, -2.53909]], [[54.939667, -2.53909], [54.9396, -2.538985]], [[54.939466, -2.538757], [54.939386, -2.538657]], [[54.939386, -2.538657], [54.939304, -2.538579]], [[54.939216, -2.538482], [54.939146, -2.538379]], [[54.939146, -2.538379], [54.939061, -2.538294]], [[54.939061, -2.538294], [54.938992, -2.538178]], [[54.938992, -2.538178], [54.938919, -2.538085]], [[54.938919, -2.538085], [54.938848, -2.537989]], [[54.938848, -2.537989], [54.938771, -2.537883]], [[54.938771, -2.537883], [54.93869, -2.537799]], [[54.93869, -2.537799], [54.938603, -2.537711]], [[54.938603, -2.537711], [54.938519, -2.537652]], [[54.938519, -2.537652], [54.938419, -2.537631]], [[54.938419, -2.537631], [54.938419, -2.537473]], [[54.938008, -2.536615], [54.937979, -2.53645]], [[54.937979, -2.53645], [54.937955, -2.536294]], [[54.937955, -2.536294], [54.937924, -2.536131]], [[54.937924, -2.536131], [54.937888, -2.535981]], [[54.937888, -2.535981], [54.937878, -2.535814]], [[54.937878, -2.535814], [54.937882, -2.535657]], [[54.937882, -2.535657], [54.937882, -2.535482]], [[54.937821, -2.535158], [54.937793, -2.535007]], [[54.937793, -2.535007], [54.937755, -2.534847]], [[54.937755, -2.534847], [54.937727, -2.534678]], [[54.937727, -2.534678], [54.937693, -2.534507]], [[54.937693, -2.534507], [54.937649, -2.534347]], [[54.937649, -2.534347], [54.937596, -2.534204]], [[54.937596, -2.534204], [54.937544, -2.53407]], [[54.937544, -2.53407], [54.93748, -2.533948]], [[54.937203, -2.533594], [54.937117, -2.533525]], [[54.937117, -2.533525], [54.937019, -2.533474]], [[54.937019, -2.533474], [54.936935, -2.533371]], [[54.936861, -2.533273], [54.936782, -2.533172]], [[54.936782, -2.533172], [54.936693, -2.533083]], [[54.936693, -2.533083], [54.936625, -2.532967]], [[54.936625, -2.532967], [54.936546, -2.532878]], [[54.936546, -2.532878], [54.936477, -2.532774]], [[54.936477, -2.532774], [54.936392, -2.532687]], [[54.936392, -2.532687], [54.93631, -2.532585]], [[54.93631, -2.532585], [54.936225, -2.532487]], [[54.936225, -2.532487], [54.936181, -2.532341]], [[54.936181, -2.532341], [54.936134, -2.532198]], [[54.936134, -2.532198], [54.936075, -2.532076]], [[54.935892, -2.531561], [54.935816, -2.531452]], [[54.93562, -2.530937], [54.935634, -2.530777]], [[54.935634, -2.530777], [54.935644, -2.530613]], [[54.93563, -2.529583], [54.935629, -2.529421]], [[54.935629, -2.529421], [54.935612, -2.529246]], [[54.935426, -2.528758], [54.935329, -2.528709]], [[54.935238, -2.528651], [54.935143, -2.528608]], [[54.935143, -2.528608], [54.935045, -2.528566]], [[54.935045, -2.528566], [54.934956, -2.528511]], [[54.934956, -2.528511], [54.934857, -2.528479]], [[54.934857, -2.528479], [54.934757, -2.528444]], [[54.93466, -2.528403], [54.934569, -2.528385]], [[54.934311, -2.528729], [54.934212, -2.528746]], [[54.932981, -2.52946], [54.932903, -2.529566]], [[54.932903, -2.529566], [54.93283, -2.529658]], [[54.932226, -2.530409], [54.93215, -2.530497]], [[54.93215, -2.530497], [54.932068, -2.530569]], [[54.932068, -2.530569], [54.931993, -2.530656]], [[54.931993, -2.530656], [54.931915, -2.53075]], [[54.931915, -2.53075], [54.931831, -2.530811]], [[54.931361, -2.530516], [54.931273, -2.530471]], [[54.931273, -2.530471], [54.93119, -2.530392]], [[54.93082, -2.53016], [54.930735, -2.530101]], [[54.930735, -2.530101], [54.930638, -2.530092]], [[54.930541, -2.530114], [54.930447, -2.530078]], [[54.930447, -2.530078], [54.930348, -2.530087]], [[54.930348, -2.530087], [54.930253, -2.530089]], [[54.930253, -2.530089], [54.930156, -2.530092]], [[54.930156, -2.530092], [54.930065, -2.530083]], [[54.930065, -2.530083], [54.929969, -2.530069]], [[54.929877, -2.53004], [54.929781, -2.530017]], [[54.929781, -2.530017], [54.929686, -2.530011]], [[54.929686, -2.530011], [54.929584, -2.529996]], [[54.929584, -2.529996], [54.929489, -2.529994]], [[54.929063, -2.529535], [54.928983, -2.529449]], [[54.928983, -2.529449], [54.928893, -2.529371]], [[54.928893, -2.529371], [54.928822, -2.529264]], [[54.928039, -2.52984], [54.927946, -2.52983]], [[54.927946, -2.52983], [54.927851, -2.529803]], [[54.927633, -2.529814], [54.92754, -2.529777]], [[54.92754, -2.529777], [54.927445, -2.529757]], [[54.927445, -2.529757], [54.927353, -2.529752]], [[54.927353, -2.529752], [54.927256, -2.529724]], [[54.927256, -2.529724], [54.927159, -2.52968]], [[54.927159, -2.52968], [54.927072, -2.529641]], [[54.927072, -2.529641], [54.926974, -2.529633]], [[54.926974, -2.529633], [54.926883, -2.52958]], [[54.926883, -2.52958], [54.926789, -2.529571]], [[54.926703, -2.529526], [54.926609, -2.529483]], [[54.926165, -2.529332], [54.926076, -2.529297]], [[54.926076, -2.529297], [54.925983, -2.52929]], [[54.925983, -2.52929], [54.925887, -2.529291]], [[54.925887, -2.529291], [54.925798, -2.529239]], [[54.925798, -2.529239], [54.925712, -2.529191]], [[54.925712, -2.529191], [54.925623, -2.529136]], [[54.925623, -2.529136], [54.925542, -2.529053]], [[54.925542, -2.529053], [54.925455, -2.528996]], [[54.925455, -2.528996], [54.925366, -2.528938]], [[54.925366, -2.528938], [54.925278, -2.528852]], [[54.925278, -2.528852], [54.925191, -2.528798]], [[54.925191, -2.528798], [54.925106, -2.528704]], [[54.925106, -2.528704], [54.925023, -2.528624]], [[54.925023, -2.528624], [54.924932, -2.528579]], [[54.924932, -2.528579], [54.924844, -2.528489]], [[54.924749, -2.528472], [54.924656, -2.52844]], [[54.924656, -2.52844], [54.924591, -2.528315]], [[54.924591, -2.528315], [54.924508, -2.528237]], [[54.924508, -2.528237], [54.924416, -2.528198]], [[54.924416, -2.528198], [54.924319, -2.528163]], [[54.924319, -2.528163], [54.924229, -2.528128]], [[54.924229, -2.528128], [54.924139, -2.528061]], [[54.923875, -2.527913], [54.92381, -2.527788]], [[54.923556, -2.527615], [54.923464, -2.527581]], [[54.923464, -2.527581], [54.923367, -2.527554]], [[54.922804, -2.527402], [54.922704, -2.527372]], [[54.922704, -2.527372], [54.922611, -2.527353]], [[54.92208, -2.527093], [54.921989, -2.52705]], [[54.919506, -2.525879], [54.919445, -2.525761]], [[54.918984, -2.524545], [54.91894, -2.524398]], [[54.918885, -2.52392], [54.918872, -2.523764]], [[54.918872, -2.523764], [54.918861, -2.523596]], [[54.918861, -2.523596], [54.918851, -2.523427]], [[54.918851, -2.523427], [54.918841, -2.523266]], [[54.918841, -2.523266], [54.918839, -2.523094]], [[54.918839, -2.523094], [54.918836, -2.522934]], [[54.918805, -2.521975], [54.918784, -2.521815]], [[54.918738, -2.521511], [54.918728, -2.521353]], [[54.918728, -2.521353], [54.918716, -2.521191]], [[54.918297, -2.52052], [54.918205, -2.520472]], [[54.918205, -2.520472], [54.918114, -2.520416]], [[54.918114, -2.520416], [54.918027, -2.520361]], [[54.918027, -2.520361], [54.917937, -2.520299]], [[54.917937, -2.520299], [54.917849, -2.52025]], [[54.917849, -2.52025], [54.917754, -2.520207]], [[54.917754, -2.520207], [54.917667, -2.520166]], [[54.917667, -2.520166], [54.91757, -2.520124]], [[54.91757, -2.520124], [54.917474, -2.520091]], [[54.917474, -2.520091], [54.917385, -2.520056]], [[54.916921, -2.519876], [54.916832, -2.519844]], [[54.916543, -2.519779], [54.916452, -2.519745]], [[54.916452, -2.519745], [54.916365, -2.519705]], [[54.916365, -2.519705], [54.916275, -2.519656]], [[54.916275, -2.519656], [54.916176, -2.519633]], [[54.916176, -2.519633], [54.916084, -2.519601]], [[54.915671, -2.519437], [54.915574, -2.519424]], [[54.915574, -2.519424], [54.915482, -2.519378]], [[54.915482, -2.519378], [54.915393, -2.519335]], [[54.914925, -2.519194], [54.91483, -2.519157]], [[54.914565, -2.519056], [54.914474, -2.519014]], [[54.914474, -2.519014], [54.914375, -2.518997]], [[54.914375, -2.518997], [54.914285, -2.518979]], [[54.914285, -2.518979], [54.914195, -2.518929]], [[54.914195, -2.518929], [54.914102, -2.518888]], [[54.914102, -2.518888], [54.914006, -2.518855]], [[54.914006, -2.518855], [54.913912, -2.518821]], [[54.913716, -2.51876], [54.913622, -2.518719]], [[54.913622, -2.518719], [54.913529, -2.518676]], [[54.913529, -2.518676], [54.913443, -2.518623]], [[54.913443, -2.518623], [54.913346, -2.518599]], [[54.913346, -2.518599], [54.913255, -2.518567]], [[54.913255, -2.518567], [54.913168, -2.518488]], [[54.913168, -2.518488], [54.913076, -2.518463]], [[54.913076, -2.518463], [54.912985, -2.518444]], [[54.912985, -2.518444], [54.912893, -2.518367]], [[54.912893, -2.518367], [54.912816, -2.518287]], [[54.912816, -2.518287], [54.912728, -2.518253]], [[54.912497, -2.518293], [54.912401, -2.518283]], [[54.912401, -2.518283], [54.912301, -2.518269]], [[54.912301, -2.518269], [54.912202, -2.518238]], [[54.912202, -2.518238], [54.912103, -2.518207]], [[54.912103, -2.518207], [54.91201, -2.518194]], [[54.91201, -2.518194], [54.911921, -2.518158]], [[54.911921, -2.518158], [54.91183, -2.518109]], [[54.911462, -2.518087], [54.911361, -2.518086]], [[54.911361, -2.518086], [54.911268, -2.518072]], [[54.911268, -2.518072], [54.911169, -2.518047]], [[54.911169, -2.518047], [54.911075, -2.518014]], [[54.911075, -2.518014], [54.910984, -2.517982]], [[54.910984, -2.517982], [54.910891, -2.517961]], [[54.910891, -2.517961], [54.910797, -2.517927]], [[54.910797, -2.517927], [54.910703, -2.517912]], [[54.910703, -2.517912], [54.910606, -2.51791]], [[54.910606, -2.51791], [54.910512, -2.517894]], [[54.910512, -2.517894], [54.910424, -2.517862]], [[54.910424, -2.517862], [54.910336, -2.51782]], [[54.910336, -2.51782], [54.910243, -2.517803]], [[54.910243, -2.517803], [54.910152, -2.517784]], [[54.910152, -2.517784], [54.910055, -2.517764]], [[54.910055, -2.517764], [54.909963, -2.517737]], [[54.909963, -2.517737], [54.909871, -2.517729]], [[54.908947, -2.51747], [54.908864, -2.517407]], [[54.908864, -2.517407], [54.908766, -2.517404]], [[54.908393, -2.517266], [54.908303, -2.517276]], [[54.908303, -2.517276], [54.908205, -2.517239]], [[54.908205, -2.517239], [54.908116, -2.5172]], [[54.908116, -2.5172], [54.908021, -2.517183]], [[54.908021, -2.517183], [54.907929, -2.517167]], [[54.907745, -2.517104], [54.907654, -2.517076]], [[54.907654, -2.517076], [54.907564, -2.517055]], [[54.907564, -2.517055], [54.90747, -2.517045]], [[54.90747, -2.517045], [54.90737, -2.517006]], [[54.90737, -2.517006], [54.907279, -2.516968]], [[54.907279, -2.516968], [54.907188, -2.516931]], [[54.906767, -2.516735], [54.906679, -2.516688]], [[54.906679, -2.516688], [54.906582, -2.516674]], [[54.906582, -2.516674], [54.906484, -2.516644]], [[54.906484, -2.516644], [54.906391, -2.5166]], [[54.906123, -2.51649], [54.906034, -2.516443]], [[54.906034, -2.516443], [54.90594, -2.516378]], [[54.90594, -2.516378], [54.905852, -2.51633]], [[54.905852, -2.51633], [54.905768, -2.516249]], [[54.905768, -2.516249], [54.905679, -2.516228]], [[54.905679, -2.516228], [54.905589, -2.516213]], [[54.905589, -2.516213], [54.9055, -2.51615]], [[54.9055, -2.51615], [54.905411, -2.516128]], [[54.905411, -2.516128], [54.905328, -2.516042]], [[54.905328, -2.516042], [54.905236, -2.515993]], [[54.905236, -2.515993], [54.905147, -2.515968]], [[54.905147, -2.515968], [54.905059, -2.515931]], [[54.904808, -2.515883], [54.90472, -2.515833]], [[54.90472, -2.515833], [54.904623, -2.51579]], [[54.904623, -2.51579], [54.904536, -2.51574]], [[54.904536, -2.51574], [54.904452, -2.515657]], [[54.904452, -2.515657], [54.90436, -2.515637]], [[54.90436, -2.515637], [54.904267, -2.515584]], [[54.904267, -2.515584], [54.904177, -2.515532]], [[54.904177, -2.515532], [54.904089, -2.515467]], [[54.904089, -2.515467], [54.903997, -2.515418]], [[54.903997, -2.515418], [54.903904, -2.515361]], [[54.903904, -2.515361], [54.903812, -2.515308]], [[54.903812, -2.515308], [54.903717, -2.51525]], [[54.903717, -2.51525], [54.903623, -2.515207]], [[54.903623, -2.515207], [54.903531, -2.51519]], [[54.903531, -2.51519], [54.903449, -2.515126]], [[54.903449, -2.515126], [54.903356, -2.515084]], [[54.903356, -2.515084], [54.903278, -2.514991]], [[54.903278, -2.514991], [54.903188, -2.514949]], [[54.903098, -2.514918], [54.903, -2.514884]], [[54.903, -2.514884], [54.902902, -2.514852]], [[54.902902, -2.514852], [54.902804, -2.514812]], [[54.902804, -2.514812], [54.902708, -2.514784]], [[54.902708, -2.514784], [54.90261, -2.514747]], [[54.90261, -2.514747], [54.902515, -2.514706]], [[54.902515, -2.514706], [54.902423, -2.514665]], [[54.902423, -2.514665], [54.902326, -2.514619]], [[54.902326, -2.514619], [54.902228, -2.51458]], [[54.902228, -2.51458], [54.902129, -2.514577]], [[54.902129, -2.514577], [54.902031, -2.51462]], [[54.902031, -2.51462], [54.901941, -2.514647]], [[54.901064, -2.514927], [54.901012, -2.515082]], [[54.901012, -2.515082], [54.900953, -2.5152]], [[54.900669, -2.514821], [54.900655, -2.514664]], [[54.900384, -2.513508], [54.900307, -2.513418]], [[54.900133, -2.513365], [54.900035, -2.51336]], [[54.900035, -2.51336], [54.899942, -2.51336]], [[54.89956, -2.513313], [54.899467, -2.513287]], [[54.899467, -2.513287], [54.899372, -2.513263]], [[54.899372, -2.513263], [54.899273, -2.513241]], [[54.899273, -2.513241], [54.899184, -2.513217]], [[54.899184, -2.513217], [54.899094, -2.513201]], [[54.898992, -2.513193], [54.898894, -2.513145]], [[54.898894, -2.513145], [54.8988, -2.513133]], [[54.8988, -2.513133], [54.898697, -2.513107]], [[54.898415, -2.513031], [54.898322, -2.512986]], [[54.898322, -2.512986], [54.898234, -2.512954]], [[54.897665, -2.512769], [54.897572, -2.512748]], [[54.897267, -2.512733], [54.897168, -2.512683]], [[54.897073, -2.512646], [54.896975, -2.512617]], [[54.896975, -2.512617], [54.896878, -2.512589]], [[54.896878, -2.512589], [54.896794, -2.512533]], [[54.896794, -2.512533], [54.896703, -2.512481]], [[54.896703, -2.512481], [54.896611, -2.512457]], [[54.896611, -2.512457], [54.896519, -2.512445]], [[54.896429, -2.512404], [54.896336, -2.512369]], [[54.896244, -2.512342], [54.896151, -2.51229]], [[54.896151, -2.51229], [54.896056, -2.512281]], [[54.896056, -2.512281], [54.895958, -2.512254]], [[54.895491, -2.512093], [54.8954, -2.512069]], [[54.8954, -2.512069], [54.895306, -2.512065]], [[54.895306, -2.512065], [54.895216, -2.512043]], [[54.895216, -2.512043], [54.895119, -2.512019]], [[54.895119, -2.512019], [54.895026, -2.511993]], [[54.895026, -2.511993], [54.894929, -2.511961]], [[54.894834, -2.511914], [54.894738, -2.511876]], [[54.894738, -2.511876], [54.894645, -2.511862]], [[54.894645, -2.511862], [54.894552, -2.511847]], [[54.894552, -2.511847], [54.894464, -2.511788]], [[54.894302, -2.511631], [54.894212, -2.511591]], [[54.894212, -2.511591], [54.894128, -2.511533]], [[54.893943, -2.511557], [54.893852, -2.511535]], [[54.893044, -2.511704], [54.892948, -2.51174]], [[54.892948, -2.51174], [54.892853, -2.511759]], [[54.892853, -2.511759], [54.892754, -2.51177]], [[54.892754, -2.51177], [54.892663, -2.511796]], [[54.892663, -2.511796], [54.892564, -2.511832]], [[54.892564, -2.511832], [54.892473, -2.511871]], [[54.892237, -2.511863], [54.892142, -2.511889]], [[54.892142, -2.511889], [54.892046, -2.51186]], [[54.892046, -2.51186], [54.891954, -2.511862]], [[54.891954, -2.511862], [54.891859, -2.511868]], [[54.891581, -2.511978], [54.891489, -2.512016]], [[54.891489, -2.512016], [54.891389, -2.512032]], [[54.891389, -2.512032], [54.891295, -2.512059]], [[54.891295, -2.512059], [54.891209, -2.512133]], [[54.891209, -2.512133], [54.891119, -2.51217]], [[54.891119, -2.51217], [54.891026, -2.512131]], [[54.891026, -2.512131], [54.890933, -2.512105]], [[54.890933, -2.512105], [54.890839, -2.512079]], [[54.890839, -2.512079], [54.890741, -2.51206]], [[54.890741, -2.51206], [54.89066, -2.511984]], [[54.890488, -2.511831], [54.890396, -2.511775]], [[54.890396, -2.511775], [54.890303, -2.511721]], [[54.890303, -2.511721], [54.89022, -2.51165]], [[54.89022, -2.51165], [54.890133, -2.511577]], [[54.890133, -2.511577], [54.890055, -2.511482]], [[54.889327, -2.511327], [54.889228, -2.511336]], [[54.889228, -2.511336], [54.889137, -2.51135]], [[54.888951, -2.511365], [54.888853, -2.511384]], [[54.88804, -2.512067], [54.887951, -2.512104]], [[54.887951, -2.512104], [54.887861, -2.512175]], [[54.887861, -2.512175], [54.88777, -2.512228]], [[54.88777, -2.512228], [54.88768, -2.512238]], [[54.887589, -2.512228], [54.887496, -2.512214]], [[54.887496, -2.512214], [54.887416, -2.512123]], [[54.887416, -2.512123], [54.887342, -2.512011]], [[54.887342, -2.512011], [54.887267, -2.511915]], [[54.887267, -2.511915], [54.887179, -2.511843]], [[54.887179, -2.511843], [54.887098, -2.511768]], [[54.887047, -2.511638], [54.887066, -2.511465]], [[54.887066, -2.511465], [54.887059, -2.511297]], [[54.887059, -2.511297], [54.887048, -2.511139]], [[54.887048, -2.511139], [54.887034, -2.510982]], [[54.887034, -2.510982], [54.887006, -2.510824]], [[54.887006, -2.510824], [54.886964, -2.510678]], [[54.886964, -2.510678], [54.886914, -2.510542]], [[54.886914, -2.510542], [54.886848, -2.51041]], [[54.886848, -2.51041], [54.886763, -2.510312]], [[54.886763, -2.510312], [54.88668, -2.510212]], [[54.88668, -2.510212], [54.886598, -2.510138]], [[54.886598, -2.510138], [54.886524, -2.510027]], [[54.886524, -2.510027], [54.886428, -2.509973]], [[54.886428, -2.509973], [54.886333, -2.509936]], [[54.886333, -2.509936], [54.886238, -2.509894]], [[54.886238, -2.509894], [54.886152, -2.509845]], [[54.886152, -2.509845], [54.886062, -2.509799]], [[54.886062, -2.509799], [54.885973, -2.509766]], [[54.885734, -2.509663], [54.885637, -2.509639]], [[54.885637, -2.509639], [54.885544, -2.509611]], [[54.885544, -2.509611], [54.885447, -2.509592]], [[54.885447, -2.509592], [54.885355, -2.509564]], [[54.885355, -2.509564], [54.88526, -2.509533]], [[54.88526, -2.509533], [54.885173, -2.509486]], [[54.885173, -2.509486], [54.885082, -2.509472]], [[54.884899, -2.509296], [54.884805, -2.509266]], [[54.884805, -2.509266], [54.88471, -2.509243]], [[54.88471, -2.509243], [54.884615, -2.509192]], [[54.884615, -2.509192], [54.884524, -2.509145]], [[54.884524, -2.509145], [54.884428, -2.509098]], [[54.884428, -2.509098], [54.884343, -2.509013]], [[54.883599, -2.507779], [54.883496, -2.507777]], [[54.883496, -2.507777], [54.883394, -2.507776]], [[54.883394, -2.507776], [54.883299, -2.50775]], [[54.883299, -2.50775], [54.883202, -2.507723]], [[54.883202, -2.507723], [54.883124, -2.507634]], [[54.883124, -2.507634], [54.883041, -2.507535]], [[54.883041, -2.507535], [54.882969, -2.507414]], [[54.882969, -2.507414], [54.882895, -2.507317]], [[54.882562, -2.507842], [54.882492, -2.507958]], [[54.882328, -2.508104], [54.882255, -2.508205]], [[54.882255, -2.508205], [54.882176, -2.508289]], [[54.882099, -2.508383], [54.882014, -2.508458]], [[54.881699, -2.508697], [54.881617, -2.508795]], [[54.881617, -2.508795], [54.88153, -2.508872]], [[54.88153, -2.508872], [54.881445, -2.508953]], [[54.881445, -2.508953], [54.881366, -2.509049]], [[54.881366, -2.509049], [54.881283, -2.509148]], [[54.881283, -2.509148], [54.8812, -2.509232]], [[54.8812, -2.509232], [54.88112, -2.509313]], [[54.881038, -2.50939], [54.880957, -2.509458]], [[54.880869, -2.509522], [54.880782, -2.509588]], [[54.880782, -2.509588], [54.880694, -2.509647]], [[54.880694, -2.509647], [54.880611, -2.50972]], [[54.880611, -2.50972], [54.88053, -2.509807]], [[54.88053, -2.509807], [54.880453, -2.509905]], [[54.880453, -2.509905], [54.880372, -2.509987]], [[54.880293, -2.510078], [54.880208, -2.510149]], [[54.880208, -2.510149], [54.880123, -2.510242]], [[54.880123, -2.510242], [54.880045, -2.510334]], [[54.880045, -2.510334], [54.879963, -2.510412]], [[54.879963, -2.510412], [54.879878, -2.510509]], [[54.879878, -2.510509], [54.879797, -2.510587]], [[54.879797, -2.510587], [54.879712, -2.510674]], [[54.879525, -2.510762], [54.879431, -2.51078]], [[54.879431, -2.51078], [54.879329, -2.510798]], [[54.879329, -2.510798], [54.879232, -2.510836]], [[54.879232, -2.510836], [54.879132, -2.510865]], [[54.879132, -2.510865], [54.879036, -2.510885]], [[54.87872, -2.510649], [54.878624, -2.510615]], [[54.878624, -2.510615], [54.878539, -2.510532]], [[54.878291, -2.51065], [54.878218, -2.510769]], [[54.878218, -2.510769], [54.878148, -2.510887]], [[54.877841, -2.511224], [54.877758, -2.511302]], [[54.877758, -2.511302], [54.877673, -2.511357]], [[54.877673, -2.511357], [54.877587, -2.511412]], [[54.877587, -2.511412], [54.87749, -2.51146]], [[54.87749, -2.51146], [54.877396, -2.511501]], [[54.877396, -2.511501], [54.877307, -2.511568]], [[54.877307, -2.511568], [54.877212, -2.511615]], [[54.877212, -2.511615], [54.877115, -2.511651]], [[54.876856, -2.511882], [54.876766, -2.511937]], [[54.876668, -2.511976], [54.876586, -2.512074]], [[54.876586, -2.512074], [54.876496, -2.51208]], [[54.876496, -2.51208], [54.876403, -2.512043]], [[54.876211, -2.512038], [54.87612, -2.512012]], [[54.87612, -2.512012], [54.87603, -2.511988]], [[54.875547, -2.51235], [54.875493, -2.512491]], [[54.875295, -2.512824], [54.87523, -2.512935]], [[54.87523, -2.512935], [54.875162, -2.513052]], [[54.875039, -2.513324], [54.874994, -2.513461]], [[54.874895, -2.51344], [54.8748, -2.513416]], [[54.8748, -2.513416], [54.874712, -2.51347]], [[54.874626, -2.513759], [54.874573, -2.5139]], [[54.874573, -2.5139], [54.874543, -2.514055]], [[54.874503, -2.51421], [54.874448, -2.514335]], [[54.874311, -2.514239], [54.874398, -2.514316]], [[54.874457, -2.514646], [54.874462, -2.514825]], [[54.874462, -2.514825], [54.874436, -2.514988]], [[54.874436, -2.514988], [54.874354, -2.515064]], [[54.874354, -2.515064], [54.874285, -2.515166]], [[54.874285, -2.515166], [54.874227, -2.515305]], [[54.874227, -2.515305], [54.874143, -2.51539]], [[54.874143, -2.51539], [54.874042, -2.515369]], [[54.874042, -2.515369], [54.87395, -2.515373]], [[54.87395, -2.515373], [54.873856, -2.515354]], [[54.873856, -2.515354], [54.873788, -2.515243]], [[54.873788, -2.515243], [54.873718, -2.51512]], [[54.873718, -2.51512], [54.873655, -2.514992]], [[54.873655, -2.514992], [54.873647, -2.51483]], [[54.873367, -2.514473], [54.873284, -2.514408]], [[54.873284, -2.514408], [54.873196, -2.514343]], [[54.873196, -2.514343], [54.873102, -2.514295]], [[54.873102, -2.514295], [54.873013, -2.514258]], [[54.873013, -2.514258], [54.872923, -2.514191]], [[54.872923, -2.514191], [54.87284, -2.514123]], [[54.87284, -2.514123], [54.872746, -2.514061]], [[54.872746, -2.514061], [54.872664, -2.513997]], [[54.872664, -2.513997], [54.872575, -2.51392]], [[54.872575, -2.51392], [54.872494, -2.513836]], [[54.8724, -2.513763], [54.872311, -2.513685]], [[54.872311, -2.513685], [54.872225, -2.513614]], [[54.872225, -2.513614], [54.872136, -2.513562]], [[54.872136, -2.513562], [54.872046, -2.513511]], [[54.872046, -2.513511], [54.871948, -2.513519]], [[54.871797, -2.513511], [54.871704, -2.513524]], [[54.871704, -2.513524], [54.871613, -2.513523]], [[54.871613, -2.513523], [54.871517, -2.51351]], [[54.871517, -2.51351], [54.871421, -2.513504]], [[54.871421, -2.513504], [54.87133, -2.513499]], [[54.871232, -2.513501], [54.871137, -2.513511]], [[54.871137, -2.513511], [54.871052, -2.513433]], [[54.871052, -2.513433], [54.870961, -2.513366]], [[54.870961, -2.513366], [54.87088, -2.513277]], [[54.87088, -2.513277], [54.870827, -2.513133]], [[54.870827, -2.513133], [54.870763, -2.513005]], [[54.870763, -2.513005], [54.87071, -2.512858]], [[54.87071, -2.512858], [54.870664, -2.512713]], [[54.870664, -2.512713], [54.870608, -2.512577]], [[54.870608, -2.512577], [54.87056, -2.512437]], [[54.870507, -2.512308], [54.870443, -2.512183]], [[54.870327, -2.511355], [54.870299, -2.511195]], [[54.870299, -2.511195], [54.870287, -2.511037]], [[54.870045, -2.511152], [54.869945, -2.511156]], [[54.868969, -2.510632], [54.868918, -2.510484]], [[54.868918, -2.510484], [54.868828, -2.510443]], [[54.868828, -2.510443], [54.868734, -2.5104]], [[54.868734, -2.5104], [54.868634, -2.51036]], [[54.868634, -2.51036], [54.868551, -2.510295]], [[54.868551, -2.510295], [54.86846, -2.510229]], [[54.868283, -2.510125], [54.868208, -2.510036]], [[54.868142, -2.509927], [54.868077, -2.509809]], [[54.868077, -2.509809], [54.868002, -2.509699]], [[54.867935, -2.509593], [54.867846, -2.509511]], [[54.86777, -2.509394], [54.867696, -2.509304]], [[54.867696, -2.509304], [54.867615, -2.509209]], [[54.867615, -2.509209], [54.867532, -2.509122]], [[54.867532, -2.509122], [54.86746, -2.509002]], [[54.86746, -2.509002], [54.867394, -2.50888]], [[54.867394, -2.50888], [54.867347, -2.508736]], [[54.867311, -2.508593], [54.867268, -2.508441]], [[54.867268, -2.508441], [54.86722, -2.508299]], [[54.86722, -2.508299], [54.867178, -2.508151]], [[54.867178, -2.508151], [54.86713, -2.508013]], [[54.86713, -2.508013], [54.867064, -2.507878]], [[54.866935, -2.507642], [54.86688, -2.507514]], [[54.86688, -2.507514], [54.866818, -2.507387]], [[54.866818, -2.507387], [54.866767, -2.507245]], [[54.866709, -2.507124], [54.866655, -2.507]], [[54.866655, -2.507], [54.866598, -2.506879]], [[54.866598, -2.506879], [54.866543, -2.506747]], [[54.866482, -2.506603], [54.866421, -2.506473]], [[54.866421, -2.506473], [54.866363, -2.506354]], [[54.866293, -2.506231], [54.866228, -2.506106]], [[54.866228, -2.506106], [54.866168, -2.505987]], [[54.866168, -2.505987], [54.866099, -2.50586]], [[54.866099, -2.50586], [54.866029, -2.50575]], [[54.866029, -2.50575], [54.865978, -2.505619]], [[54.865978, -2.505619], [54.865931, -2.505483]], [[54.865931, -2.505483], [54.865881, -2.505324]], [[54.865773, -2.505018], [54.865711, -2.504885]], [[54.865711, -2.504885], [54.865668, -2.504743]], [[54.865668, -2.504743], [54.865653, -2.504581]], [[54.865653, -2.504581], [54.865652, -2.5044]], [[54.865679, -2.504078], [54.865715, -2.503927]], [[54.865715, -2.503927], [54.865756, -2.503782]], [[54.865756, -2.503782], [54.8658, -2.503641]], [[54.8658, -2.503641], [54.865835, -2.503495]], [[54.865835, -2.503495], [54.865875, -2.503353]], [[54.865642, -2.502907], [54.865562, -2.502796]], [[54.865562, -2.502796], [54.865492, -2.502683]], [[54.865423, -2.502556], [54.86535, -2.502447]], [[54.86535, -2.502447], [54.865262, -2.502364]], [[54.865262, -2.502364], [54.865185, -2.502279]], [[54.864582, -2.501462], [54.864497, -2.501374]], [[54.864497, -2.501374], [54.864417, -2.501285]], [[54.864417, -2.501285], [54.864327, -2.50121]], [[54.864327, -2.50121], [54.864243, -2.501146]], [[54.864243, -2.501146], [54.86415, -2.501083]], [[54.86415, -2.501083], [54.864055, -2.501037]], [[54.863962, -2.501002], [54.86387, -2.500958]], [[54.863773, -2.50091], [54.863681, -2.500852]], [[54.863681, -2.500852], [54.863586, -2.500805]], [[54.86341, -2.500697], [54.863324, -2.500638]], [[54.863324, -2.500638], [54.863235, -2.500583]], [[54.863235, -2.500583], [54.86316, -2.500498]], [[54.86316, -2.500498], [54.863078, -2.500421]], [[54.862992, -2.500345], [54.862902, -2.500256]], [[54.862902, -2.500256], [54.862815, -2.500157]], [[54.862379, -2.499807], [54.862297, -2.499735]], [[54.862297, -2.499735], [54.862215, -2.499645]], [[54.862215, -2.499645], [54.862122, -2.499568]], [[54.862122, -2.499568], [54.862038, -2.499503]], [[54.862038, -2.499503], [54.861948, -2.499435]], [[54.861948, -2.499435], [54.861863, -2.49936]], [[54.861683, -2.499198], [54.861593, -2.499135]], [[54.861503, -2.499056], [54.861426, -2.498956]], [[54.861426, -2.498956], [54.861355, -2.498846]], [[54.860831, -2.498157], [54.860786, -2.498022]], [[54.860786, -2.498022], [54.860714, -2.497911]], [[54.860542, -2.497741], [54.860468, -2.497631]], [[54.860468, -2.497631], [54.860385, -2.497509]], [[54.860292, -2.497456], [54.860207, -2.497372]], [[54.860207, -2.497372], [54.860131, -2.497274]], [[54.860131, -2.497274], [54.86006, -2.497171]], [[54.86006, -2.497171], [54.859989, -2.497054]], [[54.859989, -2.497054], [54.859923, -2.49693]], [[54.859923, -2.49693], [54.859854, -2.496814]], [[54.859854, -2.496814], [54.859788, -2.496702]], [[54.859788, -2.496702], [54.859744, -2.496552]], [[54.859744, -2.496552], [54.859693, -2.496409]], [[54.859693, -2.496409], [54.859637, -2.496287]], [[54.859637, -2.496287], [54.859594, -2.496128]], [[54.859594, -2.496128], [54.859538, -2.495999]], [[54.859538, -2.495999], [54.859489, -2.495855]], [[54.859489, -2.495855], [54.859439, -2.495706]], [[54.859439, -2.495706], [54.859396, -2.495556]], [[54.859396, -2.495556], [54.859343, -2.495411]], [[54.859343, -2.495411], [54.859286, -2.495286]], [[54.859286, -2.495286], [54.859227, -2.495158]], [[54.859227, -2.495158], [54.859155, -2.495044]], [[54.859155, -2.495044], [54.859081, -2.494951]], [[54.859081, -2.494951], [54.858982, -2.494923]], [[54.858982, -2.494923], [54.858905, -2.4948]], [[54.858905, -2.4948], [54.858829, -2.494713]], [[54.85847, -2.493516], [54.858449, -2.493357]], [[54.858383, -2.492755], [54.858362, -2.492597]], [[54.858362, -2.492597], [54.858345, -2.492427]], [[54.858345, -2.492427], [54.858325, -2.492271]], [[54.858287, -2.492122], [54.858256, -2.491962]], [[54.858238, -2.491638], [54.858244, -2.491472]], [[54.858244, -2.491472], [54.858253, -2.491311]], [[54.858253, -2.491311], [54.858231, -2.491148]], [[54.858231, -2.491148], [54.858186, -2.490997]], [[54.858186, -2.490997], [54.858151, -2.490849]], [[54.856984, -2.489332], [54.856911, -2.489227]], [[54.856911, -2.489227], [54.856833, -2.489115]], [[54.856833, -2.489115], [54.856752, -2.489019]], [[54.856752, -2.489019], [54.856672, -2.488934]], [[54.856672, -2.488934], [54.856591, -2.488846]], [[54.856591, -2.488846], [54.856522, -2.488727]], [[54.856522, -2.488727], [54.85647, -2.488581]], [[54.85647, -2.488581], [54.856418, -2.488433]], [[54.856293, -2.488177], [54.856219, -2.488083]], [[54.855765, -2.48818], [54.85568, -2.488267]], [[54.85568, -2.488267], [54.855591, -2.48835]], [[54.855591, -2.48835], [54.855507, -2.48844]], [[54.855507, -2.48844], [54.855428, -2.488518]], [[54.855428, -2.488518], [54.855353, -2.488606]], [[54.855353, -2.488606], [54.85527, -2.488693]], [[54.85527, -2.488693], [54.855203, -2.488806]], [[54.855203, -2.488806], [54.855132, -2.48891]], [[54.855132, -2.48891], [54.855054, -2.488998]], [[54.854871, -2.489052], [54.854775, -2.48906]], [[54.854775, -2.48906], [54.854677, -2.48909]], [[54.854677, -2.48909], [54.854584, -2.489098]], [[54.854584, -2.489098], [54.854495, -2.489147]], [[54.853704, -2.489268], [54.853636, -2.489148]], [[54.853636, -2.489148], [54.853579, -2.489003]], [[54.853579, -2.489003], [54.853526, -2.488875]], [[54.853526, -2.488875], [54.853469, -2.48875]], [[54.853469, -2.48875], [54.853413, -2.488627]], [[54.853274, -2.488392], [54.853191, -2.488325]], [[54.853191, -2.488325], [54.853109, -2.488237]], [[54.852292, -2.486554], [54.852224, -2.486437]], [[54.852112, -2.486175], [54.852054, -2.486044]], [[54.851414, -2.486085], [54.851324, -2.486148]], [[54.851324, -2.486148], [54.851233, -2.486217]], [[54.849959, -2.48443], [54.849885, -2.484318]], [[54.84919, -2.483566], [54.849097, -2.483509]], [[54.848627, -2.482994], [54.848576, -2.482853]], [[54.84712, -2.481107], [54.847051, -2.480978]], [[54.847051, -2.480978], [54.84698, -2.480862]], [[54.846912, -2.48076], [54.846841, -2.480656]], [[54.846618, -2.480332], [54.846553, -2.480222]], [[54.846553, -2.480222], [54.846485, -2.480118]], [[54.845129, -2.479302], [54.845041, -2.47926]], [[54.845041, -2.47926], [54.844951, -2.479204]], [[54.844951, -2.479204], [54.844859, -2.479163]], [[54.844342, -2.478873], [54.844251, -2.478829]], [[54.84398, -2.478678], [54.843886, -2.478663]], [[54.843886, -2.478663], [54.843792, -2.478636]], [[54.843792, -2.478636], [54.843704, -2.478682]], [[54.843704, -2.478682], [54.843627, -2.478761]], [[54.843462, -2.478309], [54.843447, -2.478121]], [[54.843422, -2.477636], [54.84339, -2.47748]], [[54.843228, -2.477327], [54.843136, -2.477256]], [[54.843136, -2.477256], [54.843052, -2.477198]], [[54.841955, -2.477051], [54.841854, -2.477049]], [[54.841854, -2.477049], [54.841763, -2.47699]], [[54.841763, -2.47699], [54.841674, -2.476916]], [[54.841674, -2.476916], [54.84158, -2.476913]], [[54.84158, -2.476913], [54.841488, -2.476899]], [[54.84111, -2.476796], [54.841016, -2.476768]], [[54.840616, -2.476679], [54.840525, -2.476633]], [[54.840525, -2.476633], [54.840435, -2.476621]], [[54.839885, -2.476529], [54.839782, -2.476535]], [[54.839782, -2.476535], [54.839681, -2.476504]], [[54.839206, -2.476405], [54.839112, -2.476407]], [[54.837891, -2.475526], [54.8378, -2.475526]], [[54.8378, -2.475526], [54.837703, -2.475562]], [[54.837232, -2.475618], [54.837137, -2.475634]], [[54.837137, -2.475634], [54.837035, -2.475657]], [[54.837035, -2.475657], [54.836944, -2.475631]], [[54.836944, -2.475631], [54.836848, -2.47561]], [[54.836848, -2.47561], [54.836756, -2.475584]], [[54.83527, -2.475007], [54.835201, -2.474886]], [[54.835201, -2.474886], [54.835134, -2.474764]], [[54.83507, -2.47463], [54.83501, -2.474495]], [[54.83501, -2.474495], [54.834941, -2.474372]], [[54.834941, -2.474372], [54.834869, -2.474248]], [[54.834869, -2.474248], [54.834804, -2.474123]], [[54.834804, -2.474123], [54.83474, -2.474001]], [[54.83474, -2.474001], [54.834675, -2.473864]], [[54.834675, -2.473864], [54.83461, -2.47375]], [[54.83461, -2.47375], [54.834545, -2.473623]], [[54.834545, -2.473623], [54.834477, -2.473492]], [[54.834477, -2.473492], [54.834415, -2.473373]], [[54.834415, -2.473373], [54.834354, -2.47324]], [[54.834354, -2.47324], [54.83429, -2.473129]], [[54.83429, -2.473129], [54.834222, -2.473025]], [[54.834222, -2.473025], [54.834158, -2.472904]], [[54.834158, -2.472904], [54.834098, -2.472781]], [[54.834098, -2.472781], [54.834042, -2.472652]], [[54.834042, -2.472652], [54.833981, -2.472534]], [[54.833981, -2.472534], [54.833924, -2.472411]], [[54.833924, -2.472411], [54.833854, -2.472287]], [[54.833854, -2.472287], [54.83379, -2.472162]], [[54.83379, -2.472162], [54.833737, -2.472032]], [[54.833737, -2.472032], [54.833675, -2.471913]], [[54.833558, -2.471661], [54.833488, -2.471546]], [[54.833518, -2.471859], [54.833565, -2.471997]], [[54.834048, -2.466867], [54.834108, -2.466984]], [[54.834108, -2.466984], [54.83417, -2.467123]], [[54.83417, -2.467123], [54.834229, -2.467244]], [[54.834229, -2.467244], [54.834299, -2.467365]], [[54.834299, -2.467365], [54.834357, -2.467485]], [[54.834357, -2.467485], [54.834423, -2.467618]], [[54.834423, -2.467618], [54.834503, -2.467717]], [[54.834503, -2.467717], [54.83457, -2.467837]], [[54.83457, -2.467837], [54.834639, -2.467949]], [[54.834639, -2.467949], [54.834711, -2.468062]], [[54.834711, -2.468062], [54.834773, -2.468187]], [[54.834773, -2.468187], [54.834835, -2.468326]], [[54.834835, -2.468326], [54.834906, -2.468447]], [[54.834906, -2.468447], [54.834987, -2.468547]], [[54.834987, -2.468547], [54.835044, -2.468685]], [[54.835044, -2.468685], [54.8351, -2.468817]], [[54.835162, -2.468956], [54.835226, -2.469086]], [[54.835226, -2.469086], [54.835295, -2.469196]], [[54.835295, -2.469196], [54.835234, -2.469062]], [[54.835158, -2.468971], [54.835113, -2.468828]], [[54.835113, -2.468828], [54.835037, -2.468716]], [[54.835037, -2.468716], [54.834966, -2.468595]], [[54.834966, -2.468595], [54.834903, -2.468478]], [[54.834771, -2.468231], [54.834701, -2.468112]], [[54.834701, -2.468112], [54.834638, -2.467989]], [[54.834638, -2.467989], [54.834571, -2.467868]], [[54.834571, -2.467868], [54.834504, -2.467753]], [[54.834437, -2.467636], [54.834363, -2.467521]], [[54.834363, -2.467521], [54.834299, -2.467409]], [[54.834299, -2.467409], [54.834227, -2.467288]], [[54.834227, -2.467288], [54.834166, -2.46717]], [[54.834166, -2.46717], [54.834099, -2.467041]], [[54.834099, -2.467041], [54.834031, -2.466931]], [[54.834031, -2.466931], [54.833965, -2.466821]], [[54.833965, -2.466821], [54.833891, -2.466703]], [[54.833891, -2.466703], [54.833823, -2.466585]], [[54.833823, -2.466585], [54.833755, -2.466464]], [[54.833755, -2.466464], [54.83369, -2.466346]], [[54.83369, -2.466346], [54.83362, -2.46623]], [[54.83362, -2.46623], [54.833549, -2.466121]], [[54.833549, -2.466121], [54.833483, -2.466]], [[54.833483, -2.466], [54.83342, -2.46588]], [[54.83342, -2.46588], [54.833355, -2.465764]], [[54.833287, -2.465643], [54.833211, -2.465541]], [[54.833211, -2.465541], [54.833141, -2.465431]], [[54.833141, -2.465431], [54.833073, -2.465314]], [[54.833073, -2.465314], [54.832998, -2.465196]], [[54.832998, -2.465196], [54.832933, -2.465071]], [[54.832864, -2.464947], [54.832793, -2.464824]], [[54.832793, -2.464824], [54.832718, -2.464713]], [[54.832718, -2.464713], [54.832655, -2.464599]], [[54.832655, -2.464599], [54.832593, -2.46448]], [[54.832593, -2.46448], [54.832528, -2.46435]], [[54.832528, -2.46435], [54.832454, -2.464243]], [[54.832454, -2.464243], [54.832392, -2.46413]], [[54.832323, -2.464007], [54.832258, -2.463896]], [[54.832258, -2.463896], [54.83219, -2.463793]], [[54.83219, -2.463793], [54.832123, -2.463684]], [[54.832123, -2.463684], [54.832047, -2.463569]], [[54.832047, -2.463569], [54.831982, -2.463459]], [[54.831982, -2.463459], [54.831911, -2.463333]], [[54.831911, -2.463333], [54.831851, -2.463216]], [[54.831574, -2.462757], [54.8315, -2.462638]], [[54.8315, -2.462638], [54.831432, -2.462532]], [[54.831432, -2.462532], [54.831357, -2.46242]], [[54.831357, -2.46242], [54.831289, -2.462315]], [[54.831289, -2.462315], [54.831225, -2.462181]], [[54.831225, -2.462181], [54.831158, -2.462065]], [[54.830901, -2.461575], [54.83083, -2.461461]], [[54.83083, -2.461461], [54.830757, -2.461352]], [[54.830757, -2.461352], [54.83069, -2.461245]], [[54.83069, -2.461245], [54.830622, -2.461139]], [[54.830622, -2.461139], [54.830553, -2.461021]], [[54.830553, -2.461021], [54.830489, -2.460905]], [[54.830489, -2.460905], [54.830419, -2.460789]], [[54.830419, -2.460789], [54.830347, -2.460673]], [[54.830347, -2.460673], [54.83028, -2.460562]], [[54.83028, -2.460562], [54.830208, -2.460446]], [[54.830208, -2.460446], [54.830147, -2.460318]], [[54.830147, -2.460318], [54.830077, -2.460195]], [[54.830077, -2.460195], [54.83001, -2.460084]], [[54.829947, -2.45995], [54.829886, -2.459834]], [[54.829886, -2.459834], [54.829812, -2.459728]], [[54.829812, -2.459728], [54.829739, -2.459611]], [[54.829739, -2.459611], [54.829674, -2.459491]], [[54.829674, -2.459491], [54.829607, -2.459367]], [[54.829607, -2.459367], [54.829542, -2.459252]], [[54.829542, -2.459252], [54.829481, -2.459121]], [[54.829411, -2.458985], [54.829337, -2.45886]], [[54.829146, -2.458466], [54.829092, -2.45832]], [[54.829092, -2.45832], [54.82903, -2.458198]], [[54.828657, -2.457262], [54.828605, -2.457129]], [[54.828436, -2.456697], [54.828386, -2.456558]], [[54.828386, -2.456558], [54.828333, -2.45642]], [[54.828333, -2.45642], [54.828286, -2.456261]], [[54.828286, -2.456261], [54.82823, -2.456131]], [[54.82823, -2.456131], [54.82818, -2.455976]], [[54.82818, -2.455976], [54.828136, -2.455839]], [[54.828136, -2.455839], [54.828088, -2.455703]], [[54.828088, -2.455703], [54.828059, -2.455541]], [[54.828059, -2.455541], [54.828018, -2.45538]], [[54.82794, -2.455052], [54.827901, -2.454911]], [[54.827772, -2.454477], [54.827731, -2.454314]], [[54.827731, -2.454314], [54.827683, -2.454162]], [[54.827683, -2.454162], [54.827646, -2.454016]], [[54.827579, -2.453696], [54.827523, -2.45356]], [[54.827523, -2.45356], [54.827476, -2.453413]], [[54.827476, -2.453413], [54.827428, -2.453262]], [[54.827428, -2.453262], [54.827374, -2.453135]], [[54.827374, -2.453135], [54.827336, -2.452977]], [[54.827336, -2.452977], [54.827281, -2.452827]], [[54.827233, -2.452683], [54.827183, -2.45254]], [[54.827183, -2.45254], [54.827134, -2.452408]], [[54.827134, -2.452408], [54.827081, -2.452276]], [[54.827081, -2.452276], [54.827017, -2.452141]], [[54.827017, -2.452141], [54.826962, -2.451997]], [[54.826962, -2.451997], [54.826905, -2.451877]], [[54.826905, -2.451877], [54.82685, -2.451734]], [[54.82679, -2.451601], [54.826739, -2.451466]], [[54.826739, -2.451466], [54.826682, -2.451339]], [[54.826682, -2.451339], [54.826617, -2.451212]], [[54.826617, -2.451212], [54.826549, -2.451099]], [[54.826485, -2.450965], [54.82643, -2.450832]], [[54.82643, -2.450832], [54.826366, -2.450719]], [[54.826366, -2.450719], [54.826304, -2.450604]], [[54.826246, -2.450484], [54.826179, -2.450364]], [[54.825802, -2.449813], [54.82574, -2.449686]], [[54.82574, -2.449686], [54.82567, -2.449573]], [[54.82567, -2.449573], [54.825594, -2.449482]], [[54.825594, -2.449482], [54.825512, -2.449372]], [[54.825512, -2.449372], [54.825429, -2.449297]], [[54.825429, -2.449297], [54.825339, -2.449246]], [[54.825339, -2.449246], [54.825253, -2.449177]], [[54.825253, -2.449177], [54.825171, -2.449083]], [[54.825171, -2.449083], [54.825093, -2.448989]], [[54.825093, -2.448989], [54.825019, -2.448865]], [[54.824934, -2.448809], [54.824841, -2.448725]], [[54.824751, -2.448654], [54.824664, -2.448591]], [[54.824664, -2.448591], [54.824577, -2.448521]], [[54.824577, -2.448521], [54.824488, -2.448453]], [[54.824488, -2.448453], [54.824401, -2.448399]], [[54.824401, -2.448399], [54.824321, -2.448323]], [[54.824321, -2.448323], [54.824231, -2.44824]], [[54.824231, -2.44824], [54.824141, -2.44819]], [[54.824141, -2.44819], [54.824055, -2.448113]], [[54.823977, -2.448025], [54.823893, -2.44795]], [[54.823893, -2.44795], [54.823802, -2.447887]], [[54.823802, -2.447887], [54.823713, -2.447807]], [[54.823713, -2.447807], [54.82363, -2.44773]], [[54.82363, -2.44773], [54.823542, -2.447652]], [[54.823542, -2.447652], [54.823455, -2.447612]], [[54.823455, -2.447612], [54.823362, -2.447555]], [[54.823362, -2.447555], [54.823273, -2.447483]], [[54.823186, -2.447407], [54.823098, -2.447324]], [[54.823098, -2.447324], [54.823007, -2.447273]], [[54.823007, -2.447273], [54.822916, -2.447226]], [[54.822916, -2.447226], [54.822832, -2.447141]], [[54.822832, -2.447141], [54.822744, -2.447067]], [[54.822744, -2.447067], [54.822655, -2.447]], [[54.822655, -2.447], [54.822567, -2.446925]], [[54.8223, -2.446768], [54.822219, -2.446696]], [[54.822219, -2.446696], [54.82213, -2.446616]], [[54.82213, -2.446616], [54.822048, -2.446548]], [[54.822048, -2.446548], [54.82196, -2.44648]], [[54.82196, -2.44648], [54.821869, -2.446412]], [[54.821869, -2.446412], [54.821775, -2.446354]], [[54.821775, -2.446354], [54.821694, -2.446279]], [[54.821694, -2.446279], [54.821616, -2.446191]], [[54.821616, -2.446191], [54.821537, -2.446117]], [[54.821348, -2.446031], [54.821262, -2.445963]], [[54.821262, -2.445963], [54.821174, -2.445896]], [[54.821174, -2.445896], [54.821079, -2.44583]], [[54.820552, -2.445428], [54.820469, -2.445368]], [[54.820469, -2.445368], [54.820384, -2.44531]], [[54.820384, -2.44531], [54.820288, -2.445258]], [[54.820288, -2.445258], [54.820207, -2.445187]], [[54.820207, -2.445187], [54.820121, -2.445117]], [[54.820121, -2.445117], [54.820032, -2.445057]], [[54.820032, -2.445057], [54.819945, -2.444994]], [[54.81967, -2.444874], [54.819577, -2.444822]], [[54.819577, -2.444822], [54.819484, -2.444781]], [[54.81933, -2.44483], [54.81923, -2.444814]], [[54.81923, -2.444814], [54.81914, -2.444812]], [[54.81914, -2.444812], [54.819045, -2.444777]], [[54.818955, -2.444737], [54.818858, -2.444698]], [[54.818858, -2.444698], [54.818756, -2.444669]], [[54.818756, -2.444669], [54.818657, -2.444664]], [[54.818372, -2.444642], [54.818272, -2.444635]], [[54.818272, -2.444635], [54.818171, -2.444625]], [[54.818171, -2.444625], [54.818077, -2.444598]], [[54.817805, -2.444453], [54.817716, -2.444374]], [[54.817716, -2.444374], [54.81762, -2.444341]], [[54.81762, -2.444341], [54.817527, -2.44429]], [[54.817089, -2.443928], [54.816995, -2.443904]], [[54.816995, -2.443904], [54.81691, -2.443831]], [[54.816195, -2.443389], [54.816113, -2.443321]], [[54.816113, -2.443321], [54.816028, -2.44326]], [[54.816028, -2.44326], [54.81594, -2.443181]], [[54.81594, -2.443181], [54.815851, -2.443096]], [[54.815851, -2.443096], [54.815765, -2.443006]], [[54.815765, -2.443006], [54.815674, -2.442931]], [[54.815674, -2.442931], [54.815579, -2.442862]], [[54.815579, -2.442862], [54.815493, -2.442806]], [[54.815493, -2.442806], [54.815404, -2.442726]], [[54.815404, -2.442726], [54.815321, -2.442667]], [[54.815321, -2.442667], [54.815234, -2.442613]], [[54.815234, -2.442613], [54.815144, -2.442559]], [[54.815144, -2.442559], [54.81505, -2.442521]], [[54.814963, -2.442442], [54.814906, -2.442301]], [[54.814873, -2.44198], [54.814776, -2.441957]], [[54.814776, -2.441957], [54.814686, -2.441899]], [[54.814686, -2.441899], [54.814611, -2.441796]], [[54.814611, -2.441796], [54.814538, -2.441679]], [[54.813921, -2.441442], [54.81382, -2.441493]], [[54.813625, -2.441536], [54.813526, -2.441586]], [[54.813526, -2.441586], [54.81343, -2.441592]], [[54.813343, -2.441652], [54.813254, -2.44169]], [[54.813254, -2.44169], [54.813168, -2.441635]], [[54.813168, -2.441635], [54.813089, -2.441727]], [[54.81284, -2.441557], [54.812754, -2.441501]], [[54.812679, -2.441394], [54.812586, -2.441389]], [[54.812308, -2.441421], [54.81221, -2.441463]], [[54.81221, -2.441463], [54.812116, -2.441505]], [[54.811733, -2.441625], [54.811639, -2.441677]], [[54.81154, -2.441676], [54.811444, -2.441704]], [[54.811444, -2.441704], [54.811368, -2.441808]], [[54.811273, -2.441809], [54.81118, -2.441857]], [[54.811531, -2.441675], [54.811437, -2.441681]], [[54.811313, -2.441701], [54.811212, -2.441709]], [[54.811212, -2.441709], [54.811114, -2.441735]], [[54.811114, -2.441735], [54.811027, -2.441787]], [[54.811027, -2.441787], [54.810954, -2.441893]], [[54.810954, -2.441893], [54.810865, -2.441954]], [[54.81093, -2.441973], [54.810835, -2.442019]], [[54.810835, -2.442019], [54.810745, -2.442027]], [[54.810745, -2.442027], [54.810657, -2.442079]], [[54.810657, -2.442079], [54.810559, -2.44206]], [[54.810559, -2.44206], [54.810462, -2.442097]], [[54.810462, -2.442097], [54.810368, -2.442126]], [[54.810368, -2.442126], [54.810268, -2.442158]], [[54.810268, -2.442158], [54.810175, -2.442191]], [[54.810175, -2.442191], [54.810086, -2.442227]], [[54.810086, -2.442227], [54.809988, -2.442273]], [[54.809988, -2.442273], [54.8099, -2.442314]], [[54.8099, -2.442314], [54.809803, -2.442344]], [[54.809803, -2.442344], [54.809713, -2.44237]], [[54.809108, -2.442161], [54.80901, -2.442145]], [[54.808632, -2.442066], [54.808534, -2.442073]], [[54.808534, -2.442073], [54.808436, -2.442056]], [[54.808436, -2.442056], [54.808343, -2.442054]], [[54.808343, -2.442054], [54.808251, -2.442055]], [[54.807961, -2.442033], [54.807872, -2.442003]], [[54.807138, -2.441906], [54.807043, -2.441904]], [[54.807043, -2.441904], [54.806952, -2.441889]], [[54.806952, -2.441889], [54.806858, -2.441879]], [[54.806858, -2.441879], [54.806767, -2.441886]], [[54.806767, -2.441886], [54.806667, -2.441883]], [[54.806667, -2.441883], [54.806571, -2.441891]], [[54.806571, -2.441891], [54.806468, -2.441888]], [[54.806468, -2.441888], [54.806374, -2.441896]], [[54.806374, -2.441896], [54.806279, -2.441895]], [[54.806279, -2.441895], [54.806184, -2.441877]], [[54.806184, -2.441877], [54.806087, -2.441859]], [[54.806087, -2.441859], [54.805991, -2.441872]], [[54.805991, -2.441872], [54.805896, -2.441908]], [[54.805896, -2.441908], [54.805802, -2.441938]], [[54.805802, -2.441938], [54.805706, -2.441923]], [[54.805706, -2.441923], [54.805609, -2.441907]], [[54.805609, -2.441907], [54.805516, -2.441927]], [[54.805516, -2.441927], [54.805421, -2.441916]], [[54.805421, -2.441916], [54.805328, -2.441872]], [[54.805135, -2.441845], [54.805038, -2.441877]], [[54.805038, -2.441877], [54.804946, -2.441908]], [[54.804946, -2.441908], [54.804846, -2.441898]], [[54.804846, -2.441898], [54.804747, -2.441879]], [[54.804747, -2.441879], [54.804659, -2.441847]], [[54.804659, -2.441847], [54.804565, -2.441835]], [[54.804565, -2.441835], [54.804468, -2.44181]], [[54.804468, -2.44181], [54.80437, -2.441784]], [[54.80437, -2.441784], [54.804272, -2.441754]], [[54.804272, -2.441754], [54.804176, -2.441761]], [[54.804176, -2.441761], [54.80408, -2.441764]], [[54.80408, -2.441764], [54.803984, -2.441783]], [[54.803984, -2.441783], [54.803894, -2.441736]], [[54.803894, -2.441736], [54.803798, -2.441732]], [[54.803798, -2.441732], [54.803704, -2.44171]], [[54.803704, -2.44171], [54.803608, -2.441682]], [[54.803608, -2.441682], [54.803515, -2.441654]], [[54.803304, -2.441824], [54.80322, -2.441886]], [[54.80322, -2.441886], [54.803123, -2.441921]], [[54.802729, -2.441948], [54.80263, -2.441918]], [[54.80263, -2.441918], [54.802535, -2.441909]], [[54.802535, -2.441909], [54.802439, -2.441884]], [[54.802246, -2.441814], [54.802154, -2.441776]], [[54.802154, -2.441776], [54.802059, -2.441781]], [[54.801961, -2.441756], [54.801868, -2.441728]], [[54.801868, -2.441728], [54.80177, -2.441701]], [[54.80177, -2.441701], [54.801672, -2.441677]], [[54.800857, -2.441345], [54.800763, -2.441299]], [[54.800763, -2.441299], [54.800673, -2.441243]], [[54.800673, -2.441243], [54.800579, -2.441205]], [[54.800579, -2.441205], [54.800489, -2.441177]], [[54.800489, -2.441177], [54.800398, -2.441159]], [[54.799738, -2.440916], [54.799644, -2.440905]], [[54.799644, -2.440905], [54.799553, -2.440927]], [[54.799553, -2.440927], [54.799459, -2.440908]], [[54.799459, -2.440908], [54.799365, -2.440905]], [[54.799365, -2.440905], [54.799274, -2.440933]], [[54.799274, -2.440933], [54.799176, -2.440971]], [[54.799176, -2.440971], [54.799086, -2.44104]], [[54.799086, -2.44104], [54.798995, -2.441108]], [[54.798995, -2.441108], [54.798906, -2.441146]], [[54.798906, -2.441146], [54.798818, -2.441202]], [[54.798818, -2.441202], [54.798733, -2.441266]], [[54.798733, -2.441266], [54.79866, -2.441365]], [[54.79866, -2.441365], [54.798569, -2.441405]], [[54.79848, -2.441451], [54.798386, -2.441498]], [[54.798386, -2.441498], [54.798292, -2.441536]], [[54.798292, -2.441536], [54.798191, -2.44155]], [[54.798191, -2.44155], [54.7981, -2.441512]], [[54.7981, -2.441512], [54.798021, -2.441434]], [[54.798021, -2.441434], [54.797932, -2.441395]], [[54.797417, -2.441231], [54.797321, -2.441231]], [[54.797321, -2.441231], [54.797221, -2.441231]], [[54.797221, -2.441231], [54.797129, -2.441235]], [[54.797129, -2.441235], [54.79703, -2.441237]], [[54.79703, -2.441237], [54.796932, -2.441234]], [[54.796932, -2.441234], [54.796839, -2.441237]], [[54.796748, -2.441237], [54.796653, -2.441246]], [[54.796653, -2.441246], [54.796553, -2.441259]], [[54.796351, -2.441274], [54.796258, -2.441295]], [[54.796258, -2.441295], [54.79616, -2.441322]], [[54.79616, -2.441322], [54.796061, -2.441336]], [[54.79587, -2.441364], [54.795777, -2.441393]], [[54.795497, -2.441456], [54.795398, -2.441442]], [[54.795398, -2.441442], [54.795304, -2.441455]], [[54.795304, -2.441455], [54.795227, -2.441544]], [[54.795227, -2.441544], [54.795135, -2.44158]], [[54.795135, -2.44158], [54.795041, -2.441615]], [[54.795041, -2.441615], [54.794947, -2.441655]], [[54.794947, -2.441655], [54.79485, -2.441692]], [[54.79485, -2.441692], [54.794759, -2.4417]], [[54.794759, -2.4417], [54.794661, -2.441722]], [[54.794661, -2.441722], [54.794566, -2.441739]], [[54.794566, -2.441739], [54.794467, -2.441739]], [[54.794018, -2.441837], [54.793919, -2.441848]], [[54.793919, -2.441848], [54.793827, -2.441833]], [[54.793827, -2.441833], [54.793732, -2.441825]], [[54.793732, -2.441825], [54.79364, -2.441835]], [[54.79346, -2.441827], [54.79337, -2.441817]], [[54.79337, -2.441817], [54.793275, -2.441827]], [[54.793091, -2.441905], [54.792998, -2.44196]], [[54.792909, -2.44202], [54.792819, -2.442058]], [[54.79248, -2.441869], [54.792379, -2.441872]], [[54.792379, -2.441872], [54.792283, -2.441897]], [[54.792046, -2.442085], [54.791957, -2.44216]], [[54.791957, -2.44216], [54.791873, -2.442219]], [[54.791692, -2.442344], [54.791605, -2.442391]], [[54.791605, -2.442391], [54.791516, -2.442413]], [[54.791516, -2.442413], [54.791418, -2.442451]], [[54.791418, -2.442451], [54.79133, -2.442496]], [[54.79133, -2.442496], [54.791234, -2.442543]], [[54.791234, -2.442543], [54.791143, -2.442579]], [[54.791143, -2.442579], [54.791052, -2.442607]], [[54.790958, -2.442633], [54.790863, -2.442644]], [[54.790863, -2.442644], [54.790769, -2.442677]], [[54.790769, -2.442677], [54.790677, -2.442676]], [[54.790677, -2.442676], [54.790582, -2.442718]], [[54.790582, -2.442718], [54.79049, -2.442755]], [[54.79049, -2.442755], [54.7904, -2.442769]], [[54.790214, -2.442796], [54.790123, -2.442785]], [[54.790123, -2.442785], [54.790023, -2.442793]], [[54.790023, -2.442793], [54.789927, -2.442804]], [[54.789927, -2.442804], [54.78983, -2.442821]], [[54.78983, -2.442821], [54.789737, -2.442817]], [[54.789737, -2.442817], [54.789646, -2.442813]], [[54.789646, -2.442813], [54.789546, -2.442813]], [[54.789546, -2.442813], [54.789445, -2.442824]], [[54.789445, -2.442824], [54.789346, -2.442841]], [[54.789346, -2.442841], [54.789248, -2.442855]], [[54.78915, -2.442867], [54.789054, -2.442856]], [[54.789054, -2.442856], [54.788962, -2.442872]], [[54.788338, -2.44282], [54.788243, -2.442795]], [[54.788243, -2.442795], [54.788141, -2.442776]], [[54.788141, -2.442776], [54.788048, -2.442739]], [[54.788048, -2.442739], [54.787957, -2.442694]], [[54.787957, -2.442694], [54.787867, -2.44267]], [[54.787867, -2.44267], [54.78777, -2.442635]], [[54.78777, -2.442635], [54.787678, -2.442607]], [[54.787678, -2.442607], [54.787579, -2.442583]], [[54.787579, -2.442583], [54.787483, -2.442557]], [[54.787095, -2.442078], [54.787111, -2.441915]], [[54.787111, -2.441915], [54.787156, -2.441763]], [[54.786662, -2.441215], [54.786572, -2.441173]], [[54.786479, -2.441134], [54.786386, -2.441093]], [[54.786386, -2.441093], [54.786297, -2.441038]], [[54.786297, -2.441038], [54.786213, -2.440973]], [[54.786213, -2.440973], [54.786125, -2.440918]], [[54.785852, -2.440732], [54.785765, -2.440661]], [[54.785765, -2.440661], [54.785682, -2.440583]], [[54.785682, -2.440583], [54.785588, -2.440531]], [[54.785588, -2.440531], [54.785504, -2.440458]], [[54.785181, -2.439654], [54.785133, -2.439506]], [[54.785133, -2.439506], [54.785091, -2.439364]], [[54.785091, -2.439364], [54.785051, -2.439221]], [[54.785051, -2.439221], [54.784989, -2.439084]], [[54.784772, -2.438711], [54.784688, -2.43862]], [[54.784688, -2.43862], [54.784608, -2.438524]], [[54.784608, -2.438524], [54.784548, -2.438393]], [[54.784548, -2.438393], [54.784513, -2.438243]], [[54.784513, -2.438243], [54.784474, -2.438085]], [[54.784474, -2.438085], [54.784438, -2.43793]], [[54.784438, -2.43793], [54.784391, -2.437782]], [[54.784391, -2.437782], [54.78433, -2.43766]], [[54.78433, -2.43766], [54.784247, -2.437575]], [[54.783891, -2.436394], [54.783841, -2.436253]], [[54.783841, -2.436253], [54.783781, -2.436132]], [[54.783781, -2.436132], [54.783729, -2.435992]], [[54.783443, -2.435175], [54.783398, -2.43503]], [[54.783398, -2.43503], [54.783349, -2.434886]], [[54.783349, -2.434886], [54.783298, -2.434748]], [[54.783078, -2.434218], [54.783038, -2.434072]], [[54.783038, -2.434072], [54.782991, -2.433933]], [[54.782991, -2.433933], [54.782943, -2.433783]], [[54.782943, -2.433783], [54.782894, -2.433644]], [[54.782709, -2.43328], [54.782652, -2.433152]], [[54.782652, -2.433152], [54.782585, -2.433027]], [[54.782585, -2.433027], [54.78252, -2.432895]], [[54.782336, -2.432515], [54.782268, -2.432389]], [[54.782268, -2.432389], [54.782197, -2.432279]], [[54.782197, -2.432279], [54.782118, -2.432175]], [[54.782118, -2.432175], [54.782058, -2.432045]], [[54.781849, -2.431404], [54.781819, -2.431239]], [[54.781819, -2.431239], [54.781749, -2.431128]], [[54.781585, -2.430765], [54.781521, -2.430654]], [[54.781521, -2.430654], [54.781461, -2.43053]], [[54.781203, -2.429972], [54.78114, -2.429848]], [[54.780661, -2.429227], [54.780611, -2.429089]], [[54.780061, -2.427872], [54.779961, -2.427861]], [[54.779637, -2.426822], [54.779616, -2.42665]], [[54.779616, -2.42665], [54.779588, -2.4265]], [[54.77947, -2.425502], [54.779478, -2.42534]], [[54.779478, -2.42534], [54.779458, -2.425174]], [[54.779315, -2.424959], [54.77926, -2.424816]], [[54.77926, -2.424816], [54.779174, -2.424765]], [[54.779076, -2.424481], [54.779024, -2.424332]], [[54.779024, -2.424332], [54.778988, -2.424173]], [[54.778988, -2.424173], [54.778947, -2.424021]], [[54.778803, -2.423597], [54.778748, -2.423458]], [[54.778748, -2.423458], [54.778689, -2.423335]], [[54.778564, -2.422924], [54.778519, -2.422767]], [[54.778479, -2.422613], [54.778433, -2.422474]], [[54.778433, -2.422474], [54.778383, -2.42233]], [[54.778383, -2.42233], [54.77834, -2.422177]], [[54.77834, -2.422177], [54.778306, -2.422023]], [[54.778306, -2.422023], [54.778266, -2.421879]], [[54.778266, -2.421879], [54.778213, -2.421742]], [[54.778213, -2.421742], [54.778174, -2.421599]], [[54.778174, -2.421599], [54.778123, -2.421456]], [[54.777934, -2.420979], [54.777883, -2.420828]], [[54.777883, -2.420828], [54.777831, -2.420689]], [[54.777831, -2.420689], [54.777776, -2.420559]], [[54.777595, -2.419967], [54.777562, -2.419818]], [[54.777501, -2.419661], [54.77744, -2.419525]], [[54.777387, -2.419387], [54.777332, -2.41925]], [[54.777332, -2.41925], [54.777282, -2.419117]], [[54.777282, -2.419117], [54.777226, -2.418984]], [[54.777226, -2.418984], [54.77718, -2.418838]], [[54.77703, -2.418503], [54.776996, -2.418353]], [[54.776996, -2.418353], [54.776935, -2.418238]], [[54.776733, -2.417631], [54.776698, -2.417484]], [[54.776558, -2.417034], [54.776525, -2.416883]], [[54.776525, -2.416883], [54.776473, -2.416731]], [[54.776473, -2.416731], [54.776429, -2.416595]], [[54.776429, -2.416595], [54.776369, -2.416465]], [[54.776369, -2.416465], [54.776321, -2.416331]], [[54.776321, -2.416331], [54.776301, -2.416158]], [[54.776301, -2.416158], [54.776303, -2.415999]], [[54.776303, -2.415999], [54.776287, -2.415843]], [[54.775942, -2.414332], [54.775912, -2.414182]], [[54.775802, -2.413709], [54.775772, -2.413555]], [[54.775631, -2.412831], [54.775629, -2.412673]], [[54.775629, -2.412673], [54.77563, -2.412497]], [[54.77563, -2.412497], [54.775631, -2.412329]], [[54.775631, -2.412329], [54.775609, -2.412178]], [[54.775527, -2.411609], [54.775468, -2.411462]], [[54.775468, -2.411462], [54.775412, -2.411329]], [[54.775412, -2.411329], [54.775358, -2.411189]], [[54.775358, -2.411189], [54.775307, -2.411054]], [[54.775307, -2.411054], [54.775262, -2.410913]], [[54.775262, -2.410913], [54.775198, -2.410784]], [[54.774966, -2.410078], [54.774921, -2.409962]], [[54.774804, -2.409513], [54.774763, -2.409369]], [[54.774763, -2.409369], [54.774707, -2.409236]], [[54.774707, -2.409236], [54.774669, -2.409084]], [[54.774669, -2.409084], [54.774618, -2.408956]], [[54.774618, -2.408956], [54.77457, -2.408824]], [[54.77457, -2.408824], [54.774529, -2.408677]], [[54.77443, -2.408418], [54.77438, -2.408276]], [[54.77438, -2.408276], [54.774335, -2.408127]], [[54.774335, -2.408127], [54.774287, -2.407979]], [[54.774287, -2.407979], [54.774237, -2.407833]], [[54.774237, -2.407833], [54.77419, -2.407686]], [[54.77419, -2.407686], [54.774146, -2.407534]], [[54.773922, -2.406948], [54.773883, -2.406804]], [[54.773883, -2.406804], [54.773837, -2.406671]], [[54.773837, -2.406671], [54.773797, -2.406531]], [[54.77373, -2.406409], [54.773674, -2.406278]], [[54.773674, -2.406278], [54.773605, -2.406162]], [[54.773605, -2.406162], [54.773622, -2.406006]], [[54.773776, -2.405147], [54.773732, -2.405011]], [[54.773732, -2.405011], [54.773678, -2.404883]], [[54.773582, -2.40458], [54.77354, -2.40443]], [[54.77354, -2.40443], [54.77351, -2.404276]], [[54.773475, -2.404129], [54.773434, -2.403967]], [[54.773434, -2.403967], [54.773389, -2.403806]], [[54.773389, -2.403806], [54.773343, -2.403668]], [[54.773293, -2.403532], [54.773239, -2.403393]], [[54.773239, -2.403393], [54.773188, -2.403265]], [[54.773188, -2.403265], [54.773135, -2.403111]], [[54.773135, -2.403111], [54.773081, -2.402983]], [[54.773081, -2.402983], [54.773017, -2.402854]], [[54.773017, -2.402854], [54.772967, -2.402712]], [[54.772967, -2.402712], [54.772909, -2.402575]], [[54.772909, -2.402575], [54.772853, -2.402435]], [[54.772853, -2.402435], [54.772805, -2.402299]], [[54.772805, -2.402299], [54.772761, -2.402163]], [[54.772761, -2.402163], [54.772705, -2.40203]], [[54.772705, -2.40203], [54.77264, -2.40192]], [[54.772398, -2.401635], [54.772324, -2.401515]], [[54.772324, -2.401515], [54.772317, -2.401354]], [[54.772463, -2.400955], [54.772498, -2.400807]], [[54.772498, -2.400807], [54.772517, -2.400647]], [[54.772757, -2.399395], [54.772722, -2.399562]], [[54.772633, -2.399873], [54.772592, -2.400038]], [[54.772531, -2.400358], [54.772495, -2.400513]], [[54.772495, -2.400513], [54.772468, -2.400665]], [[54.772217, -2.401542], [54.772123, -2.401558]], [[54.771829, -2.401475], [54.771749, -2.401384]], [[54.77157, -2.401229], [54.771497, -2.401131]], [[54.771497, -2.401131], [54.771445, -2.401]], [[54.771403, -2.400855], [54.77135, -2.400715]], [[54.77135, -2.400715], [54.771308, -2.400555]], [[54.771308, -2.400555], [54.771277, -2.400379]], [[54.77119, -2.400067], [54.771136, -2.399938]], [[54.771136, -2.399938], [54.77107, -2.399826]], [[54.77107, -2.399826], [54.771009, -2.399701]], [[54.771009, -2.399701], [54.770944, -2.399578]], [[54.770392, -2.399222], [54.770302, -2.399199]], [[54.770302, -2.399199], [54.770211, -2.399133]], [[54.770211, -2.399133], [54.770138, -2.399025]], [[54.769997, -2.39882], [54.769932, -2.398701]], [[54.769932, -2.398701], [54.769861, -2.398592]], [[54.769861, -2.398592], [54.769792, -2.398477]], [[54.769792, -2.398477], [54.769729, -2.39836]], [[54.769657, -2.398236], [54.769587, -2.398122]], [[54.769303, -2.397658], [54.76923, -2.397537]], [[54.769006, -2.397212], [54.76892, -2.397117]], [[54.768024, -2.396734], [54.767932, -2.396719]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5999c2911d4c591637100e16959f1fa3);
        
    
            var poly_line_5fbe31f7cefeba3f0da21e6e2037c720 = L.polyline(
                [[[55.009582, -2.354721], [55.009516, -2.35485]], [[55.009516, -2.35485], [55.009455, -2.354977]], [[55.007473, -2.356488], [55.007381, -2.356459]], [[55.007144, -2.356564], [55.007062, -2.356654]], [[55.007062, -2.356654], [55.007038, -2.356817]], [[55.006958, -2.357084], [55.00687, -2.357142]], [[55.006783, -2.357218], [55.006694, -2.357283]], [[55.006694, -2.357283], [55.006607, -2.357345]], [[55.006607, -2.357345], [55.006516, -2.357404]], [[55.006516, -2.357404], [55.006433, -2.357464]], [[55.006433, -2.357464], [55.006345, -2.357533]], [[55.006263, -2.357609], [55.006182, -2.357688]], [[55.006182, -2.357688], [55.006097, -2.357747]], [[55.006097, -2.357747], [55.006001, -2.357814]], [[55.006001, -2.357814], [55.005916, -2.357909]], [[55.005916, -2.357909], [55.005865, -2.358058]], [[55.005865, -2.358058], [55.005843, -2.358214]], [[55.005843, -2.358214], [55.005837, -2.358379]], [[55.005837, -2.358379], [55.005831, -2.358537]], [[55.005842, -2.358881], [55.00583, -2.359053]], [[55.00583, -2.359053], [55.005822, -2.359212]], [[55.005822, -2.359212], [55.005805, -2.359388]], [[55.005663, -2.361077], [55.005637, -2.36124]], [[55.005637, -2.36124], [55.00562, -2.361417]], [[55.005377, -2.363738], [55.005366, -2.363904]], [[55.005366, -2.363904], [55.005372, -2.364068]], [[55.005372, -2.364068], [55.005337, -2.364214]], [[55.005337, -2.364214], [55.005337, -2.364397]], [[55.005337, -2.364397], [55.005301, -2.364544]], [[55.005176, -2.366291], [55.005171, -2.366448]], [[55.005153, -2.366762], [55.005149, -2.366924]], [[55.004765, -2.370502], [55.00472, -2.370654]], [[55.00472, -2.370654], [55.004682, -2.370817]], [[55.004682, -2.370817], [55.004648, -2.370979]], [[55.003596, -2.376882], [55.003585, -2.377042]], [[55.003585, -2.377042], [55.003579, -2.377204]], [[55.003579, -2.377204], [55.003589, -2.377372]], [[55.003589, -2.377372], [55.003584, -2.377537]], [[55.003584, -2.377537], [55.003575, -2.377707]], [[55.003575, -2.377707], [55.003564, -2.377885]], [[55.003564, -2.377885], [55.003539, -2.378062]], [[55.003539, -2.378062], [55.003508, -2.378231]], [[55.003403, -2.378501], [55.003402, -2.378661]], [[55.002892, -2.380479], [55.002856, -2.380634]], [[55.002856, -2.380634], [55.002826, -2.380787]], [[55.002826, -2.380787], [55.002804, -2.380948]], [[55.002804, -2.380948], [55.002779, -2.381102]], [[55.002779, -2.381102], [55.002762, -2.381263]], [[55.002673, -2.382581], [55.00266, -2.38274]], [[55.00266, -2.38274], [55.002636, -2.38291]], [[55.002636, -2.38291], [55.002591, -2.38307]], [[55.002591, -2.38307], [55.002557, -2.383225]], [[55.002464, -2.38369], [55.002433, -2.383838]], [[55.00235, -2.384312], [55.002324, -2.384482]], [[55.002281, -2.384808], [55.002262, -2.384979]], [[55.002262, -2.384979], [55.002253, -2.385138]], [[55.002387, -2.388953], [55.002416, -2.389123]], [[55.002345, -2.38992], [55.002341, -2.390079]], [[55.002304, -2.390489], [55.002294, -2.390647]], [[55.002207, -2.392988], [55.002199, -2.393157]], [[55.002196, -2.394163], [55.002189, -2.394336]], [[55.002272, -2.400753], [55.002262, -2.400928]], [[55.002262, -2.400928], [55.00225, -2.401096]], [[55.00225, -2.401096], [55.002238, -2.401264]], [[55.002071, -2.403272], [55.002071, -2.403432]], [[55.001884, -2.405553], [55.00186, -2.405718]], [[55.00186, -2.405718], [55.001838, -2.405887]], [[55.001838, -2.405887], [55.001814, -2.406042]], [[55.001784, -2.406366], [55.001764, -2.40652]], [[55.001402, -2.408905], [55.00136, -2.409063]], [[55.001272, -2.409465], [55.00123, -2.409624]], [[55.00123, -2.409624], [55.00119, -2.409767]], [[55.00119, -2.409767], [55.001137, -2.409912]], [[55.001137, -2.409912], [55.001086, -2.410062]], [[55.000864, -2.410417], [55.000788, -2.410528]], [[55.000788, -2.410528], [55.000714, -2.410637]], [[55.000714, -2.410637], [55.000637, -2.410757]], [[55.000637, -2.410757], [55.00056, -2.410841]], [[55.00056, -2.410841], [55.000472, -2.41092]], [[55.000472, -2.41092], [55.000389, -2.411008]], [[54.999819, -2.411997], [54.999749, -2.412099]], [[54.999006, -2.415432], [54.999016, -2.415601]], [[54.99897, -2.416261], [54.998949, -2.416431]], [[54.998949, -2.416431], [54.998948, -2.416599]], [[54.998833, -2.417409], [54.998794, -2.417576]], [[54.998721, -2.417888], [54.998683, -2.418035]], [[54.998683, -2.418035], [54.998655, -2.418189]], [[54.998655, -2.418189], [54.998631, -2.418343]], [[54.998555, -2.418826], [54.998512, -2.418989]], [[54.998512, -2.418989], [54.998472, -2.419144]], [[54.998472, -2.419144], [54.998439, -2.419301]], [[54.998439, -2.419301], [54.99841, -2.41945]], [[54.998066, -2.42078], [54.998025, -2.420931]], [[54.997894, -2.421433], [54.997854, -2.421574]], [[54.997781, -2.421866], [54.997761, -2.422042]], [[54.997761, -2.422042], [54.997712, -2.422184]], [[54.997712, -2.422184], [54.997662, -2.422337]], [[54.997423, -2.423247], [54.997395, -2.423399]], [[54.997395, -2.423399], [54.997339, -2.423535]], [[54.996249, -2.426749], [54.99619, -2.426884]], [[54.99619, -2.426884], [54.996159, -2.42706]], [[54.996159, -2.42706], [54.996124, -2.427219]], [[54.996124, -2.427219], [54.996093, -2.427378]], [[54.99589, -2.431223], [54.995918, -2.431378]], [[54.995895, -2.433991], [54.995871, -2.434162]], [[54.995871, -2.434162], [54.995855, -2.43433]], [[54.995846, -2.434489], [54.995822, -2.434656]], [[54.995807, -2.434818], [54.995795, -2.434976]], [[54.99576, -2.435298], [54.995724, -2.435442]], [[54.995327, -2.438177], [54.995304, -2.438336]], [[54.995304, -2.438336], [54.995275, -2.438484]], [[54.995275, -2.438484], [54.995255, -2.438649]], [[54.995255, -2.438649], [54.995251, -2.438825]], [[54.995251, -2.438825], [54.995241, -2.438995]], [[54.995241, -2.438995], [54.995232, -2.439157]], [[54.995232, -2.439157], [54.9952, -2.439329]], [[54.9952, -2.439329], [54.995164, -2.439475]], [[54.995164, -2.439475], [54.995144, -2.439647]], [[54.995077, -2.440119], [54.99506, -2.440275]], [[54.99506, -2.440275], [54.995051, -2.440433]], [[54.995051, -2.440433], [54.995035, -2.440607]], [[54.995035, -2.440607], [54.995029, -2.440781]], [[54.995029, -2.440781], [54.995031, -2.440952]], [[54.995007, -2.441286], [54.994976, -2.441451]], [[54.994976, -2.441451], [54.994956, -2.441616]], [[54.994956, -2.441616], [54.994928, -2.441775]], [[54.994891, -2.442092], [54.994865, -2.442246]], [[54.994865, -2.442246], [54.994838, -2.442407]], [[54.994838, -2.442407], [54.994806, -2.442555]], [[54.994806, -2.442555], [54.994786, -2.44272]], [[54.994786, -2.44272], [54.994779, -2.442878]], [[54.994749, -2.443211], [54.994727, -2.443365]], [[54.993758, -2.446514], [54.993773, -2.446669]], [[54.993779, -2.447391], [54.993774, -2.447565]], [[54.993774, -2.447565], [54.993756, -2.447733]], [[54.993756, -2.447733], [54.993737, -2.447898]], [[54.993724, -2.448221], [54.993698, -2.448389]], [[54.993698, -2.448389], [54.993668, -2.448545]], [[54.993668, -2.448545], [54.993637, -2.448715]], [[54.993637, -2.448715], [54.993615, -2.448886]], [[54.993615, -2.448886], [54.993569, -2.449027]], [[54.993469, -2.449317], [54.993404, -2.449431]], [[54.993151, -2.450953], [54.99312, -2.451104]], [[54.99312, -2.451104], [54.993086, -2.451258]], [[54.993086, -2.451258], [54.993052, -2.451402]], [[54.992995, -2.451542], [54.992934, -2.45168]], [[54.992934, -2.45168], [54.992986, -2.451829]], [[54.993355, -2.452949], [54.993392, -2.453108]], [[54.993392, -2.453108], [54.993449, -2.45325]], [[54.993776, -2.453826], [54.993829, -2.45397]], [[54.994112, -2.454649], [54.994161, -2.454798]], [[54.994161, -2.454798], [54.994209, -2.454935]], [[54.994559, -2.455937], [54.994607, -2.456099]], [[54.994607, -2.456099], [54.994655, -2.456255]], [[54.994748, -2.456534], [54.994795, -2.456679]], [[54.994894, -2.456995], [54.994931, -2.457145]], [[54.994931, -2.457145], [54.994971, -2.457302]], [[54.994971, -2.457302], [54.995003, -2.457453]], [[54.995003, -2.457453], [54.995054, -2.457583]], [[54.995104, -2.457735], [54.995138, -2.457898]], [[54.995138, -2.457898], [54.995172, -2.458043]], [[54.995244, -2.458559], [54.995274, -2.458721]], [[54.995274, -2.458721], [54.995287, -2.458878]], [[54.995364, -2.459349], [54.995383, -2.459514]], [[54.995422, -2.459992], [54.995419, -2.460162]], [[54.995419, -2.460162], [54.995412, -2.460318]], [[54.995351, -2.460815], [54.995341, -2.460979]], [[54.995341, -2.460979], [54.995324, -2.461133]], [[54.995324, -2.461133], [54.995315, -2.461294]], [[54.995315, -2.461294], [54.995291, -2.46145]], [[54.995291, -2.46145], [54.995266, -2.461625]], [[54.995266, -2.461625], [54.995249, -2.461793]], [[54.995249, -2.461793], [54.99525, -2.461968]], [[54.99525, -2.461968], [54.995214, -2.462134]], [[54.995214, -2.462134], [54.995193, -2.462295]], [[54.995193, -2.462295], [54.995169, -2.462446]], [[54.995134, -2.462604], [54.9951, -2.462761]], [[54.9951, -2.462761], [54.995069, -2.462924]], [[54.995088, -2.464544], [54.995118, -2.46471]], [[54.995235, -2.465528], [54.995242, -2.465697]], [[54.995174, -2.466189], [54.995149, -2.46636]], [[54.995149, -2.46636], [54.995147, -2.466521]], [[54.995147, -2.466521], [54.99515, -2.466686]], [[54.99515, -2.466686], [54.995158, -2.466847]], [[54.995163, -2.467005], [54.995166, -2.467176]], [[54.995166, -2.467176], [54.995165, -2.467335]], [[54.995165, -2.467335], [54.995167, -2.467513]], [[54.995167, -2.467513], [54.995194, -2.467687]], [[54.995194, -2.467687], [54.995213, -2.467854]], [[54.995245, -2.4682], [54.995208, -2.46836]], [[54.995175, -2.468853], [54.995166, -2.46902]], [[54.995166, -2.46902], [54.995169, -2.469191]], [[54.995169, -2.469191], [54.995174, -2.469366]], [[54.995174, -2.469366], [54.995186, -2.469523]], [[54.995186, -2.46987], [54.995178, -2.470044]], [[54.995224, -2.472208], [54.995222, -2.472367]], [[54.995222, -2.472367], [54.995224, -2.472534]], [[54.99521, -2.472878], [54.995186, -2.473043]], [[54.995186, -2.473043], [54.99517, -2.473223]], [[54.99517, -2.473223], [54.995198, -2.473384]], [[54.995263, -2.473701], [54.995255, -2.473871]], [[54.995255, -2.473871], [54.995232, -2.474036]], [[54.995232, -2.474036], [54.995199, -2.474196]], [[54.995199, -2.474196], [54.99516, -2.474356]], [[54.99516, -2.474356], [54.995112, -2.474499]], [[54.995112, -2.474499], [54.995085, -2.474656]], [[54.995085, -2.474656], [54.995069, -2.474812]], [[54.995069, -2.474812], [54.995042, -2.474971]], [[54.995042, -2.474971], [54.995011, -2.475133]], [[54.995011, -2.475133], [54.994979, -2.475297]], [[54.995251, -2.476644], [54.99527, -2.476808]], [[54.995363, -2.477427], [54.995368, -2.477608]], [[54.995368, -2.477608], [54.995369, -2.477776]], [[54.995388, -2.478423], [54.995375, -2.478585]], [[54.995339, -2.478871], [54.995334, -2.479038]], [[54.995314, -2.479541], [54.995314, -2.479703]], [[54.995314, -2.479703], [54.9953, -2.479866]], [[54.9953, -2.479866], [54.995284, -2.480028]], [[54.995284, -2.480028], [54.995261, -2.480184]], [[54.995197, -2.481019], [54.995182, -2.481173]], [[54.995182, -2.481173], [54.99517, -2.481344]], [[54.995203, -2.482341], [54.995209, -2.482507]], [[54.996222, -2.486931], [54.996202, -2.487104]], [[54.996202, -2.487104], [54.996196, -2.48726]], [[54.996054, -2.489044], [54.996042, -2.489215]], [[54.995983, -2.489717], [54.995969, -2.489886]], [[54.995112, -2.495214], [54.995133, -2.495385]], [[54.994905, -2.496445], [54.994874, -2.496603]], [[54.994192, -2.498008], [54.994187, -2.498181]], [[54.994098, -2.498829], [54.994066, -2.498998]], [[54.993156, -2.502383], [54.993174, -2.502556]], [[54.991523, -2.508078], [54.99145, -2.50819]], [[54.99145, -2.50819], [54.991381, -2.508298]], [[54.991381, -2.508298], [54.991303, -2.508387]], [[54.990963, -2.508944], [54.990893, -2.509048]], [[54.990893, -2.509048], [54.990814, -2.509151]], [[54.990689, -2.510058], [54.990691, -2.510227]], [[54.990571, -2.511157], [54.990532, -2.511308]], [[54.990326, -2.511992], [54.990253, -2.512107]], [[54.989645, -2.514223], [54.989642, -2.514392]], [[54.989207, -2.51468], [54.989162, -2.514533]], [[54.989162, -2.514533], [54.989116, -2.514393]], [[54.989116, -2.514393], [54.989047, -2.514287]], [[54.988319, -2.513413], [54.988346, -2.513567]], [[54.988511, -2.514151], [54.988538, -2.51432]], [[54.988538, -2.51432], [54.988569, -2.514479]], [[54.988569, -2.514479], [54.988591, -2.514635]], [[54.988529, -2.514944], [54.988474, -2.515084]], [[54.988416, -2.51524], [54.988363, -2.515382]], [[54.988363, -2.515382], [54.988308, -2.515515]], [[54.988202, -2.515774], [54.988148, -2.515899]], [[54.988148, -2.515899], [54.988096, -2.516048]], [[54.988096, -2.516048], [54.98805, -2.516211]], [[54.98805, -2.516211], [54.988028, -2.516377]], [[54.988053, -2.516709], [54.988043, -2.516875]], [[54.988043, -2.516875], [54.98804, -2.517049]], [[54.987936, -2.517814], [54.987903, -2.517959]], [[54.987903, -2.517959], [54.987857, -2.518109]], [[54.987783, -2.518215], [54.98769, -2.518284]], [[54.98769, -2.518284], [54.987594, -2.518275]], [[54.987594, -2.518275], [54.987499, -2.518285]], [[54.987103, -2.518353], [54.987006, -2.518346]], [[54.987006, -2.518346], [54.986913, -2.518375]], [[54.987576, -2.520357], [54.98767, -2.520345]], [[54.987763, -2.521553], [54.987769, -2.52172]], [[54.987805, -2.522541], [54.987821, -2.522712]], [[54.987821, -2.522712], [54.987832, -2.522882]], [[54.987864, -2.524049], [54.987869, -2.52421]], [[54.987881, -2.524686], [54.987887, -2.524858]], [[54.987887, -2.524858], [54.987879, -2.525034]], [[54.987879, -2.525034], [54.987889, -2.525202]], [[54.987914, -2.525907], [54.987911, -2.526073]], [[54.987911, -2.526374], [54.98794, -2.526535]], [[54.98794, -2.526535], [54.987929, -2.526693]], [[54.987929, -2.526693], [54.987916, -2.526859]], [[54.987916, -2.526859], [54.987915, -2.527025]], [[54.987934, -2.527687], [54.987956, -2.527845]], [[54.987984, -2.528197], [54.987979, -2.528366]], [[54.987979, -2.528366], [54.987983, -2.528532]], [[54.988001, -2.528866], [54.988015, -2.529026]], [[54.988015, -2.529026], [54.988013, -2.529186]], [[54.988013, -2.529186], [54.988009, -2.529352]], [[54.988027, -2.52985], [54.988036, -2.530019]], [[54.988036, -2.530019], [54.988028, -2.530181]], [[54.988028, -2.530181], [54.988034, -2.530359]], [[54.988034, -2.530359], [54.988035, -2.53053]], [[54.988046, -2.5307], [54.988049, -2.530881]], [[54.988049, -2.530881], [54.988052, -2.531042]], [[54.988052, -2.531042], [54.988041, -2.531202]], [[54.987858, -2.532337], [54.98777, -2.53238]], [[54.98777, -2.53238], [54.987678, -2.532361]], [[54.987678, -2.532361], [54.987574, -2.532372]], [[54.987703, -2.532565], [54.987802, -2.532599]], [[54.987802, -2.532599], [54.987902, -2.532634]], [[54.988052, -2.53285], [54.988136, -2.532913]], [[54.988136, -2.532913], [54.988164, -2.533078]], [[54.988157, -2.533241], [54.988132, -2.533401]], [[54.988261, -2.534138], [54.988162, -2.534111]], [[54.988162, -2.534111], [54.988068, -2.534108]], [[54.987886, -2.534171], [54.987796, -2.534215]], [[54.987796, -2.534215], [54.987706, -2.534259]], [[54.987607, -2.534285], [54.987509, -2.5343]], [[54.987509, -2.5343], [54.987408, -2.534308]], [[54.987408, -2.534308], [54.987309, -2.534343]], [[54.987118, -2.534434], [54.987029, -2.534472]], [[54.987029, -2.534472], [54.986938, -2.534557]], [[54.986938, -2.534557], [54.98686, -2.534653]], [[54.98686, -2.534653], [54.986795, -2.534771]], [[54.985347, -2.543737], [54.985265, -2.54382]], [[54.985265, -2.54382], [54.985176, -2.543896]], [[54.985176, -2.543896], [54.98509, -2.543954]], [[54.98509, -2.543954], [54.985004, -2.544027]], [[54.985004, -2.544027], [54.984911, -2.544089]], [[54.979483, -2.547932], [54.979383, -2.547939]], [[54.974962, -2.548607], [54.974889, -2.548483]], [[54.974889, -2.548483], [54.974825, -2.54836]], [[54.973776, -2.545415], [54.97369, -2.545358]], [[54.972998, -2.545604], [54.972992, -2.54576]], [[54.972939, -2.546579], [54.972905, -2.546734]], [[54.972227, -2.548682], [54.972194, -2.548838]], [[54.972194, -2.548838], [54.972166, -2.548992]], [[54.972035, -2.549783], [54.972008, -2.549943]], [[54.972008, -2.549943], [54.971989, -2.550096]], [[54.972006, -2.55161], [54.972015, -2.551776]], [[54.972015, -2.551776], [54.972024, -2.551932]], [[54.972285, -2.554465], [54.972301, -2.554623]], [[54.972527, -2.556602], [54.97254, -2.556772]], [[54.97254, -2.556772], [54.972558, -2.556931]], [[54.972619, -2.557442], [54.972636, -2.557615]], [[54.972636, -2.557615], [54.972652, -2.557772]], [[54.972733, -2.558425], [54.972746, -2.55859]], [[54.972746, -2.55859], [54.972759, -2.558748]], [[54.972817, -2.559072], [54.972834, -2.559241]], [[54.972834, -2.559241], [54.972851, -2.559397]], [[54.972916, -2.559898], [54.972943, -2.560058]], [[54.97307, -2.56107], [54.973088, -2.561229]], [[54.951002, -2.554694], [54.950968, -2.554546]], [[54.950332, -2.553177], [54.950263, -2.55307]], [[54.949623, -2.54781], [54.949589, -2.547651]], [[54.94953, -2.546769], [54.94952, -2.546603]], [[54.946418, -2.542036], [54.946335, -2.541969]], [[54.940661, -2.540793], [54.940583, -2.540712]], [[54.937882, -2.535482], [54.937863, -2.535311]], [[54.937863, -2.535311], [54.937821, -2.535158]], [[54.936935, -2.533371], [54.936861, -2.533273]], [[54.935643, -2.531098], [54.93562, -2.530937]], [[54.935605, -2.530314], [54.935615, -2.530149]], [[54.935615, -2.530149], [54.935647, -2.529985]], [[54.935329, -2.528709], [54.935238, -2.528651]], [[54.934757, -2.528444], [54.93466, -2.528403]], [[54.934402, -2.528702], [54.934311, -2.528729]], [[54.903188, -2.514949], [54.903098, -2.514918]], [[54.900504, -2.513756], [54.900446, -2.513632]], [[54.900446, -2.513632], [54.900384, -2.513508]], [[54.898509, -2.513053], [54.898415, -2.513031]], [[54.897168, -2.512683], [54.897073, -2.512646]], [[54.896336, -2.512369], [54.896244, -2.512342]], [[54.893695, -2.511504], [54.893604, -2.511588]], [[54.893512, -2.511627], [54.893421, -2.51163]], [[54.893421, -2.51163], [54.893329, -2.511662]], [[54.884343, -2.509013], [54.884282, -2.50888]], [[54.884186, -2.508557], [54.884124, -2.508441]], [[54.884124, -2.508441], [54.88405, -2.508345]], [[54.88405, -2.508345], [54.883968, -2.508249]], [[54.883968, -2.508249], [54.883898, -2.508128]], [[54.883898, -2.508128], [54.883828, -2.508011]], [[54.882667, -2.507463], [54.882612, -2.507586]], [[54.882612, -2.507586], [54.882544, -2.507706]], [[54.882412, -2.508047], [54.882328, -2.508104]], [[54.880957, -2.509458], [54.880869, -2.509522]], [[54.874398, -2.514316], [54.874435, -2.514481]], [[54.874435, -2.514481], [54.874457, -2.514646]], [[54.873448, -2.514552], [54.873367, -2.514473]], [[54.872494, -2.513836], [54.8724, -2.513763]], [[54.87133, -2.513499], [54.871232, -2.513501]], [[54.87056, -2.512437], [54.870507, -2.512308]], [[54.870443, -2.512183], [54.870379, -2.512057]], [[54.86911, -2.510817], [54.869024, -2.51076]], [[54.868002, -2.509699], [54.867935, -2.509593]], [[54.867347, -2.508736], [54.867311, -2.508593]], [[54.867064, -2.507878], [54.867001, -2.507764]], [[54.867001, -2.507764], [54.866935, -2.507642]], [[54.866767, -2.507245], [54.866709, -2.507124]], [[54.866543, -2.506747], [54.866482, -2.506603]], [[54.866363, -2.506354], [54.866293, -2.506231]], [[54.865881, -2.505324], [54.865823, -2.505176]], [[54.865823, -2.505176], [54.865773, -2.505018]], [[54.865652, -2.5044], [54.86566, -2.504236]], [[54.86566, -2.504236], [54.865679, -2.504078]], [[54.865185, -2.502279], [54.865103, -2.502168]], [[54.865044, -2.502031], [54.864966, -2.501917]], [[54.864966, -2.501917], [54.864887, -2.501819]], [[54.864887, -2.501819], [54.864813, -2.501715]], [[54.86387, -2.500958], [54.863773, -2.50091]], [[54.863586, -2.500805], [54.863501, -2.500738]], [[54.863501, -2.500738], [54.86341, -2.500697]], [[54.863078, -2.500421], [54.862992, -2.500345]], [[54.862815, -2.500157], [54.862731, -2.500087]], [[54.862731, -2.500087], [54.862637, -2.500005]], [[54.862637, -2.500005], [54.862551, -2.499957]], [[54.862551, -2.499957], [54.862465, -2.499877]], [[54.862465, -2.499877], [54.862379, -2.499807]], [[54.861863, -2.49936], [54.861772, -2.499277]], [[54.861772, -2.499277], [54.861683, -2.499198]], [[54.860714, -2.497911], [54.860631, -2.497819]], [[54.860631, -2.497819], [54.860542, -2.497741]], [[54.860385, -2.497509], [54.860292, -2.497456]], [[54.843447, -2.478121], [54.84343, -2.477959]], [[54.84343, -2.477959], [54.843417, -2.477793]], [[54.843417, -2.477793], [54.843422, -2.477636]], [[54.833675, -2.471913], [54.833615, -2.471786]], [[54.833615, -2.471786], [54.833558, -2.471661]], [[54.8351, -2.468817], [54.835162, -2.468956]], [[54.834903, -2.468478], [54.834839, -2.468358]], [[54.834839, -2.468358], [54.834771, -2.468231]], [[54.834504, -2.467753], [54.834437, -2.467636]], [[54.833355, -2.465764], [54.833287, -2.465643]], [[54.832933, -2.465071], [54.832864, -2.464947]], [[54.832392, -2.46413], [54.832323, -2.464007]], [[54.83001, -2.460084], [54.829947, -2.45995]], [[54.829278, -2.45871], [54.829213, -2.458589]], [[54.829213, -2.458589], [54.829146, -2.458466]], [[54.828927, -2.457939], [54.828871, -2.457805]], [[54.828871, -2.457805], [54.828817, -2.457673]], [[54.828817, -2.457673], [54.828775, -2.45752]], [[54.828605, -2.457129], [54.828547, -2.456995]], [[54.828547, -2.456995], [54.82849, -2.456842]], [[54.82849, -2.456842], [54.828436, -2.456697]], [[54.828018, -2.45538], [54.827969, -2.455215]], [[54.827901, -2.454911], [54.827855, -2.454756]], [[54.827819, -2.45461], [54.827772, -2.454477]], [[54.827646, -2.454016], [54.827614, -2.453845]], [[54.827614, -2.453845], [54.827579, -2.453696]], [[54.827281, -2.452827], [54.827233, -2.452683]], [[54.82685, -2.451734], [54.82679, -2.451601]], [[54.826549, -2.451099], [54.826485, -2.450965]], [[54.826179, -2.450364], [54.826102, -2.450258]], [[54.826102, -2.450258], [54.826028, -2.450159]], [[54.826028, -2.450159], [54.825956, -2.450033]], [[54.825875, -2.449913], [54.825802, -2.449813]], [[54.823273, -2.447483], [54.823186, -2.447407]], [[54.821537, -2.446117], [54.821443, -2.446077]], [[54.821443, -2.446077], [54.821348, -2.446031]], [[54.821079, -2.44583], [54.820986, -2.445778]], [[54.820986, -2.445778], [54.820896, -2.445708]], [[54.820896, -2.445708], [54.820815, -2.445634]], [[54.820815, -2.445634], [54.820727, -2.445574]], [[54.820727, -2.445574], [54.820643, -2.445507]], [[54.820643, -2.445507], [54.820552, -2.445428]], [[54.819945, -2.444994], [54.819854, -2.444947]], [[54.819854, -2.444947], [54.81976, -2.444906]], [[54.81976, -2.444906], [54.81967, -2.444874]], [[54.819045, -2.444777], [54.818955, -2.444737]], [[54.818077, -2.444598], [54.817986, -2.444567]], [[54.817986, -2.444567], [54.817893, -2.444514]], [[54.817893, -2.444514], [54.817805, -2.444453]], [[54.81728, -2.444057], [54.817188, -2.443981]], [[54.81691, -2.443831], [54.816823, -2.443782]], [[54.816823, -2.443782], [54.816726, -2.443716]], [[54.816726, -2.443716], [54.816647, -2.44364]], [[54.816647, -2.44364], [54.816555, -2.443603]], [[54.816372, -2.443501], [54.816281, -2.443449]], [[54.816281, -2.443449], [54.816195, -2.443389]], [[54.814411, -2.441447], [54.814308, -2.441433]], [[54.814308, -2.441433], [54.814212, -2.441462]], [[54.814212, -2.441462], [54.81412, -2.441465]], [[54.81412, -2.441465], [54.814019, -2.441446]], [[54.814019, -2.441446], [54.813921, -2.441442]], [[54.81382, -2.441493], [54.813716, -2.441507]], [[54.813716, -2.441507], [54.813625, -2.441536]], [[54.812754, -2.441501], [54.812679, -2.441394]], [[54.812586, -2.441389], [54.812489, -2.441362]], [[54.812489, -2.441362], [54.812396, -2.441385]], [[54.812396, -2.441385], [54.812308, -2.441421]], [[54.812016, -2.441453], [54.811919, -2.441528]], [[54.811828, -2.441631], [54.811733, -2.441625]], [[54.811639, -2.441677], [54.81154, -2.441676]], [[54.811368, -2.441808], [54.811273, -2.441809]], [[54.809654, -2.442103], [54.809554, -2.44207]], [[54.809455, -2.442045], [54.809361, -2.442073]], [[54.80901, -2.442145], [54.808923, -2.442104]], [[54.808733, -2.442073], [54.808632, -2.442066]], [[54.808251, -2.442055], [54.808158, -2.44205]], [[54.808158, -2.44205], [54.808053, -2.442043]], [[54.808053, -2.442043], [54.807961, -2.442033]], [[54.805328, -2.441872], [54.805236, -2.441826]], [[54.805236, -2.441826], [54.805135, -2.441845]], [[54.802439, -2.441884], [54.802344, -2.44184]], [[54.802344, -2.44184], [54.802246, -2.441814]], [[54.792998, -2.44196], [54.792909, -2.44202]], [[54.779961, -2.427861], [54.779884, -2.427773]], [[54.779782, -2.427575], [54.779745, -2.427424]], [[54.779745, -2.427424], [54.779731, -2.427251]], [[54.779731, -2.427251], [54.77972, -2.427087]], [[54.778519, -2.422767], [54.778479, -2.422613]], [[54.777633, -2.420136], [54.777595, -2.419967]], [[54.77744, -2.419525], [54.777387, -2.419387]], [[54.775912, -2.414182], [54.775877, -2.414029]], [[54.775877, -2.414029], [54.775839, -2.413875]], [[54.775839, -2.413875], [54.775802, -2.413709]], [[54.775015, -2.410221], [54.774966, -2.410078]], [[54.773678, -2.404883], [54.773629, -2.404733]], [[54.773629, -2.404733], [54.773582, -2.40458]], [[54.77351, -2.404276], [54.773475, -2.404129]], [[54.773343, -2.403668], [54.773293, -2.403532]], [[54.77264, -2.40192], [54.772561, -2.401831]], [[54.772561, -2.401831], [54.772485, -2.401732]], [[54.772485, -2.401732], [54.772398, -2.401635]], [[54.772722, -2.399562], [54.772676, -2.399716]], [[54.772676, -2.399716], [54.772633, -2.399873]], [[54.772592, -2.400038], [54.772564, -2.400199]], [[54.772564, -2.400199], [54.772531, -2.400358]], [[54.772468, -2.400665], [54.77244, -2.400825]], [[54.772333, -2.401305], [54.772303, -2.401478]], [[54.772303, -2.401478], [54.772217, -2.401542]], [[54.772123, -2.401558], [54.772019, -2.401561]], [[54.772019, -2.401561], [54.771923, -2.401535]], [[54.771923, -2.401535], [54.771829, -2.401475]], [[54.771749, -2.401384], [54.77166, -2.401305]], [[54.77166, -2.401305], [54.77157, -2.401229]], [[54.771445, -2.401], [54.771403, -2.400855]], [[54.771277, -2.400379], [54.771232, -2.400217]], [[54.771232, -2.400217], [54.77119, -2.400067]], [[54.77077, -2.399399], [54.77068, -2.399346]], [[54.770589, -2.399286], [54.770489, -2.399242]], [[54.770489, -2.399242], [54.770392, -2.399222]], [[54.770138, -2.399025], [54.770068, -2.398916]], [[54.770068, -2.398916], [54.769997, -2.39882]], [[54.769587, -2.398122], [54.769521, -2.397992]], [[54.769521, -2.397992], [54.769449, -2.397876]], [[54.769449, -2.397876], [54.769375, -2.39777]], [[54.769375, -2.39777], [54.769303, -2.397658]], [[54.76923, -2.397537], [54.769141, -2.397442]], [[54.769073, -2.397327], [54.769006, -2.397212]], [[54.76892, -2.397117], [54.768834, -2.397163]], [[54.768834, -2.397163], [54.768779, -2.397296]], [[54.768544, -2.397208], [54.768465, -2.397093]], [[54.768217, -2.396797], [54.768119, -2.396748]], [[54.768119, -2.396748], [54.768024, -2.396734]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5999c2911d4c591637100e16959f1fa3);
        
    
            var poly_line_466dfd209e09a7db43f569bedd270c4a = L.polyline(
                [[[55.00687, -2.357142], [55.006783, -2.357218]], [[54.995855, -2.43433], [54.995846, -2.434489]], [[54.995189, -2.476503], [54.995251, -2.476644]], [[54.995369, -2.477776], [54.995381, -2.477933]], [[54.995381, -2.477933], [54.995403, -2.478094]], [[54.995403, -2.478094], [54.995394, -2.478266]], [[54.995394, -2.478266], [54.995388, -2.478423]], [[54.988591, -2.514635], [54.988568, -2.5148]], [[54.988568, -2.5148], [54.988529, -2.514944]], [[54.988032, -2.517205], [54.988026, -2.517365]], [[54.988164, -2.533078], [54.988157, -2.533241]], [[54.893604, -2.511588], [54.893512, -2.511627]], [[54.884282, -2.50888], [54.884222, -2.508727]], [[54.884222, -2.508727], [54.884186, -2.508557]], [[54.882492, -2.507958], [54.882412, -2.508047]], [[54.869287, -2.510876], [54.8692, -2.510834]], [[54.865103, -2.502168], [54.865044, -2.502031]], [[54.829337, -2.45886], [54.829278, -2.45871]], [[54.827969, -2.455215], [54.82794, -2.455052]], [[54.825956, -2.450033], [54.825875, -2.449913]], [[54.824841, -2.448725], [54.824751, -2.448654]], [[54.817188, -2.443981], [54.817089, -2.443928]], [[54.816555, -2.443603], [54.816462, -2.443547]], [[54.816462, -2.443547], [54.816372, -2.443501]], [[54.811372, -2.441767], [54.811466, -2.441752]], [[54.809554, -2.44207], [54.809455, -2.442045]], [[54.808923, -2.442104], [54.808824, -2.442064]], [[54.808824, -2.442064], [54.808733, -2.442073]], [[54.77244, -2.400825], [54.772404, -2.400979]], [[54.772404, -2.400979], [54.772364, -2.401143]], [[54.772364, -2.401143], [54.772333, -2.401305]], [[54.77068, -2.399346], [54.770589, -2.399286]], [[54.769141, -2.397442], [54.769073, -2.397327]], [[54.76838, -2.396994], [54.768295, -2.396896]], [[54.768295, -2.396896], [54.768217, -2.396797]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5999c2911d4c591637100e16959f1fa3);
        
    
            var poly_line_ba70710ab31554e77c43b68384d67a7f = L.polyline(
                [[[54.993069, -2.450573], [54.992876, -2.450563]], [[54.992876, -2.450563], [54.992966, -2.450629]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5999c2911d4c591637100e16959f1fa3);
        
    
            var poly_line_5c1bbb6f69d224284fa1d1e6d1bdbcc9 = L.polyline(
                [[[54.8692, -2.510834], [54.86911, -2.510817]], [[54.827855, -2.454756], [54.827819, -2.45461]], [[54.811919, -2.441528], [54.811828, -2.441631]], [[54.768465, -2.397093], [54.76838, -2.396994]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5999c2911d4c591637100e16959f1fa3);
        
    
            color_line_5999c2911d4c591637100e16959f1fa3.addTo(map_985e22549b59ee099c6658e9f7969709);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-5---garigill-to-high-cup-nick" class="level3">
<h3 class="anchored" data-anchor-id="day-5---garigill-to-high-cup-nick">Day 5 - Garigill to High Cup Nick</h3>
<p>Slept until about 06:30 as I had a relatively short day planned going up and over Cross Fell, down into Dufton and on to <a href="https://www.openstreetmap.org/way/843700933" target="_blank">High Cup Nick</a>. I collected the rubbish that had been thrown at my tent and put it in the recycling and chatted to a lady who was tidying up after last nights reception. Turns out it was the bride who hadn’t been able to sleep knowing that she had to tidy up so she’d got up early to get started with the job.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930923425_f16d6c6e3c_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaG5Bk" target="_blank">Garigill</a></figcaption>
</figure>
</div>
<p>I had a shower, after clearing up what broken glass from the night before that I could see on the floor and managed to avoid cutting my feet which would have been bad for hiking. Dropped some cash in the honesty box (aka letter box) packed up and set off heading up Cross Fell. Poked my head inside the church and resisted the temptation to ring the bell.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930807939_bf5b6a4edc_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaFuhc" target="_blank">You Can Ring my Bell</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930714663_52bc568579_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaF1xZ" target="_blank">Dufton 15 miles</a></figcaption>
</figure>
</div>
<p>The path was a good compact track, no doubt for the grouse shooting. After winding my way up the hill side the beautiful <a href="http://www.gregshut.org.uk/" target="_blank">Gregs Hut</a> came into view and I poked my head in to have a look around before continuing. Will definitely have to come back and spend at least one night here in the future.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53931049151_ceec7c3b14_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaGHZ2" target="_blank">Greg’s Hut</a></figcaption>
</figure>
</div>
<p>A short steep section led to the plateau of Cross Fell with its excellent stone shelter from the wind and another trig point. There was a party of three with a couple of dogs who had hiked up from Dufton for the day when I arrived and we chatted briefly. I had a beer before snapping a panorama and heading off and over Great Dun Fell with its listening station on the summit like a golf ball poised to be driven south over the A66.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/54003981420_2e8f1fde83_3k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qh9wcW" target="_blank">From Cross Fell</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53931292843_7e61a9b8dd_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaHYqB" target="_blank">Cross Fell Summit</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53931049076_48198165aa_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaGHXJ" target="_blank">Cross Fell Panorama</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53962935203_6a26f1b2e4_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdw9Ax" target="_blank">Listening for…</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53963012859_943d60b45e_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdwxFr" target="_blank">Uphill Slog</a></figcaption>
</figure>
</div>
<p>The path then headed across another fell before down into Dufton. I met a guy who was heading North on The Way with a very large rucksack and an umbrella dangling from the bottom. I’d considered taking an umbrella myself to keep the worst of heavy rain off the top of me but decided against it as most rain in the UK comes in sideways.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53962685371_4c9cfa59f1_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="htps://flic.kr/p/2qduSk6" target="_blank">Floating Flag Stones</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53962685436_0c7678d16d_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qduSmd" target="_blank">Down to Dufton</a></figcaption>
</figure>
</div>
<p>I had been planning on eating at the <a href="https://thestagdufton.co.uk/" target="_blank">The Stag Inn</a>. Arriving just after 16:00 I had to wait until 17:00 until food was served and was told I couldn’t look at the menu in advance as there was a party of eight booked in and they were taking priority so I would have to order after them. In the end the party (two families) turned up late and by 17:15 hadn’t decided what they wanted to eat so I was allowed to order ahead of them (as had a number of other people who were eating but hadn’t been waiting as long as I had). Not the friendliest of service I came across but the food was ok.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53930140792_db3bdc118a_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qaC4XE" target="_blank">The Stagg Inn, Dufton</a></figcaption>
</figure>
</div>
<p>It was getting late and in my rush to set off and get to <a href="https://www.openstreetmap.org/way/843700933" target="_blank">High Cup Nick</a> I left without my walking poles. I didn’t get far before realising this so dashed back to the pub to grab them and started again at a decent pace to climb back up the hill, passing a pair who had walked from Middleton in Teesdale that day heading North along The Way. The 6km and ~300m of ascent (most of which are in the first 2-3km) were accomplished quickly (just over an hour) and I found myself coming onto the rim of the amazing <a href="https://www.openstreetmap.org/way/843700933" target="_blank">High Cup Nick</a>, a valley with a dolerite rim with limestone above and below the layer of dolerite. As I neared the head I kept my eyes open for a flat spot to camp, not wanting to pitch up at the very top where it was boggier and there would be more midges if the wind dropped (needn’t have worried, the wind barely stopped the whole trip!).</p>
<p>I snapped a few pictures in the fading light then setup my tent for the night and went to sleep almost instantly.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53956798007_433927f79e_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53956798007/" target="_blank">High Cup Nick(Panoramic)</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53936717187_dcf0514d59_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbcLTM" target="_blank">Wild Camping above High Cup Nick</a></figcaption>
</figure>
</div>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-6-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-1" aria-controls="tabset-6-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-6-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-2" aria-controls="tabset-6-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-6-1" class="tab-pane active" aria-labelledby="tabset-6-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb11-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-18"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-0e61c3a3a4d0c050f852" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-0e61c3a3a4d0c050f852">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.398044,-2.398045,-2.398004,-2.398042,-2.398105,-2.398157,-2.398141,-2.398016,-2.397858,-2.397752,-2.397613,-2.397539,-2.397864,-2.397779,-2.397723,-2.39756,-2.397489,-2.397644,-2.397814,-2.397972,-2.398082,-2.398003,-2.397932,-2.397858,-2.397787,-2.397711,-2.397635,-2.397567,-2.397497,-2.397433,-2.397375,-2.397323,-2.397262,-2.397214,-2.397147,-2.397114,-2.397066,-2.397014,-2.396957,-2.396886,-2.396829,-2.396797,-2.396761,-2.396714,-2.396686,-2.39667,-2.396664,-2.396646,-2.396608,-2.396553,-2.396506,-2.396506,-2.396659,-2.396767,-2.396865,-2.396954,-2.397054,-2.397157,-2.397231,-2.397258,-2.397292,-2.397363,-2.397434,-2.397445,-2.397441,-2.397427,-2.397424,-2.397416,-2.397448,-2.397542,-2.39763,-2.397686,-2.39772,-2.397724,-2.397812,-2.39789,-2.397975,-2.398058,-2.398127,-2.3982,-2.398268,-2.398332,-2.398401,-2.398443,-2.398501,-2.398541,-2.398577,-2.398615,-2.398688,-2.398782,-2.39889,-2.398989,-2.399084,-2.399187,-2.399274,-2.399375,-2.399475,-2.399564,-2.399649,-2.399734,-2.399822,-2.399927,-2.400017,-2.400105,-2.400191,-2.400267,-2.400368,-2.400482,-2.400595,-2.400638,-2.400739,-2.400821,-2.400882,-2.400988,-2.401156,-2.40131,-2.401474,-2.401622,-2.40179,-2.401939,-2.402105,-2.402266,-2.402421,-2.402592,-2.402767,-2.402916,-2.403073,-2.403231,-2.403393,-2.403555,-2.403717,-2.403877,-2.404027,-2.404171,-2.404332,-2.40449,-2.404639,-2.404801,-2.404893,-2.405032,-2.405191,-2.405337,-2.405361,-2.405501,-2.405655,-2.405798,-2.40594,-2.40609,-2.406242,-2.406385,-2.40653,-2.406541,-2.406696,-2.406842,-2.406978,-2.40713,-2.407279,-2.407429,-2.407578,-2.407728,-2.40788,-2.408044,-2.408187,-2.408334,-2.40848,-2.408634,-2.408769,-2.408934,-2.40908,-2.409234,-2.409382,-2.409534,-2.409702,-2.409858,-2.410012,-2.410162,-2.410324,-2.410483,-2.410647,-2.410797,-2.410949,-2.411109,-2.411262,-2.411411,-2.411563,-2.411716,-2.411882,-2.412035,-2.412194,-2.412349,-2.412498,-2.412656,-2.412815,-2.412981,-2.413143,-2.413306,-2.413463,-2.413626,-2.413775,-2.413931,-2.414097,-2.414263,-2.414416,-2.414569,-2.41471,-2.414861,-2.415018,-2.415181,-2.415345,-2.415508,-2.41567,-2.415821,-2.415984,-2.416148,-2.416306,-2.416463,-2.416621,-2.416777,-2.416943,-2.417103,-2.417259,-2.417432,-2.417598,-2.417763,-2.41794,-2.418099,-2.418241,-2.418273,-2.418355,-2.418356,-2.418266,-2.418239,-2.418248,-2.418241,-2.418243,-2.418269,-2.418275,-2.4183,-2.418313,-2.418332,-2.418337,-2.418334,-2.418342,-2.418326,-2.418335,-2.418342,-2.418359,-2.418345,-2.418347,-2.418363,-2.418352,-2.418353,-2.418386,-2.418387,-2.418399,-2.418389,-2.418417,-2.418424,-2.418412,-2.418422,-2.418417,-2.418421,-2.418411,-2.418414,-2.418415,-2.418419,-2.418427,-2.418453,-2.418479,-2.418519,-2.418574,-2.418641,-2.418657,-2.418718,-2.418776,-2.418841,-2.418915,-2.418969,-2.419036,-2.419106,-2.419179,-2.419241,-2.419288,-2.419352,-2.419416,-2.419487,-2.419545,-2.419623,-2.419693,-2.419765,-2.41982,-2.419891,-2.419954,-2.420033,-2.420088,-2.420159,-2.420216,-2.420262,-2.420296,-2.420334,-2.420351,-2.420371,-2.420399,-2.420442,-2.420454,-2.420468,-2.420483,-2.420521,-2.420552,-2.42059,-2.420626,-2.420627,-2.42064,-2.420666,-2.420679,-2.420716,-2.42075,-2.420773,-2.420803,-2.420847,-2.420873,-2.420856,-2.420883,-2.42099,-2.421049,-2.421092,-2.421123,-2.421144,-2.421159,-2.421159,-2.42117,-2.421171,-2.421191,-2.421194,-2.421214,-2.421237,-2.421277,-2.421315,-2.421407,-2.421468,-2.421537,-2.421592,-2.421658,-2.42173,-2.421797,-2.421853,-2.421902,-2.421961,-2.422026,-2.422092,-2.422156,-2.422222,-2.422292,-2.422355,-2.422399,-2.422475,-2.422549,-2.422638,-2.422718,-2.422803,-2.422891,-2.42299,-2.423085,-2.423169,-2.423273,-2.423381,-2.423482,-2.423577,-2.423679,-2.423777,-2.42389,-2.424025,-2.42414,-2.424267,-2.424407,-2.42454,-2.424672,-2.424778,-2.424893,-2.424988,-2.425091,-2.4252,-2.425309,-2.425412,-2.425524,-2.425627,-2.425719,-2.425815,-2.425916,-2.426025,-2.426124,-2.426232,-2.426339,-2.426448,-2.426553,-2.426674,-2.426781,-2.426897,-2.426987,-2.42705,-2.427099,-2.427154,-2.427205,-2.427258,-2.427299,-2.427364,-2.427431,-2.427497,-2.427571,-2.427629,-2.427685,-2.427762,-2.42786,-2.427978,-2.42811,-2.428242,-2.4284,-2.42854,-2.428714,-2.42888,-2.429033,-2.429188,-2.429331,-2.429479,-2.429636,-2.429789,-2.429901,-2.429984,-2.430099,-2.430232,-2.430355,-2.430479,-2.43061,-2.430703,-2.43078,-2.43086,-2.430939,-2.431025,-2.431078,-2.431078,-2.43102,-2.431023,-2.43104,-2.431029,-2.431006,-2.430993,-2.430957,-2.430924,-2.430912,-2.430898,-2.430894,-2.430899,-2.430884,-2.43089,-2.430906,-2.430917,-2.430939,-2.430946,-2.430939,-2.430951,-2.430961,-2.43097,-2.430971,-2.430961,-2.430955,-2.430952,-2.43094,-2.430934,-2.430947,-2.430982,-2.431035,-2.431092,-2.431144,-2.431206,-2.431269,-2.431333,-2.431399,-2.431465,-2.431539,-2.431622,-2.431702,-2.431797,-2.431885,-2.431981,-2.432073,-2.432163,-2.432247,-2.43233,-2.432419,-2.432506,-2.432598,-2.432685,-2.432749,-2.432809,-2.432847,-2.432879,-2.432898,-2.432935,-2.432986,-2.433032,-2.433075,-2.433119,-2.433149,-2.43319,-2.433226,-2.433261,-2.433275,-2.433279,-2.433291,-2.433332,-2.433405,-2.433537,-2.433666,-2.433755,-2.433817,-2.433874,-2.433933,-2.433988,-2.434052,-2.434109,-2.434165,-2.434221,-2.434278,-2.434324,-2.434395,-2.434462,-2.434522,-2.434598,-2.434655,-2.434701,-2.434759,-2.434813,-2.434869,-2.434921,-2.434978,-2.435022,-2.435077,-2.435139,-2.4352,-2.435251,-2.435303,-2.435363,-2.43541,-2.435473,-2.435525,-2.435588,-2.43563,-2.435676,-2.435734,-2.43579,-2.435857,-2.43595,-2.436039,-2.43611,-2.436163,-2.436203,-2.43622,-2.436223,-2.436236,-2.436257,-2.436277,-2.436319,-2.436341,-2.436374,-2.436396,-2.436442,-2.436488,-2.436551,-2.436648,-2.436781,-2.436925,-2.437051,-2.437154,-2.437221,-2.437251,-2.437282,-2.437345,-2.437392,-2.437407,-2.43744,-2.43746,-2.437437,-2.437439,-2.437425,-2.437395,-2.437338,-2.437287,-2.437253,-2.43721,-2.43714,-2.437082,-2.437035,-2.436976,-2.436906,-2.436826,-2.436756,-2.436695,-2.436625,-2.436551,-2.436491,-2.43643,-2.436372,-2.436323,-2.436272,-2.436207,-2.436154,-2.436118,-2.436088,-2.436069,-2.436043,-2.436017,-2.435992,-2.435969,-2.435951,-2.435927,-2.435898,-2.435873,-2.435853,-2.435849,-2.435843,-2.435842,-2.435856,-2.435939,-2.436053,-2.436169,-2.436265,-2.436371,-2.436476,-2.436578,-2.436686,-2.436763,-2.436851,-2.436933,-2.437022,-2.437106,-2.437187,-2.437278,-2.437368,-2.437469,-2.437589,-2.437685,-2.437798,-2.437916,-2.438044,-2.438166,-2.438292,-2.438391,-2.438477,-2.438563,-2.438629,-2.438683,-2.438762,-2.438849,-2.438929,-2.439018,-2.439118,-2.439222,-2.439313,-2.439393,-2.439477,-2.43957,-2.439652,-2.439724,-2.439788,-2.439849,-2.439912,-2.439969,-2.44002,-2.440075,-2.440138,-2.440195,-2.440242,-2.440293,-2.44034,-2.440378,-2.440407,-2.440449,-2.440489,-2.440515,-2.440545,-2.440574,-2.440575,-2.44061,-2.440581,-2.440526,-2.440472,-2.440426,-2.440384,-2.440376,-2.44037,-2.44036,-2.440341,-2.440312,-2.440269,-2.440281,-2.440319,-2.440333,-2.44041,-2.440509,-2.440599,-2.440676,-2.440748,-2.440804,-2.440883,-2.441039,-2.441191,-2.441328,-2.441478,-2.441637,-2.441774,-2.441886,-2.441981,-2.442084,-2.442215,-2.442384,-2.442551,-2.442715,-2.44287,-2.443033,-2.443192,-2.44334,-2.443476,-2.44362,-2.443775,-2.443908,-2.443966,-2.444118,-2.444163,-2.444314,-2.44445,-2.444608,-2.444761,-2.444906,-2.445063,-2.445175,-2.445329,-2.445405,-2.445427,-2.445517,-2.44566,-2.445795,-2.445925,-2.446073,-2.446211,-2.446346,-2.446495,-2.446654,-2.44679,-2.446926,-2.447092,-2.447259,-2.447425,-2.447579,-2.44773,-2.447894,-2.448052,-2.44818,-2.448352,-2.448513,-2.448639,-2.448758,-2.448879,-2.448982,-2.448935,-2.449042,-2.449208,-2.449369,-2.449514,-2.449668,-2.449781,-2.449845,-2.44991,-2.450045,-2.450198,-2.450349,-2.450485,-2.450488,-2.450605,-2.450762,-2.450915,-2.451077,-2.451244,-2.451393,-2.451545,-2.45171,-2.451873,-2.452023,-2.452187,-2.452348,-2.452467,-2.452535,-2.45254,-2.452565,-2.452571,-2.452692,-2.452848,-2.452994,-2.453142,-2.453274,-2.453421,-2.453577,-2.45373,-2.453854,-2.453965,-2.454088,-2.454226,-2.454362,-2.454485,-2.454612,-2.454744,-2.454892,-2.454921,-2.455071,-2.455232,-2.455389,-2.455474,-2.455635,-2.455788,-2.455953,-2.456109,-2.456276,-2.456439,-2.456608,-2.456773,-2.456949,-2.457105,-2.457261,-2.457421,-2.457591,-2.45775,-2.457917,-2.458083,-2.458242,-2.458403,-2.458568,-2.45874,-2.458897,-2.459064,-2.459221,-2.459387,-2.459545,-2.459706,-2.459863,-2.460022,-2.460193,-2.460356,-2.460526,-2.460688,-2.460853,-2.46102,-2.46119,-2.461361,-2.461534,-2.461693,-2.461859,-2.462019,-2.462194,-2.462359,-2.46253,-2.462684,-2.462848,-2.463007,-2.46317,-2.463328,-2.463478,-2.463647,-2.463804,-2.463962,-2.464127,-2.464284,-2.464439,-2.464598,-2.464773,-2.464937,-2.465105,-2.465262,-2.465427,-2.465589,-2.46575,-2.465907,-2.466064,-2.466221,-2.466376,-2.466532,-2.466687,-2.466832,-2.466994,-2.467153,-2.467312,-2.467463,-2.467627,-2.467787,-2.467947,-2.468104,-2.468252,-2.468394,-2.468548,-2.468712,-2.468853,-2.468896,-2.469018,-2.469144,-2.469279,-2.469393,-2.469499,-2.469622,-2.469739,-2.469852,-2.469948,-2.470041,-2.470146,-2.470245,-2.470344,-2.470448,-2.470538,-2.470645,-2.470749,-2.470859,-2.47093,-2.471026,-2.471134,-2.471238,-2.471341,-2.471446,-2.47156,-2.471668,-2.471786,-2.471888,-2.471967,-2.472047,-2.472138,-2.472221,-2.472312,-2.472429,-2.472521,-2.472605,-2.472724,-2.472873,-2.472963,-2.473021,-2.473084,-2.473162,-2.473267,-2.473329,-2.47347,-2.473574,-2.473577,-2.473616,-2.473766,-2.473923,-2.474065,-2.47422,-2.474373,-2.474541,-2.474706,-2.474867,-2.475019,-2.475161,-2.4753,-2.475434,-2.47557,-2.475719,-2.475849,-2.475998,-2.476162,-2.476322,-2.476488,-2.476657,-2.476808,-2.476969,-2.477128,-2.477288,-2.477458,-2.477631,-2.477797,-2.477945,-2.478095,-2.478256,-2.478413,-2.478581,-2.478753,-2.478818,-2.478975,-2.479141,-2.479297,-2.479461,-2.479621,-2.479773,-2.479928,-2.480093,-2.480254,-2.480423,-2.480576,-2.480737,-2.480899,-2.481056,-2.481222,-2.481379,-2.481545,-2.481608,-2.481263,-2.481374,-2.48146,-2.481494,-2.481627,-2.481643,-2.481595,-2.48157,-2.481573,-2.481728,-2.481802,-2.481958,-2.482084,-2.482246,-2.482385,-2.482551,-2.482708,-2.482867,-2.483022,-2.483194,-2.483349,-2.483518,-2.483668,-2.483838,-2.483891,-2.484053,-2.484202,-2.484361,-2.484513,-2.484673,-2.484825,-2.484986,-2.485145,-2.485307,-2.485459,-2.485612,-2.485771,-2.48593,-2.486074,-2.48622,-2.486369,-2.486528,-2.486688,-2.486844,-2.487014,-2.487172,-2.487321,-2.487477,-2.487642,-2.487803,-2.487973,-2.488142,-2.488313,-2.488487,-2.48864,-2.488806,-2.488959,-2.489109,-2.489259,-2.489403,-2.489547,-2.4897,-2.489863,-2.490006,-2.490097,-2.490166,-2.490281,-2.490401,-2.4905,-2.49062,-2.490732,-2.490839,-2.490924,-2.491057,-2.491183,-2.491283,-2.491371,-2.491481,-2.49156,-2.491625,-2.491688,-2.491734,-2.491781,-2.491766,-2.49167,-2.491643,-2.491659,-2.491617,-2.491536,-2.491444,-2.491401,-2.49136,-2.49132,-2.491194,-2.491132,-2.49112,-2.491055,-2.49104,-2.490961,-2.490915,-2.490845,-2.490732,-2.490686,-2.49069,-2.490626,-2.490555,-2.490513,-2.490499,-2.490438,-2.490373,-2.490329,-2.490205,-2.490172,-2.490079,-2.489927,-2.489818,-2.489702,-2.489599,-2.489499,-2.489412,-2.489302,-2.489215,-2.489158,-2.489118,-2.48904,-2.488971,-2.488965,-2.488994,-2.489059,-2.489001,-2.48901,-2.488991,-2.488967,-2.488911,-2.488861,-2.488759,-2.488703,-2.488691,-2.48862,-2.488503,-2.488463,-2.488407,-2.488338,-2.488296,-2.488283,-2.488247,-2.488187,-2.488105,-2.488004,-2.487941,-2.487879,-2.48782,-2.487723,-2.487596,-2.487522,-2.487461,-2.487336,-2.487246,-2.487181,-2.487138,-2.48712,-2.487103,-2.487079,-2.487097,-2.487088,-2.487047,-2.487021,-2.486996,-2.486996,-2.486977,-2.486977,-2.486933,-2.486905,-2.486868,-2.486907,-2.486893,-2.486771,-2.486774,-2.486882,-2.486928,-2.486765,-2.486632,-2.486506,-2.486351,-2.486185,-2.48603,-2.485869,-2.48571,-2.485544,-2.485385,-2.485227,-2.485057,-2.484881,-2.484724,-2.484575,-2.484405,-2.484243,-2.484079,-2.483942,-2.483795,-2.483639,-2.483471,-2.483313,-2.483163,-2.483003,-2.482853,-2.482687,-2.482621,-2.482488,-2.482428,-2.482325,-2.482173,-2.482009,-2.481845,-2.481714,-2.481568,-2.481399,-2.481267,-2.481132,-2.481006,-2.480856,-2.480705,-2.480558,-2.480416,-2.480251,-2.480113,-2.479978,-2.479803,-2.479632,-2.47946,-2.479331,-2.479184,-2.479023,-2.478868,-2.478729,-2.478566,-2.478399,-2.478238,-2.478084,-2.477923,-2.47782,-2.477674,-2.477519,-2.477353,-2.477195,-2.477041,-2.476895,-2.476825,-2.476671,-2.47651,-2.476351,-2.476192,-2.476077,-2.475938,-2.47577,-2.475622,-2.475476,-2.475319,-2.475159,-2.475042,-2.474917,-2.474812,-2.474659,-2.474513,-2.474393,-2.474237,-2.474108,-2.473948,-2.473792,-2.473639,-2.473537,-2.473437,-2.473301,-2.47314,-2.472978,-2.47286,-2.472754,-2.472655,-2.472502,-2.472375,-2.472242,-2.472126,-2.47204,-2.471928,-2.471819,-2.471788,-2.471735,-2.471606,-2.47155,-2.471471,-2.471397,-2.4713,-2.471196,-2.47108,-2.470993,-2.470916,-2.470784,-2.470679,-2.470595,-2.470493,-2.470383,-2.470279,-2.470165,-2.470047,-2.469926,-2.469816,-2.469668,-2.469612,-2.469549,-2.469489,-2.469374,-2.469223,-2.469134,-2.469032,-2.468913,-2.468807,-2.468764,-2.46869,-2.4686,-2.468524,-2.468448,-2.468404,-2.468339,-2.468309,-2.46822,-2.468096,-2.467961,-2.467789,-2.467657,-2.467506,-2.467382,-2.467209,-2.467058,-2.466963,-2.466891,-2.466767,-2.466626,-2.466454,-2.466325,-2.466185,-2.466071,-2.465919,-2.465785,-2.465621,-2.465471,-2.465349,-2.465229,-2.465112,-2.465024,-2.464914,-2.464816,-2.464735,-2.464621,-2.464521,-2.464426,-2.464334,-2.464249,-2.464169,-2.464127,-2.464028,-2.463925,-2.463829,-2.463756,-2.463657,-2.463572,-2.463514,-2.463451,-2.463371,-2.463279,-2.463159,-2.463078,-2.462988,-2.462913,-2.462833,-2.462723,-2.462611,-2.462498,-2.46239,-2.46231,-2.462162,-2.46201,-2.461952,-2.461854,-2.461765,-2.461655,-2.461553,-2.461445,-2.46135,-2.461286,-2.461229,-2.461128,-2.461024,-2.460931,-2.460835,-2.460733,-2.460633,-2.46055,-2.460457,-2.460384,-2.460292,-2.46019,-2.460202,-2.460093,-2.459989,-2.459867,-2.459753,-2.459703,-2.459639,-2.459506,-2.459381,-2.459261,-2.459124,-2.459032,-2.458902,-2.458742,-2.458596,-2.458473,-2.458337,-2.458199,-2.458052,-2.457945,-2.457854,-2.457716,-2.45759,-2.457462,-2.457354,-2.457241,-2.45714,-2.457015,-2.456883,-2.456735,-2.456609,-2.456466,-2.456339,-2.456224,-2.456125,-2.456033,-2.455915,-2.45578,-2.455653,-2.455546,-2.455421,-2.45533,-2.45523,-2.455176,-2.455061,-2.454942,-2.454838,-2.454731,-2.454609,-2.45451,-2.454414,-2.45429,-2.454165,-2.454033,-2.453925,-2.453829,-2.453743,-2.453686,-2.453615,-2.453527,-2.453421,-2.453308,-2.453197,-2.453082,-2.452981,-2.452893,-2.452787,-2.452701,-2.452631,-2.452572,-2.452554,-2.452553,-2.452509,-2.452435,-2.452385,-2.45238,-2.452444,-2.452437,-2.452399,-2.452326,-2.452282,-2.452246,-2.452194,-2.452093,-2.451995,-2.451923,-2.451829,-2.4517,-2.451565,-2.451426,-2.451275,-2.451142,-2.451004,-2.450879,-2.450768,-2.450821,-2.450895,-2.450771,-2.450611,-2.450464,-2.450445,-2.450294,-2.450168,-2.45005,-2.449948,-2.449872,-2.449789,-2.449816,-2.449819,-2.449809,-2.449813,-2.449847,-2.449835,-2.449935,-2.450008,-2.450096,-2.450093,-2.449971,-2.449815,-2.449671,-2.44954,-2.449389,-2.449246,-2.449102,-2.448954,-2.448794,-2.448641,-2.44847,-2.44834,-2.448275,-2.448242,-2.448212,-2.448145,-2.448099,-2.448124,-2.448178,-2.448219,-2.44824,-2.448305,-2.448341,-2.448361,-2.448296,-2.448168,-2.448065,-2.44796,-2.447861,-2.447828,-2.44776,-2.447642,-2.447614,-2.447536,-2.447451,-2.447412,-2.4474,-2.447234,-2.447085,-2.446919,-2.446747,-2.44659,-2.446469,-2.446307,-2.446148,-2.445988,-2.44586,-2.445724,-2.445578,-2.445436,-2.445311,-2.445175,-2.44505,-2.44495,-2.444826,-2.444695,-2.444562,-2.444474,-2.444387,-2.444319,-2.444177,-2.444043,-2.443897,-2.443765,-2.443612,-2.443463,-2.443297,-2.443153,-2.442999,-2.442879,-2.442731,-2.442593,-2.442471,-2.442325,-2.442172,-2.442013,-2.44186,-2.441708,-2.441565,-2.441432,-2.44139,-2.441262,-2.441149,-2.441079,-2.441027,-2.44101,-2.440954,-2.440878,-2.440777,-2.44067,-2.440562,-2.440477,-2.440411,-2.440382,-2.440322,-2.440222,-2.440095,-2.439995,-2.439904,-2.439829,-2.439777,-2.439693,-2.439619,-2.439524,-2.4394,-2.439273,-2.439189,-2.439105,-2.439034,-2.438975,-2.438908,-2.438852,-2.438763,-2.43868,-2.438632,-2.438579,-2.438523,-2.438472,-2.438418,-2.438364,-2.438291,-2.438201,-2.438143,-2.438063,-2.438074,-2.438025,-2.437984,-2.437949,-2.437887,-2.437839,-2.43778,-2.437743,-2.437699,-2.437645,-2.437632,-2.437587,-2.437559,-2.437575,-2.437518,-2.437479,-2.437452,-2.437413,-2.437338,-2.437287,-2.437226,-2.43713,-2.437095,-2.437024,-2.437057,-2.436988,-2.436969,-2.436894,-2.43687,-2.436843,-2.436801,-2.436785,-2.436758,-2.436744,-2.436719,-2.436724,-2.436674,-2.436629,-2.436595,-2.436575,-2.436566,-2.436517,-2.43649,-2.436469,-2.436405,-2.436324,-2.436251,-2.436256,-2.436218,-2.436179,-2.43614,-2.436136,-2.436057,-2.435975,-2.43585,-2.435695,-2.435562,-2.435419,-2.43533,-2.43527,-2.435223,-2.435172,-2.435117,-2.435036,-2.434995,-2.43497,-2.43483,-2.434666,-2.434523,-2.434362,-2.434214,-2.434052,-2.433929,-2.433842,-2.433736,-2.433615,-2.433504,-2.43338,-2.433236,-2.433071,-2.432908,-2.432919,-2.432978,-2.433064,-2.433185,-2.433316,-2.433404,-2.433458,-2.433492,-2.433505,-2.433512,-2.433488,-2.433508,-2.433508,-2.433477,-2.433465,-2.433436,-2.433399,-2.433395,-2.43335,-2.433322,-2.433333,-2.433328,-2.433352,-2.433446,-2.433431,-2.43351,-2.433605,-2.43369,-2.433748,-2.433798,-2.433845,-2.433906,-2.433977,-2.43406,-2.434096,-2.434192,-2.4343,-2.434439,-2.434562,-2.434666,-2.434792,-2.434932,-2.435049,-2.435187,-2.435335,-2.435486,-2.435616,-2.435765,-2.435935,-2.436077,-2.43624,-2.436394,-2.436533,-2.436651,-2.436809,-2.436969,-2.437112,-2.437253,-2.4374,-2.437551,-2.437701,-2.437836,-2.437985,-2.438135,-2.43826,-2.438397,-2.438541,-2.438697,-2.438859,-2.438973,-2.439104,-2.439238,-2.439358,-2.439506,-2.439675,-2.439819,-2.439977,-2.440094,-2.440249,-2.440413,-2.440528,-2.440467,-2.440443,-2.440418,-2.440458,-2.440558,-2.440705,-2.440809,-2.440891,-2.44091,-2.44101,-2.441127,-2.441264,-2.441385,-2.441521,-2.441627,-2.44168,-2.441638,-2.441593,-2.441612,-2.441671,-2.441707,-2.441805,-2.441925,-2.442082,-2.442233,-2.44237,-2.442526,-2.442634,-2.44272,-2.442872,-2.443003,-2.443135,-2.443264,-2.44341,-2.443521,-2.443658,-2.443809,-2.443912,-2.443971,-2.44409,-2.444246,-2.444405,-2.444569,-2.444715,-2.444884,-2.445045,-2.445112,-2.445161,-2.445237,-2.445282,-2.445349,-2.445436,-2.445494,-2.445576,-2.445639,-2.445706,-2.445772,-2.445846,-2.445903,-2.445973,-2.445977,-2.446066,-2.446138,-2.446248,-2.446322,-2.446438,-2.446556,-2.446618,-2.446665,-2.446716,-2.44676,-2.446788,-2.446886,-2.446996,-2.44709,-2.447196,-2.447315,-2.447397,-2.447461,-2.447526,-2.447593,-2.447681,-2.447812,-2.447924,-2.448029,-2.448098,-2.448194,-2.448327,-2.448454,-2.448597,-2.448759,-2.448931,-2.449068,-2.449207,-2.44937,-2.449501,-2.44966,-2.449799,-2.449956,-2.450097,-2.450238,-2.450412,-2.450574,-2.450746,-2.450902,-2.451055,-2.451212,-2.451389,-2.451545,-2.451701,-2.45186,-2.452003,-2.452145,-2.452271,-2.4524,-2.452519,-2.452614,-2.452752,-2.452893,-2.453025,-2.453157,-2.453301,-2.453406,-2.453537,-2.453668,-2.453824,-2.45398,-2.454116,-2.454268,-2.454403,-2.454533,-2.454643,-2.454742,-2.454851,-2.454976,-2.455061,-2.455195,-2.455285,-2.455328,-2.455369,-2.455409,-2.455452,-2.455556,-2.455681,-2.455803,-2.455912,-2.456052,-2.456151,-2.456253,-2.456364,-2.456442,-2.456517,-2.45664,-2.45681,-2.45697,-2.457134,-2.457306,-2.457469,-2.457647,-2.457826,-2.457994,-2.458149,-2.458278,-2.458423,-2.45858,-2.458726,-2.458835,-2.458989,-2.459144,-2.459301,-2.459456,-2.459594,-2.45972,-2.459873,-2.459986,-2.460139,-2.460277,-2.46038,-2.460494,-2.460597,-2.460706,-2.460782,-2.460877,-2.46104,-2.461172,-2.461296,-2.461404,-2.46155,-2.46168,-2.461784,-2.461854,-2.462006,-2.462161,-2.462312,-2.462447,-2.462585,-2.462699,-2.462856,-2.46298,-2.463116,-2.463258,-2.463375,-2.463491,-2.463636,-2.463753,-2.463853,-2.463971,-2.464124,-2.464272,-2.464416,-2.464549,-2.464665,-2.464802,-2.464962,-2.465116,-2.465279,-2.465321,-2.465481,-2.465643,-2.465695,-2.465836,-2.465784,-2.465771,-2.465792,-2.465841,-2.465856,-2.465997,-2.466082,-2.466227,-2.466266,-2.466431,-2.466606,-2.466776,-2.466929,-2.467079,-2.467241,-2.467399,-2.467544,-2.467662,-2.467793,-2.467925,-2.468084,-2.468204,-2.468284,-2.468316,-2.468413,-2.468535,-2.468614,-2.468721,-2.46881,-2.468884,-2.468948,-2.468996,-2.469052,-2.469103,-2.469177,-2.469197,-2.46924,-2.469329,-2.469441,-2.469481,-2.46948,-2.469461,-2.469441,-2.469438,-2.469429,-2.469456,-2.469541,-2.469656,-2.469765,-2.469851,-2.469919,-2.469981,-2.470011,-2.47006,-2.470099,-2.470153,-2.470197,-2.47026,-2.470308,-2.470328,-2.470335,-2.470297,-2.470257,-2.470222,-2.47017,-2.470116,-2.47006,-2.469994,-2.469856,-2.46971,-2.469719,-2.469797,-2.469931,-2.470095,-2.470249,-2.470397,-2.470546,-2.470691,-2.470841,-2.470982,-2.471132,-2.471284,-2.47145,-2.471599,-2.471656,-2.471782,-2.471895,-2.472002,-2.472116,-2.472224,-2.472343,-2.472412,-2.472487,-2.472617,-2.472742,-2.472867,-2.472974,-2.473081,-2.473188,-2.473288,-2.47338,-2.473496,-2.473613,-2.473723,-2.473826,-2.473911,-2.474017,-2.474133,-2.474225,-2.47432,-2.474434,-2.474554,-2.474665,-2.474763,-2.474854,-2.474978,-2.475077,-2.475174,-2.475284,-2.47539,-2.47549,-2.475606,-2.475723,-2.475825,-2.475936,-2.47601,-2.476118,-2.476224,-2.476356,-2.476449,-2.476557,-2.476646,-2.476742,-2.476837,-2.476928,-2.477044,-2.477152,-2.477249,-2.477328,-2.477454,-2.47755,-2.477655,-2.477747,-2.477851,-2.47796,-2.47807,-2.478171,-2.47827,-2.478362,-2.478465,-2.478572,-2.47866,-2.478723,-2.478666,-2.47856,-2.478501,-2.478443,-2.47834,-2.478325,-2.478445,-2.478544,-2.478672,-2.478783,-2.478913,-2.479046,-2.479183,-2.479331,-2.479484,-2.479648,-2.479801,-2.47993,-2.480083,-2.480233,-2.480389,-2.480548,-2.480709,-2.480862,-2.48101,-2.481148,-2.481256,-2.481259,-2.481217,-2.481137,-2.48103,-2.480902,-2.480779,-2.480637,-2.480505,-2.48038,-2.480287,-2.48018,-2.480065,-2.480013,-2.479979,-2.479959,-2.479946,-2.479977,-2.479967,-2.479972,-2.479953,-2.479947,-2.479949,-2.479965,-2.479995,-2.480047,-2.480083,-2.480158,-2.480248,-2.480332,-2.480403,-2.480499,-2.480565,-2.480605,-2.480637,-2.480665,-2.480709,-2.480767,-2.48076,-2.480708,-2.480625,-2.480581,-2.480519,-2.480521,-2.480502,-2.480617,-2.480608,-2.480611,-2.480575,-2.480597,-2.480586,-2.480571,-2.480565,-2.480581,-2.480606,-2.480616,-2.480667,-2.480716,-2.480763,-2.480769,-2.480718,-2.480705,-2.480724,-2.480829,-2.480843,-2.480916,-2.480897,-2.480868,-2.480836,-2.480774,-2.480803,-2.480778,-2.48084,-2.480874,-2.480927,-2.480971,-2.481045,-2.481183,-2.481292,-2.481335,-2.481354,-2.48141,-2.481491,-2.481565,-2.481683,-2.481763,-2.481773,-2.48177,-2.481782,-2.481781,-2.481726,-2.481702,-2.481746,-2.481795,-2.481826,-2.481899,-2.481962,-2.481985,-2.482035,-2.482153,-2.48221,-2.482277,-2.482377,-2.482465,-2.482557,-2.482535,-2.482556,-2.482646,-2.48264,-2.482683,-2.482773,-2.482815,-2.482814,-2.482798,-2.482803,-2.482796,-2.4828,-2.482823,-2.482802,-2.482818,-2.482809,-2.482755,-2.48275,-2.482732,-2.482712,-2.482698,-2.482686,-2.482667,-2.482652,-2.482631,-2.482609,-2.482622,-2.482636,-2.48265,-2.482669,-2.482661,-2.482612,-2.482532,-2.4825,-2.482422,-2.482331,-2.482248,-2.4822,-2.482172,-2.482216,-2.482283,-2.482336,-2.482366,-2.48236,-2.482326,-2.482316,-2.482329,-2.482286,-2.482264,-2.482203,-2.48213,-2.482047,-2.48197,-2.481888,-2.481782,-2.481718,-2.481649,-2.481586,-2.481585,-2.481632,-2.481581,-2.481613,-2.481761,-2.481876,-2.481983,-2.482066,-2.482128,-2.482168,-2.482252,-2.482342,-2.482449,-2.482467,-2.482524,-2.482589,-2.482683,-2.482768,-2.482866,-2.482986,-2.483064,-2.48306,-2.48306,-2.483104,-2.483069,-2.483074,-2.483163,-2.48319,-2.483266,-2.483373,-2.483451,-2.483568,-2.483653,-2.483781,-2.483935,-2.484074,-2.484123,-2.484204,-2.484289,-2.484365,-2.484429,-2.484479,-2.484532,-2.484588,-2.484678,-2.484751,-2.484734,-2.484733,-2.484706,-2.484659,-2.484591,-2.484471,-2.484362,-2.484235,-2.484098,-2.483967,-2.483812,-2.483669,-2.48352,-2.483378,-2.483239,-2.483092,-2.48299,-2.482971,-2.48309,-2.482995,-2.482859,-2.482706,-2.482554,-2.482398,-2.482244,-2.482158,-2.482076,-2.481994,-2.481895,-2.481824,-2.481808,-2.481887,-2.481876,-2.481978,-2.482009,-2.482127,-2.482183,-2.482258,-2.482289,-2.482324,-2.482328,-2.482443,-2.482519,-2.482596,-2.482714,-2.482811,-2.482906,-2.482995,-2.483041,-2.483007,-2.483001,-2.482827,-2.482939,-2.483037,-2.483069,-2.483053,-2.482989,-2.482932,-2.482912,-2.482876,-2.482756,-2.482651,-2.482488,-2.482383,-2.482219,-2.482087,-2.481949,-2.481805,-2.481907,-2.481954,-2.481815,-2.481651,-2.481507,-2.481363,-2.481221,-2.481067,-2.480913,-2.480777,-2.480664,-2.480564,-2.48048,-2.48035,-2.4802,-2.480042,-2.479945,-2.479777,-2.479631,-2.47947,-2.479301,-2.479136,-2.47897,-2.47882,-2.478665,-2.478524,-2.478386,-2.478246,-2.478106,-2.477966,-2.477838,-2.477724,-2.477602,-2.477477,-2.477362,-2.477256,-2.477138,-2.477027,-2.47693,-2.476839,-2.476724,-2.476609,-2.476502,-2.476367,-2.476254,-2.476113,-2.476028,-2.475917,-2.475944,-2.475863,-2.475742,-2.475638,-2.475568,-2.475444,-2.475273,-2.47512,-2.474992,-2.474847,-2.474736,-2.474598,-2.47449,-2.474369,-2.474238,-2.47412,-2.473999,-2.473869,-2.473712,-2.473544,-2.473396,-2.473227,-2.473072,-2.472926,-2.472757,-2.472598,-2.47248,-2.472324,-2.472168,-2.47201,-2.471843,-2.471673,-2.471516,-2.471353,-2.471191,-2.471022,-2.470866,-2.470706,-2.470532,-2.470352,-2.470192,-2.47002,-2.469854,-2.469693,-2.469544,-2.469384,-2.469211,-2.46904,-2.468866,-2.468699,-2.468537,-2.468383,-2.468213,-2.468043,-2.46789,-2.467742,-2.467575,-2.467426,-2.467275,-2.467107,-2.466946,-2.466793,-2.466627,-2.466466,-2.466299,-2.466149,-2.465982,-2.465828,-2.465678,-2.465516,-2.465368,-2.465212,-2.465076,-2.464904,-2.464749,-2.464588,-2.464429,-2.464286,-2.464132,-2.463961,-2.46379,-2.463627,-2.463468,-2.463311,-2.46315,-2.462991,-2.462829,-2.462667,-2.462499,-2.462338,-2.462167,-2.462016,-2.461855,-2.461699,-2.461544,-2.461466,-2.461312,-2.461147,-2.460987,-2.460825,-2.460681,-2.460529,-2.46038,-2.460234,-2.460089,-2.459951,-2.459784,-2.459612,-2.459448,-2.459295,-2.459147,-2.459001,-2.458828,-2.458677,-2.458514,-2.458354,-2.458196,-2.458045,-2.457888,-2.457738,-2.457563,-2.457407,-2.457263,-2.457096,-2.456947,-2.456788,-2.456647,-2.456488,-2.456327,-2.456171,-2.456007,-2.455855,-2.455697,-2.45554,-2.455374,-2.455207,-2.455055,-2.454921,-2.454763,-2.454614,-2.454442,-2.454281,-2.454126,-2.45398,-2.453816,-2.453649,-2.453488,-2.453331,-2.453199,-2.453046,-2.452884,-2.452727,-2.452587,-2.452424,-2.45228,-2.452126,-2.451956,-2.451808,-2.451648,-2.451508,-2.451352,-2.451193,-2.451048,-2.450916,-2.450758,-2.450596,-2.450461,-2.4503,-2.450147,-2.450035,-2.449863,-2.449713,-2.449546,-2.449383,-2.449223,-2.449075,-2.448916,-2.448769,-2.448607,-2.448446,-2.448294,-2.448139,-2.447985,-2.447817,-2.447648,-2.447511,-2.44738,-2.447211,-2.447063,-2.446904,-2.446747,-2.446585,-2.446431,-2.44628,-2.446123,-2.445966,-2.445803,-2.445638,-2.445472,-2.445298,-2.44514,-2.444993,-2.444846,-2.444685,-2.444522,-2.444367,-2.444212,-2.444056,-2.443905,-2.443857,-2.443699,-2.443538,-2.443381,-2.443225,-2.443054,-2.442889,-2.442718,-2.442566,-2.442396,-2.442242,-2.442092,-2.441936,-2.441777,-2.44162,-2.441454,-2.44129,-2.441131,-2.440968,-2.440819,-2.440653,-2.440489,-2.440329,-2.440175,-2.440013,-2.439847,-2.439698,-2.439532,-2.43937,-2.439208,-2.439069,-2.438953,-2.438816,-2.43873,-2.438595,-2.438464,-2.438334,-2.438185,-2.438058,-2.437939,-2.437792,-2.437662,-2.437525,-2.43739,-2.437251,-2.437104,-2.436974,-2.436837,-2.436703,-2.436559,-2.436418,-2.436292,-2.436161,-2.436032,-2.435894,-2.435762,-2.435637,-2.435502,-2.435368,-2.435224,-2.435107,-2.434963,-2.434825,-2.434687,-2.434538,-2.434401,-2.434278,-2.434141,-2.433993,-2.433838,-2.433682,-2.433567,-2.433414,-2.433265,-2.433102,-2.432937,-2.432781,-2.432621,-2.432461,-2.432305,-2.432135,-2.431973,-2.431943,-2.43176,-2.431603,-2.431444,-2.431323,-2.431208,-2.431113,-2.431009,-2.430912,-2.430803,-2.4308,-2.430647,-2.430544,-2.430438,-2.430292,-2.430142,-2.429981,-2.429816,-2.429687,-2.429527,-2.429372,-2.429212,-2.429069,-2.428924,-2.428777,-2.428621,-2.428474,-2.428335,-2.428204,-2.428047,-2.427902,-2.427752,-2.427595,-2.427434,-2.427286,-2.427134,-2.426979,-2.426815,-2.426661,-2.42651,-2.426356,-2.426201,-2.426035,-2.4259,-2.425766,-2.425626,-2.425488,-2.425349,-2.425229,-2.425126,-2.425003,-2.424882,-2.424762,-2.424672,-2.424538,-2.424481,-2.42439,-2.424269,-2.424152,-2.424016,-2.423852,-2.423681,-2.423542,-2.423378,-2.423222,-2.423058,-2.42291,-2.422758,-2.422617,-2.422459,-2.422309,-2.422165,-2.422035,-2.421872,-2.421706,-2.421552,-2.421391,-2.421221,-2.421053,-2.420885,-2.420721,-2.420573,-2.420419,-2.420312,-2.42017,-2.42005,-2.419938,-2.419812,-2.419706,-2.419599,-2.419508,-2.419391,-2.419255,-2.419092,-2.418938,-2.41879,-2.418644,-2.418484,-2.418351,-2.418208,-2.418059,-2.417901,-2.417764,-2.417618,-2.417482,-2.417316,-2.417174,-2.41702,-2.416908,-2.416752,-2.416614,-2.416483,-2.416343,-2.416197,-2.41609,-2.415979,-2.415846,-2.415699,-2.415543,-2.415401,-2.415248,-2.415085,-2.41493,-2.414762,-2.414589,-2.41443,-2.414363,-2.414246,-2.41416,-2.414037,-2.413937,-2.413901,-2.413878,-2.413797,-2.413679,-2.413526,-2.413358,-2.413195,-2.413047,-2.412941,-2.41284,-2.412745,-2.412696,-2.412611,-2.412524,-2.412449,-2.412395,-2.41236,-2.41235,-2.412336,-2.412322,-2.412293,-2.412247,-2.41217,-2.412077,-2.411957,-2.411824,-2.411689,-2.411531,-2.411362,-2.411201,-2.411059,-2.410909,-2.410759,-2.410661,-2.410495,-2.410334,-2.410235,-2.410088,-2.409953,-2.409812,-2.409656,-2.409489,-2.409337,-2.409205,-2.409056,-2.408903,-2.408799,-2.408638,-2.408495,-2.408455,-2.408288,-2.408123,-2.407965,-2.407803,-2.407633,-2.407495,-2.407337,-2.407206,-2.407082,-2.40693,-2.406816,-2.406691,-2.406597,-2.406467,-2.406316,-2.406159,-2.406041,-2.405887,-2.405744,-2.405609,-2.405475,-2.40532,-2.405159,-2.405028,-2.40489,-2.404734,-2.404575,-2.404411,-2.404255,-2.404096,-2.403946,-2.403805,-2.403673,-2.403561,-2.40346,-2.403361,-2.403275,-2.403211,-2.403123,-2.402989,-2.402823,-2.402678,-2.402527,-2.402369,-2.402214,-2.402052,-2.401886,-2.401722,-2.401571,-2.40142,-2.401255,-2.401086,-2.400923,-2.400771,-2.400635,-2.40049,-2.400352,-2.400222,-2.400067,-2.399898,-2.399725,-2.399569,-2.39942,-2.399262,-2.399115,-2.39896,-2.39881,-2.398665,-2.398522,-2.398351,-2.398207,-2.398056,-2.39789,-2.397728,-2.397715,-2.397547,-2.397367,-2.397196,-2.397037,-2.39687,-2.396681,-2.396505,-2.396349,-2.396206,-2.396075,-2.395932,-2.395821,-2.395873,-2.396008,-2.396172,-2.396208,-2.396268,-2.396394,-2.396538,-2.396708,-2.396899,-2.397053,-2.397244,-2.397399,-2.397559,-2.397719,-2.397799,-2.39794,-2.398098,-2.398265,-2.398365,-2.39852,-2.398616,-2.39877,-2.398915,-2.398977,-2.399139,-2.399281,-2.39944,-2.399536,-2.399629,-2.399797,-2.39994,-2.400081,-2.400209,-2.400336,-2.400349,-2.400415,-2.400541,-2.400569,-2.400541],"lat":[54.768323,54.768321,54.768227,54.768139,54.768048,54.767959,54.767865,54.767858,54.767864,54.767862,54.767917,54.767947,54.767738,54.767814,54.767903,54.767957,54.767963,54.76794,54.767907,54.767878,54.767804,54.767712,54.767627,54.767544,54.767456,54.767377,54.767291,54.767205,54.767112,54.767023,54.766927,54.766832,54.766738,54.766641,54.766548,54.766454,54.76636,54.766274,54.766189,54.766094,54.766006,54.765916,54.765823,54.765733,54.765641,54.765544,54.765446,54.765356,54.76526,54.765173,54.765088,54.765087,54.765036,54.764959,54.764882,54.764807,54.764734,54.764659,54.764571,54.764483,54.764388,54.764307,54.764219,54.764125,54.764034,54.763937,54.763843,54.763742,54.763645,54.763569,54.763489,54.763404,54.763308,54.76321,54.76313,54.763045,54.762964,54.762887,54.7628,54.762716,54.762629,54.762539,54.762455,54.76236,54.762274,54.762188,54.762096,54.762003,54.761914,54.76183,54.761757,54.761684,54.761601,54.761523,54.761441,54.761366,54.761287,54.761211,54.761135,54.761051,54.760973,54.760901,54.760823,54.760748,54.760663,54.76058,54.760507,54.760441,54.760367,54.760312,54.760235,54.760148,54.760063,54.759997,54.759978,54.760005,54.760032,54.760066,54.760091,54.760123,54.760154,54.760181,54.760209,54.760238,54.760258,54.760293,54.760325,54.760355,54.760387,54.76042,54.760435,54.760423,54.760395,54.760344,54.760313,54.760272,54.760242,54.760205,54.760199,54.760152,54.760115,54.760078,54.760077,54.760036,54.759999,54.759958,54.75992,54.75988,54.759845,54.759805,54.759771,54.759764,54.75973,54.759684,54.75963,54.759595,54.759558,54.759516,54.759476,54.759436,54.759397,54.759361,54.759322,54.75928,54.759242,54.759202,54.759154,54.759133,54.759166,54.759204,54.759235,54.759263,54.759299,54.759331,54.759359,54.759399,54.759424,54.759449,54.759471,54.7595,54.75953,54.759565,54.759598,54.75963,54.759669,54.759692,54.759724,54.759757,54.759793,54.759827,54.759858,54.759899,54.759933,54.759961,54.759996,54.760023,54.760055,54.760093,54.760126,54.760168,54.7602,54.760226,54.760257,54.760291,54.760333,54.76037,54.760377,54.760362,54.760344,54.760322,54.760307,54.760282,54.76026,54.760237,54.760203,54.760165,54.760151,54.760129,54.760102,54.760082,54.760064,54.76004,54.760006,54.759981,54.759958,54.759939,54.759902,54.759915,54.759833,54.759739,54.759663,54.759565,54.759471,54.759379,54.759287,54.759198,54.759106,54.759014,54.758923,54.758823,54.75873,54.758635,54.758539,54.758448,54.758351,54.758259,54.75816,54.758066,54.757973,54.75788,54.757789,54.757692,54.757591,54.757492,54.757401,54.757306,54.757216,54.757119,54.757018,54.756915,54.756816,54.756723,54.756632,54.756537,54.756521,54.756427,54.756342,54.756244,54.75615,54.756058,54.755963,54.755874,54.755873,54.75578,54.755695,54.755612,54.755522,54.755437,54.755346,54.755259,54.755171,54.755077,54.754987,54.754902,54.754818,54.754723,54.754633,54.754542,54.75445,54.754357,54.754269,54.754186,54.754101,54.754016,54.753921,54.753839,54.753751,54.753656,54.753562,54.753462,54.753364,54.753267,54.753169,54.753078,54.752984,54.752893,54.752799,54.752706,54.752616,54.752526,54.752428,54.752335,54.752233,54.752137,54.752043,54.751951,54.751859,54.751768,54.751674,54.75158,54.751481,54.751392,54.751378,54.751309,54.751218,54.751119,54.751021,54.750927,54.750836,54.750738,54.750641,54.750551,54.750451,54.750358,54.75026,54.750165,54.75007,54.74997,54.749882,54.749793,54.749712,54.749626,54.749543,54.749456,54.749364,54.749275,54.749189,54.749097,54.749003,54.748911,54.748827,54.748734,54.748645,54.748557,54.748463,54.748369,54.748279,54.748193,54.748107,54.748026,54.747945,54.747867,54.747784,54.747705,54.747626,54.747554,54.747476,54.747395,54.747318,54.747246,54.747172,54.747106,54.74704,54.746978,54.746928,54.74686,54.7468,54.746734,54.74666,54.746577,54.746509,54.746435,54.746355,54.74628,54.746199,54.746119,54.74604,54.745968,54.745887,54.745814,54.745741,54.745665,54.745598,54.74553,54.745463,54.745392,54.745318,54.745247,54.745187,54.7451,54.745015,54.744923,54.744824,54.744739,54.744642,54.744553,54.744464,54.744374,54.744289,54.744197,54.744111,54.74403,54.743957,54.743888,54.743831,54.74377,54.743727,54.743688,54.74366,54.74365,54.743631,54.743603,54.743548,54.74352,54.743508,54.743484,54.743409,54.743326,54.743262,54.743195,54.743137,54.743081,54.743018,54.742936,54.742858,54.74277,54.742683,54.742606,54.742515,54.74242,54.742335,54.742235,54.742135,54.742042,54.741949,54.741926,54.741828,54.741737,54.741635,54.741545,54.741447,54.741349,54.741257,54.741156,54.741065,54.740974,54.740876,54.740783,54.740692,54.7406,54.740509,54.74041,54.740312,54.740213,54.740115,54.740018,54.739926,54.739831,54.739737,54.739642,54.739556,54.739464,54.73938,54.739296,54.739209,54.739119,54.739029,54.738942,54.738853,54.738772,54.738693,54.738607,54.73853,54.738448,54.738374,54.738285,54.738198,54.738115,54.738026,54.737951,54.737871,54.73779,54.737701,54.737609,54.737519,54.737422,54.737332,54.737242,54.737156,54.737065,54.736977,54.736881,54.736785,54.736692,54.736599,54.736508,54.736407,54.736314,54.736223,54.736124,54.736044,54.735982,54.735922,54.735848,54.735758,54.735673,54.735586,54.735502,54.735405,54.735313,54.735227,54.735142,54.735054,54.734966,54.73487,54.734777,54.73468,54.73459,54.734503,54.734412,54.734322,54.734232,54.734143,54.734057,54.733971,54.733884,54.733792,54.733708,54.733621,54.733528,54.733434,54.733343,54.733251,54.733163,54.733069,54.73298,54.732891,54.732803,54.732709,54.732618,54.732527,54.732442,54.732354,54.73227,54.732177,54.73209,54.732001,54.73191,54.731808,54.731709,54.73162,54.73153,54.73143,54.73133,54.731229,54.731143,54.731057,54.73097,54.730898,54.730849,54.730803,54.730744,54.730668,54.730577,54.730478,54.730385,54.730301,54.730208,54.730111,54.730017,54.73001,54.729914,54.729824,54.729724,54.72963,54.729538,54.729442,54.72935,54.729256,54.729164,54.729078,54.728992,54.728904,54.728815,54.728727,54.728639,54.728545,54.728453,54.728357,54.728264,54.728178,54.728091,54.727997,54.727909,54.727818,54.72773,54.727639,54.72754,54.727448,54.727354,54.727261,54.727171,54.727076,54.726976,54.726877,54.726784,54.726685,54.726594,54.726504,54.726401,54.726301,54.726204,54.726113,54.726043,54.725982,54.725899,54.725819,54.725748,54.725672,54.725598,54.725517,54.725432,54.725348,54.725266,54.725189,54.725104,54.725017,54.724939,54.724869,54.724797,54.724727,54.724654,54.724581,54.72452,54.724457,54.724394,54.724316,54.724235,54.724149,54.724067,54.723976,54.723883,54.723802,54.723725,54.723648,54.723567,54.7235,54.723416,54.723332,54.723254,54.723173,54.723091,54.72301,54.722927,54.722841,54.722755,54.722665,54.722571,54.722482,54.722396,54.722299,54.722211,54.722118,54.722028,54.721934,54.721844,54.721755,54.721657,54.721564,54.721467,54.721377,54.721282,54.721186,54.721092,54.721007,54.720917,54.720829,54.720735,54.720637,54.720541,54.720443,54.720353,54.720264,54.720175,54.720081,54.719994,54.719896,54.719814,54.719739,54.719665,54.719584,54.719502,54.719408,54.719327,54.719292,54.719273,54.719221,54.719178,54.719154,54.719103,54.719033,54.718961,54.718885,54.71882,54.718808,54.71883,54.71881,54.718787,54.718789,54.718774,54.718724,54.718672,54.718619,54.718577,54.718526,54.718515,54.718474,54.718475,54.718451,54.718398,54.718366,54.718341,54.718296,54.718276,54.718345,54.71836,54.718317,54.718226,54.718138,54.718083,54.718032,54.717978,54.717927,54.717872,54.717821,54.717785,54.717738,54.717678,54.71763,54.717622,54.717639,54.71762,54.717606,54.717645,54.717663,54.717659,54.717659,54.717663,54.717621,54.717554,54.717476,54.717409,54.717328,54.717232,54.717166,54.717143,54.717124,54.717087,54.717116,54.717047,54.716965,54.716879,54.716823,54.716795,54.716763,54.716719,54.716652,54.716583,54.716546,54.716528,54.716537,54.716525,54.716549,54.716589,54.716617,54.716655,54.716688,54.716719,54.716755,54.716817,54.71691,54.71701,54.717101,54.717181,54.717123,54.717097,54.717131,54.717176,54.717241,54.717286,54.717331,54.71738,54.717445,54.717519,54.717585,54.717641,54.717685,54.717748,54.717801,54.717854,54.717898,54.717901,54.717933,54.717954,54.71797,54.717983,54.71801,54.718037,54.71806,54.718089,54.718106,54.718112,54.71813,54.718132,54.718142,54.718155,54.718172,54.718193,54.718213,54.718211,54.718227,54.718223,54.71822,54.718223,54.71822,54.718213,54.718217,54.71822,54.71822,54.718214,54.718213,54.718204,54.718195,54.718199,54.718189,54.718198,54.718201,54.718194,54.718187,54.718188,54.718194,54.718194,54.718188,54.718199,54.718196,54.718197,54.718207,54.718197,54.718185,54.7182,54.718211,54.7182,54.718179,54.71815,54.718125,54.7181,54.71808,54.718078,54.718071,54.71807,54.718063,54.71805,54.718042,54.718045,54.718031,54.718036,54.718035,54.718012,54.71797,54.717946,54.717919,54.717894,54.717862,54.717836,54.717805,54.717771,54.717743,54.717717,54.717689,54.717659,54.717623,54.7176,54.71757,54.717533,54.717501,54.717464,54.717429,54.717406,54.717359,54.717344,54.717284,54.717227,54.71717,54.717101,54.717034,54.716963,54.71689,54.71681,54.716729,54.716656,54.716581,54.716505,54.716431,54.716358,54.716282,54.716214,54.71614,54.716061,54.715971,54.715896,54.715824,54.715743,54.71566,54.715586,54.715518,54.715449,54.715382,54.7153,54.715219,54.71514,54.715056,54.714974,54.71489,54.714818,54.714742,54.714665,54.714598,54.714546,54.714461,54.714368,54.714277,54.714191,54.714119,54.714036,54.713995,54.713927,54.713831,54.713742,54.713691,54.713738,54.713793,54.713782,54.713756,54.713733,54.713715,54.713677,54.713637,54.713583,54.713535,54.713481,54.71343,54.713383,54.71332,54.713267,54.713262,54.71325,54.713227,54.713219,54.713196,54.713164,54.713134,54.713115,54.713127,54.713122,54.713111,54.713084,54.713057,54.713082,54.713121,54.713118,54.713121,54.71313,54.713128,54.71313,54.713112,54.71309,54.713054,54.713027,54.712992,54.712964,54.712942,54.712915,54.712891,54.712889,54.712864,54.71287,54.712877,54.712868,54.712884,54.7129,54.712922,54.71288,54.712805,54.712826,54.71288,54.712909,54.712823,54.71273,54.712636,54.712598,54.712558,54.712521,54.712487,54.712464,54.712471,54.71246,54.712477,54.71248,54.712507,54.712529,54.712548,54.71257,54.712595,54.712594,54.712601,54.712582,54.712551,54.712523,54.71249,54.712476,54.712444,54.712433,54.71241,54.712388,54.712358,54.712334,54.712319,54.712288,54.712252,54.712217,54.712174,54.712138,54.712118,54.712112,54.712108,54.712127,54.712156,54.712188,54.712178,54.712148,54.712153,54.712136,54.712128,54.71212,54.712099,54.712088,54.712071,54.712039,54.711993,54.711944,54.711886,54.711868,54.711848,54.711811,54.711764,54.711678,54.711616,54.711555,54.711479,54.711417,54.711386,54.711318,54.711241,54.71119,54.711141,54.71107,54.710995,54.710926,54.710892,54.710804,54.710713,54.710626,54.710539,54.710443,54.710368,54.710274,54.710182,54.710088,54.71001,54.709934,54.709841,54.709744,54.709684,54.709622,54.709533,54.70944,54.709355,54.709263,54.709177,54.709086,54.709004,54.708934,54.708845,54.708752,54.708667,54.708584,54.708495,54.708402,54.708318,54.708227,54.708136,54.708074,54.707982,54.707977,54.707959,54.70789,54.70783,54.707761,54.707705,54.707624,54.707552,54.707478,54.707393,54.707323,54.70724,54.707158,54.707085,54.706996,54.706919,54.706836,54.706813,54.706722,54.706736,54.706648,54.706557,54.706479,54.706395,54.706299,54.706218,54.706145,54.706055,54.705961,54.705879,54.705788,54.70569,54.7056,54.705508,54.705431,54.705357,54.705271,54.705183,54.705095,54.705024,54.704969,54.704888,54.704798,54.704739,54.704655,54.704558,54.70446,54.704369,54.704279,54.704183,54.704085,54.703986,54.703892,54.703799,54.703701,54.7036,54.703497,54.703397,54.703303,54.70324,54.703143,54.703054,54.703059,54.702994,54.702981,54.703052,54.703063,54.703025,54.70297,54.702915,54.702902,54.702896,54.702886,54.702876,54.702861,54.702853,54.70284,54.702814,54.702796,54.702791,54.702764,54.702738,54.70272,54.702695,54.702672,54.702629,54.702588,54.702572,54.702568,54.702562,54.702535,54.702508,54.702485,54.702463,54.702449,54.7024,54.702369,54.702295,54.702278,54.702282,54.702266,54.702227,54.702191,54.702181,54.702148,54.702096,54.702033,54.702004,54.701967,54.701923,54.701873,54.701847,54.7018,54.701753,54.701732,54.701743,54.701734,54.701674,54.701628,54.701597,54.701559,54.701517,54.701506,54.701483,54.701446,54.701404,54.701387,54.701315,54.70128,54.70124,54.701224,54.701183,54.701162,54.701113,54.701085,54.70106,54.701027,54.700988,54.700973,54.700902,54.700859,54.70084,54.700809,54.700764,54.70076,54.700737,54.700674,54.700617,54.700541,54.700494,54.700455,54.700387,54.70037,54.700313,54.700279,54.700289,54.70026,54.700183,54.700115,54.700051,54.700021,54.69998,54.699913,54.699838,54.699756,54.699712,54.699659,54.699604,54.699537,54.699457,54.69939,54.699325,54.699236,54.699144,54.69909,54.698999,54.69892,54.698829,54.698745,54.698673,54.698604,54.698524,54.698439,54.698385,54.698314,54.698233,54.698153,54.698078,54.698006,54.697932,54.697863,54.6978,54.697729,54.697688,54.697594,54.697507,54.697415,54.69734,54.697291,54.697205,54.697134,54.697063,54.69699,54.696963,54.696883,54.696803,54.696711,54.696627,54.696535,54.696444,54.696349,54.696271,54.69621,54.696162,54.696179,54.696237,54.696212,54.696153,54.696149,54.696107,54.696032,54.695949,54.695894,54.695854,54.695846,54.695794,54.695748,54.695678,54.695641,54.695594,54.695572,54.695532,54.695468,54.695409,54.695341,54.695265,54.6952,54.695124,54.69504,54.694964,54.694884,54.694812,54.694727,54.694639,54.694553,54.694532,54.694456,54.694376,54.694301,54.69422,54.694138,54.694058,54.693974,54.693885,54.693803,54.693729,54.693662,54.69358,54.693503,54.693419,54.693337,54.693273,54.693202,54.69314,54.693068,54.69299,54.692947,54.692907,54.692878,54.692799,54.692716,54.692646,54.692576,54.692501,54.692416,54.692323,54.692225,54.692142,54.692059,54.691977,54.691901,54.691817,54.691745,54.69166,54.691576,54.691496,54.691423,54.691346,54.69133,54.691254,54.691176,54.691108,54.69104,54.691005,54.69092,54.690862,54.690807,54.690732,54.690673,54.690594,54.690536,54.6905,54.690454,54.690399,54.690374,54.69031,54.690254,54.690183,54.69011,54.690053,54.689987,54.68992,54.689841,54.689776,54.68973,54.689661,54.689607,54.689547,54.689489,54.689428,54.68937,54.689293,54.689224,54.689147,54.689072,54.689027,54.688962,54.688897,54.688828,54.688755,54.688674,54.688659,54.688594,54.68853,54.688447,54.688377,54.688319,54.688241,54.688167,54.688097,54.68803,54.687978,54.68791,54.687833,54.687746,54.687654,54.68757,54.687494,54.687417,54.687352,54.687272,54.687203,54.687128,54.687047,54.686973,54.686893,54.686806,54.686721,54.686623,54.686526,54.686436,54.686351,54.686264,54.686173,54.686077,54.685985,54.685895,54.685812,54.68572,54.685632,54.685543,54.685468,54.685393,54.685311,54.685234,54.685179,54.685124,54.685067,54.685016,54.684955,54.684899,54.684838,54.684768,54.684705,54.684626,54.684589,54.684555,54.68451,54.684513,54.684475,54.684418,54.684353,54.684282,54.6842,54.684226,54.684133,54.68404,54.683944,54.683843,54.683753,54.683738,54.68366,54.683575,54.683498,54.683405,54.683341,54.68331,54.683267,54.683207,54.683162,54.68311,54.683058,54.683022,54.682991,54.682946,54.682918,54.682842,54.682753,54.682665,54.682564,54.682472,54.682375,54.682278,54.682191,54.682097,54.682,54.681899,54.681811,54.681719,54.681633,54.681565,54.681479,54.681391,54.681318,54.681229,54.681146,54.681072,54.680978,54.680898,54.680816,54.680805,54.680715,54.680677,54.68063,54.680588,54.680596,54.680564,54.68053,54.680535,54.680498,54.68047,54.680419,54.680367,54.680333,54.680284,54.680224,54.680169,54.680108,54.680035,54.679965,54.679914,54.679858,54.679778,54.679698,54.679609,54.679554,54.679499,54.679449,54.679398,54.679358,54.679324,54.679309,54.679257,54.679208,54.679149,54.679117,54.679072,54.679003,54.678961,54.678924,54.678903,54.678863,54.678835,54.678785,54.678728,54.678693,54.678631,54.678563,54.678472,54.678375,54.678277,54.678184,54.678091,54.678023,54.677939,54.677856,54.677779,54.677696,54.677605,54.677514,54.677436,54.677366,54.677294,54.677209,54.677119,54.677033,54.676955,54.676869,54.676791,54.676733,54.676661,54.676578,54.676492,54.676408,54.676318,54.676229,54.676137,54.676061,54.675973,54.675885,54.67579,54.675694,54.675605,54.675518,54.675431,54.675348,54.675262,54.675176,54.675091,54.674999,54.674912,54.674817,54.674728,54.674644,54.674558,54.674467,54.674374,54.674281,54.674192,54.674093,54.674006,54.673917,54.673823,54.673732,54.673639,54.673546,54.67345,54.67337,54.673277,54.673183,54.673101,54.673011,54.672921,54.672871,54.672779,54.67275,54.672657,54.672568,54.67247,54.67238,54.672281,54.672188,54.672098,54.672003,54.671905,54.671812,54.671712,54.671616,54.671526,54.671432,54.671339,54.671246,54.671151,54.671068,54.670984,54.6709,54.670897,54.670799,54.670698,54.670607,54.670504,54.670414,54.670327,54.670267,54.670232,54.670175,54.670119,54.670043,54.669947,54.669856,54.669767,54.669678,54.669591,54.669499,54.669402,54.669363,54.669347,54.669307,54.669273,54.66924,54.669209,54.669152,54.669074,54.669003,54.668938,54.668868,54.668806,54.66876,54.66874,54.668731,54.668639,54.668541,54.668459,54.668396,54.668334,54.668256,54.668161,54.668064,54.667961,54.667863,54.667771,54.667682,54.667583,54.667484,54.667393,54.667304,54.667208,54.667112,54.667017,54.666922,54.66683,54.666739,54.666648,54.666572,54.666556,54.666469,54.666385,54.666299,54.666212,54.666115,54.666076,54.665986,54.665893,54.665811,54.665711,54.665631,54.665549,54.6655,54.665438,54.665361,54.665291,54.665228,54.665165,54.665108,54.665078,54.665031,54.664973,54.664945,54.664916,54.66488,54.664856,54.664812,54.664763,54.664705,54.664659,54.664621,54.664578,54.664521,54.664488,54.664453,54.664397,54.664353,54.664321,54.664268,54.6642,54.664154,54.664106,54.664077,54.664044,54.663974,54.663922,54.663875,54.663807,54.663757,54.663744,54.663698,54.663725,54.663785,54.663768,54.663777,54.663715,54.66363,54.663532,54.663435,54.66334,54.663269,54.663216,54.663145,54.663065,54.662971,54.662891,54.66282,54.662755,54.662684,54.662624,54.662555,54.662464,54.662368,54.662272,54.662177,54.662092,54.661993,54.661919,54.661856,54.661842,54.661791,54.661743,54.661702,54.66163,54.66155,54.661505,54.661451,54.661399,54.661332,54.661277,54.661215,54.66117,54.661126,54.661056,54.660972,54.660909,54.660888,54.660861,54.660851,54.660815,54.660796,54.660765,54.660684,54.660593,54.660509,54.660423,54.660327,54.660238,54.660146,54.660059,54.659962,54.659878,54.659786,54.659705,54.659617,54.659532,54.659497,54.659416,54.659317,54.659236,54.65915,54.659081,54.659007,54.658923,54.658822,54.658734,54.658635,54.65854,54.658457,54.658389,54.658304,54.65823,54.65816,54.658077,54.657985,54.657894,54.657812,54.65773,54.657678,54.657612,54.657527,54.657435,54.657348,54.657294,54.657238,54.657191,54.657185,54.657192,54.657138,54.657088,54.657064,54.65701,54.65697,54.656917,54.656886,54.656836,54.656785,54.656764,54.656751,54.656726,54.656676,54.656649,54.656629,54.656648,54.656642,54.65661,54.656575,54.656532,54.656488,54.656433,54.656379,54.656309,54.65623,54.656172,54.656125,54.656052,54.655996,54.655955,54.655883,54.655826,54.655773,54.655728,54.655676,54.655627,54.655589,54.655539,54.655485,54.655412,54.655332,54.655253,54.655197,54.655119,54.655056,54.654979,54.654885,54.654788,54.654693,54.654603,54.654527,54.654457,54.654396,54.654331,54.654291,54.654213,54.654135,54.654071,54.653975,54.653894,54.65383,54.653804,54.653817,54.653809,54.653776,54.653758,54.653739,54.653734,54.65373,54.653762,54.653814,54.653865,54.653887,54.653928,54.653995,54.654003,54.654015,54.654023,54.65402,54.653958,54.653885,54.653837,54.653764,54.653716,54.653667,54.653596,54.65352,54.653446,54.653366,54.653282,54.653207,54.653166,54.653116,54.653061,54.652992,54.652941,54.65288,54.652814,54.652729,54.652701,54.652672,54.652639,54.652592,54.652546,54.652483,54.652458,54.652398,54.652347,54.652307,54.652237,54.652174,54.652127,54.652057,54.651982,54.651922,54.651892,54.651846,54.651797,54.651744,54.651673,54.651619,54.651613,54.65158,54.65155,54.651523,54.651541,54.651545,54.651538,54.651494,54.651408,54.651313,54.651213,54.651122,54.651031,54.650987,54.650938,54.650903,54.650897,54.650892,54.650905,54.650895,54.650854,54.650819,54.650781,54.650742,54.650685,54.650624,54.65056,54.650503,54.650468,54.650403,54.650321,54.650294,54.650207,54.650145,54.65006,54.64998,54.649899,54.649818,54.649736,54.649646,54.64955,54.649465,54.649384,54.649289,54.649195,54.649121,54.649055,54.648967,54.648876,54.648782,54.648691,54.648594,54.648574,54.648484,54.648394,54.648332,54.648264,54.648188,54.648095,54.648007,54.647914,54.647826,54.647727,54.647639,54.647551,54.647463,54.647376,54.647287,54.647196,54.647097,54.647002,54.646902,54.646806,54.646711,54.646617,54.646528,54.646485,54.646451,54.646359,54.64628,54.646234,54.646194,54.646155,54.646118,54.646089,54.646046,54.646015,54.645971,54.645921,54.645886,54.645851,54.645807,54.645746,54.645673,54.645611,54.64554,54.645471,54.645388,54.645321,54.64524,54.645155,54.645089,54.645025,54.644954,54.644872,54.644793,54.644724,54.644644,54.644564,54.644484,54.644424,54.644353,54.644282,54.644199,54.644119,54.644042,54.643967,54.643885,54.643818,54.643748,54.643671,54.643598,54.643516,54.64344,54.64337,54.643292,54.643214,54.643149,54.64307,54.643009,54.642935,54.642852,54.642777,54.642681,54.64261,54.642538,54.642481,54.6424,54.642324,54.642247,54.642175,54.642103,54.642026,54.641962,54.64189,54.641814,54.641733,54.641663,54.641592,54.64152,54.641441,54.641364,54.641297,54.641227,54.641151,54.641081,54.641006,54.640929,54.640854,54.640765,54.640681,54.640591,54.640525,54.640439,54.640354,54.640281,54.64024,54.64017,54.640095,54.640021,54.639947,54.639889,54.639829,54.63978,54.639745,54.639718,54.63969,54.639654,54.639602,54.639562,54.639516,54.639484,54.639465,54.639446,54.639424,54.639377,54.639332,54.639263,54.639163,54.639071,54.638986,54.638913,54.638845,54.638774,54.638716,54.638661,54.6386,54.638522,54.638455,54.638387,54.638296,54.638208,54.638116,54.638022,54.637926,54.637836,54.637743,54.637647,54.637557,54.637535,54.637436,54.637335,54.63724,54.637144,54.637058,54.636979,54.636891,54.636809,54.636728,54.636645,54.636552,54.636454,54.636358,54.636262,54.636178,54.636084,54.635995,54.635901,54.635798,54.635713,54.63562,54.635522,54.635459,54.635369,54.635264,54.635172,54.635135,54.635042,54.634951,54.63486,54.634762,54.634665,54.634559,54.634469,54.63437,54.634282,54.634183,54.634097,54.633995,54.633902,54.633833,54.633734,54.633644,54.633539,54.633434,54.633345,54.633251,54.633161,54.633069,54.632986,54.632895,54.632806,54.632702,54.632621,54.632554,54.632474,54.632386,54.632287,54.632201,54.632114,54.632032,54.631966,54.631886,54.631786,54.631696,54.631604,54.631508,54.631421,54.631399,54.63131,54.631213,54.63112,54.631031,54.630944,54.630851,54.630763,54.630687,54.6306,54.630512,54.630443,54.630366,54.630279,54.630185,54.630093,54.630002,54.629908,54.629816,54.62974,54.629647,54.629552,54.629452,54.629351,54.629257,54.629165,54.62907,54.62898,54.628881,54.628788,54.628694,54.628601,54.628509,54.628419,54.628327,54.628274,54.628167,54.628073,54.627971,54.627876,54.627777,54.627686,54.627586,54.627495,54.627398,54.627338,54.627237,54.627148,54.627056,54.626966,54.626878,54.626792,54.626699,54.626604,54.626519,54.626431,54.626331,54.626227,54.626137,54.626044,54.625954,54.625855,54.625764,54.625674,54.625587,54.625508,54.625422,54.625345,54.625263,54.62518,54.625098,54.625015,54.624919,54.624833,54.624736,54.624647,54.624617,54.624544,54.624475,54.624396,54.624311,54.624221,54.624131,54.624049,54.623967,54.623863,54.623764,54.623677,54.623606,54.623519,54.623442,54.623365,54.623277,54.623178,54.62308,54.622993,54.622889,54.622785,54.6227,54.62261,54.622529,54.622463,54.622383,54.622295,54.622219,54.622162,54.622126,54.62208,54.621987,54.621899,54.621817,54.621731,54.621635,54.621539,54.621453,54.621353,54.621272,54.621187,54.621093,54.620996,54.620901,54.620804,54.620723,54.620661,54.620591,54.620522,54.620466,54.620402,54.620373,54.620325,54.620301,54.620248,54.620192,54.620162,54.620213,54.620188,54.620141,54.620066,54.620015,54.619976,54.619942,54.619913,54.619893,54.619888,54.619969,54.620046,54.620123,54.620211,54.62022,54.620132,54.620154,54.620081,54.620013,54.619937,54.619846,54.61976,54.619665,54.619573,54.619481,54.61955,54.619633,54.619724,54.61981,54.619892,54.619966,54.620051,54.62015,54.620241,54.620257,54.620369,54.620306,54.620228,54.620139,54.620121,54.620026,54.619934,54.619839,54.619745,54.61968,54.619607,54.619555,54.619489,54.61945,54.619387,54.619327,54.619285,54.619213,54.619181,54.619226,54.619197,54.619149,54.619102,54.619061,54.619045,54.619069,54.619119,54.619194,54.619264,54.619351,54.619416,54.619442,54.619427,54.619354,54.619324,54.619356,54.619364,54.619355,54.619345,54.619335,54.61931,54.61929,54.619251,54.619205,54.61916,54.619116,54.619073,54.619005,54.618934,54.618865,54.618795,54.618718,54.618652,54.61859,54.618523,54.618444,54.618364,54.618284,54.618205,54.618123,54.618063,54.617997,54.61794,54.617885,54.617815,54.617816,54.617731,54.61766,54.617587,54.617542,54.617476,54.617465,54.617513,54.617567,54.617606,54.617671,54.617713,54.617779,54.617848,54.617918,54.617991,54.61807,54.618139,54.618146,54.618167,54.618207,54.618227,54.618267,54.61831,54.618313,54.618327,54.618388,54.618398,54.618409,54.618443,54.618443,54.618451,54.618459,54.618483,54.618496,54.618506,54.618533,54.618552,54.618553,54.618566,54.618579,54.618585,54.61861,54.618629,54.618656,54.618658,54.618662,54.618683,54.618707,54.618734,54.618722,54.618739,54.61875,54.618749,54.618776,54.618811,54.618829,54.61886,54.618891,54.618896,54.618901,54.618919,54.618905,54.618928,54.618925,54.61895,54.618966,54.618945,54.618968,54.618981,54.619014,54.61902,54.619065,54.619071,54.619075,54.619101,54.619131,54.619168,54.619192,54.6192,54.619214,54.619218,54.619212,54.619223,54.619237,54.619263,54.619266,54.619266,54.619284,54.619316,54.619329,54.619349,54.61938,54.6194,54.619433,54.619451,54.619476,54.619509,54.619537,54.619567,54.619616,54.619659,54.619704,54.619752,54.619792,54.619847,54.619862,54.619862,54.619834,54.619795,54.61975,54.619715,54.619705,54.619681,54.619641,54.619626,54.619614,54.619579,54.619542,54.619518,54.619495,54.619483,54.61944,54.619409,54.61937,54.619342,54.619305,54.619277,54.619249,54.619216,54.619197,54.619171,54.619124,54.619125,54.619136,54.619125,54.619096,54.61903,54.619005,54.618963,54.618944,54.618964,54.61897,54.619003,54.619028,54.619026,54.619044,54.619062,54.619111,54.619152,54.619181,54.619194,54.619249,54.61927,54.619307,54.619325,54.619336,54.619306,54.619297,54.61936,54.619383,54.619391,54.619433,54.61948,54.619489,54.619521,54.619569,54.619579,54.619603,54.619607,54.619619,54.619651,54.619674,54.619712,54.619745,54.619779,54.619803,54.619834,54.619845,54.619874,54.619892,54.619914,54.619942,54.61997,54.619955,54.620006,54.620063,54.62009,54.62012,54.620121,54.620149,54.620168,54.620201,54.620231,54.620267,54.620286,54.620312,54.620319,54.620351,54.620366,54.620389,54.620423,54.620453,54.620484,54.620495,54.620525,54.620551,54.620582,54.620613,54.620605,54.620649,54.620691,54.620717,54.62073,54.620747,54.620771,54.6208,54.620839,54.620859,54.620872,54.620909,54.620933,54.620965,54.620962,54.620988,54.621024,54.621025,54.621054,54.621088,54.621111,54.621137,54.621132,54.621153,54.621183,54.621207,54.621235,54.621239,54.621257,54.621246,54.621191,54.621122,54.621071,54.620991,54.620931,54.620881,54.620825,54.620772,54.620714,54.620664,54.620615,54.620553,54.620496,54.620434,54.62038,54.620328,54.620267,54.620226,54.620176,54.620132,54.620083,54.620026,54.619962,54.619911,54.619853,54.619804,54.619749,54.619693,54.619647,54.619591,54.61953,54.619474,54.619423,54.619371,54.619322,54.619278,54.61922,54.619175,54.61914,54.619121,54.619151,54.619152,54.619205,54.619231,54.61926,54.619267,54.61928,54.619295,54.61932,54.619323,54.619328,54.619333,54.619342,54.619346,54.619373,54.619417,54.619481,54.619549,54.619621,54.619697,54.619775,54.619839,54.619848,54.619898,54.619982,54.620049,54.620095,54.620135,54.62015,54.620168,54.620225,54.620236,54.620255,54.620292,54.620347,54.620388,54.620423,54.620459,54.620508,54.620553,54.62062,54.620648,54.620694,54.620721,54.620759,54.620785,54.620825,54.620869,54.620904,54.620933,54.62095,54.620979,54.621,54.621026,54.621046,54.621092,54.621139,54.621184,54.621247,54.621294,54.621361,54.62143,54.621488,54.621551,54.62161,54.621683,54.62173,54.621823,54.621905,54.62197,54.62204,54.622096,54.622115,54.622122,54.622167,54.622176,54.622168,54.622187,54.622213,54.622258,54.622311,54.622342,54.622377,54.622425,54.622478,54.62251,54.622528,54.622542,54.622544,54.622554,54.622564,54.622574,54.622573,54.622613,54.622659,54.622724,54.622777,54.622838,54.622912,54.622969,54.62304,54.623114,54.623189,54.623256,54.623318,54.623344,54.623358,54.623398,54.623446,54.623482,54.623532,54.62359,54.623638,54.623684,54.62373,54.623784,54.623835,54.62385,54.623887,54.623909,54.623977,54.624,54.624052,54.624105,54.624145,54.624191,54.62426,54.624339,54.624394,54.624429,54.62445,54.624505,54.624542,54.62457,54.624606,54.624627,54.624631,54.624674,54.624692,54.624764,54.624804,54.624873,54.624946,54.625043,54.625133,54.62522,54.625294,54.625332,54.625351,54.625374,54.625411,54.625489,54.625564,54.625553,54.62565,54.625733,54.625812,54.625894,54.625986,54.626078,54.626175,54.626266,54.626358,54.626449,54.62654,54.626621,54.626699,54.626764,54.626814,54.626858,54.626858,54.626866,54.62688,54.626931,54.626977,54.627022,54.627097,54.627103,54.627095,54.627164,54.627205,54.62725,54.627294,54.627321,54.627339,54.62738,54.62743,54.627462,54.627482,54.62756,54.627561,54.627506,54.627501,54.627521,54.627552,54.627572,54.627596,54.627593,54.627645,54.627678,54.627729,54.627783,54.62783,54.627906,54.627973,54.628052,54.628114,54.628136,54.628181,54.628253,54.628277,54.628331,54.628395,54.628449,54.62847,54.628512,54.628564,54.62861,54.628634,54.628661,54.628674,54.628695,54.628717,54.628746,54.628783,54.628844,54.628913,54.628995,54.629076,54.62916,54.629242,54.629329,54.629389,54.62941,54.629447,54.629484,54.629521,54.629557,54.629556,54.629575,54.629593,54.629615,54.629654,54.629674,54.629696,54.629728,54.629772,54.629821,54.629872,54.629919,54.629972,54.630008,54.630021,54.630029,54.630059,54.6301,54.630144,54.630183,54.63022,54.63026,54.6303,54.630343,54.630372,54.630424,54.630447,54.630464,54.630497,54.630537,54.630513,54.630535,54.630534,54.630547,54.630555,54.630574,54.630554,54.630503,54.630448,54.630383,54.630335,54.630284,54.630378,54.630427,54.630401,54.630391,54.630486,54.630539,54.630574,54.63059,54.630588,54.630569,54.630556,54.630557,54.63053,54.630521,54.630524,54.630488,54.630453,54.63044,54.630514,54.630523,54.630496,54.630543,54.630591,54.630587,54.630556,54.630506,54.630467,54.630397,54.630322,54.630344,54.630306,54.63025,54.630191,54.630135,54.630039,54.629944,54.629884,54.629867,54.62989]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[54.617465,54.768323],"lng":[-2.491781,-2.395821]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-6-2" class="tab-pane" aria-labelledby="tabset-6-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-18"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_409c841bc9f15d1defa28e0e18632fe2 {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_409c841bc9f15d1defa28e0e18632fe2&quot; ></div>
        
</body>
<script>
    
    
            var map_409c841bc9f15d1defa28e0e18632fe2 = L.map(
                &quot;map_409c841bc9f15d1defa28e0e18632fe2&quot;,
                {
                    center: [54.68103666997122, -2.4489572033898304],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_33a0f1be904ff35630b8c5ae07fd0bc4 = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_33a0f1be904ff35630b8c5ae07fd0bc4.addTo(map_409c841bc9f15d1defa28e0e18632fe2);
        
    
            var tile_layer_eb91dde2e2913a9a7403d51b18b63afa = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_eb91dde2e2913a9a7403d51b18b63afa.addTo(map_409c841bc9f15d1defa28e0e18632fe2);
        
    
            var color_line_3108caa03350acd0c71aee94547fb349 = L.featureGroup(
                {
}
            );
        
    
            var poly_line_836a93d786bb0f2cc7065c0c10aac552 = L.polyline(
                [[[54.768323, -2.398044], [54.768321, -2.398045]], [[54.768321, -2.398045], [54.768227, -2.398004]], [[54.760077, -2.405361], [54.760036, -2.405501]], [[54.741926, -2.430993], [54.741828, -2.430957]], [[54.73001, -2.43746], [54.729914, -2.437437]], [[54.718515, -2.443966], [54.718474, -2.444118]], [[54.718474, -2.444118], [54.718475, -2.444163]], [[54.718475, -2.444163], [54.718451, -2.444314]], [[54.716652, -2.450488], [54.716583, -2.450605]], [[54.717901, -2.454921], [54.717933, -2.455071]], [[54.7129, -2.481608], [54.712922, -2.481263]], [[54.712805, -2.48146], [54.712826, -2.481494]], [[54.712909, -2.481643], [54.712823, -2.481595]], [[54.706836, -2.489001], [54.706813, -2.48901]], [[54.706813, -2.48901], [54.706722, -2.488991]], [[54.706722, -2.488991], [54.706736, -2.488967]], [[54.706736, -2.488967], [54.706648, -2.488911]], [[54.703059, -2.486893], [54.702994, -2.486771]], [[54.702994, -2.486771], [54.702981, -2.486774]], [[54.702981, -2.486774], [54.703052, -2.486882]], [[54.703063, -2.486928], [54.703025, -2.486765]], [[54.696963, -2.468764], [54.696883, -2.46869]], [[54.688659, -2.455176], [54.688594, -2.455061]], [[54.684513, -2.450445], [54.684475, -2.450294]], [[54.684226, -2.449789], [54.684133, -2.449816]], [[54.683738, -2.449835], [54.68366, -2.449935]], [[54.680805, -2.447412], [54.680715, -2.4474]], [[54.670897, -2.436256], [54.670799, -2.436218]], [[54.666556, -2.433431], [54.666469, -2.43351]], [[54.659497, -2.445977], [54.659416, -2.446066]], [[54.650897, -2.466266], [54.650892, -2.466431]], [[54.620188, -2.482971], [54.620141, -2.48309]], [[54.619888, -2.482158], [54.619969, -2.482076]], [[54.620154, -2.481876], [54.620081, -2.481978]], [[54.617816, -2.475944], [54.617731, -2.475863]], [[54.630537, -2.397715], [54.630513, -2.397547]], [[54.630391, -2.396208], [54.630486, -2.396268]], [[54.629867, -2.400569], [54.62989, -2.400541]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_e373175e77c73f6b568368cc634551e6 = L.polyline(
                [[[54.768227, -2.398004], [54.768139, -2.398042]], [[54.767862, -2.397752], [54.767917, -2.397613]], [[54.767947, -2.397539], [54.767738, -2.397864]], [[54.767963, -2.397489], [54.76794, -2.397644]], [[54.765087, -2.396506], [54.765036, -2.396659]], [[54.762274, -2.398501], [54.762188, -2.398541]], [[54.762188, -2.398541], [54.762096, -2.398577]], [[54.760367, -2.400595], [54.760312, -2.400638]], [[54.760066, -2.401622], [54.760091, -2.40179]], [[54.760205, -2.404801], [54.760199, -2.404893]], [[54.760152, -2.405032], [54.760115, -2.405191]], [[54.760078, -2.405337], [54.760077, -2.405361]], [[54.760036, -2.405501], [54.759999, -2.405655]], [[54.76037, -2.414861], [54.760377, -2.415018]], [[54.759902, -2.418241], [54.759915, -2.418273]], [[54.756427, -2.418419], [54.756342, -2.418427]], [[54.756342, -2.418427], [54.756244, -2.418453]], [[54.755874, -2.418641], [54.755873, -2.418657]], [[54.751392, -2.420856], [54.751378, -2.420883]], [[54.7451, -2.42705], [54.745015, -2.427099]], [[54.741949, -2.431006], [54.741926, -2.430993]], [[54.741828, -2.430957], [54.741737, -2.430924]], [[54.730017, -2.43744], [54.73001, -2.43746]], [[54.729914, -2.437437], [54.729824, -2.437439]], [[54.718577, -2.443775], [54.718526, -2.443908]], [[54.718296, -2.444906], [54.718276, -2.445063]], [[54.718276, -2.445063], [54.718345, -2.445175]], [[54.718345, -2.445175], [54.71836, -2.445329]], [[54.71836, -2.445329], [54.718317, -2.445405]], [[54.718317, -2.445405], [54.718226, -2.445427]], [[54.717659, -2.448052], [54.717659, -2.44818]], [[54.717659, -2.44818], [54.717663, -2.448352]], [[54.716795, -2.450198], [54.716763, -2.450349]], [[54.716763, -2.450349], [54.716719, -2.450485]], [[54.716719, -2.450485], [54.716652, -2.450488]], [[54.717123, -2.452692], [54.717097, -2.452848]], [[54.717898, -2.454892], [54.717901, -2.454921]], [[54.717933, -2.455071], [54.717954, -2.455232]], [[54.71797, -2.455389], [54.717983, -2.455474]], [[54.717983, -2.455474], [54.71801, -2.455635]], [[54.717359, -2.468853], [54.717344, -2.468896]], [[54.713742, -2.473616], [54.713691, -2.473766]], [[54.713121, -2.478753], [54.71313, -2.478818]], [[54.712884, -2.481545], [54.7129, -2.481608]], [[54.712823, -2.481595], [54.71273, -2.48157]], [[54.712598, -2.481728], [54.712558, -2.481802]], [[54.712558, -2.481802], [54.712521, -2.481958]], [[54.712521, -2.481958], [54.712487, -2.482084]], [[54.712594, -2.483838], [54.712601, -2.483891]], [[54.712601, -2.483891], [54.712582, -2.484053]], [[54.712334, -2.485612], [54.712319, -2.485771]], [[54.712319, -2.485771], [54.712288, -2.48593]], [[54.711868, -2.4897], [54.711848, -2.489863]], [[54.711848, -2.489863], [54.711811, -2.490006]], [[54.711811, -2.490006], [54.711764, -2.490097]], [[54.711764, -2.490097], [54.711678, -2.490166]], [[54.711678, -2.490166], [54.711616, -2.490281]], [[54.711479, -2.4905], [54.711417, -2.49062]], [[54.711417, -2.49062], [54.711386, -2.490732]], [[54.711386, -2.490732], [54.711318, -2.490839]], [[54.711318, -2.490839], [54.711241, -2.490924]], [[54.711241, -2.490924], [54.71119, -2.491057]], [[54.71119, -2.491057], [54.711141, -2.491183]], [[54.711141, -2.491183], [54.71107, -2.491283]], [[54.710995, -2.491371], [54.710926, -2.491481]], [[54.710926, -2.491481], [54.710892, -2.49156]], [[54.710804, -2.491625], [54.710713, -2.491688]], [[54.709744, -2.49136], [54.709684, -2.49132]], [[54.709684, -2.49132], [54.709622, -2.491194]], [[54.709355, -2.491055], [54.709263, -2.49104]], [[54.708752, -2.49069], [54.708667, -2.490626]], [[54.708667, -2.490626], [54.708584, -2.490555]], [[54.708584, -2.490555], [54.708495, -2.490513]], [[54.708495, -2.490513], [54.708402, -2.490499]], [[54.708402, -2.490499], [54.708318, -2.490438]], [[54.708318, -2.490438], [54.708227, -2.490373]], [[54.708227, -2.490373], [54.708136, -2.490329]], [[54.708136, -2.490329], [54.708074, -2.490205]], [[54.708074, -2.490205], [54.707982, -2.490172]], [[54.707982, -2.490172], [54.707977, -2.490079]], [[54.707977, -2.490079], [54.707959, -2.489927]], [[54.707761, -2.489599], [54.707705, -2.489499]], [[54.707624, -2.489412], [54.707552, -2.489302]], [[54.707552, -2.489302], [54.707478, -2.489215]], [[54.707478, -2.489215], [54.707393, -2.489158]], [[54.707393, -2.489158], [54.707323, -2.489118]], [[54.707323, -2.489118], [54.70724, -2.48904]], [[54.70724, -2.48904], [54.707158, -2.488971]], [[54.707158, -2.488971], [54.707085, -2.488965]], [[54.707085, -2.488965], [54.706996, -2.488994]], [[54.706996, -2.488994], [54.706919, -2.489059]], [[54.706557, -2.488861], [54.706479, -2.488759]], [[54.704888, -2.487522], [54.704798, -2.487461]], [[54.704798, -2.487461], [54.704739, -2.487336]], [[54.703303, -2.486933], [54.70324, -2.486905]], [[54.70324, -2.486905], [54.703143, -2.486868]], [[54.703054, -2.486907], [54.703059, -2.486893]], [[54.703025, -2.486765], [54.70297, -2.486632]], [[54.702463, -2.482687], [54.702449, -2.482621]], [[54.702148, -2.481267], [54.702096, -2.481132]], [[54.701113, -2.476895], [54.701085, -2.476825]], [[54.70106, -2.476671], [54.701027, -2.47651]], [[54.698385, -2.470784], [54.698314, -2.470679]], [[54.69699, -2.468807], [54.696963, -2.468764]], [[54.696883, -2.46869], [54.696803, -2.4686]], [[54.694553, -2.464169], [54.694532, -2.464127]], [[54.692907, -2.46201], [54.692878, -2.461952]], [[54.692799, -2.461854], [54.692716, -2.461765]], [[54.691346, -2.46019], [54.69133, -2.460202]], [[54.69104, -2.459753], [54.691005, -2.459703]], [[54.691005, -2.459703], [54.69092, -2.459639]], [[54.688674, -2.45523], [54.688659, -2.455176]], [[54.688594, -2.455061], [54.68853, -2.454942]], [[54.685468, -2.452093], [54.685393, -2.451995]], [[54.684475, -2.450294], [54.684418, -2.450168]], [[54.6842, -2.449872], [54.684226, -2.449789]], [[54.684133, -2.449816], [54.68404, -2.449819]], [[54.683753, -2.449847], [54.683738, -2.449835]], [[54.68366, -2.449935], [54.683575, -2.450008]], [[54.680816, -2.447451], [54.680805, -2.447412]], [[54.680715, -2.4474], [54.680677, -2.447234]], [[54.68053, -2.446469], [54.680535, -2.446307]], [[54.678728, -2.441432], [54.678693, -2.44139]], [[54.672871, -2.437057], [54.672779, -2.436988]], [[54.672779, -2.436988], [54.67275, -2.436969]], [[54.6709, -2.436251], [54.670897, -2.436256]], [[54.670799, -2.436218], [54.670698, -2.436179]], [[54.666572, -2.433446], [54.666556, -2.433431]], [[54.659532, -2.445973], [54.659497, -2.445977]], [[54.65155, -2.465279], [54.651523, -2.465321]], [[54.651541, -2.465481], [54.651545, -2.465643]], [[54.651545, -2.465643], [54.651538, -2.465695]], [[54.650892, -2.466431], [54.650905, -2.466606]], [[54.650321, -2.468284], [54.650294, -2.468316]], [[54.648594, -2.469438], [54.648574, -2.469429]], [[54.648574, -2.469429], [54.648484, -2.469456]], [[54.645746, -2.471656], [54.645673, -2.471782]], [[54.640281, -2.47834], [54.64024, -2.478325]], [[54.631421, -2.481726], [54.631399, -2.481702]], [[54.631399, -2.481702], [54.63131, -2.481746]], [[54.628274, -2.482686], [54.628167, -2.482667]], [[54.627338, -2.482612], [54.627237, -2.482532]], [[54.619893, -2.482244], [54.619888, -2.482158]], [[54.619969, -2.482076], [54.620046, -2.481994]], [[54.620211, -2.481824], [54.62022, -2.481808]], [[54.62022, -2.481808], [54.620132, -2.481887]], [[54.620132, -2.481887], [54.620154, -2.481876]], [[54.619213, -2.481907], [54.619181, -2.481954]], [[54.619226, -2.481815], [54.619197, -2.481651]], [[54.617885, -2.476028], [54.617815, -2.475917]], [[54.617815, -2.475917], [54.617816, -2.475944]], [[54.617731, -2.475863], [54.61766, -2.475742]], [[54.619433, -2.461544], [54.619451, -2.461466]], [[54.619451, -2.461466], [54.619476, -2.461312]], [[54.619607, -2.450035], [54.619619, -2.449863]], [[54.620613, -2.443905], [54.620605, -2.443857]], [[54.620605, -2.443857], [54.620649, -2.443699]], [[54.620714, -2.438058], [54.620664, -2.437939]], [[54.620664, -2.437939], [54.620615, -2.437792]], [[54.620226, -2.436837], [54.620176, -2.436703]], [[54.619151, -2.433682], [54.619152, -2.433567]], [[54.619333, -2.431973], [54.619342, -2.431943]], [[54.619848, -2.4308], [54.619898, -2.430647]], [[54.62015, -2.429981], [54.620168, -2.429816]], [[54.620168, -2.429816], [54.620225, -2.429687]], [[54.62204, -2.424152], [54.622096, -2.424016]], [[54.622096, -2.424016], [54.622115, -2.423852]], [[54.624674, -2.41443], [54.624692, -2.414363]], [[54.624804, -2.41416], [54.624873, -2.414037]], [[54.625564, -2.41284], [54.625553, -2.412745]], [[54.626449, -2.412293], [54.62654, -2.412247]], [[54.627294, -2.409812], [54.627321, -2.409656]], [[54.630497, -2.397728], [54.630537, -2.397715]], [[54.630378, -2.395873], [54.630427, -2.396008]], [[54.630401, -2.396172], [54.630391, -2.396208]], [[54.630521, -2.397719], [54.630524, -2.397799]], [[54.630523, -2.39852], [54.630496, -2.398616]], [[54.630591, -2.398915], [54.630587, -2.398977]], [[54.629884, -2.400541], [54.629867, -2.400569]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_459d8f55e33334ca9b3a9bca015956cb = L.polyline(
                [[[54.768139, -2.398042], [54.768048, -2.398105]], [[54.768048, -2.398105], [54.767959, -2.398157]], [[54.767959, -2.398157], [54.767865, -2.398141]], [[54.767957, -2.39756], [54.767963, -2.397489]], [[54.76794, -2.397644], [54.767907, -2.397814]], [[54.767804, -2.398082], [54.767712, -2.398003]], [[54.766274, -2.397014], [54.766189, -2.396957]], [[54.766189, -2.396957], [54.766094, -2.396886]], [[54.765916, -2.396797], [54.765823, -2.396761]], [[54.765823, -2.396761], [54.765733, -2.396714]], [[54.765733, -2.396714], [54.765641, -2.396686]], [[54.765641, -2.396686], [54.765544, -2.39667]], [[54.765446, -2.396664], [54.765356, -2.396646]], [[54.765356, -2.396646], [54.76526, -2.396608]], [[54.765173, -2.396553], [54.765088, -2.396506]], [[54.765036, -2.396659], [54.764959, -2.396767]], [[54.764959, -2.396767], [54.764882, -2.396865]], [[54.764882, -2.396865], [54.764807, -2.396954]], [[54.764807, -2.396954], [54.764734, -2.397054]], [[54.764734, -2.397054], [54.764659, -2.397157]], [[54.764659, -2.397157], [54.764571, -2.397231]], [[54.764571, -2.397231], [54.764483, -2.397258]], [[54.764388, -2.397292], [54.764307, -2.397363]], [[54.764307, -2.397363], [54.764219, -2.397434]], [[54.764219, -2.397434], [54.764125, -2.397445]], [[54.764125, -2.397445], [54.764034, -2.397441]], [[54.764034, -2.397441], [54.763937, -2.397427]], [[54.763843, -2.397424], [54.763742, -2.397416]], [[54.763742, -2.397416], [54.763645, -2.397448]], [[54.763645, -2.397448], [54.763569, -2.397542]], [[54.763569, -2.397542], [54.763489, -2.39763]], [[54.763308, -2.39772], [54.76321, -2.397724]], [[54.763045, -2.39789], [54.762964, -2.397975]], [[54.762964, -2.397975], [54.762887, -2.398058]], [[54.762887, -2.398058], [54.7628, -2.398127]], [[54.7628, -2.398127], [54.762716, -2.3982]], [[54.76183, -2.398782], [54.761757, -2.39889]], [[54.761757, -2.39889], [54.761684, -2.398989]], [[54.761684, -2.398989], [54.761601, -2.399084]], [[54.761523, -2.399187], [54.761441, -2.399274]], [[54.761441, -2.399274], [54.761366, -2.399375]], [[54.761135, -2.399649], [54.761051, -2.399734]], [[54.761051, -2.399734], [54.760973, -2.399822]], [[54.760663, -2.400191], [54.76058, -2.400267]], [[54.76058, -2.400267], [54.760507, -2.400368]], [[54.760005, -2.40131], [54.760032, -2.401474]], [[54.760091, -2.40179], [54.760123, -2.401939]], [[54.760123, -2.401939], [54.760154, -2.402105]], [[54.760154, -2.402105], [54.760181, -2.402266]], [[54.760293, -2.402916], [54.760325, -2.403073]], [[54.760325, -2.403073], [54.760355, -2.403231]], [[54.760355, -2.403231], [54.760387, -2.403393]], [[54.760435, -2.403717], [54.760423, -2.403877]], [[54.760423, -2.403877], [54.760395, -2.404027]], [[54.760395, -2.404027], [54.760344, -2.404171]], [[54.760344, -2.404171], [54.760313, -2.404332]], [[54.760313, -2.404332], [54.760272, -2.40449]], [[54.760272, -2.40449], [54.760242, -2.404639]], [[54.760242, -2.404639], [54.760205, -2.404801]], [[54.759999, -2.405655], [54.759958, -2.405798]], [[54.759958, -2.405798], [54.75992, -2.40594]], [[54.75992, -2.40594], [54.75988, -2.40609]], [[54.75988, -2.40609], [54.759845, -2.406242]], [[54.75963, -2.406978], [54.759595, -2.40713]], [[54.759558, -2.407279], [54.759516, -2.407429]], [[54.759516, -2.407429], [54.759476, -2.407578]], [[54.759476, -2.407578], [54.759436, -2.407728]], [[54.759436, -2.407728], [54.759397, -2.40788]], [[54.759397, -2.40788], [54.759361, -2.408044]], [[54.759361, -2.408044], [54.759322, -2.408187]], [[54.759166, -2.40908], [54.759204, -2.409234]], [[54.759263, -2.409534], [54.759299, -2.409702]], [[54.759331, -2.409858], [54.759359, -2.410012]], [[54.759598, -2.411262], [54.75963, -2.411411]], [[54.759669, -2.411563], [54.759692, -2.411716]], [[54.759692, -2.411716], [54.759724, -2.411882]], [[54.759757, -2.412035], [54.759793, -2.412194]], [[54.759827, -2.412349], [54.759858, -2.412498]], [[54.759858, -2.412498], [54.759899, -2.412656]], [[54.759899, -2.412656], [54.759933, -2.412815]], [[54.759961, -2.412981], [54.759996, -2.413143]], [[54.759996, -2.413143], [54.760023, -2.413306]], [[54.760023, -2.413306], [54.760055, -2.413463]], [[54.7602, -2.414097], [54.760226, -2.414263]], [[54.760226, -2.414263], [54.760257, -2.414416]], [[54.760257, -2.414416], [54.760291, -2.414569]], [[54.760377, -2.415018], [54.760362, -2.415181]], [[54.760344, -2.415345], [54.760322, -2.415508]], [[54.760322, -2.415508], [54.760307, -2.41567]], [[54.760307, -2.41567], [54.760282, -2.415821]], [[54.760282, -2.415821], [54.76026, -2.415984]], [[54.76026, -2.415984], [54.760237, -2.416148]], [[54.760237, -2.416148], [54.760203, -2.416306]], [[54.760203, -2.416306], [54.760165, -2.416463]], [[54.760165, -2.416463], [54.760151, -2.416621]], [[54.760082, -2.417103], [54.760064, -2.417259]], [[54.760064, -2.417259], [54.76004, -2.417432]], [[54.760006, -2.417598], [54.759981, -2.417763]], [[54.759663, -2.418266], [54.759565, -2.418239]], [[54.758923, -2.418313], [54.758823, -2.418332]], [[54.758066, -2.418345], [54.757973, -2.418347]], [[54.757973, -2.418347], [54.75788, -2.418363]], [[54.75788, -2.418363], [54.757789, -2.418352]], [[54.757789, -2.418352], [54.757692, -2.418353]], [[54.757492, -2.418387], [54.757401, -2.418399]], [[54.757401, -2.418399], [54.757306, -2.418389]], [[54.757306, -2.418389], [54.757216, -2.418417]], [[54.757119, -2.418424], [54.757018, -2.418412]], [[54.757018, -2.418412], [54.756915, -2.418422]], [[54.756915, -2.418422], [54.756816, -2.418417]], [[54.756816, -2.418417], [54.756723, -2.418421]], [[54.756723, -2.418421], [54.756632, -2.418411]], [[54.75615, -2.418479], [54.756058, -2.418519]], [[54.756058, -2.418519], [54.755963, -2.418574]], [[54.755963, -2.418574], [54.755874, -2.418641]], [[54.755695, -2.418776], [54.755612, -2.418841]], [[54.755612, -2.418841], [54.755522, -2.418915]], [[54.755522, -2.418915], [54.755437, -2.418969]], [[54.755437, -2.418969], [54.755346, -2.419036]], [[54.755346, -2.419036], [54.755259, -2.419106]], [[54.755259, -2.419106], [54.755171, -2.419179]], [[54.754818, -2.419416], [54.754723, -2.419487]], [[54.754542, -2.419623], [54.75445, -2.419693]], [[54.75445, -2.419693], [54.754357, -2.419765]], [[54.754357, -2.419765], [54.754269, -2.41982]], [[54.753169, -2.420399], [54.753078, -2.420442]], [[54.753078, -2.420442], [54.752984, -2.420454]], [[54.752984, -2.420454], [54.752893, -2.420468]], [[54.752335, -2.420627], [54.752233, -2.42064]], [[54.751119, -2.421092], [54.751021, -2.421123]], [[54.751021, -2.421123], [54.750927, -2.421144]], [[54.750927, -2.421144], [54.750836, -2.421159]], [[54.750641, -2.42117], [54.750551, -2.421171]], [[54.750551, -2.421171], [54.750451, -2.421191]], [[54.750451, -2.421191], [54.750358, -2.421194]], [[54.750358, -2.421194], [54.75026, -2.421214]], [[54.75026, -2.421214], [54.750165, -2.421237]], [[54.749712, -2.421537], [54.749626, -2.421592]], [[54.749626, -2.421592], [54.749543, -2.421658]], [[54.749364, -2.421797], [54.749275, -2.421853]], [[54.749275, -2.421853], [54.749189, -2.421902]], [[54.749003, -2.422026], [54.748911, -2.422092]], [[54.748911, -2.422092], [54.748827, -2.422156]], [[54.747246, -2.423777], [54.747172, -2.42389]], [[54.747172, -2.42389], [54.747106, -2.424025]], [[54.747106, -2.424025], [54.74704, -2.42414]], [[54.746734, -2.424778], [54.74666, -2.424893]], [[54.74666, -2.424893], [54.746577, -2.424988]], [[54.746577, -2.424988], [54.746509, -2.425091]], [[54.74553, -2.426448], [54.745463, -2.426553]], [[54.744824, -2.427205], [54.744739, -2.427258]], [[54.744739, -2.427258], [54.744642, -2.427299]], [[54.744642, -2.427299], [54.744553, -2.427364]], [[54.744553, -2.427364], [54.744464, -2.427431]], [[54.744464, -2.427431], [54.744374, -2.427497]], [[54.744374, -2.427497], [54.744289, -2.427571]], [[54.744289, -2.427571], [54.744197, -2.427629]], [[54.744197, -2.427629], [54.744111, -2.427685]], [[54.743957, -2.42786], [54.743888, -2.427978]], [[54.743888, -2.427978], [54.743831, -2.42811]], [[54.743831, -2.42811], [54.74377, -2.428242]], [[54.74377, -2.428242], [54.743727, -2.4284]], [[54.743727, -2.4284], [54.743688, -2.42854]], [[54.743688, -2.42854], [54.74366, -2.428714]], [[54.74365, -2.42888], [54.743631, -2.429033]], [[54.743262, -2.430099], [54.743195, -2.430232]], [[54.743195, -2.430232], [54.743137, -2.430355]], [[54.743137, -2.430355], [54.743081, -2.430479]], [[54.743081, -2.430479], [54.743018, -2.43061]], [[54.743018, -2.43061], [54.742936, -2.430703]], [[54.742936, -2.430703], [54.742858, -2.43078]], [[54.742858, -2.43078], [54.74277, -2.43086]], [[54.74277, -2.43086], [54.742683, -2.430939]], [[54.742683, -2.430939], [54.742606, -2.431025]], [[54.742606, -2.431025], [54.742515, -2.431078]], [[54.74242, -2.431078], [54.742335, -2.43102]], [[54.742335, -2.43102], [54.742235, -2.431023]], [[54.742235, -2.431023], [54.742135, -2.43104]], [[54.742135, -2.43104], [54.742042, -2.431029]], [[54.741349, -2.430899], [54.741257, -2.430884]], [[54.741257, -2.430884], [54.741156, -2.43089]], [[54.741156, -2.43089], [54.741065, -2.430906]], [[54.741065, -2.430906], [54.740974, -2.430917]], [[54.740974, -2.430917], [54.740876, -2.430939]], [[54.740876, -2.430939], [54.740783, -2.430946]], [[54.740692, -2.430939], [54.7406, -2.430951]], [[54.7406, -2.430951], [54.740509, -2.430961]], [[54.740509, -2.430961], [54.74041, -2.43097]], [[54.74041, -2.43097], [54.740312, -2.430971]], [[54.740312, -2.430971], [54.740213, -2.430961]], [[54.740213, -2.430961], [54.740115, -2.430955]], [[54.740115, -2.430955], [54.740018, -2.430952]], [[54.740018, -2.430952], [54.739926, -2.43094]], [[54.739556, -2.431035], [54.739464, -2.431092]], [[54.739464, -2.431092], [54.73938, -2.431144]], [[54.73938, -2.431144], [54.739296, -2.431206]], [[54.739296, -2.431206], [54.739209, -2.431269]], [[54.739209, -2.431269], [54.739119, -2.431333]], [[54.739119, -2.431333], [54.739029, -2.431399]], [[54.739029, -2.431399], [54.738942, -2.431465]], [[54.738942, -2.431465], [54.738853, -2.431539]], [[54.738853, -2.431539], [54.738772, -2.431622]], [[54.738772, -2.431622], [54.738693, -2.431702]], [[54.738693, -2.431702], [54.738607, -2.431797]], [[54.738607, -2.431797], [54.73853, -2.431885]], [[54.738026, -2.432419], [54.737951, -2.432506]], [[54.737951, -2.432506], [54.737871, -2.432598]], [[54.737871, -2.432598], [54.73779, -2.432685]], [[54.73779, -2.432685], [54.737701, -2.432749]], [[54.737519, -2.432847], [54.737422, -2.432879]], [[54.737422, -2.432879], [54.737332, -2.432898]], [[54.736977, -2.433075], [54.736881, -2.433119]], [[54.736881, -2.433119], [54.736785, -2.433149]], [[54.736785, -2.433149], [54.736692, -2.43319]], [[54.736692, -2.43319], [54.736599, -2.433226]], [[54.736223, -2.433291], [54.736124, -2.433332]], [[54.736124, -2.433332], [54.736044, -2.433405]], [[54.736044, -2.433405], [54.735982, -2.433537]], [[54.735982, -2.433537], [54.735922, -2.433666]], [[54.735848, -2.433755], [54.735758, -2.433817]], [[54.735758, -2.433817], [54.735673, -2.433874]], [[54.735586, -2.433933], [54.735502, -2.433988]], [[54.735502, -2.433988], [54.735405, -2.434052]], [[54.734777, -2.434462], [54.73468, -2.434522]], [[54.73468, -2.434522], [54.73459, -2.434598]], [[54.73459, -2.434598], [54.734503, -2.434655]], [[54.734503, -2.434655], [54.734412, -2.434701]], [[54.734412, -2.434701], [54.734322, -2.434759]], [[54.734322, -2.434759], [54.734232, -2.434813]], [[54.734143, -2.434869], [54.734057, -2.434921]], [[54.734057, -2.434921], [54.733971, -2.434978]], [[54.733971, -2.434978], [54.733884, -2.435022]], [[54.733884, -2.435022], [54.733792, -2.435077]], [[54.733792, -2.435077], [54.733708, -2.435139]], [[54.733708, -2.435139], [54.733621, -2.4352]], [[54.733621, -2.4352], [54.733528, -2.435251]], [[54.733528, -2.435251], [54.733434, -2.435303]], [[54.733434, -2.435303], [54.733343, -2.435363]], [[54.733343, -2.435363], [54.733251, -2.43541]], [[54.733251, -2.43541], [54.733163, -2.435473]], [[54.733163, -2.435473], [54.733069, -2.435525]], [[54.733069, -2.435525], [54.73298, -2.435588]], [[54.73298, -2.435588], [54.732891, -2.43563]], [[54.732803, -2.435676], [54.732709, -2.435734]], [[54.732442, -2.43595], [54.732354, -2.436039]], [[54.732354, -2.436039], [54.73227, -2.43611]], [[54.73227, -2.43611], [54.732177, -2.436163]], [[54.732177, -2.436163], [54.73209, -2.436203]], [[54.73209, -2.436203], [54.732001, -2.43622]], [[54.732001, -2.43622], [54.73191, -2.436223]], [[54.73191, -2.436223], [54.731808, -2.436236]], [[54.731808, -2.436236], [54.731709, -2.436257]], [[54.731709, -2.436257], [54.73162, -2.436277]], [[54.73133, -2.436374], [54.731229, -2.436396]], [[54.731229, -2.436396], [54.731143, -2.436442]], [[54.731143, -2.436442], [54.731057, -2.436488]], [[54.730898, -2.436648], [54.730849, -2.436781]], [[54.730744, -2.437051], [54.730668, -2.437154]], [[54.730668, -2.437154], [54.730577, -2.437221]], [[54.730577, -2.437221], [54.730478, -2.437251]], [[54.730478, -2.437251], [54.730385, -2.437282]], [[54.730301, -2.437345], [54.730208, -2.437392]], [[54.730208, -2.437392], [54.730111, -2.437407]], [[54.730111, -2.437407], [54.730017, -2.43744]], [[54.729824, -2.437439], [54.729724, -2.437425]], [[54.729724, -2.437425], [54.72963, -2.437395]], [[54.72963, -2.437395], [54.729538, -2.437338]], [[54.729538, -2.437338], [54.729442, -2.437287]], [[54.729442, -2.437287], [54.72935, -2.437253]], [[54.729078, -2.437082], [54.728992, -2.437035]], [[54.728545, -2.436695], [54.728453, -2.436625]], [[54.728453, -2.436625], [54.728357, -2.436551]], [[54.728357, -2.436551], [54.728264, -2.436491]], [[54.728264, -2.436491], [54.728178, -2.43643]], [[54.728091, -2.436372], [54.727997, -2.436323]], [[54.727997, -2.436323], [54.727909, -2.436272]], [[54.727639, -2.436118], [54.72754, -2.436088]], [[54.72754, -2.436088], [54.727448, -2.436069]], [[54.727448, -2.436069], [54.727354, -2.436043]], [[54.726976, -2.435951], [54.726877, -2.435927]], [[54.726594, -2.435853], [54.726504, -2.435849]], [[54.726504, -2.435849], [54.726401, -2.435843]], [[54.726401, -2.435843], [54.726301, -2.435842]], [[54.726113, -2.435939], [54.726043, -2.436053]], [[54.725982, -2.436169], [54.725899, -2.436265]], [[54.725899, -2.436265], [54.725819, -2.436371]], [[54.725819, -2.436371], [54.725748, -2.436476]], [[54.725748, -2.436476], [54.725672, -2.436578]], [[54.725672, -2.436578], [54.725598, -2.436686]], [[54.725598, -2.436686], [54.725517, -2.436763]], [[54.725348, -2.436933], [54.725266, -2.437022]], [[54.725266, -2.437022], [54.725189, -2.437106]], [[54.725189, -2.437106], [54.725104, -2.437187]], [[54.725104, -2.437187], [54.725017, -2.437278]], [[54.725017, -2.437278], [54.724939, -2.437368]], [[54.724939, -2.437368], [54.724869, -2.437469]], [[54.724869, -2.437469], [54.724797, -2.437589]], [[54.72452, -2.438044], [54.724457, -2.438166]], [[54.724394, -2.438292], [54.724316, -2.438391]], [[54.724316, -2.438391], [54.724235, -2.438477]], [[54.724067, -2.438629], [54.723976, -2.438683]], [[54.723976, -2.438683], [54.723883, -2.438762]], [[54.723883, -2.438762], [54.723802, -2.438849]], [[54.723802, -2.438849], [54.723725, -2.438929]], [[54.723725, -2.438929], [54.723648, -2.439018]], [[54.723648, -2.439018], [54.723567, -2.439118]], [[54.723567, -2.439118], [54.7235, -2.439222]], [[54.7235, -2.439222], [54.723416, -2.439313]], [[54.723332, -2.439393], [54.723254, -2.439477]], [[54.723254, -2.439477], [54.723173, -2.43957]], [[54.723173, -2.43957], [54.723091, -2.439652]], [[54.723091, -2.439652], [54.72301, -2.439724]], [[54.72301, -2.439724], [54.722927, -2.439788]], [[54.722841, -2.439849], [54.722755, -2.439912]], [[54.722755, -2.439912], [54.722665, -2.439969]], [[54.722665, -2.439969], [54.722571, -2.44002]], [[54.722571, -2.44002], [54.722482, -2.440075]], [[54.722299, -2.440195], [54.722211, -2.440242]], [[54.722211, -2.440242], [54.722118, -2.440293]], [[54.722118, -2.440293], [54.722028, -2.44034]], [[54.722028, -2.44034], [54.721934, -2.440378]], [[54.721934, -2.440378], [54.721844, -2.440407]], [[54.721844, -2.440407], [54.721755, -2.440449]], [[54.721755, -2.440449], [54.721657, -2.440489]], [[54.721657, -2.440489], [54.721564, -2.440515]], [[54.721564, -2.440515], [54.721467, -2.440545]], [[54.721282, -2.440575], [54.721186, -2.44061]], [[54.721186, -2.44061], [54.721092, -2.440581]], [[54.721092, -2.440581], [54.721007, -2.440526]], [[54.721007, -2.440526], [54.720917, -2.440472]], [[54.720917, -2.440472], [54.720829, -2.440426]], [[54.720829, -2.440426], [54.720735, -2.440384]], [[54.720735, -2.440384], [54.720637, -2.440376]], [[54.720637, -2.440376], [54.720541, -2.44037]], [[54.720541, -2.44037], [54.720443, -2.44036]], [[54.720443, -2.44036], [54.720353, -2.440341]], [[54.720353, -2.440341], [54.720264, -2.440312]], [[54.720264, -2.440312], [54.720175, -2.440269]], [[54.720175, -2.440269], [54.720081, -2.440281]], [[54.719502, -2.440748], [54.719408, -2.440804]], [[54.719408, -2.440804], [54.719327, -2.440883]], [[54.719221, -2.441328], [54.719178, -2.441478]], [[54.719178, -2.441478], [54.719154, -2.441637]], [[54.719154, -2.441637], [54.719103, -2.441774]], [[54.718961, -2.441981], [54.718885, -2.442084]], [[54.718724, -2.44334], [54.718672, -2.443476]], [[54.718226, -2.445427], [54.718138, -2.445517]], [[54.718138, -2.445517], [54.718083, -2.44566]], [[54.717978, -2.445925], [54.717927, -2.446073]], [[54.717927, -2.446073], [54.717872, -2.446211]], [[54.717785, -2.446495], [54.717738, -2.446654]], [[54.717738, -2.446654], [54.717678, -2.44679]], [[54.717678, -2.44679], [54.71763, -2.446926]], [[54.71763, -2.446926], [54.717622, -2.447092]], [[54.717639, -2.447259], [54.71762, -2.447425]], [[54.717663, -2.448352], [54.717621, -2.448513]], [[54.717621, -2.448513], [54.717554, -2.448639]], [[54.717554, -2.448639], [54.717476, -2.448758]], [[54.717476, -2.448758], [54.717409, -2.448879]], [[54.717328, -2.448982], [54.717232, -2.448935]], [[54.717232, -2.448935], [54.717166, -2.449042]], [[54.716879, -2.44991], [54.716823, -2.450045]], [[54.716617, -2.45171], [54.716655, -2.451873]], [[54.716655, -2.451873], [54.716688, -2.452023]], [[54.716688, -2.452023], [54.716719, -2.452187]], [[54.716719, -2.452187], [54.716755, -2.452348]], [[54.716755, -2.452348], [54.716817, -2.452467]], [[54.716817, -2.452467], [54.71691, -2.452535]], [[54.71691, -2.452535], [54.71701, -2.45254]], [[54.71701, -2.45254], [54.717101, -2.452565]], [[54.717241, -2.453274], [54.717286, -2.453421]], [[54.717286, -2.453421], [54.717331, -2.453577]], [[54.717331, -2.453577], [54.71738, -2.45373]], [[54.71738, -2.45373], [54.717445, -2.453854]], [[54.717445, -2.453854], [54.717519, -2.453965]], [[54.717519, -2.453965], [54.717585, -2.454088]], [[54.717585, -2.454088], [54.717641, -2.454226]], [[54.717641, -2.454226], [54.717685, -2.454362]], [[54.717685, -2.454362], [54.717748, -2.454485]], [[54.717748, -2.454485], [54.717801, -2.454612]], [[54.717801, -2.454612], [54.717854, -2.454744]], [[54.717954, -2.455232], [54.71797, -2.455389]], [[54.718037, -2.455788], [54.71806, -2.455953]], [[54.71806, -2.455953], [54.718089, -2.456109]], [[54.718089, -2.456109], [54.718106, -2.456276]], [[54.718106, -2.456276], [54.718112, -2.456439]], [[54.718112, -2.456439], [54.71813, -2.456608]], [[54.71813, -2.456608], [54.718132, -2.456773]], [[54.718132, -2.456773], [54.718142, -2.456949]], [[54.718142, -2.456949], [54.718155, -2.457105]], [[54.718155, -2.457105], [54.718172, -2.457261]], [[54.718172, -2.457261], [54.718193, -2.457421]], [[54.718193, -2.457421], [54.718213, -2.457591]], [[54.718227, -2.457917], [54.718223, -2.458083]], [[54.718223, -2.458083], [54.71822, -2.458242]], [[54.71822, -2.458242], [54.718223, -2.458403]], [[54.71822, -2.458568], [54.718213, -2.45874]], [[54.718213, -2.45874], [54.718217, -2.458897]], [[54.718217, -2.458897], [54.71822, -2.459064]], [[54.71822, -2.459064], [54.71822, -2.459221]], [[54.71822, -2.459221], [54.718214, -2.459387]], [[54.718214, -2.459387], [54.718213, -2.459545]], [[54.718213, -2.459545], [54.718204, -2.459706]], [[54.718204, -2.459706], [54.718195, -2.459863]], [[54.718195, -2.459863], [54.718199, -2.460022]], [[54.718199, -2.460022], [54.718189, -2.460193]], [[54.718189, -2.460193], [54.718198, -2.460356]], [[54.718198, -2.460356], [54.718201, -2.460526]], [[54.718201, -2.460526], [54.718194, -2.460688]], [[54.718194, -2.460688], [54.718187, -2.460853]], [[54.718187, -2.460853], [54.718188, -2.46102]], [[54.718188, -2.46102], [54.718194, -2.46119]], [[54.718194, -2.46119], [54.718194, -2.461361]], [[54.718188, -2.461534], [54.718199, -2.461693]], [[54.718199, -2.461693], [54.718196, -2.461859]], [[54.718196, -2.461859], [54.718197, -2.462019]], [[54.718197, -2.462019], [54.718207, -2.462194]], [[54.718207, -2.462194], [54.718197, -2.462359]], [[54.718197, -2.462359], [54.718185, -2.46253]], [[54.718185, -2.46253], [54.7182, -2.462684]], [[54.7182, -2.462684], [54.718211, -2.462848]], [[54.718211, -2.462848], [54.7182, -2.463007]], [[54.7182, -2.463007], [54.718179, -2.46317]], [[54.718179, -2.46317], [54.71815, -2.463328]], [[54.718125, -2.463478], [54.7181, -2.463647]], [[54.7181, -2.463647], [54.71808, -2.463804]], [[54.71808, -2.463804], [54.718078, -2.463962]], [[54.718078, -2.463962], [54.718071, -2.464127]], [[54.718071, -2.464127], [54.71807, -2.464284]], [[54.71807, -2.464284], [54.718063, -2.464439]], [[54.718063, -2.464439], [54.71805, -2.464598]], [[54.71805, -2.464598], [54.718042, -2.464773]], [[54.718042, -2.464773], [54.718045, -2.464937]], [[54.718045, -2.464937], [54.718031, -2.465105]], [[54.718031, -2.465105], [54.718036, -2.465262]], [[54.718036, -2.465262], [54.718035, -2.465427]], [[54.718035, -2.465427], [54.718012, -2.465589]], [[54.71797, -2.46575], [54.717946, -2.465907]], [[54.717946, -2.465907], [54.717919, -2.466064]], [[54.717919, -2.466064], [54.717894, -2.466221]], [[54.717894, -2.466221], [54.717862, -2.466376]], [[54.717862, -2.466376], [54.717836, -2.466532]], [[54.717836, -2.466532], [54.717805, -2.466687]], [[54.717805, -2.466687], [54.717771, -2.466832]], [[54.717771, -2.466832], [54.717743, -2.466994]], [[54.717743, -2.466994], [54.717717, -2.467153]], [[54.717717, -2.467153], [54.717689, -2.467312]], [[54.717689, -2.467312], [54.717659, -2.467463]], [[54.717659, -2.467463], [54.717623, -2.467627]], [[54.717623, -2.467627], [54.7176, -2.467787]], [[54.7176, -2.467787], [54.71757, -2.467947]], [[54.71757, -2.467947], [54.717533, -2.468104]], [[54.717533, -2.468104], [54.717501, -2.468252]], [[54.717501, -2.468252], [54.717464, -2.468394]], [[54.717464, -2.468394], [54.717429, -2.468548]], [[54.717429, -2.468548], [54.717406, -2.468712]], [[54.717406, -2.468712], [54.717359, -2.468853]], [[54.717227, -2.469144], [54.71717, -2.469279]], [[54.717034, -2.469499], [54.716963, -2.469622]], [[54.716963, -2.469622], [54.71689, -2.469739]], [[54.71689, -2.469739], [54.71681, -2.469852]], [[54.716729, -2.469948], [54.716656, -2.470041]], [[54.716656, -2.470041], [54.716581, -2.470146]], [[54.716581, -2.470146], [54.716505, -2.470245]], [[54.716505, -2.470245], [54.716431, -2.470344]], [[54.716431, -2.470344], [54.716358, -2.470448]], [[54.716358, -2.470448], [54.716282, -2.470538]], [[54.716214, -2.470645], [54.71614, -2.470749]], [[54.71614, -2.470749], [54.716061, -2.470859]], [[54.716061, -2.470859], [54.715971, -2.47093]], [[54.715971, -2.47093], [54.715896, -2.471026]], [[54.715896, -2.471026], [54.715824, -2.471134]], [[54.715824, -2.471134], [54.715743, -2.471238]], [[54.71566, -2.471341], [54.715586, -2.471446]], [[54.715586, -2.471446], [54.715518, -2.47156]], [[54.715518, -2.47156], [54.715449, -2.471668]], [[54.715449, -2.471668], [54.715382, -2.471786]], [[54.715382, -2.471786], [54.7153, -2.471888]], [[54.7153, -2.471888], [54.715219, -2.471967]], [[54.715219, -2.471967], [54.71514, -2.472047]], [[54.71514, -2.472047], [54.715056, -2.472138]], [[54.715056, -2.472138], [54.714974, -2.472221]], [[54.714974, -2.472221], [54.71489, -2.472312]], [[54.71489, -2.472312], [54.714818, -2.472429]], [[54.714818, -2.472429], [54.714742, -2.472521]], [[54.714742, -2.472521], [54.714665, -2.472605]], [[54.714665, -2.472605], [54.714598, -2.472724]], [[54.714598, -2.472724], [54.714546, -2.472873]], [[54.714546, -2.472873], [54.714461, -2.472963]], [[54.714461, -2.472963], [54.714368, -2.473021]], [[54.714368, -2.473021], [54.714277, -2.473084]], [[54.714277, -2.473084], [54.714191, -2.473162]], [[54.714191, -2.473162], [54.714119, -2.473267]], [[54.714119, -2.473267], [54.714036, -2.473329]], [[54.714036, -2.473329], [54.713995, -2.47347]], [[54.713995, -2.47347], [54.713927, -2.473574]], [[54.713738, -2.473923], [54.713793, -2.474065]], [[54.713793, -2.474065], [54.713782, -2.47422]], [[54.713782, -2.47422], [54.713756, -2.474373]], [[54.713756, -2.474373], [54.713733, -2.474541]], [[54.713733, -2.474541], [54.713715, -2.474706]], [[54.713715, -2.474706], [54.713677, -2.474867]], [[54.713677, -2.474867], [54.713637, -2.475019]], [[54.713637, -2.475019], [54.713583, -2.475161]], [[54.713583, -2.475161], [54.713535, -2.4753]], [[54.713535, -2.4753], [54.713481, -2.475434]], [[54.713481, -2.475434], [54.71343, -2.47557]], [[54.71343, -2.47557], [54.713383, -2.475719]], [[54.713383, -2.475719], [54.71332, -2.475849]], [[54.71332, -2.475849], [54.713267, -2.475998]], [[54.713267, -2.475998], [54.713262, -2.476162]], [[54.713164, -2.476969], [54.713134, -2.477128]], [[54.713134, -2.477128], [54.713115, -2.477288]], [[54.713115, -2.477288], [54.713127, -2.477458]], [[54.713127, -2.477458], [54.713122, -2.477631]], [[54.713122, -2.477631], [54.713111, -2.477797]], [[54.713111, -2.477797], [54.713084, -2.477945]], [[54.713084, -2.477945], [54.713057, -2.478095]], [[54.713057, -2.478095], [54.713082, -2.478256]], [[54.713082, -2.478256], [54.713121, -2.478413]], [[54.713121, -2.478413], [54.713118, -2.478581]], [[54.713118, -2.478581], [54.713121, -2.478753]], [[54.71313, -2.479141], [54.713112, -2.479297]], [[54.713112, -2.479297], [54.71309, -2.479461]], [[54.71309, -2.479461], [54.713054, -2.479621]], [[54.713054, -2.479621], [54.713027, -2.479773]], [[54.713027, -2.479773], [54.712992, -2.479928]], [[54.712992, -2.479928], [54.712964, -2.480093]], [[54.712964, -2.480093], [54.712942, -2.480254]], [[54.712942, -2.480254], [54.712915, -2.480423]], [[54.712915, -2.480423], [54.712891, -2.480576]], [[54.712891, -2.480576], [54.712889, -2.480737]], [[54.712889, -2.480737], [54.712864, -2.480899]], [[54.71287, -2.481056], [54.712877, -2.481222]], [[54.712877, -2.481222], [54.712868, -2.481379]], [[54.712868, -2.481379], [54.712884, -2.481545]], [[54.712477, -2.482708], [54.71248, -2.482867]], [[54.71248, -2.482867], [54.712507, -2.483022]], [[54.712507, -2.483022], [54.712529, -2.483194]], [[54.712529, -2.483194], [54.712548, -2.483349]], [[54.712548, -2.483349], [54.71257, -2.483518]], [[54.71257, -2.483518], [54.712595, -2.483668]], [[54.712595, -2.483668], [54.712594, -2.483838]], [[54.712433, -2.484986], [54.71241, -2.485145]], [[54.71241, -2.485145], [54.712388, -2.485307]], [[54.712112, -2.486844], [54.712108, -2.487014]], [[54.712156, -2.487321], [54.712188, -2.487477]], [[54.712188, -2.487477], [54.712178, -2.487642]], [[54.705879, -2.488338], [54.705788, -2.488296]], [[54.705788, -2.488296], [54.70569, -2.488283]], [[54.70569, -2.488283], [54.7056, -2.488247]], [[54.7056, -2.488247], [54.705508, -2.488187]], [[54.705508, -2.488187], [54.705431, -2.488105]], [[54.705357, -2.488004], [54.705271, -2.487941]], [[54.705271, -2.487941], [54.705183, -2.487879]], [[54.704655, -2.487246], [54.704558, -2.487181]], [[54.704558, -2.487181], [54.70446, -2.487138]], [[54.70446, -2.487138], [54.704369, -2.48712]], [[54.704369, -2.48712], [54.704279, -2.487103]], [[54.704279, -2.487103], [54.704183, -2.487079]], [[54.704183, -2.487079], [54.704085, -2.487097]], [[54.703986, -2.487088], [54.703892, -2.487047]], [[54.703892, -2.487047], [54.703799, -2.487021]], [[54.703799, -2.487021], [54.703701, -2.486996]], [[54.703701, -2.486996], [54.7036, -2.486996]], [[54.7036, -2.486996], [54.703497, -2.486977]], [[54.703497, -2.486977], [54.703397, -2.486977]], [[54.703397, -2.486977], [54.703303, -2.486933]], [[54.70297, -2.486632], [54.702915, -2.486506]], [[54.702915, -2.486506], [54.702902, -2.486351]], [[54.702902, -2.486351], [54.702896, -2.486185]], [[54.702791, -2.484881], [54.702764, -2.484724]], [[54.702764, -2.484724], [54.702738, -2.484575]], [[54.702738, -2.484575], [54.70272, -2.484405]], [[54.702629, -2.483942], [54.702588, -2.483795]], [[54.702572, -2.483639], [54.702568, -2.483471]], [[54.702508, -2.483003], [54.702485, -2.482853]], [[54.702485, -2.482853], [54.702463, -2.482687]], [[54.702278, -2.482173], [54.702282, -2.482009]], [[54.702282, -2.482009], [54.702266, -2.481845]], [[54.702191, -2.481568], [54.702181, -2.481399]], [[54.701967, -2.480705], [54.701923, -2.480558]], [[54.701923, -2.480558], [54.701873, -2.480416]], [[54.701628, -2.479184], [54.701597, -2.479023]], [[54.701597, -2.479023], [54.701559, -2.478868]], [[54.701559, -2.478868], [54.701517, -2.478729]], [[54.701517, -2.478729], [54.701506, -2.478566]], [[54.701506, -2.478566], [54.701483, -2.478399]], [[54.701446, -2.478238], [54.701404, -2.478084]], [[54.701404, -2.478084], [54.701387, -2.477923]], [[54.701387, -2.477923], [54.701315, -2.47782]], [[54.70128, -2.477674], [54.70124, -2.477519]], [[54.70124, -2.477519], [54.701224, -2.477353]], [[54.701224, -2.477353], [54.701183, -2.477195]], [[54.701027, -2.47651], [54.700988, -2.476351]], [[54.700764, -2.475476], [54.70076, -2.475319]], [[54.700737, -2.475159], [54.700674, -2.475042]], [[54.700674, -2.475042], [54.700617, -2.474917]], [[54.700617, -2.474917], [54.700541, -2.474812]], [[54.700541, -2.474812], [54.700494, -2.474659]], [[54.700494, -2.474659], [54.700455, -2.474513]], [[54.700455, -2.474513], [54.700387, -2.474393]], [[54.700313, -2.474108], [54.700279, -2.473948]], [[54.700279, -2.473948], [54.700289, -2.473792]], [[54.700051, -2.473301], [54.700021, -2.47314]], [[54.700021, -2.47314], [54.69998, -2.472978]], [[54.69998, -2.472978], [54.699913, -2.47286]], [[54.699913, -2.47286], [54.699838, -2.472754]], [[54.699756, -2.472655], [54.699712, -2.472502]], [[54.699659, -2.472375], [54.699604, -2.472242]], [[54.699457, -2.47204], [54.69939, -2.471928]], [[54.69939, -2.471928], [54.699325, -2.471819]], [[54.69909, -2.471606], [54.698999, -2.47155]], [[54.698999, -2.47155], [54.69892, -2.471471]], [[54.69892, -2.471471], [54.698829, -2.471397]], [[54.698829, -2.471397], [54.698745, -2.4713]], [[54.698524, -2.470993], [54.698439, -2.470916]], [[54.698233, -2.470595], [54.698153, -2.470493]], [[54.698006, -2.470279], [54.697932, -2.470165]], [[54.697932, -2.470165], [54.697863, -2.470047]], [[54.697863, -2.470047], [54.6978, -2.469926]], [[54.697594, -2.469612], [54.697507, -2.469549]], [[54.697507, -2.469549], [54.697415, -2.469489]], [[54.697415, -2.469489], [54.69734, -2.469374]], [[54.69734, -2.469374], [54.697291, -2.469223]], [[54.697291, -2.469223], [54.697205, -2.469134]], [[54.697205, -2.469134], [54.697134, -2.469032]], [[54.697134, -2.469032], [54.697063, -2.468913]], [[54.696627, -2.468448], [54.696535, -2.468404]], [[54.696535, -2.468404], [54.696444, -2.468339]], [[54.696271, -2.46822], [54.69621, -2.468096]], [[54.69621, -2.468096], [54.696162, -2.467961]], [[54.696179, -2.467789], [54.696237, -2.467657]], [[54.696237, -2.467657], [54.696212, -2.467506]], [[54.696149, -2.467209], [54.696107, -2.467058]], [[54.696107, -2.467058], [54.696032, -2.466963]], [[54.696032, -2.466963], [54.695949, -2.466891]], [[54.695949, -2.466891], [54.695894, -2.466767]], [[54.695894, -2.466767], [54.695854, -2.466626]], [[54.695854, -2.466626], [54.695846, -2.466454]], [[54.695748, -2.466185], [54.695678, -2.466071]], [[54.695678, -2.466071], [54.695641, -2.465919]], [[54.695641, -2.465919], [54.695594, -2.465785]], [[54.695532, -2.465471], [54.695468, -2.465349]], [[54.695468, -2.465349], [54.695409, -2.465229]], [[54.695409, -2.465229], [54.695341, -2.465112]], [[54.695341, -2.465112], [54.695265, -2.465024]], [[54.695265, -2.465024], [54.6952, -2.464914]], [[54.6952, -2.464914], [54.695124, -2.464816]], [[54.695124, -2.464816], [54.69504, -2.464735]], [[54.69504, -2.464735], [54.694964, -2.464621]], [[54.694964, -2.464621], [54.694884, -2.464521]], [[54.694812, -2.464426], [54.694727, -2.464334]], [[54.694727, -2.464334], [54.694639, -2.464249]], [[54.694639, -2.464249], [54.694553, -2.464169]], [[54.694376, -2.463925], [54.694301, -2.463829]], [[54.694301, -2.463829], [54.69422, -2.463756]], [[54.69422, -2.463756], [54.694138, -2.463657]], [[54.694138, -2.463657], [54.694058, -2.463572]], [[54.693729, -2.463279], [54.693662, -2.463159]], [[54.693662, -2.463159], [54.69358, -2.463078]], [[54.692501, -2.461445], [54.692416, -2.46135]], [[54.692416, -2.46135], [54.692323, -2.461286]], [[54.692225, -2.461229], [54.692142, -2.461128]], [[54.692142, -2.461128], [54.692059, -2.461024]], [[54.692059, -2.461024], [54.691977, -2.460931]], [[54.691576, -2.460457], [54.691496, -2.460384]], [[54.691496, -2.460384], [54.691423, -2.460292]], [[54.691423, -2.460292], [54.691346, -2.46019]], [[54.691108, -2.459867], [54.69104, -2.459753]], [[54.690807, -2.459381], [54.690732, -2.459261]], [[54.690732, -2.459261], [54.690673, -2.459124]], [[54.690536, -2.458902], [54.6905, -2.458742]], [[54.69011, -2.457854], [54.690053, -2.457716]], [[54.689841, -2.457354], [54.689776, -2.457241]], [[54.68937, -2.456339], [54.689293, -2.456224]], [[54.689293, -2.456224], [54.689224, -2.456125]], [[54.689224, -2.456125], [54.689147, -2.456033]], [[54.689147, -2.456033], [54.689072, -2.455915]], [[54.689072, -2.455915], [54.689027, -2.45578]], [[54.688897, -2.455546], [54.688828, -2.455421]], [[54.688828, -2.455421], [54.688755, -2.45533]], [[54.688755, -2.45533], [54.688674, -2.45523]], [[54.68853, -2.454942], [54.688447, -2.454838]], [[54.688447, -2.454838], [54.688377, -2.454731]], [[54.688377, -2.454731], [54.688319, -2.454609]], [[54.688319, -2.454609], [54.688241, -2.45451]], [[54.688241, -2.45451], [54.688167, -2.454414]], [[54.688167, -2.454414], [54.688097, -2.45429]], [[54.688097, -2.45429], [54.68803, -2.454165]], [[54.68803, -2.454165], [54.687978, -2.454033]], [[54.687978, -2.454033], [54.68791, -2.453925]], [[54.68791, -2.453925], [54.687833, -2.453829]], [[54.687833, -2.453829], [54.687746, -2.453743]], [[54.687746, -2.453743], [54.687654, -2.453686]], [[54.687654, -2.453686], [54.68757, -2.453615]], [[54.687417, -2.453421], [54.687352, -2.453308]], [[54.687352, -2.453308], [54.687272, -2.453197]], [[54.687272, -2.453197], [54.687203, -2.453082]], [[54.686973, -2.452787], [54.686893, -2.452701]], [[54.686721, -2.452572], [54.686623, -2.452554]], [[54.685985, -2.452437], [54.685895, -2.452399]], [[54.685124, -2.451565], [54.685067, -2.451426]], [[54.685067, -2.451426], [54.685016, -2.451275]], [[54.684899, -2.451004], [54.684838, -2.450879]], [[54.684838, -2.450879], [54.684768, -2.450768]], [[54.684555, -2.450611], [54.68451, -2.450464]], [[54.684418, -2.450168], [54.684353, -2.45005]], [[54.68404, -2.449819], [54.683944, -2.449809]], [[54.683944, -2.449809], [54.683843, -2.449813]], [[54.683843, -2.449813], [54.683753, -2.449847]], [[54.683267, -2.449671], [54.683207, -2.44954]], [[54.683207, -2.44954], [54.683162, -2.449389]], [[54.683162, -2.449389], [54.68311, -2.449246]], [[54.68311, -2.449246], [54.683058, -2.449102]], [[54.683058, -2.449102], [54.683022, -2.448954]], [[54.683022, -2.448954], [54.682991, -2.448794]], [[54.682991, -2.448794], [54.682946, -2.448641]], [[54.682946, -2.448641], [54.682918, -2.44847]], [[54.682753, -2.448275], [54.682665, -2.448242]], [[54.682665, -2.448242], [54.682564, -2.448212]], [[54.682564, -2.448212], [54.682472, -2.448145]], [[54.682278, -2.448124], [54.682191, -2.448178]], [[54.682097, -2.448219], [54.682, -2.44824]], [[54.680978, -2.447614], [54.680898, -2.447536]], [[54.680677, -2.447234], [54.68063, -2.447085]], [[54.680419, -2.44586], [54.680367, -2.445724]], [[54.680367, -2.445724], [54.680333, -2.445578]], [[54.679965, -2.444826], [54.679914, -2.444695]], [[54.679914, -2.444695], [54.679858, -2.444562]], [[54.679778, -2.444474], [54.679698, -2.444387]], [[54.679698, -2.444387], [54.679609, -2.444319]], [[54.679554, -2.444177], [54.679499, -2.444043]], [[54.679398, -2.443765], [54.679358, -2.443612]], [[54.679358, -2.443612], [54.679324, -2.443463]], [[54.679324, -2.443463], [54.679309, -2.443297]], [[54.679309, -2.443297], [54.679257, -2.443153]], [[54.679257, -2.443153], [54.679208, -2.442999]], [[54.679208, -2.442999], [54.679149, -2.442879]], [[54.679149, -2.442879], [54.679117, -2.442731]], [[54.679117, -2.442731], [54.679072, -2.442593]], [[54.679072, -2.442593], [54.679003, -2.442471]], [[54.679003, -2.442471], [54.678961, -2.442325]], [[54.678961, -2.442325], [54.678924, -2.442172]], [[54.678924, -2.442172], [54.678903, -2.442013]], [[54.678903, -2.442013], [54.678863, -2.44186]], [[54.678863, -2.44186], [54.678835, -2.441708]], [[54.678835, -2.441708], [54.678785, -2.441565]], [[54.678785, -2.441565], [54.678728, -2.441432]], [[54.677366, -2.440095], [54.677294, -2.439995]], [[54.677294, -2.439995], [54.677209, -2.439904]], [[54.676955, -2.439693], [54.676869, -2.439619]], [[54.676791, -2.439524], [54.676733, -2.4394]], [[54.676661, -2.439273], [54.676578, -2.439189]], [[54.676408, -2.439034], [54.676318, -2.438975]], [[54.676318, -2.438975], [54.676229, -2.438908]], [[54.676229, -2.438908], [54.676137, -2.438852]], [[54.676137, -2.438852], [54.676061, -2.438763]], [[54.676061, -2.438763], [54.675973, -2.43868]], [[54.675973, -2.43868], [54.675885, -2.438632]], [[54.675885, -2.438632], [54.67579, -2.438579]], [[54.67579, -2.438579], [54.675694, -2.438523]], [[54.675694, -2.438523], [54.675605, -2.438472]], [[54.675605, -2.438472], [54.675518, -2.438418]], [[54.675431, -2.438364], [54.675348, -2.438291]], [[54.675348, -2.438291], [54.675262, -2.438201]], [[54.675262, -2.438201], [54.675176, -2.438143]], [[54.675176, -2.438143], [54.675091, -2.438063]], [[54.675091, -2.438063], [54.674999, -2.438074]], [[54.674999, -2.438074], [54.674912, -2.438025]], [[54.674912, -2.438025], [54.674817, -2.437984]], [[54.674817, -2.437984], [54.674728, -2.437949]], [[54.674558, -2.437839], [54.674467, -2.43778]], [[54.674467, -2.43778], [54.674374, -2.437743]], [[54.674374, -2.437743], [54.674281, -2.437699]], [[54.674281, -2.437699], [54.674192, -2.437645]], [[54.674192, -2.437645], [54.674093, -2.437632]], [[54.674093, -2.437632], [54.674006, -2.437587]], [[54.674006, -2.437587], [54.673917, -2.437559]], [[54.673823, -2.437575], [54.673732, -2.437518]], [[54.673732, -2.437518], [54.673639, -2.437479]], [[54.673639, -2.437479], [54.673546, -2.437452]], [[54.673546, -2.437452], [54.67345, -2.437413]], [[54.67345, -2.437413], [54.67337, -2.437338]], [[54.67337, -2.437338], [54.673277, -2.437287]], [[54.673277, -2.437287], [54.673183, -2.437226]], [[54.67247, -2.436843], [54.67238, -2.436801]], [[54.67238, -2.436801], [54.672281, -2.436785]], [[54.672281, -2.436785], [54.672188, -2.436758]], [[54.672003, -2.436719], [54.671905, -2.436724]], [[54.671905, -2.436724], [54.671812, -2.436674]], [[54.671616, -2.436595], [54.671526, -2.436575]], [[54.671526, -2.436575], [54.671432, -2.436566]], [[54.671432, -2.436566], [54.671339, -2.436517]], [[54.671339, -2.436517], [54.671246, -2.43649]], [[54.671246, -2.43649], [54.671151, -2.436469]], [[54.671151, -2.436469], [54.671068, -2.436405]], [[54.671068, -2.436405], [54.670984, -2.436324]], [[54.670984, -2.436324], [54.6709, -2.436251]], [[54.669767, -2.435172], [54.669678, -2.435117]], [[54.669678, -2.435117], [54.669591, -2.435036]], [[54.669591, -2.435036], [54.669499, -2.434995]], [[54.669499, -2.434995], [54.669402, -2.43497]], [[54.669402, -2.43497], [54.669363, -2.43483]], [[54.669363, -2.43483], [54.669347, -2.434666]], [[54.669307, -2.434523], [54.669273, -2.434362]], [[54.668806, -2.43338], [54.66876, -2.433236]], [[54.66876, -2.433236], [54.66874, -2.433071]], [[54.66874, -2.433071], [54.668731, -2.432908]], [[54.668639, -2.432919], [54.668541, -2.432978]], [[54.668541, -2.432978], [54.668459, -2.433064]], [[54.668334, -2.433316], [54.668256, -2.433404]], [[54.668256, -2.433404], [54.668161, -2.433458]], [[54.668161, -2.433458], [54.668064, -2.433492]], [[54.667961, -2.433505], [54.667863, -2.433512]], [[54.667863, -2.433512], [54.667771, -2.433488]], [[54.667771, -2.433488], [54.667682, -2.433508]], [[54.667682, -2.433508], [54.667583, -2.433508]], [[54.667583, -2.433508], [54.667484, -2.433477]], [[54.667484, -2.433477], [54.667393, -2.433465]], [[54.667393, -2.433465], [54.667304, -2.433436]], [[54.667112, -2.433395], [54.667017, -2.43335]], [[54.667017, -2.43335], [54.666922, -2.433322]], [[54.666922, -2.433322], [54.66683, -2.433333]], [[54.666648, -2.433352], [54.666572, -2.433446]], [[54.666299, -2.43369], [54.666212, -2.433748]], [[54.666212, -2.433748], [54.666115, -2.433798]], [[54.665986, -2.433906], [54.665893, -2.433977]], [[54.665291, -2.434792], [54.665228, -2.434932]], [[54.665228, -2.434932], [54.665165, -2.435049]], [[54.665165, -2.435049], [54.665108, -2.435187]], [[54.665108, -2.435187], [54.665078, -2.435335]], [[54.665078, -2.435335], [54.665031, -2.435486]], [[54.665031, -2.435486], [54.664973, -2.435616]], [[54.664973, -2.435616], [54.664945, -2.435765]], [[54.664945, -2.435765], [54.664916, -2.435935]], [[54.664916, -2.435935], [54.66488, -2.436077]], [[54.66488, -2.436077], [54.664856, -2.43624]], [[54.664621, -2.436969], [54.664578, -2.437112]], [[54.664578, -2.437112], [54.664521, -2.437253]], [[54.664521, -2.437253], [54.664488, -2.4374]], [[54.664488, -2.4374], [54.664453, -2.437551]], [[54.6642, -2.43826], [54.664154, -2.438397]], [[54.664154, -2.438397], [54.664106, -2.438541]], [[54.664106, -2.438541], [54.664077, -2.438697]], [[54.664077, -2.438697], [54.664044, -2.438859]], [[54.663875, -2.439238], [54.663807, -2.439358]], [[54.663807, -2.439358], [54.663757, -2.439506]], [[54.663757, -2.439506], [54.663744, -2.439675]], [[54.663725, -2.439977], [54.663785, -2.440094]], [[54.663785, -2.440094], [54.663768, -2.440249]], [[54.663715, -2.440528], [54.66363, -2.440467]], [[54.663532, -2.440443], [54.663435, -2.440418]], [[54.663435, -2.440418], [54.66334, -2.440458]], [[54.66334, -2.440458], [54.663269, -2.440558]], [[54.663269, -2.440558], [54.663216, -2.440705]], [[54.663145, -2.440809], [54.663065, -2.440891]], [[54.663065, -2.440891], [54.662971, -2.44091]], [[54.661919, -2.441805], [54.661856, -2.441925]], [[54.661791, -2.442233], [54.661743, -2.44237]], [[54.661743, -2.44237], [54.661702, -2.442526]], [[54.661505, -2.442872], [54.661451, -2.443003]], [[54.661451, -2.443003], [54.661399, -2.443135]], [[54.661126, -2.443809], [54.661056, -2.443912]], [[54.660909, -2.44409], [54.660888, -2.444246]], [[54.660861, -2.444405], [54.660851, -2.444569]], [[54.660851, -2.444569], [54.660815, -2.444715]], [[54.660765, -2.445045], [54.660684, -2.445112]], [[54.660684, -2.445112], [54.660593, -2.445161]], [[54.660593, -2.445161], [54.660509, -2.445237]], [[54.659786, -2.445772], [54.659705, -2.445846]], [[54.659705, -2.445846], [54.659617, -2.445903]], [[54.659617, -2.445903], [54.659532, -2.445973]], [[54.65854, -2.446788], [54.658457, -2.446886]], [[54.658457, -2.446886], [54.658389, -2.446996]], [[54.658389, -2.446996], [54.658304, -2.44709]], [[54.65816, -2.447315], [54.658077, -2.447397]], [[54.658077, -2.447397], [54.657985, -2.447461]], [[54.657527, -2.448029], [54.657435, -2.448098]], [[54.657348, -2.448194], [54.657294, -2.448327]], [[54.657294, -2.448327], [54.657238, -2.448454]], [[54.657185, -2.448759], [54.657192, -2.448931]], [[54.657138, -2.449068], [54.657088, -2.449207]], [[54.657088, -2.449207], [54.657064, -2.44937]], [[54.657064, -2.44937], [54.65701, -2.449501]], [[54.65701, -2.449501], [54.65697, -2.44966]], [[54.65697, -2.44966], [54.656917, -2.449799]], [[54.656917, -2.449799], [54.656886, -2.449956]], [[54.656886, -2.449956], [54.656836, -2.450097]], [[54.656836, -2.450097], [54.656785, -2.450238]], [[54.656764, -2.450412], [54.656751, -2.450574]], [[54.656751, -2.450574], [54.656726, -2.450746]], [[54.655996, -2.453157], [54.655955, -2.453301]], [[54.655955, -2.453301], [54.655883, -2.453406]], [[54.655676, -2.45398], [54.655627, -2.454116]], [[54.655627, -2.454116], [54.655589, -2.454268]], [[54.655589, -2.454268], [54.655539, -2.454403]], [[54.655539, -2.454403], [54.655485, -2.454533]], [[54.655253, -2.454851], [54.655197, -2.454976]], [[54.655119, -2.455061], [54.655056, -2.455195]], [[54.655056, -2.455195], [54.654979, -2.455285]], [[54.654979, -2.455285], [54.654885, -2.455328]], [[54.654788, -2.455369], [54.654693, -2.455409]], [[54.654603, -2.455452], [54.654527, -2.455556]], [[54.654527, -2.455556], [54.654457, -2.455681]], [[54.654457, -2.455681], [54.654396, -2.455803]], [[54.654396, -2.455803], [54.654331, -2.455912]], [[54.654331, -2.455912], [54.654291, -2.456052]], [[54.654291, -2.456052], [54.654213, -2.456151]], [[54.654213, -2.456151], [54.654135, -2.456253]], [[54.654135, -2.456253], [54.654071, -2.456364]], [[54.654071, -2.456364], [54.653975, -2.456442]], [[54.653894, -2.456517], [54.65383, -2.45664]], [[54.653739, -2.457647], [54.653734, -2.457826]], [[54.653814, -2.458278], [54.653865, -2.458423]], [[54.653865, -2.458423], [54.653887, -2.45858]], [[54.654015, -2.459144], [54.654023, -2.459301]], [[54.65402, -2.459456], [54.653958, -2.459594]], [[54.653958, -2.459594], [54.653885, -2.45972]], [[54.653885, -2.45972], [54.653837, -2.459873]], [[54.653837, -2.459873], [54.653764, -2.459986]], [[54.653764, -2.459986], [54.653716, -2.460139]], [[54.653716, -2.460139], [54.653667, -2.460277]], [[54.653667, -2.460277], [54.653596, -2.46038]], [[54.653596, -2.46038], [54.65352, -2.460494]], [[54.65352, -2.460494], [54.653446, -2.460597]], [[54.653446, -2.460597], [54.653366, -2.460706]], [[54.653282, -2.460782], [54.653207, -2.460877]], [[54.653166, -2.46104], [54.653116, -2.461172]], [[54.653116, -2.461172], [54.653061, -2.461296]], [[54.652992, -2.461404], [54.652941, -2.46155]], [[54.65288, -2.46168], [54.652814, -2.461784]], [[54.652814, -2.461784], [54.652729, -2.461854]], [[54.652729, -2.461854], [54.652701, -2.462006]], [[54.652701, -2.462006], [54.652672, -2.462161]], [[54.652672, -2.462161], [54.652639, -2.462312]], [[54.652174, -2.463491], [54.652127, -2.463636]], [[54.652127, -2.463636], [54.652057, -2.463753]], [[54.652057, -2.463753], [54.651982, -2.463853]], [[54.651982, -2.463853], [54.651922, -2.463971]], [[54.651797, -2.464416], [54.651744, -2.464549]], [[54.651744, -2.464549], [54.651673, -2.464665]], [[54.651673, -2.464665], [54.651619, -2.464802]], [[54.651619, -2.464802], [54.651613, -2.464962]], [[54.651613, -2.464962], [54.65158, -2.465116]], [[54.65158, -2.465116], [54.65155, -2.465279]], [[54.651408, -2.465784], [54.651313, -2.465771]], [[54.651313, -2.465771], [54.651213, -2.465792]], [[54.651213, -2.465792], [54.651122, -2.465841]], [[54.651122, -2.465841], [54.651031, -2.465856]], [[54.651031, -2.465856], [54.650987, -2.465997]], [[54.650819, -2.467079], [54.650781, -2.467241]], [[54.650781, -2.467241], [54.650742, -2.467399]], [[54.650742, -2.467399], [54.650685, -2.467544]], [[54.650685, -2.467544], [54.650624, -2.467662]], [[54.650624, -2.467662], [54.65056, -2.467793]], [[54.65056, -2.467793], [54.650503, -2.467925]], [[54.650503, -2.467925], [54.650468, -2.468084]], [[54.650468, -2.468084], [54.650403, -2.468204]], [[54.650403, -2.468204], [54.650321, -2.468284]], [[54.650145, -2.468535], [54.65006, -2.468614]], [[54.64955, -2.469052], [54.649465, -2.469103]], [[54.649465, -2.469103], [54.649384, -2.469177]], [[54.649384, -2.469177], [54.649289, -2.469197]], [[54.649289, -2.469197], [54.649195, -2.46924]], [[54.649195, -2.46924], [54.649121, -2.469329]], [[54.649121, -2.469329], [54.649055, -2.469441]], [[54.649055, -2.469441], [54.648967, -2.469481]], [[54.648967, -2.469481], [54.648876, -2.46948]], [[54.648876, -2.46948], [54.648782, -2.469461]], [[54.648782, -2.469461], [54.648691, -2.469441]], [[54.648691, -2.469441], [54.648594, -2.469438]], [[54.648484, -2.469456], [54.648394, -2.469541]], [[54.648394, -2.469541], [54.648332, -2.469656]], [[54.648332, -2.469656], [54.648264, -2.469765]], [[54.648264, -2.469765], [54.648188, -2.469851]], [[54.648188, -2.469851], [54.648095, -2.469919]], [[54.646902, -2.470222], [54.646806, -2.47017]], [[54.646118, -2.470397], [54.646089, -2.470546]], [[54.646089, -2.470546], [54.646046, -2.470691]], [[54.645971, -2.470982], [54.645921, -2.471132]], [[54.645851, -2.47145], [54.645807, -2.471599]], [[54.645155, -2.472487], [54.645089, -2.472617]], [[54.645025, -2.472742], [54.644954, -2.472867]], [[54.644954, -2.472867], [54.644872, -2.472974]], [[54.644872, -2.472974], [54.644793, -2.473081]], [[54.644793, -2.473081], [54.644724, -2.473188]], [[54.644353, -2.473723], [54.644282, -2.473826]], [[54.643967, -2.474225], [54.643885, -2.47432]], [[54.643885, -2.47432], [54.643818, -2.474434]], [[54.643214, -2.475284], [54.643149, -2.47539]], [[54.643149, -2.47539], [54.64307, -2.47549]], [[54.64307, -2.47549], [54.643009, -2.475606]], [[54.643009, -2.475606], [54.642935, -2.475723]], [[54.642935, -2.475723], [54.642852, -2.475825]], [[54.642852, -2.475825], [54.642777, -2.475936]], [[54.642777, -2.475936], [54.642681, -2.47601]], [[54.642103, -2.476837], [54.642026, -2.476928]], [[54.642026, -2.476928], [54.641962, -2.477044]], [[54.641962, -2.477044], [54.64189, -2.477152]], [[54.64189, -2.477152], [54.641814, -2.477249]], [[54.641151, -2.478171], [54.641081, -2.47827]], [[54.640929, -2.478465], [54.640854, -2.478572]], [[54.640854, -2.478572], [54.640765, -2.47866]], [[54.640765, -2.47866], [54.640681, -2.478723]], [[54.640681, -2.478723], [54.640591, -2.478666]], [[54.640591, -2.478666], [54.640525, -2.47856]], [[54.640525, -2.47856], [54.640439, -2.478501]], [[54.640439, -2.478501], [54.640354, -2.478443]], [[54.640354, -2.478443], [54.640281, -2.47834]], [[54.64017, -2.478445], [54.640095, -2.478544]], [[54.639889, -2.478913], [54.639829, -2.479046]], [[54.639829, -2.479046], [54.63978, -2.479183]], [[54.63978, -2.479183], [54.639745, -2.479331]], [[54.639745, -2.479331], [54.639718, -2.479484]], [[54.639718, -2.479484], [54.63969, -2.479648]], [[54.63969, -2.479648], [54.639654, -2.479801]], [[54.639654, -2.479801], [54.639602, -2.47993]], [[54.639602, -2.47993], [54.639562, -2.480083]], [[54.639562, -2.480083], [54.639516, -2.480233]], [[54.639516, -2.480233], [54.639484, -2.480389]], [[54.639484, -2.480389], [54.639465, -2.480548]], [[54.639332, -2.481148], [54.639263, -2.481256]], [[54.639263, -2.481256], [54.639163, -2.481259]], [[54.639163, -2.481259], [54.639071, -2.481217]], [[54.638986, -2.481137], [54.638913, -2.48103]], [[54.638913, -2.48103], [54.638845, -2.480902]], [[54.638845, -2.480902], [54.638774, -2.480779]], [[54.638774, -2.480779], [54.638716, -2.480637]], [[54.638661, -2.480505], [54.6386, -2.48038]], [[54.638387, -2.480065], [54.638296, -2.480013]], [[54.638296, -2.480013], [54.638208, -2.479979]], [[54.638022, -2.479946], [54.637926, -2.479977]], [[54.637926, -2.479977], [54.637836, -2.479967]], [[54.637836, -2.479967], [54.637743, -2.479972]], [[54.637743, -2.479972], [54.637647, -2.479953]], [[54.637535, -2.479949], [54.637436, -2.479965]], [[54.636979, -2.480248], [54.636891, -2.480332]], [[54.636262, -2.480709], [54.636178, -2.480767]], [[54.63562, -2.480521], [54.635522, -2.480502]], [[54.635522, -2.480502], [54.635459, -2.480617]], [[54.635459, -2.480617], [54.635369, -2.480608]], [[54.635135, -2.480597], [54.635042, -2.480586]], [[54.634665, -2.480606], [54.634559, -2.480616]], [[54.634559, -2.480616], [54.634469, -2.480667]], [[54.634469, -2.480667], [54.63437, -2.480716]], [[54.63437, -2.480716], [54.634282, -2.480763]], [[54.634282, -2.480763], [54.634183, -2.480769]], [[54.634183, -2.480769], [54.634097, -2.480718]], [[54.633995, -2.480705], [54.633902, -2.480724]], [[54.633833, -2.480829], [54.633734, -2.480843]], [[54.633734, -2.480843], [54.633644, -2.480916]], [[54.633251, -2.480774], [54.633161, -2.480803]], [[54.633161, -2.480803], [54.633069, -2.480778]], [[54.632986, -2.48084], [54.632895, -2.480874]], [[54.632806, -2.480927], [54.632702, -2.480971]], [[54.632621, -2.481045], [54.632554, -2.481183]], [[54.632474, -2.481292], [54.632386, -2.481335]], [[54.632032, -2.481565], [54.631966, -2.481683]], [[54.631966, -2.481683], [54.631886, -2.481763]], [[54.631886, -2.481763], [54.631786, -2.481773]], [[54.631696, -2.48177], [54.631604, -2.481782]], [[54.63131, -2.481746], [54.631213, -2.481795]], [[54.631031, -2.481899], [54.630944, -2.481962]], [[54.630944, -2.481962], [54.630851, -2.481985]], [[54.630851, -2.481985], [54.630763, -2.482035]], [[54.630763, -2.482035], [54.630687, -2.482153]], [[54.6306, -2.48221], [54.630512, -2.482277]], [[54.630512, -2.482277], [54.630443, -2.482377]], [[54.630443, -2.482377], [54.630366, -2.482465]], [[54.629816, -2.482683], [54.62974, -2.482773]], [[54.62974, -2.482773], [54.629647, -2.482815]], [[54.628881, -2.482818], [54.628788, -2.482809]], [[54.628167, -2.482667], [54.628073, -2.482652]], [[54.627971, -2.482631], [54.627876, -2.482609]], [[54.627777, -2.482622], [54.627686, -2.482636]], [[54.627237, -2.482532], [54.627148, -2.4825]], [[54.626604, -2.482216], [54.626519, -2.482283]], [[54.626519, -2.482283], [54.626431, -2.482336]], [[54.625422, -2.48197], [54.625345, -2.481888]], [[54.625263, -2.481782], [54.62518, -2.481718]], [[54.624919, -2.481585], [54.624833, -2.481632]], [[54.624131, -2.482252], [54.624049, -2.482342]], [[54.624049, -2.482342], [54.623967, -2.482449]], [[54.623442, -2.482866], [54.623365, -2.482986]], [[54.623365, -2.482986], [54.623277, -2.483064]], [[54.62261, -2.48319], [54.622529, -2.483266]], [[54.622529, -2.483266], [54.622463, -2.483373]], [[54.621987, -2.484123], [54.621899, -2.484204]], [[54.621899, -2.484204], [54.621817, -2.484289]], [[54.621817, -2.484289], [54.621731, -2.484365]], [[54.621731, -2.484365], [54.621635, -2.484429]], [[54.621453, -2.484532], [54.621353, -2.484588]], [[54.621353, -2.484588], [54.621272, -2.484678]], [[54.621272, -2.484678], [54.621187, -2.484751]], [[54.620723, -2.484591], [54.620661, -2.484471]], [[54.620661, -2.484471], [54.620591, -2.484362]], [[54.620466, -2.484098], [54.620402, -2.483967]], [[54.620402, -2.483967], [54.620373, -2.483812]], [[54.620373, -2.483812], [54.620325, -2.483669]], [[54.620325, -2.483669], [54.620301, -2.48352]], [[54.620248, -2.483378], [54.620192, -2.483239]], [[54.620192, -2.483239], [54.620162, -2.483092]], [[54.620015, -2.482859], [54.619976, -2.482706]], [[54.619976, -2.482706], [54.619942, -2.482554]], [[54.619846, -2.482183], [54.61976, -2.482258]], [[54.61976, -2.482258], [54.619665, -2.482289]], [[54.619665, -2.482289], [54.619573, -2.482324]], [[54.619573, -2.482324], [54.619481, -2.482328]], [[54.61955, -2.482443], [54.619633, -2.482519]], [[54.619934, -2.482932], [54.619839, -2.482912]], [[54.619387, -2.482087], [54.619327, -2.481949]], [[54.619327, -2.481949], [54.619285, -2.481805]], [[54.619285, -2.481805], [54.619213, -2.481907]], [[54.619197, -2.481651], [54.619149, -2.481507]], [[54.619149, -2.481507], [54.619102, -2.481363]], [[54.619102, -2.481363], [54.619061, -2.481221]], [[54.619061, -2.481221], [54.619045, -2.481067]], [[54.619045, -2.481067], [54.619069, -2.480913]], [[54.619119, -2.480777], [54.619194, -2.480664]], [[54.619264, -2.480564], [54.619351, -2.48048]], [[54.619345, -2.479136], [54.619335, -2.47897]], [[54.619335, -2.47897], [54.61931, -2.47882]], [[54.61931, -2.47882], [54.61929, -2.478665]], [[54.61929, -2.478665], [54.619251, -2.478524]], [[54.619251, -2.478524], [54.619205, -2.478386]], [[54.619205, -2.478386], [54.61916, -2.478246]], [[54.61916, -2.478246], [54.619116, -2.478106]], [[54.619116, -2.478106], [54.619073, -2.477966]], [[54.619073, -2.477966], [54.619005, -2.477838]], [[54.619005, -2.477838], [54.618934, -2.477724]], [[54.618934, -2.477724], [54.618865, -2.477602]], [[54.618865, -2.477602], [54.618795, -2.477477]], [[54.618795, -2.477477], [54.618718, -2.477362]], [[54.618718, -2.477362], [54.618652, -2.477256]], [[54.618652, -2.477256], [54.61859, -2.477138]], [[54.618523, -2.477027], [54.618444, -2.47693]], [[54.618444, -2.47693], [54.618364, -2.476839]], [[54.618364, -2.476839], [54.618284, -2.476724]], [[54.618123, -2.476502], [54.618063, -2.476367]], [[54.618063, -2.476367], [54.617997, -2.476254]], [[54.617997, -2.476254], [54.61794, -2.476113]], [[54.61766, -2.475742], [54.617587, -2.475638]], [[54.617513, -2.47512], [54.617567, -2.474992]], [[54.617567, -2.474992], [54.617606, -2.474847]], [[54.617606, -2.474847], [54.617671, -2.474736]], [[54.617671, -2.474736], [54.617713, -2.474598]], [[54.617713, -2.474598], [54.617779, -2.47449]], [[54.618139, -2.473869], [54.618146, -2.473712]], [[54.618146, -2.473712], [54.618167, -2.473544]], [[54.618207, -2.473396], [54.618227, -2.473227]], [[54.618313, -2.472757], [54.618327, -2.472598]], [[54.618327, -2.472598], [54.618388, -2.47248]], [[54.618398, -2.472324], [54.618409, -2.472168]], [[54.618409, -2.472168], [54.618443, -2.47201]], [[54.618459, -2.471516], [54.618483, -2.471353]], [[54.618483, -2.471353], [54.618496, -2.471191]], [[54.618496, -2.471191], [54.618506, -2.471022]], [[54.618506, -2.471022], [54.618533, -2.470866]], [[54.618553, -2.470532], [54.618566, -2.470352]], [[54.618579, -2.470192], [54.618585, -2.47002]], [[54.618585, -2.47002], [54.61861, -2.469854]], [[54.61861, -2.469854], [54.618629, -2.469693]], [[54.618656, -2.469544], [54.618658, -2.469384]], [[54.61875, -2.468213], [54.618749, -2.468043]], [[54.618749, -2.468043], [54.618776, -2.46789]], [[54.618891, -2.467275], [54.618896, -2.467107]], [[54.618928, -2.466466], [54.618925, -2.466299]], [[54.618925, -2.466299], [54.61895, -2.466149]], [[54.61895, -2.466149], [54.618966, -2.465982]], [[54.618966, -2.465982], [54.618945, -2.465828]], [[54.618945, -2.465828], [54.618968, -2.465678]], [[54.618968, -2.465678], [54.618981, -2.465516]], [[54.618981, -2.465516], [54.619014, -2.465368]], [[54.61902, -2.465212], [54.619065, -2.465076]], [[54.619065, -2.465076], [54.619071, -2.464904]], [[54.619192, -2.464132], [54.6192, -2.463961]], [[54.6192, -2.463961], [54.619214, -2.46379]], [[54.619223, -2.463311], [54.619237, -2.46315]], [[54.619237, -2.46315], [54.619263, -2.462991]], [[54.619263, -2.462991], [54.619266, -2.462829]], [[54.619266, -2.462829], [54.619266, -2.462667]], [[54.619266, -2.462667], [54.619284, -2.462499]], [[54.619284, -2.462499], [54.619316, -2.462338]], [[54.619316, -2.462338], [54.619329, -2.462167]], [[54.619329, -2.462167], [54.619349, -2.462016]], [[54.6194, -2.461699], [54.619433, -2.461544]], [[54.619476, -2.461312], [54.619509, -2.461147]], [[54.619509, -2.461147], [54.619537, -2.460987]], [[54.619537, -2.460987], [54.619567, -2.460825]], [[54.619567, -2.460825], [54.619616, -2.460681]], [[54.619616, -2.460681], [54.619659, -2.460529]], [[54.619659, -2.460529], [54.619704, -2.46038]], [[54.619704, -2.46038], [54.619752, -2.460234]], [[54.619752, -2.460234], [54.619792, -2.460089]], [[54.619792, -2.460089], [54.619847, -2.459951]], [[54.619847, -2.459951], [54.619862, -2.459784]], [[54.619862, -2.459784], [54.619862, -2.459612]], [[54.619862, -2.459612], [54.619834, -2.459448]], [[54.619834, -2.459448], [54.619795, -2.459295]], [[54.619795, -2.459295], [54.61975, -2.459147]], [[54.61975, -2.459147], [54.619715, -2.459001]], [[54.619681, -2.458677], [54.619641, -2.458514]], [[54.619614, -2.458196], [54.619579, -2.458045]], [[54.619579, -2.458045], [54.619542, -2.457888]], [[54.619542, -2.457888], [54.619518, -2.457738]], [[54.619518, -2.457738], [54.619495, -2.457563]], [[54.61937, -2.456947], [54.619342, -2.456788]], [[54.619305, -2.456647], [54.619277, -2.456488]], [[54.619277, -2.456488], [54.619249, -2.456327]], [[54.619249, -2.456327], [54.619216, -2.456171]], [[54.619216, -2.456171], [54.619197, -2.456007]], [[54.619197, -2.456007], [54.619171, -2.455855]], [[54.619124, -2.455697], [54.619125, -2.45554]], [[54.619125, -2.45554], [54.619136, -2.455374]], [[54.619096, -2.455055], [54.61903, -2.454921]], [[54.618963, -2.454614], [54.618944, -2.454442]], [[54.618944, -2.454442], [54.618964, -2.454281]], [[54.618964, -2.454281], [54.61897, -2.454126]], [[54.619026, -2.453649], [54.619044, -2.453488]], [[54.619044, -2.453488], [54.619062, -2.453331]], [[54.619062, -2.453331], [54.619111, -2.453199]], [[54.619111, -2.453199], [54.619152, -2.453046]], [[54.619152, -2.453046], [54.619181, -2.452884]], [[54.619181, -2.452884], [54.619194, -2.452727]], [[54.619194, -2.452727], [54.619249, -2.452587]], [[54.619249, -2.452587], [54.61927, -2.452424]], [[54.61927, -2.452424], [54.619307, -2.45228]], [[54.619307, -2.45228], [54.619325, -2.452126]], [[54.619325, -2.452126], [54.619336, -2.451956]], [[54.619297, -2.451648], [54.61936, -2.451508]], [[54.61936, -2.451508], [54.619383, -2.451352]], [[54.619391, -2.451193], [54.619433, -2.451048]], [[54.619433, -2.451048], [54.61948, -2.450916]], [[54.61948, -2.450916], [54.619489, -2.450758]], [[54.619489, -2.450758], [54.619521, -2.450596]], [[54.619521, -2.450596], [54.619569, -2.450461]], [[54.619569, -2.450461], [54.619579, -2.4503]], [[54.619579, -2.4503], [54.619603, -2.450147]], [[54.619619, -2.449863], [54.619651, -2.449713]], [[54.619712, -2.449383], [54.619745, -2.449223]], [[54.619745, -2.449223], [54.619779, -2.449075]], [[54.619779, -2.449075], [54.619803, -2.448916]], [[54.619942, -2.447985], [54.61997, -2.447817]], [[54.619955, -2.447648], [54.620006, -2.447511]], [[54.62009, -2.447211], [54.62012, -2.447063]], [[54.62012, -2.447063], [54.620121, -2.446904]], [[54.620201, -2.446431], [54.620231, -2.44628]], [[54.620231, -2.44628], [54.620267, -2.446123]], [[54.620267, -2.446123], [54.620286, -2.445966]], [[54.620351, -2.445472], [54.620366, -2.445298]], [[54.620366, -2.445298], [54.620389, -2.44514]], [[54.620717, -2.443381], [54.62073, -2.443225]], [[54.62073, -2.443225], [54.620747, -2.443054]], [[54.6208, -2.442718], [54.620839, -2.442566]], [[54.620839, -2.442566], [54.620859, -2.442396]], [[54.620859, -2.442396], [54.620872, -2.442242]], [[54.620872, -2.442242], [54.620909, -2.442092]], [[54.620909, -2.442092], [54.620933, -2.441936]], [[54.620933, -2.441936], [54.620965, -2.441777]], [[54.620965, -2.441777], [54.620962, -2.44162]], [[54.620962, -2.44162], [54.620988, -2.441454]], [[54.620988, -2.441454], [54.621024, -2.44129]], [[54.621024, -2.44129], [54.621025, -2.441131]], [[54.621054, -2.440968], [54.621088, -2.440819]], [[54.621088, -2.440819], [54.621111, -2.440653]], [[54.621111, -2.440653], [54.621137, -2.440489]], [[54.621137, -2.440489], [54.621132, -2.440329]], [[54.621153, -2.440175], [54.621183, -2.440013]], [[54.621183, -2.440013], [54.621207, -2.439847]], [[54.621122, -2.438953], [54.621071, -2.438816]], [[54.621071, -2.438816], [54.620991, -2.43873]], [[54.620991, -2.43873], [54.620931, -2.438595]], [[54.620328, -2.437104], [54.620267, -2.436974]], [[54.620176, -2.436703], [54.620132, -2.436559]], [[54.620083, -2.436418], [54.620026, -2.436292]], [[54.620026, -2.436292], [54.619962, -2.436161]], [[54.619962, -2.436161], [54.619911, -2.436032]], [[54.619853, -2.435894], [54.619804, -2.435762]], [[54.619804, -2.435762], [54.619749, -2.435637]], [[54.619749, -2.435637], [54.619693, -2.435502]], [[54.619693, -2.435502], [54.619647, -2.435368]], [[54.619647, -2.435368], [54.619591, -2.435224]], [[54.61953, -2.435107], [54.619474, -2.434963]], [[54.619474, -2.434963], [54.619423, -2.434825]], [[54.619423, -2.434825], [54.619371, -2.434687]], [[54.619175, -2.434141], [54.61914, -2.433993]], [[54.61914, -2.433993], [54.619121, -2.433838]], [[54.619205, -2.433414], [54.619231, -2.433265]], [[54.619295, -2.432621], [54.61932, -2.432461]], [[54.61932, -2.432461], [54.619323, -2.432305]], [[54.619323, -2.432305], [54.619328, -2.432135]], [[54.619328, -2.432135], [54.619333, -2.431973]], [[54.619373, -2.431603], [54.619417, -2.431444]], [[54.619417, -2.431444], [54.619481, -2.431323]], [[54.619481, -2.431323], [54.619549, -2.431208]], [[54.619549, -2.431208], [54.619621, -2.431113]], [[54.619621, -2.431113], [54.619697, -2.431009]], [[54.619697, -2.431009], [54.619775, -2.430912]], [[54.619898, -2.430647], [54.619982, -2.430544]], [[54.620255, -2.429372], [54.620292, -2.429212]], [[54.620292, -2.429212], [54.620347, -2.429069]], [[54.620508, -2.428474], [54.620553, -2.428335]], [[54.620553, -2.428335], [54.62062, -2.428204]], [[54.62062, -2.428204], [54.620648, -2.428047]], [[54.620648, -2.428047], [54.620694, -2.427902]], [[54.620721, -2.427752], [54.620759, -2.427595]], [[54.620759, -2.427595], [54.620785, -2.427434]], [[54.621026, -2.426201], [54.621046, -2.426035]], [[54.621046, -2.426035], [54.621092, -2.4259]], [[54.621092, -2.4259], [54.621139, -2.425766]], [[54.621184, -2.425626], [54.621247, -2.425488]], [[54.621683, -2.424672], [54.62173, -2.424538]], [[54.62173, -2.424538], [54.621823, -2.424481]], [[54.621823, -2.424481], [54.621905, -2.42439]], [[54.622167, -2.423542], [54.622176, -2.423378]], [[54.622176, -2.423378], [54.622168, -2.423222]], [[54.622168, -2.423222], [54.622187, -2.423058]], [[54.622187, -2.423058], [54.622213, -2.42291]], [[54.622213, -2.42291], [54.622258, -2.422758]], [[54.622478, -2.422035], [54.62251, -2.421872]], [[54.62251, -2.421872], [54.622528, -2.421706]], [[54.622528, -2.421706], [54.622542, -2.421552]], [[54.622542, -2.421552], [54.622544, -2.421391]], [[54.622613, -2.420573], [54.622659, -2.420419]], [[54.622659, -2.420419], [54.622724, -2.420312]], [[54.622724, -2.420312], [54.622777, -2.42017]], [[54.622777, -2.42017], [54.622838, -2.42005]], [[54.622838, -2.42005], [54.622912, -2.419938]], [[54.622912, -2.419938], [54.622969, -2.419812]], [[54.623398, -2.41879], [54.623446, -2.418644]], [[54.623446, -2.418644], [54.623482, -2.418484]], [[54.623482, -2.418484], [54.623532, -2.418351]], [[54.623532, -2.418351], [54.62359, -2.418208]], [[54.62359, -2.418208], [54.623638, -2.418059]], [[54.623638, -2.418059], [54.623684, -2.417901]], [[54.623684, -2.417901], [54.62373, -2.417764]], [[54.623784, -2.417618], [54.623835, -2.417482]], [[54.623835, -2.417482], [54.62385, -2.417316]], [[54.62385, -2.417316], [54.623887, -2.417174]], [[54.623887, -2.417174], [54.623909, -2.41702]], [[54.623909, -2.41702], [54.623977, -2.416908]], [[54.624, -2.416752], [54.624052, -2.416614]], [[54.624052, -2.416614], [54.624105, -2.416483]], [[54.624105, -2.416483], [54.624145, -2.416343]], [[54.624145, -2.416343], [54.624191, -2.416197]], [[54.624191, -2.416197], [54.62426, -2.41609]], [[54.62426, -2.41609], [54.624339, -2.415979]], [[54.624339, -2.415979], [54.624394, -2.415846]], [[54.62457, -2.415085], [54.624606, -2.41493]], [[54.624606, -2.41493], [54.624627, -2.414762]], [[54.624627, -2.414762], [54.624631, -2.414589]], [[54.624631, -2.414589], [54.624674, -2.41443]], [[54.624873, -2.414037], [54.624946, -2.413937]], [[54.624946, -2.413937], [54.625043, -2.413901]], [[54.625133, -2.413878], [54.62522, -2.413797]], [[54.62522, -2.413797], [54.625294, -2.413679]], [[54.625294, -2.413679], [54.625332, -2.413526]], [[54.625332, -2.413526], [54.625351, -2.413358]], [[54.625351, -2.413358], [54.625374, -2.413195]], [[54.625374, -2.413195], [54.625411, -2.413047]], [[54.625411, -2.413047], [54.625489, -2.412941]], [[54.625489, -2.412941], [54.625564, -2.41284]], [[54.625733, -2.412611], [54.625812, -2.412524]], [[54.626764, -2.411957], [54.626814, -2.411824]], [[54.626858, -2.411531], [54.626866, -2.411362]], [[54.626866, -2.411362], [54.62688, -2.411201]], [[54.627022, -2.410759], [54.627097, -2.410661]], [[54.627097, -2.410661], [54.627103, -2.410495]], [[54.627521, -2.408288], [54.627552, -2.408123]], [[54.627552, -2.408123], [54.627572, -2.407965]], [[54.627572, -2.407965], [54.627596, -2.407803]], [[54.627593, -2.407633], [54.627645, -2.407495]], [[54.627645, -2.407495], [54.627678, -2.407337]], [[54.627678, -2.407337], [54.627729, -2.407206]], [[54.627729, -2.407206], [54.627783, -2.407082]], [[54.627783, -2.407082], [54.62783, -2.40693]], [[54.62783, -2.40693], [54.627906, -2.406816]], [[54.627906, -2.406816], [54.627973, -2.406691]], [[54.627973, -2.406691], [54.628052, -2.406597]], [[54.628052, -2.406597], [54.628114, -2.406467]], [[54.628114, -2.406467], [54.628136, -2.406316]], [[54.628136, -2.406316], [54.628181, -2.406159]], [[54.628181, -2.406159], [54.628253, -2.406041]], [[54.628253, -2.406041], [54.628277, -2.405887]], [[54.628277, -2.405887], [54.628331, -2.405744]], [[54.628331, -2.405744], [54.628395, -2.405609]], [[54.628395, -2.405609], [54.628449, -2.405475]], [[54.628449, -2.405475], [54.62847, -2.40532]], [[54.62847, -2.40532], [54.628512, -2.405159]], [[54.628512, -2.405159], [54.628564, -2.405028]], [[54.628564, -2.405028], [54.62861, -2.40489]], [[54.628634, -2.404734], [54.628661, -2.404575]], [[54.628661, -2.404575], [54.628674, -2.404411]], [[54.628674, -2.404411], [54.628695, -2.404255]], [[54.628695, -2.404255], [54.628717, -2.404096]], [[54.628717, -2.404096], [54.628746, -2.403946]], [[54.628746, -2.403946], [54.628783, -2.403805]], [[54.628995, -2.40346], [54.629076, -2.403361]], [[54.629076, -2.403361], [54.62916, -2.403275]], [[54.629242, -2.403211], [54.629329, -2.403123]], [[54.629329, -2.403123], [54.629389, -2.402989]], [[54.629389, -2.402989], [54.62941, -2.402823]], [[54.629447, -2.402678], [54.629484, -2.402527]], [[54.629521, -2.402369], [54.629557, -2.402214]], [[54.629557, -2.402214], [54.629556, -2.402052]], [[54.629556, -2.402052], [54.629575, -2.401886]], [[54.629575, -2.401886], [54.629593, -2.401722]], [[54.629654, -2.40142], [54.629674, -2.401255]], [[54.629674, -2.401255], [54.629696, -2.401086]], [[54.629696, -2.401086], [54.629728, -2.400923]], [[54.629821, -2.400635], [54.629872, -2.40049]], [[54.629872, -2.40049], [54.629919, -2.400352]], [[54.629919, -2.400352], [54.629972, -2.400222]], [[54.629972, -2.400222], [54.630008, -2.400067]], [[54.630008, -2.400067], [54.630021, -2.399898]], [[54.630021, -2.399898], [54.630029, -2.399725]], [[54.630144, -2.399262], [54.630183, -2.399115]], [[54.630183, -2.399115], [54.63022, -2.39896]], [[54.63022, -2.39896], [54.63026, -2.39881]], [[54.63026, -2.39881], [54.6303, -2.398665]], [[54.6303, -2.398665], [54.630343, -2.398522]], [[54.630447, -2.398056], [54.630464, -2.39789]], [[54.630464, -2.39789], [54.630497, -2.397728]], [[54.630513, -2.397547], [54.630535, -2.397367]], [[54.630383, -2.396075], [54.630335, -2.395932]], [[54.630557, -2.397399], [54.63053, -2.397559]], [[54.63053, -2.397559], [54.630521, -2.397719]], [[54.630524, -2.397799], [54.630488, -2.39794]], [[54.63044, -2.398265], [54.630514, -2.398365]], [[54.630506, -2.399281], [54.630467, -2.39944]], [[54.630322, -2.399629], [54.630344, -2.399797]], [[54.630344, -2.399797], [54.630306, -2.39994]], [[54.630306, -2.39994], [54.63025, -2.400081]], [[54.63025, -2.400081], [54.630191, -2.400209]], [[54.630191, -2.400209], [54.630135, -2.400336]], [[54.629944, -2.400415], [54.629884, -2.400541]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_afb9d4b3e936507f529cd0c7be52b0d0 = L.polyline(
                [[[54.767865, -2.398141], [54.767858, -2.398016]], [[54.767864, -2.397858], [54.767862, -2.397752]], [[54.763489, -2.39763], [54.763404, -2.397686]], [[54.763404, -2.397686], [54.763308, -2.39772]], [[54.76321, -2.397724], [54.76313, -2.397812]], [[54.76313, -2.397812], [54.763045, -2.39789]], [[54.762716, -2.3982], [54.762629, -2.398268]], [[54.762629, -2.398268], [54.762539, -2.398332]], [[54.762539, -2.398332], [54.762455, -2.398401]], [[54.762455, -2.398401], [54.76236, -2.398443]], [[54.76236, -2.398443], [54.762274, -2.398501]], [[54.762096, -2.398577], [54.762003, -2.398615]], [[54.762003, -2.398615], [54.761914, -2.398688]], [[54.761914, -2.398688], [54.76183, -2.398782]], [[54.761601, -2.399084], [54.761523, -2.399187]], [[54.761366, -2.399375], [54.761287, -2.399475]], [[54.761287, -2.399475], [54.761211, -2.399564]], [[54.761211, -2.399564], [54.761135, -2.399649]], [[54.760973, -2.399822], [54.760901, -2.399927]], [[54.760901, -2.399927], [54.760823, -2.400017]], [[54.760823, -2.400017], [54.760748, -2.400105]], [[54.760748, -2.400105], [54.760663, -2.400191]], [[54.760507, -2.400368], [54.760441, -2.400482]], [[54.760441, -2.400482], [54.760367, -2.400595]], [[54.760148, -2.400821], [54.760063, -2.400882]], [[54.760063, -2.400882], [54.759997, -2.400988]], [[54.759997, -2.400988], [54.759978, -2.401156]], [[54.759978, -2.401156], [54.760005, -2.40131]], [[54.760032, -2.401474], [54.760066, -2.401622]], [[54.760238, -2.402592], [54.760258, -2.402767]], [[54.760258, -2.402767], [54.760293, -2.402916]], [[54.760387, -2.403393], [54.76042, -2.403555]], [[54.76042, -2.403555], [54.760435, -2.403717]], [[54.760115, -2.405191], [54.760078, -2.405337]], [[54.759845, -2.406242], [54.759805, -2.406385]], [[54.759805, -2.406385], [54.759771, -2.40653]], [[54.75973, -2.406696], [54.759684, -2.406842]], [[54.759684, -2.406842], [54.75963, -2.406978]], [[54.759595, -2.40713], [54.759558, -2.407279]], [[54.759322, -2.408187], [54.75928, -2.408334]], [[54.75928, -2.408334], [54.759242, -2.40848]], [[54.759242, -2.40848], [54.759202, -2.408634]], [[54.759202, -2.408634], [54.759154, -2.408769]], [[54.759154, -2.408769], [54.759133, -2.408934]], [[54.759133, -2.408934], [54.759166, -2.40908]], [[54.759204, -2.409234], [54.759235, -2.409382]], [[54.759235, -2.409382], [54.759263, -2.409534]], [[54.759359, -2.410012], [54.759399, -2.410162]], [[54.759399, -2.410162], [54.759424, -2.410324]], [[54.759424, -2.410324], [54.759449, -2.410483]], [[54.759449, -2.410483], [54.759471, -2.410647]], [[54.759471, -2.410647], [54.7595, -2.410797]], [[54.7595, -2.410797], [54.75953, -2.410949]], [[54.75953, -2.410949], [54.759565, -2.411109]], [[54.759565, -2.411109], [54.759598, -2.411262]], [[54.75963, -2.411411], [54.759669, -2.411563]], [[54.759724, -2.411882], [54.759757, -2.412035]], [[54.759933, -2.412815], [54.759961, -2.412981]], [[54.760055, -2.413463], [54.760093, -2.413626]], [[54.760093, -2.413626], [54.760126, -2.413775]], [[54.760126, -2.413775], [54.760168, -2.413931]], [[54.760168, -2.413931], [54.7602, -2.414097]], [[54.760291, -2.414569], [54.760333, -2.41471]], [[54.760333, -2.41471], [54.76037, -2.414861]], [[54.760151, -2.416621], [54.760129, -2.416777]], [[54.760129, -2.416777], [54.760102, -2.416943]], [[54.760102, -2.416943], [54.760082, -2.417103]], [[54.76004, -2.417432], [54.760006, -2.417598]], [[54.759981, -2.417763], [54.759958, -2.41794]], [[54.759958, -2.41794], [54.759939, -2.418099]], [[54.759939, -2.418099], [54.759902, -2.418241]], [[54.759739, -2.418356], [54.759663, -2.418266]], [[54.759565, -2.418239], [54.759471, -2.418248]], [[54.759471, -2.418248], [54.759379, -2.418241]], [[54.759379, -2.418241], [54.759287, -2.418243]], [[54.759287, -2.418243], [54.759198, -2.418269]], [[54.759198, -2.418269], [54.759106, -2.418275]], [[54.759106, -2.418275], [54.759014, -2.4183]], [[54.759014, -2.4183], [54.758923, -2.418313]], [[54.758823, -2.418332], [54.75873, -2.418337]], [[54.75873, -2.418337], [54.758635, -2.418334]], [[54.758635, -2.418334], [54.758539, -2.418342]], [[54.758539, -2.418342], [54.758448, -2.418326]], [[54.758448, -2.418326], [54.758351, -2.418335]], [[54.758351, -2.418335], [54.758259, -2.418342]], [[54.758259, -2.418342], [54.75816, -2.418359]], [[54.75816, -2.418359], [54.758066, -2.418345]], [[54.757692, -2.418353], [54.757591, -2.418386]], [[54.757591, -2.418386], [54.757492, -2.418387]], [[54.757216, -2.418417], [54.757119, -2.418424]], [[54.756632, -2.418411], [54.756537, -2.418414]], [[54.756244, -2.418453], [54.75615, -2.418479]], [[54.75578, -2.418718], [54.755695, -2.418776]], [[54.751309, -2.42099], [54.751218, -2.421049]], [[54.750836, -2.421159], [54.750738, -2.421159]], [[54.750738, -2.421159], [54.750641, -2.42117]], [[54.745247, -2.426897], [54.745187, -2.426987]], [[54.743631, -2.429033], [54.743603, -2.429188]], [[54.743603, -2.429188], [54.743548, -2.429331]], [[54.743548, -2.429331], [54.74352, -2.429479]], [[54.74352, -2.429479], [54.743508, -2.429636]], [[54.743508, -2.429636], [54.743484, -2.429789]], [[54.743484, -2.429789], [54.743409, -2.429901]], [[54.743409, -2.429901], [54.743326, -2.429984]], [[54.743326, -2.429984], [54.743262, -2.430099]], [[54.742515, -2.431078], [54.74242, -2.431078]], [[54.726043, -2.436053], [54.725982, -2.436169]], [[54.724457, -2.438166], [54.724394, -2.438292]], [[54.723416, -2.439313], [54.723332, -2.439393]], [[54.721467, -2.440545], [54.721377, -2.440574]], [[54.721377, -2.440574], [54.721282, -2.440575]], [[54.720081, -2.440281], [54.719994, -2.440319]], [[54.719994, -2.440319], [54.719896, -2.440333]], [[54.719896, -2.440333], [54.719814, -2.44041]], [[54.719814, -2.44041], [54.719739, -2.440509]], [[54.719739, -2.440509], [54.719665, -2.440599]], [[54.719665, -2.440599], [54.719584, -2.440676]], [[54.719584, -2.440676], [54.719502, -2.440748]], [[54.719327, -2.440883], [54.719292, -2.441039]], [[54.719292, -2.441039], [54.719273, -2.441191]], [[54.719273, -2.441191], [54.719221, -2.441328]], [[54.719103, -2.441774], [54.719033, -2.441886]], [[54.719033, -2.441886], [54.718961, -2.441981]], [[54.718885, -2.442084], [54.71882, -2.442215]], [[54.71882, -2.442215], [54.718808, -2.442384]], [[54.718808, -2.442384], [54.71883, -2.442551]], [[54.71883, -2.442551], [54.71881, -2.442715]], [[54.71881, -2.442715], [54.718787, -2.44287]], [[54.718787, -2.44287], [54.718789, -2.443033]], [[54.718789, -2.443033], [54.718774, -2.443192]], [[54.718774, -2.443192], [54.718724, -2.44334]], [[54.718672, -2.443476], [54.718619, -2.44362]], [[54.718619, -2.44362], [54.718577, -2.443775]], [[54.718398, -2.44445], [54.718366, -2.444608]], [[54.718366, -2.444608], [54.718341, -2.444761]], [[54.718341, -2.444761], [54.718296, -2.444906]], [[54.718083, -2.44566], [54.718032, -2.445795]], [[54.718032, -2.445795], [54.717978, -2.445925]], [[54.717872, -2.446211], [54.717821, -2.446346]], [[54.717821, -2.446346], [54.717785, -2.446495]], [[54.717622, -2.447092], [54.717639, -2.447259]], [[54.71762, -2.447425], [54.717606, -2.447579]], [[54.717606, -2.447579], [54.717645, -2.44773]], [[54.717645, -2.44773], [54.717663, -2.447894]], [[54.717663, -2.447894], [54.717659, -2.448052]], [[54.717409, -2.448879], [54.717328, -2.448982]], [[54.717166, -2.449042], [54.717143, -2.449208]], [[54.717143, -2.449208], [54.717124, -2.449369]], [[54.717124, -2.449369], [54.717087, -2.449514]], [[54.717087, -2.449514], [54.717116, -2.449668]], [[54.717116, -2.449668], [54.717047, -2.449781]], [[54.717047, -2.449781], [54.716965, -2.449845]], [[54.716965, -2.449845], [54.716879, -2.44991]], [[54.716823, -2.450045], [54.716795, -2.450198]], [[54.716546, -2.450762], [54.716528, -2.450915]], [[54.716528, -2.450915], [54.716537, -2.451077]], [[54.716537, -2.451077], [54.716525, -2.451244]], [[54.716525, -2.451244], [54.716549, -2.451393]], [[54.716549, -2.451393], [54.716589, -2.451545]], [[54.716589, -2.451545], [54.716617, -2.45171]], [[54.717101, -2.452565], [54.717181, -2.452571]], [[54.717097, -2.452848], [54.717131, -2.452994]], [[54.717131, -2.452994], [54.717176, -2.453142]], [[54.717176, -2.453142], [54.717241, -2.453274]], [[54.717854, -2.454744], [54.717898, -2.454892]], [[54.71801, -2.455635], [54.718037, -2.455788]], [[54.717284, -2.469018], [54.717227, -2.469144]], [[54.71717, -2.469279], [54.717101, -2.469393]], [[54.717101, -2.469393], [54.717034, -2.469499]], [[54.716282, -2.470538], [54.716214, -2.470645]], [[54.713927, -2.473574], [54.713831, -2.473577]], [[54.713831, -2.473577], [54.713742, -2.473616]], [[54.713691, -2.473766], [54.713738, -2.473923]], [[54.713262, -2.476162], [54.71325, -2.476322]], [[54.71325, -2.476322], [54.713227, -2.476488]], [[54.713227, -2.476488], [54.713219, -2.476657]], [[54.713219, -2.476657], [54.713196, -2.476808]], [[54.713196, -2.476808], [54.713164, -2.476969]], [[54.713128, -2.478975], [54.71313, -2.479141]], [[54.712864, -2.480899], [54.71287, -2.481056]], [[54.71273, -2.48157], [54.712636, -2.481573]], [[54.712636, -2.481573], [54.712598, -2.481728]], [[54.71246, -2.482551], [54.712477, -2.482708]], [[54.712582, -2.484053], [54.712551, -2.484202]], [[54.712551, -2.484202], [54.712523, -2.484361]], [[54.712523, -2.484361], [54.71249, -2.484513]], [[54.71249, -2.484513], [54.712476, -2.484673]], [[54.712476, -2.484673], [54.712444, -2.484825]], [[54.712444, -2.484825], [54.712433, -2.484986]], [[54.712388, -2.485307], [54.712358, -2.485459]], [[54.712358, -2.485459], [54.712334, -2.485612]], [[54.712288, -2.48593], [54.712252, -2.486074]], [[54.712252, -2.486074], [54.712217, -2.48622]], [[54.712217, -2.48622], [54.712174, -2.486369]], [[54.712174, -2.486369], [54.712138, -2.486528]], [[54.712138, -2.486528], [54.712118, -2.486688]], [[54.712118, -2.486688], [54.712112, -2.486844]], [[54.712108, -2.487014], [54.712127, -2.487172]], [[54.712127, -2.487172], [54.712156, -2.487321]], [[54.712178, -2.487642], [54.712148, -2.487803]], [[54.712148, -2.487803], [54.712153, -2.487973]], [[54.712153, -2.487973], [54.712136, -2.488142]], [[54.712136, -2.488142], [54.712128, -2.488313]], [[54.712128, -2.488313], [54.71212, -2.488487]], [[54.71212, -2.488487], [54.712099, -2.48864]], [[54.712099, -2.48864], [54.712088, -2.488806]], [[54.712088, -2.488806], [54.712071, -2.488959]], [[54.712071, -2.488959], [54.712039, -2.489109]], [[54.712039, -2.489109], [54.711993, -2.489259]], [[54.711993, -2.489259], [54.711944, -2.489403]], [[54.711944, -2.489403], [54.711886, -2.489547]], [[54.711886, -2.489547], [54.711868, -2.4897]], [[54.711616, -2.490281], [54.711555, -2.490401]], [[54.711555, -2.490401], [54.711479, -2.4905]], [[54.71107, -2.491283], [54.710995, -2.491371]], [[54.710713, -2.491688], [54.710626, -2.491734]], [[54.710626, -2.491734], [54.710539, -2.491781]], [[54.710539, -2.491781], [54.710443, -2.491766]], [[54.710443, -2.491766], [54.710368, -2.49167]], [[54.710368, -2.49167], [54.710274, -2.491643]], [[54.710274, -2.491643], [54.710182, -2.491659]], [[54.710182, -2.491659], [54.710088, -2.491617]], [[54.710088, -2.491617], [54.71001, -2.491536]], [[54.71001, -2.491536], [54.709934, -2.491444]], [[54.709934, -2.491444], [54.709841, -2.491401]], [[54.709841, -2.491401], [54.709744, -2.49136]], [[54.709622, -2.491194], [54.709533, -2.491132]], [[54.709533, -2.491132], [54.70944, -2.49112]], [[54.70944, -2.49112], [54.709355, -2.491055]], [[54.709263, -2.49104], [54.709177, -2.490961]], [[54.709177, -2.490961], [54.709086, -2.490915]], [[54.709086, -2.490915], [54.709004, -2.490845]], [[54.709004, -2.490845], [54.708934, -2.490732]], [[54.708934, -2.490732], [54.708845, -2.490686]], [[54.708845, -2.490686], [54.708752, -2.49069]], [[54.707959, -2.489927], [54.70789, -2.489818]], [[54.70789, -2.489818], [54.70783, -2.489702]], [[54.70783, -2.489702], [54.707761, -2.489599]], [[54.706479, -2.488759], [54.706395, -2.488703]], [[54.706395, -2.488703], [54.706299, -2.488691]], [[54.706299, -2.488691], [54.706218, -2.48862]], [[54.706218, -2.48862], [54.706145, -2.488503]], [[54.706145, -2.488503], [54.706055, -2.488463]], [[54.706055, -2.488463], [54.705961, -2.488407]], [[54.705961, -2.488407], [54.705879, -2.488338]], [[54.705431, -2.488105], [54.705357, -2.488004]], [[54.705183, -2.487879], [54.705095, -2.48782]], [[54.705095, -2.48782], [54.705024, -2.487723]], [[54.705024, -2.487723], [54.704969, -2.487596]], [[54.704969, -2.487596], [54.704888, -2.487522]], [[54.704739, -2.487336], [54.704655, -2.487246]], [[54.704085, -2.487097], [54.703986, -2.487088]], [[54.703143, -2.486868], [54.703054, -2.486907]], [[54.702588, -2.483795], [54.702572, -2.483639]], [[54.702568, -2.483471], [54.702562, -2.483313]], [[54.702562, -2.483313], [54.702535, -2.483163]], [[54.702535, -2.483163], [54.702508, -2.483003]], [[54.702295, -2.482325], [54.702278, -2.482173]], [[54.702266, -2.481845], [54.702227, -2.481714]], [[54.702227, -2.481714], [54.702191, -2.481568]], [[54.702181, -2.481399], [54.702148, -2.481267]], [[54.702096, -2.481132], [54.702033, -2.481006]], [[54.700988, -2.476351], [54.700973, -2.476192]], [[54.700973, -2.476192], [54.700902, -2.476077]], [[54.700902, -2.476077], [54.700859, -2.475938]], [[54.700859, -2.475938], [54.70084, -2.47577]], [[54.70084, -2.47577], [54.700809, -2.475622]], [[54.700809, -2.475622], [54.700764, -2.475476]], [[54.70076, -2.475319], [54.700737, -2.475159]], [[54.700387, -2.474393], [54.70037, -2.474237]], [[54.70037, -2.474237], [54.700313, -2.474108]], [[54.699712, -2.472502], [54.699659, -2.472375]], [[54.699325, -2.471819], [54.699236, -2.471788]], [[54.699236, -2.471788], [54.699144, -2.471735]], [[54.699144, -2.471735], [54.69909, -2.471606]], [[54.698439, -2.470916], [54.698385, -2.470784]], [[54.698314, -2.470679], [54.698233, -2.470595]], [[54.697063, -2.468913], [54.69699, -2.468807]], [[54.696444, -2.468339], [54.696349, -2.468309]], [[54.696349, -2.468309], [54.696271, -2.46822]], [[54.696162, -2.467961], [54.696179, -2.467789]], [[54.696212, -2.467506], [54.696153, -2.467382]], [[54.696153, -2.467382], [54.696149, -2.467209]], [[54.695846, -2.466454], [54.695794, -2.466325]], [[54.695794, -2.466325], [54.695748, -2.466185]], [[54.695594, -2.465785], [54.695572, -2.465621]], [[54.695572, -2.465621], [54.695532, -2.465471]], [[54.694884, -2.464521], [54.694812, -2.464426]], [[54.694456, -2.464028], [54.694376, -2.463925]], [[54.694058, -2.463572], [54.693974, -2.463514]], [[54.693974, -2.463514], [54.693885, -2.463451]], [[54.693885, -2.463451], [54.693803, -2.463371]], [[54.693803, -2.463371], [54.693729, -2.463279]], [[54.69358, -2.463078], [54.693503, -2.462988]], [[54.693503, -2.462988], [54.693419, -2.462913]], [[54.693419, -2.462913], [54.693337, -2.462833]], [[54.693337, -2.462833], [54.693273, -2.462723]], [[54.693273, -2.462723], [54.693202, -2.462611]], [[54.693202, -2.462611], [54.69314, -2.462498]], [[54.69314, -2.462498], [54.693068, -2.46239]], [[54.693068, -2.46239], [54.69299, -2.46231]], [[54.69299, -2.46231], [54.692947, -2.462162]], [[54.692947, -2.462162], [54.692907, -2.46201]], [[54.692716, -2.461765], [54.692646, -2.461655]], [[54.692646, -2.461655], [54.692576, -2.461553]], [[54.692576, -2.461553], [54.692501, -2.461445]], [[54.692323, -2.461286], [54.692225, -2.461229]], [[54.691254, -2.460093], [54.691176, -2.459989]], [[54.690399, -2.458473], [54.690374, -2.458337]], [[54.69031, -2.458199], [54.690254, -2.458052]], [[54.689776, -2.457241], [54.68973, -2.45714]], [[54.68973, -2.45714], [54.689661, -2.457015]], [[54.68757, -2.453615], [54.687494, -2.453527]], [[54.687494, -2.453527], [54.687417, -2.453421]], [[54.687203, -2.453082], [54.687128, -2.452981]], [[54.687128, -2.452981], [54.687047, -2.452893]], [[54.687047, -2.452893], [54.686973, -2.452787]], [[54.686893, -2.452701], [54.686806, -2.452631]], [[54.686806, -2.452631], [54.686721, -2.452572]], [[54.686623, -2.452554], [54.686526, -2.452553]], [[54.686526, -2.452553], [54.686436, -2.452509]], [[54.686436, -2.452509], [54.686351, -2.452435]], [[54.686351, -2.452435], [54.686264, -2.452385]], [[54.686264, -2.452385], [54.686173, -2.45238]], [[54.686173, -2.45238], [54.686077, -2.452444]], [[54.686077, -2.452444], [54.685985, -2.452437]], [[54.685895, -2.452399], [54.685812, -2.452326]], [[54.685812, -2.452326], [54.68572, -2.452282]], [[54.68572, -2.452282], [54.685632, -2.452246]], [[54.685632, -2.452246], [54.685543, -2.452194]], [[54.685543, -2.452194], [54.685468, -2.452093]], [[54.685393, -2.451995], [54.685311, -2.451923]], [[54.685311, -2.451923], [54.685234, -2.451829]], [[54.685234, -2.451829], [54.685179, -2.4517]], [[54.685179, -2.4517], [54.685124, -2.451565]], [[54.685016, -2.451275], [54.684955, -2.451142]], [[54.684955, -2.451142], [54.684899, -2.451004]], [[54.684768, -2.450768], [54.684705, -2.450821]], [[54.684589, -2.450771], [54.684555, -2.450611]], [[54.684353, -2.45005], [54.684282, -2.449948]], [[54.684282, -2.449948], [54.6842, -2.449872]], [[54.683575, -2.450008], [54.683498, -2.450096]], [[54.683498, -2.450096], [54.683405, -2.450093]], [[54.683405, -2.450093], [54.683341, -2.449971]], [[54.683341, -2.449971], [54.68331, -2.449815]], [[54.68331, -2.449815], [54.683267, -2.449671]], [[54.682472, -2.448145], [54.682375, -2.448099]], [[54.682375, -2.448099], [54.682278, -2.448124]], [[54.682191, -2.448178], [54.682097, -2.448219]], [[54.680898, -2.447536], [54.680816, -2.447451]], [[54.680564, -2.44659], [54.68053, -2.446469]], [[54.680535, -2.446307], [54.680498, -2.446148]], [[54.679609, -2.444319], [54.679554, -2.444177]], [[54.678631, -2.441262], [54.678563, -2.441149]], [[54.676578, -2.439189], [54.676492, -2.439105]], [[54.676492, -2.439105], [54.676408, -2.439034]], [[54.674728, -2.437949], [54.674644, -2.437887]], [[54.674644, -2.437887], [54.674558, -2.437839]], [[54.673917, -2.437559], [54.673823, -2.437575]], [[54.672921, -2.437024], [54.672871, -2.437057]], [[54.672657, -2.436894], [54.672568, -2.43687]], [[54.669273, -2.434362], [54.66924, -2.434214]], [[54.66924, -2.434214], [54.669209, -2.434052]], [[54.669209, -2.434052], [54.669152, -2.433929]], [[54.669152, -2.433929], [54.669074, -2.433842]], [[54.669074, -2.433842], [54.669003, -2.433736]], [[54.669003, -2.433736], [54.668938, -2.433615]], [[54.668938, -2.433615], [54.668868, -2.433504]], [[54.668868, -2.433504], [54.668806, -2.43338]], [[54.668731, -2.432908], [54.668639, -2.432919]], [[54.668459, -2.433064], [54.668396, -2.433185]], [[54.668396, -2.433185], [54.668334, -2.433316]], [[54.666469, -2.43351], [54.666385, -2.433605]], [[54.666115, -2.433798], [54.666076, -2.433845]], [[54.663768, -2.440249], [54.663777, -2.440413]], [[54.663777, -2.440413], [54.663715, -2.440528]], [[54.659416, -2.446066], [54.659317, -2.446138]], [[54.655197, -2.454976], [54.655119, -2.455061]], [[54.654693, -2.455409], [54.654603, -2.455452]], [[54.653887, -2.45858], [54.653928, -2.458726]], [[54.653928, -2.458726], [54.653995, -2.458835]], [[54.653995, -2.458835], [54.654003, -2.458989]], [[54.654003, -2.458989], [54.654015, -2.459144]], [[54.653061, -2.461296], [54.652992, -2.461404]], [[54.652639, -2.462312], [54.652592, -2.462447]], [[54.652592, -2.462447], [54.652546, -2.462585]], [[54.652546, -2.462585], [54.652483, -2.462699]], [[54.652483, -2.462699], [54.652458, -2.462856]], [[54.652458, -2.462856], [54.652398, -2.46298]], [[54.652398, -2.46298], [54.652347, -2.463116]], [[54.652347, -2.463116], [54.652307, -2.463258]], [[54.652307, -2.463258], [54.652237, -2.463375]], [[54.652237, -2.463375], [54.652174, -2.463491]], [[54.651922, -2.463971], [54.651892, -2.464124]], [[54.651892, -2.464124], [54.651846, -2.464272]], [[54.651846, -2.464272], [54.651797, -2.464416]], [[54.651494, -2.465836], [54.651408, -2.465784]], [[54.650987, -2.465997], [54.650938, -2.466082]], [[54.650294, -2.468316], [54.650207, -2.468413]], [[54.647002, -2.470257], [54.646902, -2.470222]], [[54.645807, -2.471599], [54.645746, -2.471656]], [[54.64524, -2.472412], [54.645155, -2.472487]], [[54.641081, -2.47827], [54.641006, -2.478362]], [[54.641006, -2.478362], [54.640929, -2.478465]], [[54.639465, -2.480548], [54.639446, -2.480709]], [[54.639446, -2.480709], [54.639424, -2.480862]], [[54.639424, -2.480862], [54.639377, -2.48101]], [[54.639377, -2.48101], [54.639332, -2.481148]], [[54.637647, -2.479953], [54.637557, -2.479947]], [[54.636178, -2.480767], [54.636084, -2.48076]], [[54.635713, -2.480519], [54.63562, -2.480521]], [[54.635172, -2.480575], [54.635135, -2.480597]], [[54.633902, -2.480724], [54.633833, -2.480829]], [[54.632702, -2.480971], [54.632621, -2.481045]], [[54.631604, -2.481782], [54.631508, -2.481781]], [[54.631508, -2.481781], [54.631421, -2.481726]], [[54.630185, -2.482535], [54.630093, -2.482556]], [[54.630093, -2.482556], [54.630002, -2.482646]], [[54.628327, -2.482698], [54.628274, -2.482686]], [[54.627876, -2.482609], [54.627777, -2.482622]], [[54.627398, -2.482661], [54.627338, -2.482612]], [[54.620162, -2.483092], [54.620213, -2.48299]], [[54.620141, -2.48309], [54.620066, -2.482995]], [[54.620066, -2.482995], [54.620015, -2.482859]], [[54.619942, -2.482554], [54.619913, -2.482398]], [[54.619913, -2.482398], [54.619893, -2.482244]], [[54.620046, -2.481994], [54.620123, -2.481895]], [[54.620123, -2.481895], [54.620211, -2.481824]], [[54.619937, -2.482127], [54.619846, -2.482183]], [[54.619481, -2.482328], [54.61955, -2.482443]], [[54.620241, -2.483007], [54.620257, -2.483001]], [[54.620139, -2.483069], [54.620121, -2.483053]], [[54.620121, -2.483053], [54.620026, -2.482989]], [[54.619194, -2.480664], [54.619264, -2.480564]], [[54.61859, -2.477138], [54.618523, -2.477027]], [[54.61794, -2.476113], [54.617885, -2.476028]], [[54.617587, -2.475638], [54.617542, -2.475568]], [[54.617476, -2.475444], [54.617465, -2.475273]], [[54.61886, -2.467426], [54.618891, -2.467275]], [[54.619014, -2.465368], [54.61902, -2.465212]], [[54.619342, -2.456788], [54.619305, -2.456647]], [[54.619171, -2.455855], [54.619124, -2.455697]], [[54.619136, -2.455374], [54.619125, -2.455207]], [[54.619125, -2.455207], [54.619096, -2.455055]], [[54.61903, -2.454921], [54.619005, -2.454763]], [[54.619005, -2.454763], [54.618963, -2.454614]], [[54.61897, -2.454126], [54.619003, -2.45398]], [[54.619003, -2.45398], [54.619028, -2.453816]], [[54.619028, -2.453816], [54.619026, -2.453649]], [[54.619336, -2.451956], [54.619306, -2.451808]], [[54.619306, -2.451808], [54.619297, -2.451648]], [[54.619383, -2.451352], [54.619391, -2.451193]], [[54.619603, -2.450147], [54.619607, -2.450035]], [[54.619803, -2.448916], [54.619834, -2.448769]], [[54.619834, -2.448769], [54.619845, -2.448607]], [[54.619845, -2.448607], [54.619874, -2.448446]], [[54.619874, -2.448446], [54.619892, -2.448294]], [[54.619892, -2.448294], [54.619914, -2.448139]], [[54.619914, -2.448139], [54.619942, -2.447985]], [[54.61997, -2.447817], [54.619955, -2.447648]], [[54.620121, -2.446904], [54.620149, -2.446747]], [[54.620149, -2.446747], [54.620168, -2.446585]], [[54.620168, -2.446585], [54.620201, -2.446431]], [[54.620286, -2.445966], [54.620312, -2.445803]], [[54.620312, -2.445803], [54.620319, -2.445638]], [[54.620319, -2.445638], [54.620351, -2.445472]], [[54.620389, -2.44514], [54.620423, -2.444993]], [[54.620423, -2.444993], [54.620453, -2.444846]], [[54.620453, -2.444846], [54.620484, -2.444685]], [[54.620484, -2.444685], [54.620495, -2.444522]], [[54.620495, -2.444522], [54.620525, -2.444367]], [[54.620525, -2.444367], [54.620551, -2.444212]], [[54.620551, -2.444212], [54.620582, -2.444056]], [[54.620582, -2.444056], [54.620613, -2.443905]], [[54.620747, -2.443054], [54.620771, -2.442889]], [[54.620771, -2.442889], [54.6208, -2.442718]], [[54.621025, -2.441131], [54.621054, -2.440968]], [[54.621132, -2.440329], [54.621153, -2.440175]], [[54.621207, -2.439847], [54.621235, -2.439698]], [[54.621235, -2.439698], [54.621239, -2.439532]], [[54.621239, -2.439532], [54.621257, -2.43937]], [[54.621257, -2.43937], [54.621246, -2.439208]], [[54.621246, -2.439208], [54.621191, -2.439069]], [[54.621191, -2.439069], [54.621122, -2.438953]], [[54.620931, -2.438595], [54.620881, -2.438464]], [[54.620881, -2.438464], [54.620825, -2.438334]], [[54.620825, -2.438334], [54.620772, -2.438185]], [[54.620772, -2.438185], [54.620714, -2.438058]], [[54.620615, -2.437792], [54.620553, -2.437662]], [[54.620553, -2.437662], [54.620496, -2.437525]], [[54.620496, -2.437525], [54.620434, -2.43739]], [[54.620434, -2.43739], [54.62038, -2.437251]], [[54.62038, -2.437251], [54.620328, -2.437104]], [[54.620267, -2.436974], [54.620226, -2.436837]], [[54.619911, -2.436032], [54.619853, -2.435894]], [[54.619591, -2.435224], [54.61953, -2.435107]], [[54.619371, -2.434687], [54.619322, -2.434538]], [[54.619322, -2.434538], [54.619278, -2.434401]], [[54.619278, -2.434401], [54.61922, -2.434278]], [[54.61922, -2.434278], [54.619175, -2.434141]], [[54.619121, -2.433838], [54.619151, -2.433682]], [[54.619346, -2.43176], [54.619373, -2.431603]], [[54.619775, -2.430912], [54.619839, -2.430803]], [[54.619982, -2.430544], [54.620049, -2.430438]], [[54.620049, -2.430438], [54.620095, -2.430292]], [[54.620095, -2.430292], [54.620135, -2.430142]], [[54.620135, -2.430142], [54.62015, -2.429981]], [[54.620225, -2.429687], [54.620236, -2.429527]], [[54.620236, -2.429527], [54.620255, -2.429372]], [[54.620347, -2.429069], [54.620388, -2.428924]], [[54.620388, -2.428924], [54.620423, -2.428777]], [[54.620423, -2.428777], [54.620459, -2.428621]], [[54.620459, -2.428621], [54.620508, -2.428474]], [[54.620694, -2.427902], [54.620721, -2.427752]], [[54.620785, -2.427434], [54.620825, -2.427286]], [[54.620825, -2.427286], [54.620869, -2.427134]], [[54.620869, -2.427134], [54.620904, -2.426979]], [[54.620904, -2.426979], [54.620933, -2.426815]], [[54.620933, -2.426815], [54.62095, -2.426661]], [[54.62095, -2.426661], [54.620979, -2.42651]], [[54.620979, -2.42651], [54.621, -2.426356]], [[54.621, -2.426356], [54.621026, -2.426201]], [[54.621139, -2.425766], [54.621184, -2.425626]], [[54.621247, -2.425488], [54.621294, -2.425349]], [[54.621294, -2.425349], [54.621361, -2.425229]], [[54.621361, -2.425229], [54.62143, -2.425126]], [[54.62143, -2.425126], [54.621488, -2.425003]], [[54.621488, -2.425003], [54.621551, -2.424882]], [[54.621551, -2.424882], [54.62161, -2.424762]], [[54.62161, -2.424762], [54.621683, -2.424672]], [[54.621905, -2.42439], [54.62197, -2.424269]], [[54.62197, -2.424269], [54.62204, -2.424152]], [[54.622115, -2.423852], [54.622122, -2.423681]], [[54.622122, -2.423681], [54.622167, -2.423542]], [[54.622258, -2.422758], [54.622311, -2.422617]], [[54.622311, -2.422617], [54.622342, -2.422459]], [[54.622342, -2.422459], [54.622377, -2.422309]], [[54.622377, -2.422309], [54.622425, -2.422165]], [[54.622425, -2.422165], [54.622478, -2.422035]], [[54.622544, -2.421391], [54.622554, -2.421221]], [[54.622554, -2.421221], [54.622564, -2.421053]], [[54.622564, -2.421053], [54.622574, -2.420885]], [[54.622574, -2.420885], [54.622573, -2.420721]], [[54.622573, -2.420721], [54.622613, -2.420573]], [[54.622969, -2.419812], [54.62304, -2.419706]], [[54.62304, -2.419706], [54.623114, -2.419599]], [[54.623114, -2.419599], [54.623189, -2.419508]], [[54.623189, -2.419508], [54.623256, -2.419391]], [[54.623256, -2.419391], [54.623318, -2.419255]], [[54.623318, -2.419255], [54.623344, -2.419092]], [[54.623344, -2.419092], [54.623358, -2.418938]], [[54.623358, -2.418938], [54.623398, -2.41879]], [[54.62373, -2.417764], [54.623784, -2.417618]], [[54.623977, -2.416908], [54.624, -2.416752]], [[54.624394, -2.415846], [54.624429, -2.415699]], [[54.624429, -2.415699], [54.62445, -2.415543]], [[54.62445, -2.415543], [54.624505, -2.415401]], [[54.624505, -2.415401], [54.624542, -2.415248]], [[54.624542, -2.415248], [54.62457, -2.415085]], [[54.625043, -2.413901], [54.625133, -2.413878]], [[54.62565, -2.412696], [54.625733, -2.412611]], [[54.625812, -2.412524], [54.625894, -2.412449]], [[54.625894, -2.412449], [54.625986, -2.412395]], [[54.625986, -2.412395], [54.626078, -2.41236]], [[54.626078, -2.41236], [54.626175, -2.41235]], [[54.626175, -2.41235], [54.626266, -2.412336]], [[54.626266, -2.412336], [54.626358, -2.412322]], [[54.626358, -2.412322], [54.626449, -2.412293]], [[54.62654, -2.412247], [54.626621, -2.41217]], [[54.626621, -2.41217], [54.626699, -2.412077]], [[54.626699, -2.412077], [54.626764, -2.411957]], [[54.626814, -2.411824], [54.626858, -2.411689]], [[54.626858, -2.411689], [54.626858, -2.411531]], [[54.62688, -2.411201], [54.626931, -2.411059]], [[54.626931, -2.411059], [54.626977, -2.410909]], [[54.626977, -2.410909], [54.627022, -2.410759]], [[54.627103, -2.410495], [54.627095, -2.410334]], [[54.627095, -2.410334], [54.627164, -2.410235]], [[54.627164, -2.410235], [54.627205, -2.410088]], [[54.627205, -2.410088], [54.62725, -2.409953]], [[54.62725, -2.409953], [54.627294, -2.409812]], [[54.627321, -2.409656], [54.627339, -2.409489]], [[54.627339, -2.409489], [54.62738, -2.409337]], [[54.62738, -2.409337], [54.62743, -2.409205]], [[54.62743, -2.409205], [54.627462, -2.409056]], [[54.627462, -2.409056], [54.627482, -2.408903]], [[54.627482, -2.408903], [54.62756, -2.408799]], [[54.62756, -2.408799], [54.627561, -2.408638]], [[54.627561, -2.408638], [54.627506, -2.408495]], [[54.627596, -2.407803], [54.627593, -2.407633]], [[54.62941, -2.402823], [54.629447, -2.402678]], [[54.630335, -2.395932], [54.630284, -2.395821]], [[54.630486, -2.396268], [54.630539, -2.396394]], [[54.630514, -2.398365], [54.630523, -2.39852]], [[54.630543, -2.39877], [54.630591, -2.398915]], [[54.630587, -2.398977], [54.630556, -2.399139]], [[54.630467, -2.39944], [54.630397, -2.399536]], [[54.630397, -2.399536], [54.630322, -2.399629]], [[54.630135, -2.400336], [54.630039, -2.400349]], [[54.630039, -2.400349], [54.629944, -2.400415]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_c2d29a06d3f9148ab34ea2d99b5d9a12 = L.polyline(
                [[[54.767858, -2.398016], [54.767864, -2.397858]], [[54.767917, -2.397613], [54.767947, -2.397539]], [[54.765088, -2.396506], [54.765087, -2.396506]], [[54.760312, -2.400638], [54.760235, -2.400739]], [[54.760235, -2.400739], [54.760148, -2.400821]], [[54.760199, -2.404893], [54.760152, -2.405032]], [[54.759771, -2.40653], [54.759764, -2.406541]], [[54.759764, -2.406541], [54.75973, -2.406696]], [[54.759915, -2.418273], [54.759833, -2.418355]], [[54.759833, -2.418355], [54.759739, -2.418356]], [[54.756537, -2.418414], [54.756521, -2.418415]], [[54.756521, -2.418415], [54.756427, -2.418419]], [[54.755873, -2.418657], [54.75578, -2.418718]], [[54.751378, -2.420883], [54.751309, -2.42099]], [[54.745187, -2.426987], [54.7451, -2.42705]], [[54.718526, -2.443908], [54.718515, -2.443966]], [[54.718451, -2.444314], [54.718398, -2.44445]], [[54.716583, -2.450605], [54.716546, -2.450762]], [[54.717181, -2.452571], [54.717123, -2.452692]], [[54.717344, -2.468896], [54.717284, -2.469018]], [[54.71313, -2.478818], [54.713128, -2.478975]], [[54.712922, -2.481263], [54.71288, -2.481374]], [[54.71288, -2.481374], [54.712805, -2.48146]], [[54.712826, -2.481494], [54.71288, -2.481627]], [[54.71288, -2.481627], [54.712909, -2.481643]], [[54.712487, -2.482084], [54.712464, -2.482246]], [[54.712464, -2.482246], [54.712471, -2.482385]], [[54.712471, -2.482385], [54.71246, -2.482551]], [[54.710892, -2.49156], [54.710804, -2.491625]], [[54.707705, -2.489499], [54.707624, -2.489412]], [[54.706919, -2.489059], [54.706836, -2.489001]], [[54.706648, -2.488911], [54.706557, -2.488861]], [[54.703052, -2.486882], [54.703063, -2.486928]], [[54.702449, -2.482621], [54.7024, -2.482488]], [[54.7024, -2.482488], [54.702369, -2.482428]], [[54.702369, -2.482428], [54.702295, -2.482325]], [[54.701085, -2.476825], [54.70106, -2.476671]], [[54.694532, -2.464127], [54.694456, -2.464028]], [[54.692878, -2.461952], [54.692799, -2.461854]], [[54.69133, -2.460202], [54.691254, -2.460093]], [[54.690374, -2.458337], [54.69031, -2.458199]], [[54.684705, -2.450821], [54.684626, -2.450895]], [[54.684626, -2.450895], [54.684589, -2.450771]], [[54.68451, -2.450464], [54.684513, -2.450445]], [[54.678693, -2.44139], [54.678631, -2.441262]], [[54.67275, -2.436969], [54.672657, -2.436894]], [[54.666076, -2.433845], [54.665986, -2.433906]], [[54.651523, -2.465321], [54.651541, -2.465481]], [[54.651538, -2.465695], [54.651494, -2.465836]], [[54.650938, -2.466082], [54.650903, -2.466227]], [[54.650903, -2.466227], [54.650897, -2.466266]], [[54.64024, -2.478325], [54.64017, -2.478445]], [[54.637557, -2.479947], [54.637535, -2.479949]], [[54.620213, -2.48299], [54.620188, -2.482971]], [[54.620081, -2.481978], [54.620013, -2.482009]], [[54.620013, -2.482009], [54.619937, -2.482127]], [[54.620257, -2.483001], [54.620369, -2.482827]], [[54.619181, -2.481954], [54.619226, -2.481815]], [[54.617542, -2.475568], [54.617476, -2.475444]], [[54.619152, -2.433567], [54.619205, -2.433414]], [[54.619342, -2.431943], [54.619346, -2.43176]], [[54.619839, -2.430803], [54.619848, -2.4308]], [[54.624692, -2.414363], [54.624764, -2.414246]], [[54.624764, -2.414246], [54.624804, -2.41416]], [[54.625553, -2.412745], [54.62565, -2.412696]], [[54.627506, -2.408495], [54.627501, -2.408455]], [[54.627501, -2.408455], [54.627521, -2.408288]], [[54.630284, -2.395821], [54.630378, -2.395873]], [[54.630496, -2.398616], [54.630543, -2.39877]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_28a09397328bac9109f157d4e5870a1b = L.polyline(
                [[[54.767738, -2.397864], [54.767814, -2.397779]], [[54.665893, -2.433977], [54.665811, -2.43406]], [[54.665631, -2.434192], [54.665549, -2.4343]], [[54.635042, -2.480586], [54.634951, -2.480571]], [[54.634951, -2.480571], [54.63486, -2.480565]], [[54.633539, -2.480897], [54.633434, -2.480868]], [[54.623764, -2.482524], [54.623677, -2.482589]], [[54.623178, -2.48306], [54.62308, -2.48306]], [[54.617848, -2.474369], [54.617918, -2.474238]], [[54.617918, -2.474238], [54.617991, -2.47412]], [[54.617991, -2.47412], [54.61807, -2.473999]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_0ed1635e45831f5235a5a9e455d22cc8 = L.polyline(
                [[[54.767814, -2.397779], [54.767903, -2.397723]], [[54.635901, -2.480625], [54.635798, -2.480581]], [[54.620051, -2.482995], [54.62015, -2.483041]], [[54.630555, -2.39687], [54.630574, -2.396681]], [[54.630503, -2.396349], [54.630448, -2.396206]], [[54.63059, -2.396708], [54.630588, -2.396899]], [[54.630588, -2.396899], [54.630569, -2.397053]], [[54.630569, -2.397053], [54.630556, -2.397244]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff8b00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_3f13eb57849bce87f4d26df18947f9e0 = L.polyline(
                [[[54.767903, -2.397723], [54.767957, -2.39756]], [[54.767907, -2.397814], [54.767878, -2.397972]], [[54.767878, -2.397972], [54.767804, -2.398082]], [[54.767712, -2.398003], [54.767627, -2.397932]], [[54.767627, -2.397932], [54.767544, -2.397858]], [[54.767544, -2.397858], [54.767456, -2.397787]], [[54.767456, -2.397787], [54.767377, -2.397711]], [[54.767377, -2.397711], [54.767291, -2.397635]], [[54.767205, -2.397567], [54.767112, -2.397497]], [[54.767112, -2.397497], [54.767023, -2.397433]], [[54.767023, -2.397433], [54.766927, -2.397375]], [[54.766927, -2.397375], [54.766832, -2.397323]], [[54.766832, -2.397323], [54.766738, -2.397262]], [[54.766738, -2.397262], [54.766641, -2.397214]], [[54.766641, -2.397214], [54.766548, -2.397147]], [[54.766548, -2.397147], [54.766454, -2.397114]], [[54.766454, -2.397114], [54.76636, -2.397066]], [[54.76636, -2.397066], [54.766274, -2.397014]], [[54.766094, -2.396886], [54.766006, -2.396829]], [[54.766006, -2.396829], [54.765916, -2.396797]], [[54.765544, -2.39667], [54.765446, -2.396664]], [[54.76526, -2.396608], [54.765173, -2.396553]], [[54.764483, -2.397258], [54.764388, -2.397292]], [[54.763937, -2.397427], [54.763843, -2.397424]], [[54.760181, -2.402266], [54.760209, -2.402421]], [[54.760209, -2.402421], [54.760238, -2.402592]], [[54.759299, -2.409702], [54.759331, -2.409858]], [[54.759793, -2.412194], [54.759827, -2.412349]], [[54.760362, -2.415181], [54.760344, -2.415345]], [[54.755171, -2.419179], [54.755077, -2.419241]], [[54.755077, -2.419241], [54.754987, -2.419288]], [[54.754987, -2.419288], [54.754902, -2.419352]], [[54.754902, -2.419352], [54.754818, -2.419416]], [[54.754723, -2.419487], [54.754633, -2.419545]], [[54.754633, -2.419545], [54.754542, -2.419623]], [[54.754269, -2.41982], [54.754186, -2.419891]], [[54.754186, -2.419891], [54.754101, -2.419954]], [[54.754101, -2.419954], [54.754016, -2.420033]], [[54.754016, -2.420033], [54.753921, -2.420088]], [[54.753921, -2.420088], [54.753839, -2.420159]], [[54.753839, -2.420159], [54.753751, -2.420216]], [[54.753751, -2.420216], [54.753656, -2.420262]], [[54.753656, -2.420262], [54.753562, -2.420296]], [[54.753562, -2.420296], [54.753462, -2.420334]], [[54.753462, -2.420334], [54.753364, -2.420351]], [[54.753364, -2.420351], [54.753267, -2.420371]], [[54.753267, -2.420371], [54.753169, -2.420399]], [[54.752893, -2.420468], [54.752799, -2.420483]], [[54.752799, -2.420483], [54.752706, -2.420521]], [[54.752706, -2.420521], [54.752616, -2.420552]], [[54.752616, -2.420552], [54.752526, -2.42059]], [[54.752526, -2.42059], [54.752428, -2.420626]], [[54.752428, -2.420626], [54.752335, -2.420627]], [[54.752233, -2.42064], [54.752137, -2.420666]], [[54.752137, -2.420666], [54.752043, -2.420679]], [[54.752043, -2.420679], [54.751951, -2.420716]], [[54.751951, -2.420716], [54.751859, -2.42075]], [[54.751859, -2.42075], [54.751768, -2.420773]], [[54.751768, -2.420773], [54.751674, -2.420803]], [[54.751674, -2.420803], [54.75158, -2.420847]], [[54.75158, -2.420847], [54.751481, -2.420873]], [[54.751481, -2.420873], [54.751392, -2.420856]], [[54.751218, -2.421049], [54.751119, -2.421092]], [[54.750165, -2.421237], [54.75007, -2.421277]], [[54.75007, -2.421277], [54.74997, -2.421315]], [[54.74997, -2.421315], [54.749882, -2.421407]], [[54.749882, -2.421407], [54.749793, -2.421468]], [[54.749793, -2.421468], [54.749712, -2.421537]], [[54.749543, -2.421658], [54.749456, -2.42173]], [[54.749456, -2.42173], [54.749364, -2.421797]], [[54.749189, -2.421902], [54.749097, -2.421961]], [[54.749097, -2.421961], [54.749003, -2.422026]], [[54.748827, -2.422156], [54.748734, -2.422222]], [[54.748734, -2.422222], [54.748645, -2.422292]], [[54.748645, -2.422292], [54.748557, -2.422355]], [[54.748557, -2.422355], [54.748463, -2.422399]], [[54.748463, -2.422399], [54.748369, -2.422475]], [[54.748369, -2.422475], [54.748279, -2.422549]], [[54.748279, -2.422549], [54.748193, -2.422638]], [[54.748193, -2.422638], [54.748107, -2.422718]], [[54.748107, -2.422718], [54.748026, -2.422803]], [[54.748026, -2.422803], [54.747945, -2.422891]], [[54.747945, -2.422891], [54.747867, -2.42299]], [[54.747867, -2.42299], [54.747784, -2.423085]], [[54.747784, -2.423085], [54.747705, -2.423169]], [[54.747705, -2.423169], [54.747626, -2.423273]], [[54.747626, -2.423273], [54.747554, -2.423381]], [[54.747554, -2.423381], [54.747476, -2.423482]], [[54.747476, -2.423482], [54.747395, -2.423577]], [[54.747395, -2.423577], [54.747318, -2.423679]], [[54.747318, -2.423679], [54.747246, -2.423777]], [[54.74704, -2.42414], [54.746978, -2.424267]], [[54.746978, -2.424267], [54.746928, -2.424407]], [[54.746928, -2.424407], [54.74686, -2.42454]], [[54.74686, -2.42454], [54.7468, -2.424672]], [[54.7468, -2.424672], [54.746734, -2.424778]], [[54.746509, -2.425091], [54.746435, -2.4252]], [[54.746435, -2.4252], [54.746355, -2.425309]], [[54.746355, -2.425309], [54.74628, -2.425412]], [[54.74628, -2.425412], [54.746199, -2.425524]], [[54.746199, -2.425524], [54.746119, -2.425627]], [[54.746119, -2.425627], [54.74604, -2.425719]], [[54.74604, -2.425719], [54.745968, -2.425815]], [[54.745968, -2.425815], [54.745887, -2.425916]], [[54.745887, -2.425916], [54.745814, -2.426025]], [[54.745814, -2.426025], [54.745741, -2.426124]], [[54.745741, -2.426124], [54.745665, -2.426232]], [[54.745665, -2.426232], [54.745598, -2.426339]], [[54.745598, -2.426339], [54.74553, -2.426448]], [[54.745463, -2.426553], [54.745392, -2.426674]], [[54.745392, -2.426674], [54.745318, -2.426781]], [[54.745318, -2.426781], [54.745247, -2.426897]], [[54.745015, -2.427099], [54.744923, -2.427154]], [[54.744923, -2.427154], [54.744824, -2.427205]], [[54.744111, -2.427685], [54.74403, -2.427762]], [[54.74403, -2.427762], [54.743957, -2.42786]], [[54.74366, -2.428714], [54.74365, -2.42888]], [[54.742042, -2.431029], [54.741949, -2.431006]], [[54.741737, -2.430924], [54.741635, -2.430912]], [[54.741635, -2.430912], [54.741545, -2.430898]], [[54.741545, -2.430898], [54.741447, -2.430894]], [[54.741447, -2.430894], [54.741349, -2.430899]], [[54.740783, -2.430946], [54.740692, -2.430939]], [[54.739926, -2.43094], [54.739831, -2.430934]], [[54.739831, -2.430934], [54.739737, -2.430947]], [[54.739737, -2.430947], [54.739642, -2.430982]], [[54.739642, -2.430982], [54.739556, -2.431035]], [[54.73853, -2.431885], [54.738448, -2.431981]], [[54.738448, -2.431981], [54.738374, -2.432073]], [[54.738374, -2.432073], [54.738285, -2.432163]], [[54.738285, -2.432163], [54.738198, -2.432247]], [[54.738198, -2.432247], [54.738115, -2.43233]], [[54.738115, -2.43233], [54.738026, -2.432419]], [[54.737701, -2.432749], [54.737609, -2.432809]], [[54.737609, -2.432809], [54.737519, -2.432847]], [[54.737332, -2.432898], [54.737242, -2.432935]], [[54.737242, -2.432935], [54.737156, -2.432986]], [[54.737156, -2.432986], [54.737065, -2.433032]], [[54.737065, -2.433032], [54.736977, -2.433075]], [[54.736599, -2.433226], [54.736508, -2.433261]], [[54.736508, -2.433261], [54.736407, -2.433275]], [[54.736407, -2.433275], [54.736314, -2.433279]], [[54.736314, -2.433279], [54.736223, -2.433291]], [[54.735922, -2.433666], [54.735848, -2.433755]], [[54.735673, -2.433874], [54.735586, -2.433933]], [[54.735405, -2.434052], [54.735313, -2.434109]], [[54.735313, -2.434109], [54.735227, -2.434165]], [[54.735227, -2.434165], [54.735142, -2.434221]], [[54.735142, -2.434221], [54.735054, -2.434278]], [[54.735054, -2.434278], [54.734966, -2.434324]], [[54.734966, -2.434324], [54.73487, -2.434395]], [[54.73487, -2.434395], [54.734777, -2.434462]], [[54.734232, -2.434813], [54.734143, -2.434869]], [[54.732891, -2.43563], [54.732803, -2.435676]], [[54.732709, -2.435734], [54.732618, -2.43579]], [[54.732618, -2.43579], [54.732527, -2.435857]], [[54.732527, -2.435857], [54.732442, -2.43595]], [[54.73162, -2.436277], [54.73153, -2.436319]], [[54.73153, -2.436319], [54.73143, -2.436341]], [[54.73143, -2.436341], [54.73133, -2.436374]], [[54.731057, -2.436488], [54.73097, -2.436551]], [[54.73097, -2.436551], [54.730898, -2.436648]], [[54.730849, -2.436781], [54.730803, -2.436925]], [[54.730803, -2.436925], [54.730744, -2.437051]], [[54.730385, -2.437282], [54.730301, -2.437345]], [[54.72935, -2.437253], [54.729256, -2.43721]], [[54.729256, -2.43721], [54.729164, -2.43714]], [[54.729164, -2.43714], [54.729078, -2.437082]], [[54.728992, -2.437035], [54.728904, -2.436976]], [[54.728904, -2.436976], [54.728815, -2.436906]], [[54.728815, -2.436906], [54.728727, -2.436826]], [[54.728727, -2.436826], [54.728639, -2.436756]], [[54.728639, -2.436756], [54.728545, -2.436695]], [[54.728178, -2.43643], [54.728091, -2.436372]], [[54.727909, -2.436272], [54.727818, -2.436207]], [[54.727818, -2.436207], [54.72773, -2.436154]], [[54.72773, -2.436154], [54.727639, -2.436118]], [[54.727354, -2.436043], [54.727261, -2.436017]], [[54.727261, -2.436017], [54.727171, -2.435992]], [[54.727171, -2.435992], [54.727076, -2.435969]], [[54.727076, -2.435969], [54.726976, -2.435951]], [[54.726877, -2.435927], [54.726784, -2.435898]], [[54.726784, -2.435898], [54.726685, -2.435873]], [[54.726685, -2.435873], [54.726594, -2.435853]], [[54.726301, -2.435842], [54.726204, -2.435856]], [[54.726204, -2.435856], [54.726113, -2.435939]], [[54.725517, -2.436763], [54.725432, -2.436851]], [[54.725432, -2.436851], [54.725348, -2.436933]], [[54.724797, -2.437589], [54.724727, -2.437685]], [[54.724727, -2.437685], [54.724654, -2.437798]], [[54.724654, -2.437798], [54.724581, -2.437916]], [[54.724581, -2.437916], [54.72452, -2.438044]], [[54.724235, -2.438477], [54.724149, -2.438563]], [[54.724149, -2.438563], [54.724067, -2.438629]], [[54.722927, -2.439788], [54.722841, -2.439849]], [[54.722482, -2.440075], [54.722396, -2.440138]], [[54.722396, -2.440138], [54.722299, -2.440195]], [[54.718213, -2.457591], [54.718211, -2.45775]], [[54.718211, -2.45775], [54.718227, -2.457917]], [[54.718223, -2.458403], [54.71822, -2.458568]], [[54.718194, -2.461361], [54.718188, -2.461534]], [[54.71815, -2.463328], [54.718125, -2.463478]], [[54.718012, -2.465589], [54.71797, -2.46575]], [[54.71681, -2.469852], [54.716729, -2.469948]], [[54.715743, -2.471238], [54.71566, -2.471341]], [[54.702896, -2.486185], [54.702886, -2.48603]], [[54.702886, -2.48603], [54.702876, -2.485869]], [[54.702876, -2.485869], [54.702861, -2.48571]], [[54.702861, -2.48571], [54.702853, -2.485544]], [[54.702853, -2.485544], [54.70284, -2.485385]], [[54.70284, -2.485385], [54.702814, -2.485227]], [[54.702814, -2.485227], [54.702796, -2.485057]], [[54.702796, -2.485057], [54.702791, -2.484881]], [[54.70272, -2.484405], [54.702695, -2.484243]], [[54.702695, -2.484243], [54.702672, -2.484079]], [[54.702672, -2.484079], [54.702629, -2.483942]], [[54.702033, -2.481006], [54.702004, -2.480856]], [[54.702004, -2.480856], [54.701967, -2.480705]], [[54.701873, -2.480416], [54.701847, -2.480251]], [[54.701847, -2.480251], [54.7018, -2.480113]], [[54.7018, -2.480113], [54.701753, -2.479978]], [[54.701753, -2.479978], [54.701732, -2.479803]], [[54.701732, -2.479803], [54.701743, -2.479632]], [[54.701743, -2.479632], [54.701734, -2.47946]], [[54.701734, -2.47946], [54.701674, -2.479331]], [[54.701674, -2.479331], [54.701628, -2.479184]], [[54.701483, -2.478399], [54.701446, -2.478238]], [[54.701315, -2.47782], [54.70128, -2.477674]], [[54.701183, -2.477195], [54.701162, -2.477041]], [[54.701162, -2.477041], [54.701113, -2.476895]], [[54.700289, -2.473792], [54.70026, -2.473639]], [[54.70026, -2.473639], [54.700183, -2.473537]], [[54.700183, -2.473537], [54.700115, -2.473437]], [[54.700115, -2.473437], [54.700051, -2.473301]], [[54.699838, -2.472754], [54.699756, -2.472655]], [[54.699604, -2.472242], [54.699537, -2.472126]], [[54.699537, -2.472126], [54.699457, -2.47204]], [[54.698745, -2.4713], [54.698673, -2.471196]], [[54.698673, -2.471196], [54.698604, -2.47108]], [[54.698604, -2.47108], [54.698524, -2.470993]], [[54.698153, -2.470493], [54.698078, -2.470383]], [[54.698078, -2.470383], [54.698006, -2.470279]], [[54.6978, -2.469926], [54.697729, -2.469816]], [[54.697729, -2.469816], [54.697688, -2.469668]], [[54.697688, -2.469668], [54.697594, -2.469612]], [[54.696803, -2.4686], [54.696711, -2.468524]], [[54.696711, -2.468524], [54.696627, -2.468448]], [[54.691977, -2.460931], [54.691901, -2.460835]], [[54.691901, -2.460835], [54.691817, -2.460733]], [[54.691817, -2.460733], [54.691745, -2.460633]], [[54.691745, -2.460633], [54.69166, -2.46055]], [[54.69166, -2.46055], [54.691576, -2.460457]], [[54.691176, -2.459989], [54.691108, -2.459867]], [[54.69092, -2.459639], [54.690862, -2.459506]], [[54.690862, -2.459506], [54.690807, -2.459381]], [[54.690673, -2.459124], [54.690594, -2.459032]], [[54.690594, -2.459032], [54.690536, -2.458902]], [[54.6905, -2.458742], [54.690454, -2.458596]], [[54.690454, -2.458596], [54.690399, -2.458473]], [[54.690254, -2.458052], [54.690183, -2.457945]], [[54.690183, -2.457945], [54.69011, -2.457854]], [[54.690053, -2.457716], [54.689987, -2.45759]], [[54.689987, -2.45759], [54.68992, -2.457462]], [[54.68992, -2.457462], [54.689841, -2.457354]], [[54.689661, -2.457015], [54.689607, -2.456883]], [[54.689607, -2.456883], [54.689547, -2.456735]], [[54.689547, -2.456735], [54.689489, -2.456609]], [[54.689489, -2.456609], [54.689428, -2.456466]], [[54.689428, -2.456466], [54.68937, -2.456339]], [[54.689027, -2.45578], [54.688962, -2.455653]], [[54.688962, -2.455653], [54.688897, -2.455546]], [[54.682918, -2.44847], [54.682842, -2.44834]], [[54.682842, -2.44834], [54.682753, -2.448275]], [[54.681719, -2.448361], [54.681633, -2.448296]], [[54.681633, -2.448296], [54.681565, -2.448168]], [[54.681565, -2.448168], [54.681479, -2.448065]], [[54.681479, -2.448065], [54.681391, -2.44796]], [[54.681391, -2.44796], [54.681318, -2.447861]], [[54.681318, -2.447861], [54.681229, -2.447828]], [[54.681229, -2.447828], [54.681146, -2.44776]], [[54.681146, -2.44776], [54.681072, -2.447642]], [[54.681072, -2.447642], [54.680978, -2.447614]], [[54.68063, -2.447085], [54.680588, -2.446919]], [[54.680596, -2.446747], [54.680564, -2.44659]], [[54.680498, -2.446148], [54.68047, -2.445988]], [[54.68047, -2.445988], [54.680419, -2.44586]], [[54.680333, -2.445578], [54.680284, -2.445436]], [[54.680284, -2.445436], [54.680224, -2.445311]], [[54.680224, -2.445311], [54.680169, -2.445175]], [[54.680169, -2.445175], [54.680108, -2.44505]], [[54.680108, -2.44505], [54.680035, -2.44495]], [[54.680035, -2.44495], [54.679965, -2.444826]], [[54.679858, -2.444562], [54.679778, -2.444474]], [[54.679499, -2.444043], [54.679449, -2.443897]], [[54.679449, -2.443897], [54.679398, -2.443765]], [[54.678563, -2.441149], [54.678472, -2.441079]], [[54.678472, -2.441079], [54.678375, -2.441027]], [[54.678375, -2.441027], [54.678277, -2.44101]], [[54.678277, -2.44101], [54.678184, -2.440954]], [[54.678184, -2.440954], [54.678091, -2.440878]], [[54.678091, -2.440878], [54.678023, -2.440777]], [[54.678023, -2.440777], [54.677939, -2.44067]], [[54.677939, -2.44067], [54.677856, -2.440562]], [[54.677856, -2.440562], [54.677779, -2.440477]], [[54.677779, -2.440477], [54.677696, -2.440411]], [[54.677696, -2.440411], [54.677605, -2.440382]], [[54.677605, -2.440382], [54.677514, -2.440322]], [[54.677514, -2.440322], [54.677436, -2.440222]], [[54.677436, -2.440222], [54.677366, -2.440095]], [[54.677209, -2.439904], [54.677119, -2.439829]], [[54.677119, -2.439829], [54.677033, -2.439777]], [[54.677033, -2.439777], [54.676955, -2.439693]], [[54.676869, -2.439619], [54.676791, -2.439524]], [[54.676733, -2.4394], [54.676661, -2.439273]], [[54.675518, -2.438418], [54.675431, -2.438364]], [[54.673183, -2.437226], [54.673101, -2.43713]], [[54.673101, -2.43713], [54.673011, -2.437095]], [[54.673011, -2.437095], [54.672921, -2.437024]], [[54.672568, -2.43687], [54.67247, -2.436843]], [[54.672188, -2.436758], [54.672098, -2.436744]], [[54.672098, -2.436744], [54.672003, -2.436719]], [[54.671812, -2.436674], [54.671712, -2.436629]], [[54.671712, -2.436629], [54.671616, -2.436595]], [[54.670698, -2.436179], [54.670607, -2.43614]], [[54.670607, -2.43614], [54.670504, -2.436136]], [[54.670504, -2.436136], [54.670414, -2.436057]], [[54.670414, -2.436057], [54.670327, -2.435975]], [[54.670327, -2.435975], [54.670267, -2.43585]], [[54.670267, -2.43585], [54.670232, -2.435695]], [[54.670232, -2.435695], [54.670175, -2.435562]], [[54.670175, -2.435562], [54.670119, -2.435419]], [[54.670119, -2.435419], [54.670043, -2.43533]], [[54.670043, -2.43533], [54.669947, -2.43527]], [[54.669947, -2.43527], [54.669856, -2.435223]], [[54.669856, -2.435223], [54.669767, -2.435172]], [[54.669347, -2.434666], [54.669307, -2.434523]], [[54.668064, -2.433492], [54.667961, -2.433505]], [[54.667304, -2.433436], [54.667208, -2.433399]], [[54.667208, -2.433399], [54.667112, -2.433395]], [[54.66683, -2.433333], [54.666739, -2.433328]], [[54.666739, -2.433328], [54.666648, -2.433352]], [[54.666385, -2.433605], [54.666299, -2.43369]], [[54.6655, -2.434439], [54.665438, -2.434562]], [[54.665438, -2.434562], [54.665361, -2.434666]], [[54.665361, -2.434666], [54.665291, -2.434792]], [[54.664856, -2.43624], [54.664812, -2.436394]], [[54.664763, -2.436533], [54.664705, -2.436651]], [[54.664705, -2.436651], [54.664659, -2.436809]], [[54.664659, -2.436809], [54.664621, -2.436969]], [[54.664453, -2.437551], [54.664397, -2.437701]], [[54.664397, -2.437701], [54.664353, -2.437836]], [[54.664353, -2.437836], [54.664321, -2.437985]], [[54.664321, -2.437985], [54.664268, -2.438135]], [[54.664044, -2.438859], [54.663974, -2.438973]], [[54.663974, -2.438973], [54.663922, -2.439104]], [[54.663922, -2.439104], [54.663875, -2.439238]], [[54.663744, -2.439675], [54.663698, -2.439819]], [[54.663698, -2.439819], [54.663725, -2.439977]], [[54.66363, -2.440467], [54.663532, -2.440443]], [[54.663216, -2.440705], [54.663145, -2.440809]], [[54.662971, -2.44091], [54.662891, -2.44101]], [[54.662891, -2.44101], [54.66282, -2.441127]], [[54.66282, -2.441127], [54.662755, -2.441264]], [[54.662755, -2.441264], [54.662684, -2.441385]], [[54.662684, -2.441385], [54.662624, -2.441521]], [[54.662624, -2.441521], [54.662555, -2.441627]], [[54.662464, -2.44168], [54.662368, -2.441638]], [[54.662368, -2.441638], [54.662272, -2.441593]], [[54.662272, -2.441593], [54.662177, -2.441612]], [[54.662177, -2.441612], [54.662092, -2.441671]], [[54.662092, -2.441671], [54.661993, -2.441707]], [[54.661993, -2.441707], [54.661919, -2.441805]], [[54.661856, -2.441925], [54.661842, -2.442082]], [[54.661842, -2.442082], [54.661791, -2.442233]], [[54.661702, -2.442526], [54.66163, -2.442634]], [[54.66163, -2.442634], [54.66155, -2.44272]], [[54.66155, -2.44272], [54.661505, -2.442872]], [[54.661399, -2.443135], [54.661332, -2.443264]], [[54.661332, -2.443264], [54.661277, -2.44341]], [[54.661277, -2.44341], [54.661215, -2.443521]], [[54.661215, -2.443521], [54.66117, -2.443658]], [[54.66117, -2.443658], [54.661126, -2.443809]], [[54.661056, -2.443912], [54.660972, -2.443971]], [[54.660972, -2.443971], [54.660909, -2.44409]], [[54.660888, -2.444246], [54.660861, -2.444405]], [[54.660815, -2.444715], [54.660796, -2.444884]], [[54.660796, -2.444884], [54.660765, -2.445045]], [[54.660509, -2.445237], [54.660423, -2.445282]], [[54.660423, -2.445282], [54.660327, -2.445349]], [[54.660327, -2.445349], [54.660238, -2.445436]], [[54.660238, -2.445436], [54.660146, -2.445494]], [[54.660146, -2.445494], [54.660059, -2.445576]], [[54.660059, -2.445576], [54.659962, -2.445639]], [[54.659962, -2.445639], [54.659878, -2.445706]], [[54.659878, -2.445706], [54.659786, -2.445772]], [[54.659236, -2.446248], [54.65915, -2.446322]], [[54.659007, -2.446556], [54.658923, -2.446618]], [[54.658923, -2.446618], [54.658822, -2.446665]], [[54.658822, -2.446665], [54.658734, -2.446716]], [[54.658734, -2.446716], [54.658635, -2.44676]], [[54.658635, -2.44676], [54.65854, -2.446788]], [[54.658304, -2.44709], [54.65823, -2.447196]], [[54.65823, -2.447196], [54.65816, -2.447315]], [[54.657985, -2.447461], [54.657894, -2.447526]], [[54.657894, -2.447526], [54.657812, -2.447593]], [[54.657812, -2.447593], [54.65773, -2.447681]], [[54.65773, -2.447681], [54.657678, -2.447812]], [[54.657678, -2.447812], [54.657612, -2.447924]], [[54.657612, -2.447924], [54.657527, -2.448029]], [[54.657435, -2.448098], [54.657348, -2.448194]], [[54.657238, -2.448454], [54.657191, -2.448597]], [[54.657191, -2.448597], [54.657185, -2.448759]], [[54.657192, -2.448931], [54.657138, -2.449068]], [[54.656785, -2.450238], [54.656764, -2.450412]], [[54.656726, -2.450746], [54.656676, -2.450902]], [[54.656676, -2.450902], [54.656649, -2.451055]], [[54.656649, -2.451055], [54.656629, -2.451212]], [[54.656629, -2.451212], [54.656648, -2.451389]], [[54.656648, -2.451389], [54.656642, -2.451545]], [[54.656642, -2.451545], [54.65661, -2.451701]], [[54.65661, -2.451701], [54.656575, -2.45186]], [[54.656575, -2.45186], [54.656532, -2.452003]], [[54.656532, -2.452003], [54.656488, -2.452145]], [[54.656488, -2.452145], [54.656433, -2.452271]], [[54.656433, -2.452271], [54.656379, -2.4524]], [[54.656379, -2.4524], [54.656309, -2.452519]], [[54.656309, -2.452519], [54.65623, -2.452614]], [[54.65623, -2.452614], [54.656172, -2.452752]], [[54.656172, -2.452752], [54.656125, -2.452893]], [[54.656125, -2.452893], [54.656052, -2.453025]], [[54.656052, -2.453025], [54.655996, -2.453157]], [[54.655883, -2.453406], [54.655826, -2.453537]], [[54.655826, -2.453537], [54.655773, -2.453668]], [[54.655773, -2.453668], [54.655728, -2.453824]], [[54.655728, -2.453824], [54.655676, -2.45398]], [[54.655485, -2.454533], [54.655412, -2.454643]], [[54.655412, -2.454643], [54.655332, -2.454742]], [[54.655332, -2.454742], [54.655253, -2.454851]], [[54.654885, -2.455328], [54.654788, -2.455369]], [[54.653975, -2.456442], [54.653894, -2.456517]], [[54.65383, -2.45664], [54.653804, -2.45681]], [[54.653804, -2.45681], [54.653817, -2.45697]], [[54.653817, -2.45697], [54.653809, -2.457134]], [[54.653809, -2.457134], [54.653776, -2.457306]], [[54.653776, -2.457306], [54.653758, -2.457469]], [[54.653758, -2.457469], [54.653739, -2.457647]], [[54.653734, -2.457826], [54.65373, -2.457994]], [[54.65373, -2.457994], [54.653762, -2.458149]], [[54.653762, -2.458149], [54.653814, -2.458278]], [[54.654023, -2.459301], [54.65402, -2.459456]], [[54.653366, -2.460706], [54.653282, -2.460782]], [[54.653207, -2.460877], [54.653166, -2.46104]], [[54.652941, -2.46155], [54.65288, -2.46168]], [[54.650905, -2.466606], [54.650895, -2.466776]], [[54.650895, -2.466776], [54.650854, -2.466929]], [[54.650854, -2.466929], [54.650819, -2.467079]], [[54.650207, -2.468413], [54.650145, -2.468535]], [[54.65006, -2.468614], [54.64998, -2.468721]], [[54.64998, -2.468721], [54.649899, -2.46881]], [[54.649899, -2.46881], [54.649818, -2.468884]], [[54.649818, -2.468884], [54.649736, -2.468948]], [[54.649736, -2.468948], [54.649646, -2.468996]], [[54.649646, -2.468996], [54.64955, -2.469052]], [[54.648095, -2.469919], [54.648007, -2.469981]], [[54.648007, -2.469981], [54.647914, -2.470011]], [[54.647914, -2.470011], [54.647826, -2.47006]], [[54.647826, -2.47006], [54.647727, -2.470099]], [[54.647727, -2.470099], [54.647639, -2.470153]], [[54.647639, -2.470153], [54.647551, -2.470197]], [[54.647551, -2.470197], [54.647463, -2.47026]], [[54.647463, -2.47026], [54.647376, -2.470308]], [[54.647376, -2.470308], [54.647287, -2.470328]], [[54.647287, -2.470328], [54.647196, -2.470335]], [[54.647196, -2.470335], [54.647097, -2.470297]], [[54.647097, -2.470297], [54.647002, -2.470257]], [[54.646806, -2.47017], [54.646711, -2.470116]], [[54.646711, -2.470116], [54.646617, -2.47006]], [[54.646617, -2.47006], [54.646528, -2.469994]], [[54.646528, -2.469994], [54.646485, -2.469856]], [[54.646485, -2.469856], [54.646451, -2.46971]], [[54.646451, -2.46971], [54.646359, -2.469719]], [[54.646359, -2.469719], [54.64628, -2.469797]], [[54.64628, -2.469797], [54.646234, -2.469931]], [[54.646234, -2.469931], [54.646194, -2.470095]], [[54.646194, -2.470095], [54.646155, -2.470249]], [[54.646155, -2.470249], [54.646118, -2.470397]], [[54.646046, -2.470691], [54.646015, -2.470841]], [[54.646015, -2.470841], [54.645971, -2.470982]], [[54.645921, -2.471132], [54.645886, -2.471284]], [[54.645886, -2.471284], [54.645851, -2.47145]], [[54.645673, -2.471782], [54.645611, -2.471895]], [[54.645471, -2.472116], [54.645388, -2.472224]], [[54.645388, -2.472224], [54.645321, -2.472343]], [[54.645321, -2.472343], [54.64524, -2.472412]], [[54.645089, -2.472617], [54.645025, -2.472742]], [[54.644724, -2.473188], [54.644644, -2.473288]], [[54.644644, -2.473288], [54.644564, -2.47338]], [[54.644564, -2.47338], [54.644484, -2.473496]], [[54.644484, -2.473496], [54.644424, -2.473613]], [[54.644424, -2.473613], [54.644353, -2.473723]], [[54.644282, -2.473826], [54.644199, -2.473911]], [[54.644199, -2.473911], [54.644119, -2.474017]], [[54.644119, -2.474017], [54.644042, -2.474133]], [[54.644042, -2.474133], [54.643967, -2.474225]], [[54.643818, -2.474434], [54.643748, -2.474554]], [[54.643748, -2.474554], [54.643671, -2.474665]], [[54.643671, -2.474665], [54.643598, -2.474763]], [[54.643598, -2.474763], [54.643516, -2.474854]], [[54.643516, -2.474854], [54.64344, -2.474978]], [[54.64344, -2.474978], [54.64337, -2.475077]], [[54.64337, -2.475077], [54.643292, -2.475174]], [[54.643292, -2.475174], [54.643214, -2.475284]], [[54.642681, -2.47601], [54.64261, -2.476118]], [[54.64261, -2.476118], [54.642538, -2.476224]], [[54.642538, -2.476224], [54.642481, -2.476356]], [[54.642481, -2.476356], [54.6424, -2.476449]], [[54.6424, -2.476449], [54.642324, -2.476557]], [[54.642324, -2.476557], [54.642247, -2.476646]], [[54.642247, -2.476646], [54.642175, -2.476742]], [[54.642175, -2.476742], [54.642103, -2.476837]], [[54.641814, -2.477249], [54.641733, -2.477328]], [[54.641733, -2.477328], [54.641663, -2.477454]], [[54.641663, -2.477454], [54.641592, -2.47755]], [[54.641592, -2.47755], [54.64152, -2.477655]], [[54.64152, -2.477655], [54.641441, -2.477747]], [[54.641441, -2.477747], [54.641364, -2.477851]], [[54.641364, -2.477851], [54.641297, -2.47796]], [[54.641297, -2.47796], [54.641227, -2.47807]], [[54.641227, -2.47807], [54.641151, -2.478171]], [[54.639947, -2.478783], [54.639889, -2.478913]], [[54.639071, -2.481217], [54.638986, -2.481137]], [[54.638716, -2.480637], [54.638661, -2.480505]], [[54.6386, -2.48038], [54.638522, -2.480287]], [[54.638522, -2.480287], [54.638455, -2.48018]], [[54.638455, -2.48018], [54.638387, -2.480065]], [[54.638208, -2.479979], [54.638116, -2.479959]], [[54.638116, -2.479959], [54.638022, -2.479946]], [[54.637335, -2.479995], [54.63724, -2.480047]], [[54.63724, -2.480047], [54.637144, -2.480083]], [[54.637144, -2.480083], [54.637058, -2.480158]], [[54.637058, -2.480158], [54.636979, -2.480248]], [[54.636891, -2.480332], [54.636809, -2.480403]], [[54.636809, -2.480403], [54.636728, -2.480499]], [[54.636728, -2.480499], [54.636645, -2.480565]], [[54.636645, -2.480565], [54.636552, -2.480605]], [[54.636552, -2.480605], [54.636454, -2.480637]], [[54.636454, -2.480637], [54.636358, -2.480665]], [[54.636358, -2.480665], [54.636262, -2.480709]], [[54.635798, -2.480581], [54.635713, -2.480519]], [[54.634762, -2.480581], [54.634665, -2.480606]], [[54.634097, -2.480718], [54.633995, -2.480705]], [[54.633644, -2.480916], [54.633539, -2.480897]], [[54.633345, -2.480836], [54.633251, -2.480774]], [[54.633069, -2.480778], [54.632986, -2.48084]], [[54.632895, -2.480874], [54.632806, -2.480927]], [[54.632554, -2.481183], [54.632474, -2.481292]], [[54.632386, -2.481335], [54.632287, -2.481354]], [[54.632287, -2.481354], [54.632201, -2.48141]], [[54.632201, -2.48141], [54.632114, -2.481491]], [[54.632114, -2.481491], [54.632032, -2.481565]], [[54.631786, -2.481773], [54.631696, -2.48177]], [[54.631213, -2.481795], [54.63112, -2.481826]], [[54.63112, -2.481826], [54.631031, -2.481899]], [[54.630687, -2.482153], [54.6306, -2.48221]], [[54.630366, -2.482465], [54.630279, -2.482557]], [[54.630279, -2.482557], [54.630185, -2.482535]], [[54.630002, -2.482646], [54.629908, -2.48264]], [[54.629908, -2.48264], [54.629816, -2.482683]], [[54.629647, -2.482815], [54.629552, -2.482814]], [[54.629552, -2.482814], [54.629452, -2.482798]], [[54.629452, -2.482798], [54.629351, -2.482803]], [[54.629257, -2.482796], [54.629165, -2.4828]], [[54.629165, -2.4828], [54.62907, -2.482823]], [[54.62898, -2.482802], [54.628881, -2.482818]], [[54.628788, -2.482809], [54.628694, -2.482755]], [[54.628694, -2.482755], [54.628601, -2.48275]], [[54.628419, -2.482712], [54.628327, -2.482698]], [[54.628073, -2.482652], [54.627971, -2.482631]], [[54.627586, -2.48265], [54.627495, -2.482669]], [[54.627495, -2.482669], [54.627398, -2.482661]], [[54.626699, -2.482172], [54.626604, -2.482216]], [[54.626431, -2.482336], [54.626331, -2.482366]], [[54.626331, -2.482366], [54.626227, -2.48236]], [[54.626227, -2.48236], [54.626137, -2.482326]], [[54.626137, -2.482326], [54.626044, -2.482316]], [[54.626044, -2.482316], [54.625954, -2.482329]], [[54.625954, -2.482329], [54.625855, -2.482286]], [[54.625855, -2.482286], [54.625764, -2.482264]], [[54.625764, -2.482264], [54.625674, -2.482203]], [[54.625674, -2.482203], [54.625587, -2.48213]], [[54.625508, -2.482047], [54.625422, -2.48197]], [[54.625345, -2.481888], [54.625263, -2.481782]], [[54.62518, -2.481718], [54.625098, -2.481649]], [[54.625098, -2.481649], [54.625015, -2.481586]], [[54.625015, -2.481586], [54.624919, -2.481585]], [[54.624647, -2.481613], [54.624617, -2.481761]], [[54.624617, -2.481761], [54.624544, -2.481876]], [[54.624544, -2.481876], [54.624475, -2.481983]], [[54.624475, -2.481983], [54.624396, -2.482066]], [[54.624396, -2.482066], [54.624311, -2.482128]], [[54.624311, -2.482128], [54.624221, -2.482168]], [[54.624221, -2.482168], [54.624131, -2.482252]], [[54.623967, -2.482449], [54.623863, -2.482467]], [[54.623677, -2.482589], [54.623606, -2.482683]], [[54.623606, -2.482683], [54.623519, -2.482768]], [[54.623519, -2.482768], [54.623442, -2.482866]], [[54.623277, -2.483064], [54.623178, -2.48306]], [[54.622993, -2.483104], [54.622889, -2.483069]], [[54.622785, -2.483074], [54.6227, -2.483163]], [[54.6227, -2.483163], [54.62261, -2.48319]], [[54.622463, -2.483373], [54.622383, -2.483451]], [[54.622162, -2.483781], [54.622126, -2.483935]], [[54.622126, -2.483935], [54.62208, -2.484074]], [[54.62208, -2.484074], [54.621987, -2.484123]], [[54.621635, -2.484429], [54.621539, -2.484479]], [[54.621539, -2.484479], [54.621453, -2.484532]], [[54.621187, -2.484751], [54.621093, -2.484734]], [[54.620901, -2.484706], [54.620804, -2.484659]], [[54.620804, -2.484659], [54.620723, -2.484591]], [[54.620591, -2.484362], [54.620522, -2.484235]], [[54.620522, -2.484235], [54.620466, -2.484098]], [[54.620301, -2.48352], [54.620248, -2.483378]], [[54.620026, -2.482989], [54.619934, -2.482932]], [[54.619839, -2.482912], [54.619745, -2.482876]], [[54.61968, -2.482756], [54.619607, -2.482651]], [[54.619607, -2.482651], [54.619555, -2.482488]], [[54.619555, -2.482488], [54.619489, -2.482383]], [[54.619489, -2.482383], [54.61945, -2.482219]], [[54.61945, -2.482219], [54.619387, -2.482087]], [[54.619069, -2.480913], [54.619119, -2.480777]], [[54.619416, -2.48035], [54.619442, -2.4802]], [[54.619442, -2.4802], [54.619427, -2.480042]], [[54.619354, -2.479945], [54.619324, -2.479777]], [[54.619324, -2.479777], [54.619356, -2.479631]], [[54.619356, -2.479631], [54.619364, -2.47947]], [[54.619364, -2.47947], [54.619355, -2.479301]], [[54.619355, -2.479301], [54.619345, -2.479136]], [[54.618284, -2.476724], [54.618205, -2.476609]], [[54.618205, -2.476609], [54.618123, -2.476502]], [[54.617465, -2.475273], [54.617513, -2.47512]], [[54.617779, -2.47449], [54.617848, -2.474369]], [[54.618167, -2.473544], [54.618207, -2.473396]], [[54.618227, -2.473227], [54.618267, -2.473072]], [[54.618267, -2.473072], [54.61831, -2.472926]], [[54.61831, -2.472926], [54.618313, -2.472757]], [[54.618388, -2.47248], [54.618398, -2.472324]], [[54.618443, -2.47201], [54.618443, -2.471843]], [[54.618443, -2.471843], [54.618451, -2.471673]], [[54.618451, -2.471673], [54.618459, -2.471516]], [[54.618533, -2.470866], [54.618552, -2.470706]], [[54.618552, -2.470706], [54.618553, -2.470532]], [[54.618566, -2.470352], [54.618579, -2.470192]], [[54.618629, -2.469693], [54.618656, -2.469544]], [[54.618658, -2.469384], [54.618662, -2.469211]], [[54.618662, -2.469211], [54.618683, -2.46904]], [[54.618683, -2.46904], [54.618707, -2.468866]], [[54.618707, -2.468866], [54.618734, -2.468699]], [[54.618734, -2.468699], [54.618722, -2.468537]], [[54.618722, -2.468537], [54.618739, -2.468383]], [[54.618739, -2.468383], [54.61875, -2.468213]], [[54.618776, -2.46789], [54.618811, -2.467742]], [[54.618811, -2.467742], [54.618829, -2.467575]], [[54.618829, -2.467575], [54.61886, -2.467426]], [[54.618896, -2.467107], [54.618901, -2.466946]], [[54.618901, -2.466946], [54.618919, -2.466793]], [[54.618919, -2.466793], [54.618905, -2.466627]], [[54.618905, -2.466627], [54.618928, -2.466466]], [[54.619071, -2.464904], [54.619075, -2.464749]], [[54.619075, -2.464749], [54.619101, -2.464588]], [[54.619101, -2.464588], [54.619131, -2.464429]], [[54.619131, -2.464429], [54.619168, -2.464286]], [[54.619168, -2.464286], [54.619192, -2.464132]], [[54.619214, -2.46379], [54.619218, -2.463627]], [[54.619218, -2.463627], [54.619212, -2.463468]], [[54.619212, -2.463468], [54.619223, -2.463311]], [[54.619349, -2.462016], [54.61938, -2.461855]], [[54.61938, -2.461855], [54.6194, -2.461699]], [[54.619715, -2.459001], [54.619705, -2.458828]], [[54.619705, -2.458828], [54.619681, -2.458677]], [[54.619641, -2.458514], [54.619626, -2.458354]], [[54.619626, -2.458354], [54.619614, -2.458196]], [[54.619495, -2.457563], [54.619483, -2.457407]], [[54.619483, -2.457407], [54.61944, -2.457263]], [[54.61944, -2.457263], [54.619409, -2.457096]], [[54.619409, -2.457096], [54.61937, -2.456947]], [[54.619651, -2.449713], [54.619674, -2.449546]], [[54.619674, -2.449546], [54.619712, -2.449383]], [[54.620006, -2.447511], [54.620063, -2.44738]], [[54.620063, -2.44738], [54.62009, -2.447211]], [[54.620649, -2.443699], [54.620691, -2.443538]], [[54.620691, -2.443538], [54.620717, -2.443381]], [[54.620132, -2.436559], [54.620083, -2.436418]], [[54.61926, -2.433102], [54.619267, -2.432937]], [[54.619267, -2.432937], [54.61928, -2.432781]], [[54.61928, -2.432781], [54.619295, -2.432621]], [[54.62861, -2.40489], [54.628634, -2.404734]], [[54.628783, -2.403805], [54.628844, -2.403673]], [[54.628844, -2.403673], [54.628913, -2.403561]], [[54.628913, -2.403561], [54.628995, -2.40346]], [[54.62916, -2.403275], [54.629242, -2.403211]], [[54.629484, -2.402527], [54.629521, -2.402369]], [[54.629593, -2.401722], [54.629615, -2.401571]], [[54.629615, -2.401571], [54.629654, -2.40142]], [[54.629728, -2.400923], [54.629772, -2.400771]], [[54.629772, -2.400771], [54.629821, -2.400635]], [[54.630029, -2.399725], [54.630059, -2.399569]], [[54.630059, -2.399569], [54.6301, -2.39942]], [[54.6301, -2.39942], [54.630144, -2.399262]], [[54.630343, -2.398522], [54.630372, -2.398351]], [[54.630372, -2.398351], [54.630424, -2.398207]], [[54.630424, -2.398207], [54.630447, -2.398056]], [[54.630534, -2.397196], [54.630547, -2.397037]], [[54.630448, -2.396206], [54.630383, -2.396075]], [[54.630427, -2.396008], [54.630401, -2.396172]], [[54.630539, -2.396394], [54.630574, -2.396538]], [[54.630556, -2.399139], [54.630506, -2.399281]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_d12e156f5daf8b636f059c93eefe4315 = L.polyline(
                [[[54.767291, -2.397635], [54.767205, -2.397567]], [[54.682, -2.44824], [54.681899, -2.448305]], [[54.681899, -2.448305], [54.681811, -2.448341]], [[54.681811, -2.448341], [54.681719, -2.448361]], [[54.680588, -2.446919], [54.680596, -2.446747]], [[54.665811, -2.43406], [54.665711, -2.434096]], [[54.665711, -2.434096], [54.665631, -2.434192]], [[54.665549, -2.4343], [54.6655, -2.434439]], [[54.664812, -2.436394], [54.664763, -2.436533]], [[54.664268, -2.438135], [54.6642, -2.43826]], [[54.662555, -2.441627], [54.662464, -2.44168]], [[54.659317, -2.446138], [54.659236, -2.446248]], [[54.65915, -2.446322], [54.659081, -2.446438]], [[54.659081, -2.446438], [54.659007, -2.446556]], [[54.645611, -2.471895], [54.64554, -2.472002]], [[54.64554, -2.472002], [54.645471, -2.472116]], [[54.640095, -2.478544], [54.640021, -2.478672]], [[54.640021, -2.478672], [54.639947, -2.478783]], [[54.637436, -2.479965], [54.637335, -2.479995]], [[54.636084, -2.48076], [54.635995, -2.480708]], [[54.635369, -2.480608], [54.635264, -2.480611]], [[54.635264, -2.480611], [54.635172, -2.480575]], [[54.63486, -2.480565], [54.634762, -2.480581]], [[54.633434, -2.480868], [54.633345, -2.480836]], [[54.629351, -2.482803], [54.629257, -2.482796]], [[54.62907, -2.482823], [54.62898, -2.482802]], [[54.628601, -2.48275], [54.628509, -2.482732]], [[54.628509, -2.482732], [54.628419, -2.482712]], [[54.627686, -2.482636], [54.627586, -2.48265]], [[54.627148, -2.4825], [54.627056, -2.482422]], [[54.627056, -2.482422], [54.626966, -2.482331]], [[54.626966, -2.482331], [54.626878, -2.482248]], [[54.626878, -2.482248], [54.626792, -2.4822]], [[54.626792, -2.4822], [54.626699, -2.482172]], [[54.625587, -2.48213], [54.625508, -2.482047]], [[54.624833, -2.481632], [54.624736, -2.481581]], [[54.624736, -2.481581], [54.624647, -2.481613]], [[54.623863, -2.482467], [54.623764, -2.482524]], [[54.62308, -2.48306], [54.622993, -2.483104]], [[54.622889, -2.483069], [54.622785, -2.483074]], [[54.622383, -2.483451], [54.622295, -2.483568]], [[54.622295, -2.483568], [54.622219, -2.483653]], [[54.622219, -2.483653], [54.622162, -2.483781]], [[54.621093, -2.484734], [54.620996, -2.484733]], [[54.620996, -2.484733], [54.620901, -2.484706]], [[54.619633, -2.482519], [54.619724, -2.482596]], [[54.62015, -2.483041], [54.620241, -2.483007]], [[54.619745, -2.482876], [54.61968, -2.482756]], [[54.619351, -2.48048], [54.619416, -2.48035]], [[54.619427, -2.480042], [54.619354, -2.479945]], [[54.61807, -2.473999], [54.618139, -2.473869]], [[54.619231, -2.433265], [54.61926, -2.433102]], [[54.630535, -2.397367], [54.630534, -2.397196]], [[54.630547, -2.397037], [54.630555, -2.39687]], [[54.630574, -2.396538], [54.63059, -2.396708]], [[54.630556, -2.397244], [54.630557, -2.397399]], [[54.630488, -2.39794], [54.630453, -2.398098]], [[54.630453, -2.398098], [54.63044, -2.398265]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_35ac917616f3c2fd5f004d88af8fcff9 = L.polyline(
                [[[54.635995, -2.480708], [54.635901, -2.480625]], [[54.619724, -2.482596], [54.61981, -2.482714]], [[54.619892, -2.482811], [54.619966, -2.482906]], [[54.619966, -2.482906], [54.620051, -2.482995]], [[54.620369, -2.482827], [54.620306, -2.482939]], [[54.620228, -2.483037], [54.620139, -2.483069]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5d00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff5d00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_bc707d81a503d9b4ff618404fd849f25 = L.polyline(
                [[[54.61981, -2.482714], [54.619892, -2.482811]], [[54.630574, -2.396681], [54.630554, -2.396505]], [[54.630554, -2.396505], [54.630503, -2.396349]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2e00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff2e00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            var poly_line_cf9741d36765b9e682bae8a73c6d8f62 = L.polyline(
                [[[54.620306, -2.482939], [54.620228, -2.483037]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_3108caa03350acd0c71aee94547fb349);
        
    
            color_line_3108caa03350acd0c71aee94547fb349.addTo(map_409c841bc9f15d1defa28e0e18632fe2);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-6---high-cup-nick-to-middleton-in-teesdale" class="level3">
<h3 class="anchored" data-anchor-id="day-6---high-cup-nick-to-middleton-in-teesdale">Day 6 - High Cup Nick to Middleton in Teesdale</h3>
<p>Wet, misty and windy this morning, I’d made the right decision heading up the previous night to see <a href="https://www.openstreetmap.org/way/843700933" target="_blank">High Cup Nick</a> in all its glory as I couldn’t see much of it this morning. Packed the tent up and was off quickly, looking forward to a short day of 28km almost exclusively downhill along the edge of the Maize Beck then the River Tees to Middleton in Teeside.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937872463_64695633d4_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbiGjk" target="_blank">Wrapped Up</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53963018814_63f6119cb0_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdwzs7" target="_blank">Maize Beck</a></figcaption>
</figure>
</div>
<p>Crossed a bridge that had been erected in memory of Ken Wilson and followed a good compact track downhill passing through Birksdale Farm and shortly after coming on to the fantastic view of the confluence of Maize Beack and River Tees. The trail swings by underneath the dam of <a href="https://en.wikipedia.org/wiki/Cow_Green_Reservoir" target="_blank">Cow Green Reservoir</a> and down the side of <a href="https://en.wikipedia.org/wiki/Cauldron_Snout" target="_blank">Cauldron Snout</a> which was in full flow and very impressive.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53962690571_fd7f210898_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qduTSK" target="_blank">Maize Beck and Cauldron Snout</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53963150440_ac923f7b50_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdxfzw" target="_blank">Cauldron Snout</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53936716907_20ae9cd704_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbcLNX" target="_blank">River Tees</a></figcaption>
</figure>
</div>
<p>The Way then follows the River Tees all the way to Middleton on Tees side. Heading down this section I met a lady heading North along The Way, the first solo female hiker I’d met. She had set off early and was keen to reach Dufton before the forecast rain passed through, just as I was keen to reach Middleton.</p>
<p>After passing through Cronkley farm I came across what seemed like a Juniper forest with lots of small stout evergreens that looked to me like Juniper, something I’ve encountered on cliff faces over the years climbing but never seen a forest of. <a href="https://www.28dayslater.co.uk/threads/force-garth-quarry-middleton-in-teesdale-april-2015.96048/" target="_blank">Force Garth Quarry</a> was passed and very soon I arrived above <a href="https://en.wikipedia.org/wiki/High_Force" target="_blank">High Force Waterfall</a> which was quite spectacular. Snapped a few shots from above then went round to the viewing area from the South to get some shots, waiting to get into position as there were a lot of people about, including a school/youth group.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53962691001_e306dee75f_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qduU1a" target="_blank">Top of High Force</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53963150465_aa8747d940_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdxfzX" target="_blank">Going Down</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53963018619_65dd8cb739_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdwzoK" target="_blank">High Force</a></figcaption>
</figure>
</div>
<p>Plodding along down hill the sound of the water bubbling over waterfalls was too tempting and I opted to cool my feet off in the cold water. It was delightful and I wish I had done it earlier. If you can stand it for long enough it rejunivates the feet, taking down swelling (the longer you stay in the more swelling goes down) and is just a delightful contrast to pounding the floor.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53963150040_3d770e793a_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdxfsC" target="_blank">Veins in the Rock</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53963018194_3a13a053c0_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdwzgq" target="_blank">Jump!</a></figcaption>
</figure>
</div>
<p><a href="https://en.wikipedia.org/wiki/Low_Force" target="_blank">Low Force</a> came very soon after with the <a href="https://www.nationaltransporttrust.org.uk/heritage-sites/heritage-detail/wynch-bridge" target="_blank">Wynch Bridge</a> which strongly advised not to have more than one person on it at any given time which I and others duly respected.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53961800992_6c03e5f5b4_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdqkrb" target="_blank">Low Force</a></figcaption>
</figure>
</div>
<p>A little further along the trail I met a couple out for a short walk who asked if I was walking the Pennine Way (the big rucksack and poles are a bit of a giveaway) we chatted and it transpired they were from Sheffield and occasionally drank in <a href="https://www1.camra.org.uk/pubs/brothers-arms-sheffield-south-147577" target="_blank">The Brothers Arms</a> had just passed a pair who were also hiking from North to South who were also from Sheffield and who one of them knew. This was a first! I’d almost caught up some other Wayfarers heading South! I said farewell and as my feet were sore though so I decided to cool them off in the River Tees. Refreshed I resolved to catch up the pair from Sheffield and a short while later I came across two people with rucksacks who had stopped for a short break. It was the two Wayfarers who were heading South, I said I was heading the same way too as I lived in Sheffield so it was like walking home (knowing full well this was likely to be the pair from Sheffield). They were indeed from Sheffield and we came round to where abouts we lived, I said Meersbrook and one of them asked if I drank in <a href="https://www1.camra.org.uk/pubs/brothers-arms-sheffield-south-147577" target="_blank">The Brothers Arms</a> which I do and he then asked where I lived. Transpires one of them, Martin who was 70, lives at number 59 on the same road as me! His friend had walked the Pennine Way many years ago when he was 17 and Martin had tried a year after lockdown but had aborted so they had joined forces to complete the way again. We posed for a picture and resolved to catch up when we were both back in Sheffield.</p>
<p>It was only a short distance to <a href="https://www.openstreetmap.org/query?lat=54.618065&amp;lon=-2.082456" target="_blank">Middleton on Teesdale</a> where I noticed <a href="https://newozzyspizza.co.uk/" target="_blank">Ozzys Pizza</a> on the way into town but headed straight to the pub for a couple of mid-afternoon pints in <a href="https://www.forrestersmiddleton.co.uk/en-GB" target="_blank">The Forresters</a> and wrote up some over-due notes in my diary and charged by phone and camera. A guy, Dave, playing darts and pools asked if I needed somewhere to camp for the night and said it would be fine to pitch up in the yard of his portaloo company. I thanked him for the offer but politely declined saying I wanted to have a shower, very friendly pub and people. Suitably refreshed I swung by the Co-Op for some beers and sweets and headed back out of town to <a href="https://daleviewcaravanpark.com/" target="_blank">Daleview</a> where I met Andy and Alex who were heading North on The Way. Andy knew lots about The Pennine Way as he volunteered to work on <a href="https://www.thespinerace.com/" target="_blank">The Spine Race</a> and mentioned the Middleton Tandoori which piqued my interest as I love curry. Unfortunately this was only a transient restaurant that was setup to feed participants and volunteers. Andy proudly told me he’d eaten 12 portions of Chicken Korma one year but seemed put out that this coming year they had moved the station and said that he would not be able to indulge to quite such an extent. Alex was closer to my age, probably a bit younger and we agreed to head into town to grab a pizza for dinner that evening from Ozzy’s which was delicious (we invited Andy but he passed, favouring his own food).</p>
<p>Alex was a software engineer with a degree in computer science but was also learning about horticulture, initially to grow produce but more recently had got interested in ornamental plants. We popped back into town for pizza at Ozzy’s which was delicious and then along to The Forresters afterwards for another pint and to charge devices before heading back to the campsite for the night.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-7-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-1" aria-controls="tabset-7-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-7-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-2" aria-controls="tabset-7-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-7-1" class="tab-pane active" aria-labelledby="tabset-7-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb13-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-19"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-9b3c6cf65f96c1581dc2" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-9b3c6cf65f96c1581dc2">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.400569,-2.400405,-2.400252,-2.400092,-2.399923,-2.399767,-2.399608,-2.399461,-2.399302,-2.399146,-2.398998,-2.398843,-2.3987,-2.398544,-2.398386,-2.398229,-2.398065,-2.3979,-2.397736,-2.397687,-2.397532,-2.397372,-2.397207,-2.39705,-2.396885,-2.396727,-2.396569,-2.39651,-2.39636,-2.396217,-2.396072,-2.395925,-2.395806,-2.395733,-2.395741,-2.395632,-2.395531,-2.395372,-2.395206,-2.395051,-2.394904,-2.394761,-2.394605,-2.39446,-2.394326,-2.394172,-2.394023,-2.393859,-2.393701,-2.393533,-2.393375,-2.393223,-2.393098,-2.393011,-2.392925,-2.392825,-2.392739,-2.392627,-2.392507,-2.392399,-2.392295,-2.392195,-2.392115,-2.392048,-2.391978,-2.3919,-2.391829,-2.391743,-2.391633,-2.39153,-2.391423,-2.39132,-2.391203,-2.391116,-2.391013,-2.390916,-2.390821,-2.390706,-2.390572,-2.390419,-2.390257,-2.390116,-2.389966,-2.389811,-2.389667,-2.3895,-2.389337,-2.389178,-2.389031,-2.388878,-2.388718,-2.388557,-2.388416,-2.388283,-2.388134,-2.387992,-2.387842,-2.38768,-2.387539,-2.387389,-2.387247,-2.387103,-2.386963,-2.386838,-2.386717,-2.38659,-2.386454,-2.386322,-2.386172,-2.386042,-2.385876,-2.385723,-2.385566,-2.385392,-2.38523,-2.385067,-2.384912,-2.38475,-2.384595,-2.384452,-2.384286,-2.384135,-2.383983,-2.383827,-2.383663,-2.38349,-2.38333,-2.38317,-2.383007,-2.382849,-2.382673,-2.382506,-2.382338,-2.382159,-2.381982,-2.38181,-2.38165,-2.381492,-2.381318,-2.38115,-2.38099,-2.380833,-2.380676,-2.380527,-2.380375,-2.380211,-2.380045,-2.379898,-2.379751,-2.379588,-2.379432,-2.379286,-2.379131,-2.37896,-2.378805,-2.378651,-2.378479,-2.378313,-2.378154,-2.377988,-2.377832,-2.37767,-2.37751,-2.377349,-2.377169,-2.377004,-2.376827,-2.376664,-2.376502,-2.37634,-2.376177,-2.376009,-2.375839,-2.375672,-2.375513,-2.375355,-2.375197,-2.375042,-2.374881,-2.374717,-2.374545,-2.374386,-2.374216,-2.37405,-2.373884,-2.37373,-2.373556,-2.373397,-2.37323,-2.373062,-2.372935,-2.372829,-2.372707,-2.372562,-2.372411,-2.372256,-2.372085,-2.371917,-2.371758,-2.371594,-2.37144,-2.371285,-2.371153,-2.370991,-2.370818,-2.370661,-2.370493,-2.370329,-2.370186,-2.370037,-2.369909,-2.369747,-2.369577,-2.36941,-2.369249,-2.369082,-2.368928,-2.368756,-2.368583,-2.368425,-2.368259,-2.3681,-2.367932,-2.367764,-2.367604,-2.367441,-2.367274,-2.367118,-2.366944,-2.366787,-2.366622,-2.366465,-2.366311,-2.366174,-2.366033,-2.36588,-2.365713,-2.365542,-2.365367,-2.365213,-2.365058,-2.364898,-2.364739,-2.364567,-2.364406,-2.364239,-2.364137,-2.363974,-2.363822,-2.363719,-2.363678,-2.363654,-2.363622,-2.363614,-2.363569,-2.363437,-2.363349,-2.363173,-2.363006,-2.362833,-2.362666,-2.362501,-2.362335,-2.362171,-2.362021,-2.361859,-2.361697,-2.361528,-2.361371,-2.361196,-2.36102,-2.360846,-2.360672,-2.360501,-2.360346,-2.360173,-2.360005,-2.359837,-2.359677,-2.359517,-2.359352,-2.359184,-2.359012,-2.358839,-2.358688,-2.358529,-2.358367,-2.358205,-2.358039,-2.357887,-2.357731,-2.357573,-2.357408,-2.357244,-2.357081,-2.356923,-2.356768,-2.356599,-2.356444,-2.356266,-2.356109,-2.355957,-2.355799,-2.355633,-2.35546,-2.355288,-2.355126,-2.354957,-2.354793,-2.354624,-2.354464,-2.354306,-2.354148,-2.353975,-2.353804,-2.353638,-2.353479,-2.35332,-2.353164,-2.352987,-2.352818,-2.352655,-2.352505,-2.352348,-2.352192,-2.352038,-2.351866,-2.351699,-2.351573,-2.351409,-2.351246,-2.351086,-2.35092,-2.350761,-2.350648,-2.350487,-2.350342,-2.350184,-2.350018,-2.349855,-2.349704,-2.349541,-2.349373,-2.349214,-2.349059,-2.348922,-2.34879,-2.348683,-2.348603,-2.348442,-2.348305,-2.348149,-2.3481,-2.347987,-2.347872,-2.347742,-2.347614,-2.347473,-2.347346,-2.347187,-2.347058,-2.346933,-2.346789,-2.346677,-2.346531,-2.346399,-2.346239,-2.346075,-2.34591,-2.345784,-2.345671,-2.345523,-2.345378,-2.345248,-2.345087,-2.344925,-2.344765,-2.344625,-2.344465,-2.344321,-2.34419,-2.344027,-2.343867,-2.343708,-2.343537,-2.343366,-2.343208,-2.343053,-2.342893,-2.342736,-2.342583,-2.342419,-2.342244,-2.34208,-2.341911,-2.34174,-2.341564,-2.341408,-2.341248,-2.341077,-2.340913,-2.340747,-2.340578,-2.340428,-2.340266,-2.340105,-2.339943,-2.339774,-2.339622,-2.339455,-2.339287,-2.33913,-2.338968,-2.338818,-2.338679,-2.338527,-2.338377,-2.338231,-2.338066,-2.337898,-2.337753,-2.337632,-2.337528,-2.337416,-2.337291,-2.337139,-2.336991,-2.336831,-2.336665,-2.336512,-2.336353,-2.3362,-2.336028,-2.335855,-2.335705,-2.335549,-2.33539,-2.335237,-2.335068,-2.334896,-2.334741,-2.334594,-2.33444,-2.33428,-2.334125,-2.333978,-2.33383,-2.333672,-2.333511,-2.333346,-2.33319,-2.333034,-2.332874,-2.332726,-2.332579,-2.332435,-2.332286,-2.332133,-2.331985,-2.331853,-2.331706,-2.331569,-2.331423,-2.331276,-2.331137,-2.330991,-2.330847,-2.330682,-2.330529,-2.330378,-2.330211,-2.330083,-2.329932,-2.329776,-2.329624,-2.329476,-2.329314,-2.329155,-2.329003,-2.328848,-2.328687,-2.328531,-2.328366,-2.328206,-2.328043,-2.327879,-2.327722,-2.327566,-2.327397,-2.327248,-2.327101,-2.326952,-2.326776,-2.326622,-2.326457,-2.326298,-2.326135,-2.325977,-2.325817,-2.325647,-2.325491,-2.325324,-2.325166,-2.324999,-2.324844,-2.324692,-2.324536,-2.324385,-2.324213,-2.324049,-2.323891,-2.323719,-2.323544,-2.323377,-2.323233,-2.323074,-2.322894,-2.322729,-2.322579,-2.322433,-2.322271,-2.322101,-2.321932,-2.321758,-2.321603,-2.321438,-2.321281,-2.321142,-2.320991,-2.320836,-2.320669,-2.320498,-2.320336,-2.320169,-2.320004,-2.31985,-2.319688,-2.319524,-2.319369,-2.319209,-2.319047,-2.318876,-2.318718,-2.318535,-2.31838,-2.318218,-2.318055,-2.317885,-2.317712,-2.31754,-2.317409,-2.317258,-2.317219,-2.31708,-2.317065,-2.317044,-2.317028,-2.317005,-2.31691,-2.316753,-2.316598,-2.316471,-2.316363,-2.316252,-2.316106,-2.315951,-2.315794,-2.315632,-2.315478,-2.315331,-2.315186,-2.315061,-2.314939,-2.314825,-2.3147,-2.314551,-2.314392,-2.314241,-2.314096,-2.313954,-2.313841,-2.313738,-2.313637,-2.313532,-2.313447,-2.313367,-2.313282,-2.313125,-2.312966,-2.312814,-2.312681,-2.31254,-2.312412,-2.312344,-2.312323,-2.31229,-2.312249,-2.312174,-2.312055,-2.31195,-2.311833,-2.311688,-2.311536,-2.311383,-2.311226,-2.311077,-2.310922,-2.31078,-2.310649,-2.310527,-2.310604,-2.310615,-2.31044,-2.310293,-2.310126,-2.309959,-2.309783,-2.309623,-2.309587,-2.309421,-2.309262,-2.309105,-2.30896,-2.308849,-2.308721,-2.308561,-2.308408,-2.308259,-2.308121,-2.307973,-2.307843,-2.307721,-2.307608,-2.307501,-2.307389,-2.307272,-2.307117,-2.306961,-2.306796,-2.306644,-2.306492,-2.306353,-2.306203,-2.306047,-2.305923,-2.305799,-2.305755,-2.30564,-2.305591,-2.305588,-2.305438,-2.305288,-2.305121,-2.304962,-2.304831,-2.304819,-2.304871,-2.304919,-2.304985,-2.305057,-2.305135,-2.305198,-2.305219,-2.305121,-2.304966,-2.304805,-2.30463,-2.304471,-2.304318,-2.30417,-2.304038,-2.303895,-2.303746,-2.303615,-2.303491,-2.30339,-2.303274,-2.303158,-2.303035,-2.302955,-2.302871,-2.30279,-2.302698,-2.302585,-2.302502,-2.302453,-2.302411,-2.302304,-2.302161,-2.302023,-2.301887,-2.301718,-2.301552,-2.301393,-2.301243,-2.301115,-2.300974,-2.300817,-2.300653,-2.300519,-2.300385,-2.300248,-2.300102,-2.299954,-2.299801,-2.299651,-2.299499,-2.299362,-2.299243,-2.299147,-2.299032,-2.298927,-2.298829,-2.298742,-2.298636,-2.298528,-2.298432,-2.298333,-2.298217,-2.298086,-2.297963,-2.297841,-2.297704,-2.297581,-2.297469,-2.297371,-2.297284,-2.297171,-2.297014,-2.296851,-2.296681,-2.296501,-2.296337,-2.2962,-2.296054,-2.295923,-2.295777,-2.295649,-2.295524,-2.295378,-2.295217,-2.29506,-2.294904,-2.294733,-2.294567,-2.294403,-2.294244,-2.294085,-2.293926,-2.293763,-2.293604,-2.293467,-2.293327,-2.293193,-2.293051,-2.292903,-2.292761,-2.292611,-2.292463,-2.292336,-2.292191,-2.292042,-2.291908,-2.291782,-2.291643,-2.291526,-2.291376,-2.291219,-2.291071,-2.290898,-2.290741,-2.290697,-2.290703,-2.290756,-2.29081,-2.290877,-2.290969,-2.291097,-2.291239,-2.291312,-2.291342,-2.291315,-2.291343,-2.291333,-2.291263,-2.291243,-2.29117,-2.291071,-2.291023,-2.290977,-2.290905,-2.290821,-2.290748,-2.290676,-2.290617,-2.290469,-2.29032,-2.29017,-2.290024,-2.289855,-2.289798,-2.289636,-2.28946,-2.289312,-2.28924,-2.289171,-2.289069,-2.289014,-2.289021,-2.289096,-2.289041,-2.289045,-2.289003,-2.288948,-2.288919,-2.289037,-2.28906,-2.288911,-2.288835,-2.288794,-2.288736,-2.28874,-2.288748,-2.288713,-2.288727,-2.288751,-2.288813,-2.288842,-2.288999,-2.28906,-2.288976,-2.288978,-2.289013,-2.288959,-2.288897,-2.2888,-2.288726,-2.288607,-2.288484,-2.288333,-2.288171,-2.288007,-2.287861,-2.287694,-2.287531,-2.287367,-2.287235,-2.287084,-2.286926,-2.286765,-2.286609,-2.28644,-2.286281,-2.286177,-2.286025,-2.285872,-2.285717,-2.28557,-2.285399,-2.285231,-2.285095,-2.284926,-2.284786,-2.284621,-2.28447,-2.284302,-2.284248,-2.284163,-2.284001,-2.283869,-2.283798,-2.283708,-2.283729,-2.28361,-2.283481,-2.283394,-2.283324,-2.283255,-2.283222,-2.283073,-2.28303,-2.283032,-2.283016,-2.28294,-2.282848,-2.282737,-2.282666,-2.282581,-2.28248,-2.282335,-2.282185,-2.28208,-2.281937,-2.281841,-2.281691,-2.281549,-2.281405,-2.281238,-2.281081,-2.280919,-2.280751,-2.280586,-2.280439,-2.280291,-2.280134,-2.279973,-2.279828,-2.279665,-2.279502,-2.279363,-2.279208,-2.279044,-2.278873,-2.278792,-2.278621,-2.278462,-2.278299,-2.278153,-2.277989,-2.277818,-2.277653,-2.27749,-2.277329,-2.277165,-2.277006,-2.27684,-2.276683,-2.276524,-2.276379,-2.276231,-2.276073,-2.275905,-2.27573,-2.27555,-2.275384,-2.27523,-2.275084,-2.274931,-2.274773,-2.274609,-2.27445,-2.274266,-2.274152,-2.273999,-2.273836,-2.27369,-2.273538,-2.273377,-2.27322,-2.273057,-2.272902,-2.272737,-2.272588,-2.272424,-2.272243,-2.272106,-2.271957,-2.2718,-2.271685,-2.271532,-2.271354,-2.2712,-2.271075,-2.270927,-2.270786,-2.270629,-2.270461,-2.270295,-2.270148,-2.26998,-2.269824,-2.26965,-2.269479,-2.269333,-2.26918,-2.269008,-2.268861,-2.268716,-2.26854,-2.268367,-2.268283,-2.268156,-2.267996,-2.267844,-2.267693,-2.267575,-2.267425,-2.26729,-2.26717,-2.267054,-2.266896,-2.266746,-2.266671,-2.266567,-2.266486,-2.266434,-2.266302,-2.266155,-2.266064,-2.26592,-2.265821,-2.26572,-2.26561,-2.265501,-2.265428,-2.265357,-2.265227,-2.265076,-2.264943,-2.264785,-2.264652,-2.264522,-2.264402,-2.264279,-2.264139,-2.264027,-2.263907,-2.263818,-2.263672,-2.263556,-2.263444,-2.263321,-2.263207,-2.263092,-2.262947,-2.262862,-2.262743,-2.262653,-2.262602,-2.262453,-2.262377,-2.262244,-2.262155,-2.262038,-2.261919,-2.261772,-2.261669,-2.261534,-2.26142,-2.261309,-2.261202,-2.26106,-2.260918,-2.260833,-2.260751,-2.260673,-2.260581,-2.260512,-2.260437,-2.260375,-2.260329,-2.260294,-2.26023,-2.260163,-2.26012,-2.260042,-2.259989,-2.259927,-2.259812,-2.259766,-2.259719,-2.259645,-2.259537,-2.259488,-2.259451,-2.259404,-2.259341,-2.259269,-2.259236,-2.25924,-2.25925,-2.259254,-2.259237,-2.259234,-2.25923,-2.259217,-2.259184,-2.259167,-2.259162,-2.259122,-2.259108,-2.259049,-2.258949,-2.258937,-2.258901,-2.258905,-2.258908,-2.258908,-2.258887,-2.25882,-2.258757,-2.258699,-2.258664,-2.258619,-2.258542,-2.258482,-2.258454,-2.25838,-2.258342,-2.258262,-2.258159,-2.258122,-2.258046,-2.257951,-2.257845,-2.257777,-2.257756,-2.257709,-2.25764,-2.257595,-2.257537,-2.257437,-2.257308,-2.257247,-2.257184,-2.257127,-2.257102,-2.257022,-2.256932,-2.256867,-2.256798,-2.256721,-2.256639,-2.256602,-2.25653,-2.256455,-2.256381,-2.25632,-2.256252,-2.256191,-2.256073,-2.255987,-2.255928,-2.255811,-2.2557,-2.255566,-2.255494,-2.255416,-2.255312,-2.255197,-2.255082,-2.254955,-2.25484,-2.25473,-2.254601,-2.25456,-2.254491,-2.254421,-2.254303,-2.254141,-2.253988,-2.25386,-2.253719,-2.253572,-2.253435,-2.253298,-2.253172,-2.253035,-2.252904,-2.252758,-2.252612,-2.252461,-2.252293,-2.252143,-2.251985,-2.251825,-2.251664,-2.25153,-2.251386,-2.251244,-2.251101,-2.250964,-2.250802,-2.250651,-2.2505,-2.250347,-2.250188,-2.250026,-2.249867,-2.249709,-2.249552,-2.249377,-2.249225,-2.249074,-2.248919,-2.24876,-2.248606,-2.248454,-2.2483,-2.24815,-2.248013,-2.247858,-2.247704,-2.247595,-2.247451,-2.247295,-2.247135,-2.246978,-2.246822,-2.246684,-2.246546,-2.246391,-2.246228,-2.246071,-2.245901,-2.245735,-2.245611,-2.24543,-2.245255,-2.24507,-2.244895,-2.244724,-2.244561,-2.244387,-2.24423,-2.244058,-2.243888,-2.243711,-2.243568,-2.243415,-2.243267,-2.24313,-2.242958,-2.242799,-2.242659,-2.242521,-2.242402,-2.242313,-2.242242,-2.242115,-2.242006,-2.241919,-2.24182,-2.241755,-2.241727,-2.241632,-2.241529,-2.241392,-2.241245,-2.241085,-2.240948,-2.240803,-2.240654,-2.240481,-2.240316,-2.240162,-2.239999,-2.239844,-2.239692,-2.239529,-2.239403,-2.239231,-2.239067,-2.238905,-2.238745,-2.238597,-2.238449,-2.238303,-2.238158,-2.238004,-2.237844,-2.237701,-2.237552,-2.237409,-2.237274,-2.237124,-2.236962,-2.236815,-2.236653,-2.236503,-2.236356,-2.236218,-2.236088,-2.235952,-2.235798,-2.235637,-2.235463,-2.235311,-2.235159,-2.234996,-2.234836,-2.234677,-2.234508,-2.234344,-2.234183,-2.23402,-2.233864,-2.233706,-2.233535,-2.233377,-2.233225,-2.233069,-2.232903,-2.232741,-2.232638,-2.232538,-2.232429,-2.232515,-2.232406,-2.232252,-2.232089,-2.231928,-2.231754,-2.231597,-2.231427,-2.231275,-2.231123,-2.230973,-2.230818,-2.230662,-2.230511,-2.230375,-2.230247,-2.230153,-2.230135,-2.230118,-2.230044,-2.229972,-2.229896,-2.22983,-2.22974,-2.229617,-2.229512,-2.229366,-2.229276,-2.229143,-2.229,-2.22885,-2.228706,-2.228557,-2.228484,-2.228333,-2.228216,-2.228095,-2.227976,-2.227884,-2.227756,-2.227642,-2.227529,-2.227407,-2.227292,-2.227177,-2.227069,-2.226986,-2.226988,-2.227098,-2.227189,-2.227287,-2.227407,-2.227533,-2.227655,-2.227792,-2.227923,-2.228074,-2.228213,-2.228298,-2.228376,-2.2284,-2.228489,-2.228553,-2.228582,-2.228625,-2.228612,-2.228631,-2.228659,-2.228614,-2.228512,-2.228426,-2.228329,-2.228234,-2.228155,-2.228091,-2.228025,-2.227935,-2.227837,-2.227727,-2.227631,-2.227511,-2.227391,-2.227309,-2.227218,-2.227116,-2.226954,-2.22679,-2.226639,-2.226633,-2.226669,-2.226701,-2.226751,-2.226811,-2.22687,-2.226903,-2.226917,-2.226914,-2.226877,-2.226765,-2.226742,-2.226688,-2.22659,-2.226478,-2.226354,-2.226239,-2.226149,-2.226082,-2.226005,-2.225905,-2.225851,-2.225747,-2.22562,-2.225497,-2.225359,-2.225235,-2.225129,-2.225011,-2.224889,-2.224793,-2.224724,-2.224661,-2.224615,-2.224568,-2.224528,-2.224483,-2.224431,-2.224367,-2.224324,-2.224238,-2.224173,-2.224075,-2.223966,-2.223876,-2.223753,-2.223624,-2.22348,-2.223319,-2.22317,-2.223029,-2.222888,-2.222747,-2.222586,-2.222429,-2.222261,-2.222104,-2.221951,-2.221878,-2.221705,-2.221548,-2.221399,-2.221244,-2.221089,-2.220923,-2.220757,-2.220613,-2.220506,-2.220386,-2.220255,-2.220121,-2.220017,-2.219894,-2.219754,-2.219621,-2.219477,-2.21934,-2.219204,-2.219059,-2.218928,-2.218763,-2.218615,-2.218528,-2.2184,-2.21829,-2.218167,-2.218048,-2.2179,-2.217776,-2.217611,-2.21746,-2.217294,-2.21717,-2.217025,-2.216926,-2.216787,-2.216629,-2.216592,-2.216471,-2.216362,-2.216247,-2.216185,-2.216138,-2.21608,-2.216021,-2.215978,-2.215914,-2.215807,-2.215699,-2.215622,-2.215503,-2.215402,-2.215322,-2.215252,-2.215173,-2.215099,-2.215225,-2.215259,-2.215354,-2.215419,-2.215402,-2.215388,-2.215378,-2.215349,-2.215303,-2.215231,-2.215162,-2.215101,-2.215038,-2.21498,-2.214937,-2.214877,-2.214802,-2.214748,-2.214673,-2.214585,-2.21456,-2.214553,-2.2146,-2.214559,-2.214536,-2.214584,-2.214677,-2.214797,-2.214929,-2.215057,-2.215156,-2.215148,-2.215073,-2.215005,-2.215013,-2.214996,-2.214925,-2.214835,-2.21477,-2.21479,-2.21485,-2.214925,-2.215019,-2.215027,-2.215113,-2.215156,-2.215125,-2.215096,-2.215056,-2.215026,-2.215037,-2.214997,-2.21501,-2.214921,-2.214933,-2.214939,-2.214945,-2.214863,-2.214806,-2.214784,-2.214792,-2.214757,-2.214782,-2.214743,-2.214721,-2.214703,-2.214767,-2.21476,-2.214815,-2.214874,-2.214929,-2.215013,-2.215076,-2.215146,-2.215219,-2.215259,-2.215328,-2.215405,-2.215504,-2.215609,-2.215701,-2.215787,-2.215865,-2.215929,-2.216012,-2.216082,-2.216171,-2.216229,-2.21628,-2.216338,-2.216381,-2.216417,-2.216457,-2.216436,-2.216502,-2.216541,-2.21655,-2.21654,-2.216546,-2.216507,-2.216439,-2.216435,-2.216374,-2.21637,-2.216386,-2.216275,-2.216242,-2.216173,-2.216152,-2.216154,-2.216081,-2.216024,-2.215988,-2.215921,-2.215821,-2.215737,-2.215615,-2.215471,-2.215324,-2.215189,-2.215045,-2.214892,-2.214729,-2.214582,-2.214436,-2.214277,-2.214181,-2.214092,-2.21408,-2.213925,-2.213791,-2.21362,-2.213474,-2.213305,-2.213147,-2.212975,-2.212813,-2.212672,-2.212546,-2.212391,-2.212234,-2.212097,-2.211942,-2.211776,-2.211602,-2.211447,-2.211288,-2.211117,-2.210956,-2.210872,-2.210771,-2.210631,-2.210483,-2.210338,-2.210256,-2.2101,-2.209944,-2.20979,-2.209632,-2.209498,-2.209382,-2.209225,-2.209056,-2.208888,-2.208754,-2.208637,-2.208477,-2.208334,-2.208165,-2.207999,-2.207844,-2.207677,-2.207514,-2.207344,-2.207174,-2.207021,-2.206911,-2.206746,-2.206589,-2.206414,-2.20625,-2.206094,-2.205934,-2.205808,-2.20571,-2.205549,-2.205392,-2.205218,-2.205046,-2.20491,-2.20476,-2.204602,-2.204435,-2.204274,-2.2041,-2.203928,-2.203765,-2.203598,-2.203435,-2.203274,-2.203115,-2.202945,-2.202782,-2.202624,-2.20246,-2.202299,-2.20212,-2.201958,-2.201796,-2.20164,-2.201464,-2.201309,-2.201149,-2.200972,-2.200813,-2.200654,-2.200481,-2.200317,-2.200155,-2.199987,-2.199831,-2.199664,-2.199509,-2.199335,-2.199179,-2.199018,-2.198852,-2.198721,-2.198569,-2.198418,-2.198254,-2.198097,-2.197938,-2.197782,-2.19762,-2.197449,-2.197287,-2.197121,-2.196951,-2.196795,-2.196649,-2.196651,-2.196522,-2.196367,-2.196212,-2.19614,-2.195967,-2.195795,-2.19563,-2.195461,-2.195292,-2.195129,-2.194966,-2.194816,-2.194691,-2.194543,-2.194443,-2.194331,-2.194183,-2.194034,-2.19388,-2.193734,-2.193572,-2.193463,-2.193311,-2.193181,-2.193039,-2.192956,-2.192819,-2.192722,-2.192646,-2.192565,-2.19245,-2.192336,-2.192222,-2.192128,-2.192042,-2.191934,-2.191795,-2.191652,-2.191493,-2.191381,-2.191255,-2.191143,-2.191038,-2.190892,-2.190737,-2.190594,-2.190473,-2.190338,-2.190204,-2.190052,-2.189896,-2.189772,-2.189646,-2.189495,-2.18934,-2.189189,-2.18905,-2.188905,-2.188775,-2.18864,-2.188513,-2.188387,-2.188245,-2.188111,-2.188032,-2.187894,-2.187757,-2.187666,-2.187724,-2.187726,-2.187601,-2.187437,-2.187267,-2.187104,-2.186942,-2.186955,-2.187111,-2.187124,-2.186932,-2.186758,-2.186591,-2.186438,-2.186336,-2.186219,-2.186244,-2.186081,-2.185929,-2.185768,-2.185626,-2.185634,-2.185721,-2.185761,-2.185668,-2.185637,-2.185494,-2.18532,-2.185151,-2.184992,-2.184839,-2.184682,-2.184574,-2.184422,-2.184255,-2.184085,-2.183916,-2.183732,-2.183561,-2.183379,-2.183222,-2.183065,-2.182911,-2.182774,-2.18262,-2.182475,-2.182311,-2.182144,-2.181981,-2.18183,-2.181658,-2.181492,-2.181321,-2.181153,-2.180999,-2.180857,-2.180691,-2.180521,-2.180356,-2.180198,-2.180037,-2.179854,-2.179689,-2.179536,-2.17939,-2.17922,-2.179075,-2.178937,-2.178795,-2.178659,-2.178542,-2.178408,-2.178255,-2.178115,-2.177955,-2.177783,-2.177628,-2.177473,-2.177329,-2.177169,-2.177002,-2.176852,-2.176686,-2.176517,-2.176362,-2.176204,-2.176062,-2.175945,-2.175817,-2.175684,-2.175659,-2.175495,-2.175363,-2.175217,-2.175043,-2.174886,-2.174717,-2.17456,-2.174401,-2.174225,-2.174062,-2.173908,-2.173744,-2.17359,-2.173494,-2.173506,-2.173496,-2.17336,-2.173202,-2.17304,-2.172887,-2.172719,-2.172565,-2.172398,-2.172248,-2.172102,-2.17194,-2.171791,-2.171656,-2.171489,-2.17135,-2.171203,-2.171031,-2.170864,-2.170709,-2.170561,-2.170408,-2.170262,-2.170111,-2.169964,-2.16982,-2.169669,-2.169527,-2.169379,-2.169231,-2.169065,-2.168921,-2.168769,-2.168631,-2.168464,-2.16832,-2.168176,-2.168021,-2.167851,-2.167687,-2.167532,-2.167376,-2.167217,-2.167063,-2.166911,-2.166775,-2.166679,-2.166531,-2.166367,-2.1662,-2.166037,-2.165865,-2.165699,-2.165547,-2.165385,-2.165225,-2.16505,-2.1649,-2.164728,-2.164553,-2.1644,-2.16426,-2.164115,-2.16395,-2.163799,-2.163655,-2.163488,-2.163321,-2.163159,-2.163005,-2.162848,-2.162673,-2.162503,-2.162331,-2.162158,-2.161982,-2.16182,-2.161647,-2.161478,-2.161318,-2.161155,-2.160989,-2.160824,-2.160652,-2.16047,-2.160312,-2.160153,-2.159983,-2.159816,-2.159652,-2.159498,-2.159348,-2.159191,-2.15904,-2.158877,-2.158726,-2.158574,-2.158403,-2.158262,-2.158088,-2.157981,-2.157943,-2.157817,-2.157729,-2.157616,-2.157505,-2.157348,-2.157197,-2.157032,-2.156871,-2.156702,-2.156534,-2.156383,-2.156217,-2.15605,-2.1559,-2.155743,-2.155623,-2.155469,-2.15531,-2.155147,-2.154973,-2.154817,-2.154663,-2.154494,-2.154337,-2.154192,-2.154054,-2.153907,-2.153747,-2.153631,-2.153502,-2.153357,-2.153219,-2.153052,-2.152954,-2.152848,-2.152782,-2.152684,-2.152573,-2.152436,-2.152394,-2.152418,-2.152308,-2.152162,-2.152044,-2.151885,-2.151729,-2.151604,-2.151587,-2.151615,-2.151587,-2.151567,-2.151614,-2.151579,-2.151535,-2.151439,-2.151354,-2.151245,-2.151087,-2.150941,-2.150793,-2.150781,-2.15063,-2.150484,-2.15045,-2.150519,-2.150473,-2.150394,-2.150275,-2.150113,-2.14999,-2.149875,-2.149736,-2.149606,-2.149488,-2.149352,-2.149224,-2.149117,-2.149051,-2.148929,-2.148896,-2.148853,-2.148771,-2.148692,-2.148627,-2.148533,-2.148428,-2.148352,-2.148278,-2.14821,-2.148103,-2.147959,-2.147816,-2.147705,-2.14755,-2.147388,-2.147214,-2.147049,-2.146885,-2.146767,-2.146643,-2.146558,-2.146463,-2.146313,-2.146224,-2.146123,-2.146003,-2.145882,-2.145733,-2.145613,-2.145469,-2.145341,-2.145231,-2.145122,-2.145031,-2.14497,-2.14487,-2.144789,-2.144675,-2.144562,-2.144446,-2.144335,-2.144195,-2.144041,-2.143888,-2.143759,-2.143623,-2.143513,-2.143412,-2.143309,-2.143192,-2.143074,-2.142952,-2.142844,-2.142742,-2.142632,-2.142512,-2.142392,-2.142264,-2.142123,-2.141979,-2.141806,-2.141666,-2.141532,-2.141382,-2.141232,-2.141074,-2.14091,-2.140743,-2.140574,-2.140445,-2.140286,-2.14013,-2.139964,-2.139807,-2.139648,-2.13949,-2.139316,-2.13915,-2.13898,-2.138812,-2.138639,-2.138466,-2.138309,-2.138149,-2.137993,-2.137835,-2.137675,-2.137518,-2.137353,-2.137202,-2.137183,-2.137026,-2.136858,-2.136694,-2.13655,-2.136407,-2.136249,-2.1361,-2.135943,-2.1358,-2.135649,-2.135506,-2.135354,-2.13521,-2.135074,-2.134922,-2.134775,-2.134643,-2.134507,-2.134363,-2.134256,-2.134144,-2.134001,-2.133842,-2.133697,-2.133546,-2.133431,-2.133309,-2.133165,-2.133038,-2.132908,-2.132755,-2.132646,-2.132514,-2.13238,-2.132243,-2.132107,-2.132002,-2.131888,-2.131796,-2.13167,-2.131568,-2.131464,-2.131368,-2.131274,-2.131203,-2.131125,-2.131022,-2.130922,-2.130846,-2.130757,-2.130697,-2.130635,-2.130587,-2.130534,-2.130485,-2.130452,-2.13041,-2.130369,-2.130329,-2.13028,-2.130233,-2.130181,-2.130201,-2.130152,-2.130111,-2.130054,-2.130013,-2.129972,-2.129974,-2.129942,-2.129957,-2.129962,-2.129927,-2.12988,-2.129854,-2.129861,-2.129825,-2.12979,-2.12976,-2.129745,-2.129776,-2.129703,-2.129703,-2.12967,-2.129654,-2.129623,-2.129645,-2.129628,-2.129612,-2.129605,-2.12958,-2.129515,-2.129568,-2.129589,-2.129701,-2.129753,-2.129681,-2.129567,-2.129494,-2.129461,-2.129386,-2.129288,-2.129212,-2.129111,-2.12901,-2.128977,-2.128947,-2.128921,-2.128925,-2.128856,-2.128716,-2.128629,-2.128515,-2.128394,-2.12824,-2.128092,-2.127945,-2.127783,-2.127632,-2.127511,-2.12738,-2.127232,-2.127131,-2.126991,-2.126829,-2.126675,-2.126547,-2.126426,-2.126331,-2.126188,-2.126036,-2.125876,-2.125719,-2.125563,-2.125426,-2.125285,-2.125122,-2.124955,-2.1248,-2.124644,-2.124506,-2.1244,-2.124289,-2.124202,-2.124058,-2.123881,-2.123715,-2.123553,-2.123404,-2.123258,-2.123109,-2.12295,-2.122815,-2.122672,-2.122545,-2.122389,-2.122232,-2.122057,-2.121897,-2.121728,-2.121574,-2.121549,-2.121395,-2.121228,-2.121054,-2.120897,-2.120721,-2.120558,-2.120399,-2.120231,-2.120074,-2.119913,-2.119747,-2.119583,-2.119417,-2.119265,-2.1191,-2.118939,-2.118787,-2.118624,-2.118467,-2.118321,-2.118172,-2.117988,-2.117837,-2.117667,-2.117493,-2.117316,-2.117149,-2.116984,-2.116828,-2.116673,-2.116567,-2.116412,-2.116258,-2.11611,-2.116036,-2.115936,-2.115797,-2.115776,-2.115699,-2.115594,-2.11549,-2.115376,-2.115261,-2.115164,-2.11505,-2.114953,-2.114868,-2.11476,-2.114631,-2.114544,-2.114449,-2.11433,-2.114235,-2.114238,-2.114112,-2.113958,-2.113804,-2.113699,-2.113545,-2.113371,-2.113207,-2.113055,-2.112925,-2.11281,-2.112662,-2.112549,-2.11243,-2.112309,-2.112148,-2.112029,-2.111863,-2.111703,-2.111547,-2.111386,-2.111224,-2.111076,-2.110929,-2.110766,-2.110632,-2.110479,-2.110347,-2.110199,-2.110054,-2.109914,-2.109778,-2.109636,-2.109504,-2.109388,-2.109277,-2.10914,-2.109014,-2.108876,-2.108728,-2.108561,-2.108395,-2.108252,-2.108113,-2.107987,-2.107858,-2.107689,-2.107542,-2.107388,-2.107261,-2.107207,-2.107132,-2.107034,-2.106927,-2.106795,-2.10665,-2.106506,-2.106374,-2.106229,-2.106087,-2.105933,-2.105799,-2.10567,-2.105515,-2.10536,-2.105203,-2.105042,-2.104899,-2.104727,-2.104571,-2.104422,-2.104321,-2.104259,-2.10423,-2.104111,-2.103992,-2.103866,-2.103762,-2.103627,-2.103493,-2.103365,-2.103268,-2.103258,-2.103174,-2.103025,-2.102918,-2.10279,-2.10269,-2.102513,-2.102404,-2.102245,-2.102116,-2.101987,-2.10184,-2.101704,-2.101562,-2.101402,-2.101372,-2.101226,-2.101095,-2.10093,-2.100759,-2.100591,-2.100434,-2.100257,-2.100086,-2.099922,-2.09979,-2.099625,-2.099466,-2.099317,-2.099159,-2.098986,-2.098813,-2.098644,-2.098486,-2.098327,-2.098159,-2.098009,-2.097848,-2.097677,-2.097525,-2.097368,-2.097214,-2.09707,-2.096924,-2.096774,-2.096637,-2.096524,-2.09641,-2.096303,-2.096177,-2.096038,-2.095891,-2.095736,-2.095645,-2.095471,-2.095308,-2.095153,-2.094992,-2.094832,-2.094682,-2.094525,-2.094365,-2.09421,-2.094041,-2.093886,-2.093716,-2.093554,-2.093386,-2.093231,-2.09306,-2.092909,-2.092753,-2.092588,-2.092419,-2.092244,-2.092075,-2.091932,-2.091746,-2.091582,-2.091437,-2.091268,-2.091105,-2.090945,-2.090792,-2.090643,-2.090482,-2.090316,-2.090159,-2.089999,-2.089859,-2.089708,-2.089541,-2.08939,-2.089227,-2.089079,-2.088936,-2.088795,-2.088647,-2.088506,-2.088364,-2.088212,-2.08806,-2.087906,-2.08774,-2.087572,-2.087411,-2.087248,-2.087085,-2.086924,-2.08676,-2.086596,-2.086445,-2.086288,-2.086122,-2.085972,-2.085815,-2.085663,-2.085512,-2.085375,-2.085227,-2.085116,-2.085122,-2.085115,-2.085085,-2.085036,-2.084969,-2.084882,-2.08479,-2.084654,-2.084534,-2.084409,-2.08429,-2.08416,-2.084039,-2.083945,-2.083873,-2.08382,-2.083762,-2.083703,-2.083676,-2.083656,-2.083605,-2.08354,-2.0835,-2.083383,-2.083314,-2.083299,-2.083245,-2.083201,-2.083208,-2.083234,-2.083189,-2.083031,-2.082889,-2.082821,-2.08297,-2.083073,-2.083233,-2.083359,-2.083367,-2.083374,-2.083373,-2.08344,-2.083501,-2.083555,-2.083595,-2.083653,-2.083703,-2.083707,-2.083755,-2.08376,-2.083798,-2.083755,-2.083823,-2.084062,-2.084078,-2.084077],"lat":[54.629906,54.629949,54.629996,54.630028,54.630035,54.630042,54.630075,54.630119,54.630159,54.630192,54.630244,54.630281,54.630319,54.630365,54.630411,54.630444,54.630469,54.630492,54.630501,54.630488,54.63052,54.630549,54.630553,54.630568,54.63058,54.630578,54.630568,54.63055,54.630502,54.630455,54.630416,54.630375,54.630307,54.630224,54.630186,54.630258,54.63019,54.630166,54.6302,54.630194,54.630158,54.630102,54.630061,54.63002,54.629965,54.629927,54.629891,54.629891,54.629893,54.629881,54.629892,54.629917,54.62998,54.63006,54.630144,54.630221,54.630297,54.630376,54.63045,54.630528,54.630605,54.630677,54.630761,54.630844,54.630936,54.631016,54.6311,54.631176,54.631245,54.631323,54.631391,54.63146,54.631538,54.631618,54.631697,54.631776,54.63185,54.631913,54.631959,54.632001,54.632037,54.632081,54.632119,54.632152,54.632186,54.632218,54.632236,54.632269,54.632299,54.632333,54.632363,54.632398,54.632443,54.632501,54.632538,54.632574,54.632604,54.632636,54.63268,54.632731,54.632775,54.632831,54.63289,54.632949,54.633022,54.633075,54.633123,54.63317,54.633208,54.633258,54.633279,54.633299,54.63333,54.633347,54.633379,54.633416,54.633424,54.633464,54.633512,54.63356,54.633587,54.633614,54.633635,54.633657,54.633666,54.633674,54.633681,54.633713,54.633732,54.633744,54.633767,54.633786,54.633804,54.633812,54.633816,54.633812,54.633818,54.633798,54.633809,54.633822,54.633821,54.633813,54.633845,54.633886,54.633911,54.633926,54.633938,54.633969,54.634,54.634014,54.634059,54.634092,54.634104,54.634133,54.634166,54.634181,54.634186,54.634199,54.634206,54.634214,54.63422,54.634226,54.634219,54.634215,54.634228,54.634238,54.634247,54.634263,54.634281,54.634302,54.634316,54.634326,54.63435,54.634356,54.634368,54.634379,54.634383,54.63441,54.634418,54.634399,54.63441,54.634408,54.634409,54.634388,54.634372,54.634384,54.634403,54.63441,54.634422,54.634449,54.634505,54.634537,54.634602,54.634662,54.634698,54.634733,54.634742,54.634729,54.634745,54.634763,54.634791,54.634826,54.634876,54.634909,54.634919,54.634942,54.634967,54.634996,54.635034,54.635071,54.635128,54.635167,54.635192,54.635205,54.635205,54.635206,54.635171,54.635167,54.635176,54.635155,54.635171,54.635189,54.635193,54.635182,54.635196,54.635166,54.635161,54.635154,54.635162,54.635157,54.63517,54.635207,54.63525,54.635297,54.635351,54.635391,54.635407,54.635418,54.635428,54.635411,54.635403,54.635392,54.63539,54.635394,54.635422,54.635425,54.635395,54.635411,54.635429,54.635445,54.635542,54.635637,54.635729,54.635745,54.635834,54.635882,54.63586,54.635861,54.63587,54.635885,54.635875,54.635864,54.635887,54.635889,54.635851,54.635843,54.635838,54.63585,54.635841,54.635829,54.635813,54.635789,54.635772,54.635763,54.635721,54.6357,54.63571,54.635705,54.635695,54.635705,54.635702,54.635722,54.635699,54.63568,54.635714,54.635727,54.635719,54.635702,54.635688,54.635664,54.635702,54.635691,54.635705,54.635735,54.635727,54.635722,54.635711,54.635703,54.635696,54.635692,54.63569,54.635645,54.635653,54.635654,54.635654,54.635655,54.635666,54.635686,54.635709,54.635734,54.635763,54.635754,54.63572,54.635723,54.635734,54.635733,54.63576,54.635781,54.635804,54.635799,54.635776,54.635748,54.635801,54.635838,54.635856,54.635819,54.635797,54.635797,54.635854,54.635843,54.635837,54.635826,54.635817,54.635818,54.635887,54.635909,54.635878,54.635887,54.63589,54.635901,54.635924,54.635916,54.635933,54.635947,54.635983,54.636032,54.636098,54.636174,54.636256,54.636247,54.636203,54.636222,54.636236,54.636313,54.636377,54.636438,54.636498,54.636546,54.636611,54.636622,54.636686,54.63674,54.636787,54.636861,54.636904,54.636954,54.636986,54.636982,54.637006,54.637065,54.637138,54.637174,54.637225,54.637284,54.637311,54.637325,54.637363,54.637412,54.637451,54.6375,54.637561,54.637601,54.637563,54.637571,54.637581,54.637583,54.637595,54.637596,54.637596,54.637588,54.637573,54.63757,54.637581,54.637599,54.637616,54.637608,54.637595,54.637577,54.637573,54.637573,54.637571,54.637548,54.637566,54.637594,54.637605,54.637616,54.637629,54.63765,54.637678,54.637708,54.637732,54.63775,54.637779,54.63782,54.637863,54.63791,54.637955,54.638011,54.638007,54.638018,54.638053,54.638114,54.638192,54.638267,54.638326,54.638356,54.638385,54.638407,54.638435,54.638455,54.638474,54.638487,54.638486,54.638492,54.638535,54.638578,54.638617,54.638644,54.638669,54.638688,54.638712,54.638744,54.638783,54.638822,54.638855,54.638895,54.638933,54.638969,54.639009,54.63905,54.639089,54.639137,54.639177,54.63922,54.639269,54.639321,54.639366,54.63941,54.639458,54.639511,54.63956,54.639608,54.639656,54.639708,54.639766,54.639803,54.639837,54.639876,54.639923,54.639956,54.639981,54.640033,54.640084,54.640129,54.640162,54.640193,54.640217,54.640241,54.640262,54.640285,54.640296,54.640288,54.64028,54.640267,54.640244,54.640225,54.640205,54.640212,54.640249,54.640284,54.640328,54.64036,54.640368,54.640357,54.64035,54.640392,54.640427,54.640423,54.64042,54.640431,54.640449,54.640469,54.640492,54.640497,54.640506,54.640535,54.640565,54.640589,54.640593,54.64058,54.640564,54.640568,54.640579,54.640555,54.640504,54.640475,54.640488,54.640489,54.640451,54.640411,54.640399,54.640393,54.640395,54.640398,54.640393,54.640389,54.640417,54.64046,54.640498,54.64054,54.640561,54.640574,54.640575,54.640575,54.640573,54.640558,54.64053,54.64051,54.640515,54.640532,54.640539,54.64054,54.640537,54.640538,54.640546,54.640532,54.640508,54.640493,54.640504,54.640523,54.640577,54.640618,54.640626,54.640687,54.640789,54.64089,54.640981,54.641071,54.641153,54.641165,54.641182,54.641252,54.641327,54.641395,54.641413,54.641448,54.641479,54.641524,54.641553,54.641586,54.64164,54.641696,54.641762,54.641842,54.641905,54.641945,54.641983,54.642007,54.642045,54.642095,54.642163,54.642233,54.642306,54.642384,54.64246,54.642544,54.642619,54.642661,54.642686,54.642718,54.642774,54.642831,54.642898,54.642984,54.643078,54.643169,54.643262,54.643348,54.64342,54.643489,54.643553,54.643603,54.643639,54.643674,54.643722,54.643773,54.643829,54.64388,54.643934,54.643991,54.64407,54.644161,54.644163,54.644145,54.644117,54.644113,54.644105,54.644085,54.644079,54.644055,54.644044,54.644072,54.644122,54.644189,54.644245,54.644282,54.644321,54.644368,54.644426,54.644463,54.644522,54.644577,54.644645,54.644713,54.644778,54.644843,54.644877,54.644881,54.644889,54.644919,54.644953,54.645003,54.645058,54.645101,54.645157,54.645219,54.64524,54.645317,54.645402,54.645408,54.645461,54.645501,54.645537,54.64556,54.645615,54.645709,54.645804,54.6459,54.645985,54.646073,54.646153,54.646244,54.646334,54.646404,54.646437,54.646448,54.646459,54.646478,54.646506,54.646559,54.64661,54.646656,54.646711,54.646779,54.646851,54.64692,54.646995,54.647058,54.64713,54.64721,54.647286,54.647365,54.647439,54.647516,54.647596,54.647682,54.647773,54.647849,54.647909,54.647952,54.647998,54.648018,54.64805,54.648092,54.648134,54.648189,54.648232,54.648277,54.648316,54.648363,54.648413,54.648459,54.648501,54.648553,54.64859,54.648634,54.648682,54.648735,54.6488,54.648873,54.648944,54.64902,54.649099,54.649174,54.649247,54.649326,54.649398,54.649468,54.649534,54.649606,54.649665,54.649724,54.649786,54.649852,54.649925,54.650003,54.650083,54.650154,54.65018,54.650184,54.650199,54.650205,54.650233,54.650281,54.650339,54.650399,54.650451,54.65051,54.650569,54.650619,54.65063,54.650616,54.650603,54.650587,54.650556,54.65053,54.650522,54.650538,54.650571,54.650611,54.650654,54.650697,54.65074,54.650787,54.650833,54.650871,54.650915,54.650969,54.651019,54.651072,54.651132,54.651185,54.651234,54.651288,54.651351,54.651413,54.651452,54.651478,54.651438,54.651434,54.651443,54.651448,54.651542,54.65163,54.651722,54.651813,54.651886,54.651948,54.651988,54.652069,54.652163,54.652258,54.652352,54.652445,54.652553,54.652646,54.65273,54.652809,54.6529,54.652992,54.65308,54.65317,54.65326,54.653339,54.653432,54.653471,54.653511,54.653556,54.653605,54.653608,54.653628,54.653612,54.653623,54.653586,54.653505,54.653418,54.653346,54.653256,54.653159,54.653075,54.65298,54.652904,54.652814,54.652727,54.65264,54.652582,54.652581,54.652525,54.652445,54.652363,54.652277,54.652242,54.652141,54.652052,54.652033,54.651942,54.651855,54.65176,54.651754,54.651781,54.651688,54.651582,54.65149,54.651403,54.651315,54.65124,54.65116,54.6511,54.651042,54.650998,54.650998,54.650989,54.650955,54.650936,54.650907,54.650896,54.650838,54.650792,54.650768,54.65078,54.650763,54.650732,54.650734,54.65068,54.650631,54.650591,54.650573,54.650541,54.65052,54.650518,54.650455,54.650471,54.650413,54.650406,54.650377,54.650335,54.650243,54.650164,54.650151,54.650094,54.650006,54.649923,54.649863,54.649803,54.649753,54.649678,54.649591,54.6495,54.649403,54.649377,54.649288,54.64919,54.649092,54.649005,54.648925,54.648853,54.648765,54.648689,54.648617,54.648556,54.648518,54.64844,54.648383,54.64831,54.648261,54.648206,54.648172,54.648146,54.648116,54.648084,54.64807,54.648035,54.647987,54.647956,54.647922,54.647897,54.64786,54.647851,54.647848,54.647798,54.647775,54.647759,54.647769,54.647755,54.647769,54.64777,54.647751,54.647717,54.647712,54.647687,54.647665,54.647649,54.647653,54.647669,54.647676,54.64765,54.647682,54.647714,54.647748,54.647802,54.64782,54.647807,54.647807,54.647799,54.64779,54.647748,54.64778,54.647761,54.647772,54.647797,54.647794,54.647795,54.647856,54.647897,54.647906,54.647917,54.647959,54.647981,54.648009,54.648024,54.648053,54.648044,54.648095,54.648113,54.648122,54.64818,54.648217,54.648201,54.648263,54.648215,54.648203,54.648217,54.648284,54.648342,54.648384,54.648423,54.648418,54.648412,54.648443,54.648473,54.648505,54.648505,54.64854,54.648518,54.648557,54.648585,54.648618,54.648678,54.648703,54.648729,54.648807,54.648871,54.648897,54.648946,54.648971,54.649045,54.64909,54.649141,54.64921,54.649277,54.649319,54.649349,54.649429,54.649509,54.649592,54.649687,54.649746,54.649776,54.649855,54.6499,54.649971,54.650043,54.650121,54.650187,54.650275,54.650369,54.650426,54.650482,54.650542,54.650575,54.650613,54.650669,54.650729,54.650786,54.650828,54.6509,54.650968,54.651042,54.651084,54.651124,54.65119,54.651254,54.651319,54.651394,54.651441,54.651524,54.65159,54.651676,54.651761,54.651803,54.651874,54.651953,54.652038,54.652106,54.652165,54.652216,54.652295,54.652353,54.652425,54.652488,54.652521,54.652563,54.652615,54.65271,54.652791,54.652872,54.652947,54.653038,54.653123,54.653211,54.653301,54.653394,54.653489,54.653571,54.653665,54.653755,54.65385,54.653939,54.654003,54.654097,54.654196,54.654287,54.654365,54.654458,54.654549,54.654645,54.654743,54.65483,54.654919,54.655015,54.655108,54.6552,54.655293,54.655384,54.655478,54.65557,54.655668,54.655769,54.655863,54.655961,54.656062,54.656155,54.656229,54.656325,54.656417,54.656536,54.656641,54.656734,54.656826,54.656912,54.657002,54.65709,54.657186,54.65728,54.657359,54.657461,54.657559,54.657651,54.657738,54.657823,54.657896,54.657989,54.658076,54.658148,54.658216,54.658319,54.658425,54.658517,54.658615,54.658719,54.658815,54.658892,54.658949,54.659033,54.659131,54.659223,54.659223,54.659313,54.659405,54.659489,54.659573,54.659656,54.659743,54.659833,54.659915,54.659995,54.660079,54.660176,54.660276,54.660361,54.660432,54.660519,54.660605,54.660677,54.66075,54.660799,54.660892,54.660973,54.661054,54.661126,54.661194,54.661258,54.661321,54.661398,54.661454,54.661451,54.661538,54.661618,54.661681,54.661703,54.66174,54.661795,54.661857,54.661905,54.661969,54.662034,54.662093,54.662151,54.662205,54.662265,54.662306,54.662347,54.66236,54.662388,54.662403,54.662438,54.662475,54.662532,54.662572,54.662631,54.662674,54.662722,54.662758,54.662789,54.662826,54.662852,54.662854,54.662866,54.662893,54.662921,54.66294,54.662946,54.662978,54.663005,54.663034,54.663066,54.663097,54.663137,54.663182,54.663208,54.663255,54.663288,54.663339,54.663408,54.663455,54.663476,54.66348,54.66351,54.663553,54.663607,54.663657,54.663688,54.663698,54.66371,54.663726,54.663758,54.663796,54.663803,54.663836,54.663848,54.663861,54.663873,54.663896,54.663902,54.663903,54.663886,54.663872,54.663845,54.66381,54.663782,54.663732,54.663683,54.663655,54.663623,54.663566,54.663506,54.663436,54.663355,54.663269,54.663212,54.663146,54.66307,54.663,54.662914,54.66289,54.662972,54.663039,54.663088,54.663127,54.663147,54.663202,54.663246,54.663284,54.663294,54.663275,54.66325,54.66322,54.663195,54.663167,54.663157,54.663103,54.663092,54.663067,54.663041,54.66303,54.662982,54.662945,54.662911,54.662872,54.662832,54.662797,54.662758,54.662707,54.662671,54.66262,54.662571,54.662538,54.662496,54.662463,54.662424,54.662386,54.662333,54.662278,54.662234,54.662199,54.66218,54.662158,54.662131,54.662107,54.662091,54.66207,54.662058,54.662041,54.662019,54.662003,54.661997,54.662011,54.661995,54.661965,54.661948,54.661927,54.661895,54.661869,54.661829,54.661754,54.661719,54.66165,54.661565,54.661496,54.661477,54.661454,54.661456,54.661465,54.66148,54.661503,54.661546,54.661577,54.661612,54.661641,54.661676,54.661722,54.66177,54.661821,54.661903,54.661993,54.662094,54.662177,54.662259,54.662346,54.662431,54.662513,54.662571,54.662611,54.662646,54.662722,54.662778,54.662826,54.662874,54.662913,54.66294,54.662956,54.662994,54.663054,54.663113,54.663179,54.663263,54.663319,54.663399,54.663465,54.663532,54.663608,54.663674,54.663741,54.66382,54.66391,54.66399,54.664073,54.664148,54.664207,54.664264,54.664326,54.664379,54.664445,54.664486,54.664532,54.664611,54.664691,54.664787,54.664866,54.664955,54.665048,54.665141,54.665231,54.665331,54.665428,54.665515,54.665593,54.665677,54.665749,54.665828,54.665917,54.665999,54.66609,54.66615,54.66623,54.666308,54.666382,54.666447,54.666526,54.666608,54.666685,54.666768,54.666799,54.666793,54.666772,54.666762,54.666669,54.66657,54.666475,54.666385,54.666327,54.666232,54.666133,54.666034,54.66594,54.665863,54.66577,54.665685,54.665606,54.665543,54.665467,54.665401,54.665322,54.665232,54.665145,54.665064,54.664973,54.664894,54.664829,54.664774,54.664715,54.664653,54.664584,54.664511,54.664453,54.664372,54.664282,54.664186,54.664089,54.663997,54.663907,54.663817,54.663728,54.66364,54.663549,54.663475,54.663389,54.663309,54.663233,54.663151,54.663091,54.663038,54.66298,54.662944,54.662909,54.662861,54.662799,54.662751,54.662723,54.662693,54.662665,54.662632,54.6626,54.662584,54.662591,54.662557,54.662525,54.662472,54.662461,54.662449,54.662433,54.662388,54.66231,54.662244,54.662187,54.662135,54.662066,54.662001,54.661938,54.661892,54.661854,54.6618,54.661755,54.66171,54.661652,54.661615,54.661578,54.661496,54.661441,54.661368,54.661303,54.661235,54.661199,54.661143,54.661102,54.661044,54.661002,54.660935,54.660889,54.660812,54.660767,54.660726,54.660741,54.660663,54.660596,54.660525,54.660436,54.660338,54.660247,54.660162,54.660075,54.659986,54.659907,54.659837,54.659759,54.659688,54.659616,54.659534,54.659445,54.659362,54.65928,54.659218,54.65916,54.659069,54.658984,54.658886,54.658788,54.658696,54.658596,54.658505,54.658414,54.658321,54.658227,54.658141,54.658055,54.657962,54.657875,54.657782,54.657687,54.657595,54.657513,54.657414,54.657317,54.657218,54.657119,54.657021,54.656934,54.656849,54.656788,54.656719,54.656655,54.656578,54.656482,54.656398,54.656317,54.656227,54.656133,54.656044,54.655956,54.655867,54.655881,54.655795,54.655697,54.655616,54.655515,54.655424,54.655325,54.655226,54.655129,54.655037,54.654945,54.65485,54.654761,54.654752,54.654678,54.654588,54.654495,54.654475,54.654385,54.654301,54.654211,54.654118,54.654027,54.653929,54.653838,54.653749,54.653654,54.653571,54.65348,54.65339,54.653301,54.653259,54.65317,54.653077,54.652989,54.652894,54.652807,54.652718,54.652627,54.652549,54.652473,54.652391,54.652311,54.652228,54.652142,54.652054,54.651962,54.65188,54.651795,54.651709,54.651617,54.651523,54.651434,54.651341,54.651348,54.651256,54.65116,54.651063,54.650971,54.650879,54.65079,54.650699,54.650603,54.650514,54.650411,54.650319,54.650242,54.650146,54.650053,54.649957,54.649859,54.649775,54.649691,54.649596,54.649509,54.649432,54.649353,54.649287,54.649235,54.649189,54.649142,54.649103,54.649083,54.649043,54.649009,54.648974,54.648929,54.648849,54.648773,54.648773,54.648797,54.648856,54.64885,54.648814,54.648786,54.648765,54.648742,54.648723,54.648706,54.648649,54.648682,54.648687,54.648637,54.648604,54.648569,54.64854,54.648514,54.648513,54.648495,54.64846,54.648376,54.648306,54.648257,54.648202,54.648154,54.648076,54.648042,54.648049,54.648015,54.648005,54.647955,54.64789,54.647849,54.647843,54.64788,54.647819,54.647759,54.64776,54.647716,54.647713,54.647744,54.647739,54.647728,54.64773,54.647687,54.647693,54.647643,54.647575,54.647575,54.647583,54.647596,54.647596,54.647591,54.647612,54.647553,54.647475,54.647453,54.647453,54.647435,54.647435,54.647381,54.647349,54.647358,54.647358,54.647339,54.647362,54.647357,54.647367,54.647378,54.64738,54.647376,54.647362,54.647363,54.647359,54.647365,54.647353,54.64735,54.647359,54.647367,54.647331,54.647321,54.64731,54.647295,54.64731,54.647317,54.647334,54.647325,54.647359,54.647354,54.647343,54.647352,54.647352,54.647362,54.647365,54.647361,54.647341,54.647333,54.64731,54.647261,54.647226,54.647187,54.647171,54.647157,54.647155,54.647158,54.647164,54.647173,54.647144,54.647138,54.647126,54.647123,54.647072,54.647081,54.647132,54.647146,54.64715,54.647134,54.64711,54.647117,54.647136,54.64712,54.647141,54.647162,54.647168,54.647193,54.647261,54.647232,54.647317,54.647388,54.647422,54.647463,54.64752,54.647558,54.647582,54.647649,54.647685,54.647756,54.647808,54.647888,54.64793,54.648001,54.648094,54.648171,54.648236,54.648298,54.648365,54.648439,54.64853,54.648602,54.64865,54.648686,54.648717,54.648784,54.648851,54.648916,54.648998,54.649042,54.649066,54.649115,54.649187,54.649245,54.649308,54.649352,54.649356,54.649413,54.649473,54.649522,54.649549,54.649595,54.649648,54.6497,54.649762,54.649824,54.649883,54.649939,54.64999,54.650044,54.650137,54.650204,54.650252,54.650228,54.650314,54.650317,54.650249,54.650218,54.650188,54.650159,54.650184,54.650274,54.65029,54.650303,54.650291,54.650303,54.65028,54.650263,54.650337,54.650398,54.650441,54.650483,54.650506,54.650504,54.650548,54.650561,54.650643,54.650689,54.650615,54.650609,54.650655,54.650656,54.650688,54.650725,54.650761,54.650762,54.650839,54.650875,54.650915,54.650937,54.65095,54.650953,54.650945,54.650916,54.650878,54.650868,54.650823,54.650779,54.650734,54.650686,54.650688,54.650698,54.650706,54.650673,54.650676,54.650661,54.650651,54.650652,54.650676,54.650717,54.650719,54.650712,54.650727,54.65075,54.650751,54.650736,54.650705,54.65073,54.650765,54.650755,54.650713,54.650659,54.650605,54.650552,54.650491,54.650435,54.650402,54.650346,54.650319,54.65028,54.650252,54.650211,54.650175,54.650128,54.650093,54.650059,54.650039,54.650009,54.649984,54.649957,54.649908,54.649841,54.649783,54.649719,54.649689,54.649643,54.649593,54.649556,54.649528,54.649502,54.649494,54.649513,54.64954,54.649542,54.649554,54.649565,54.649587,54.649608,54.649679,54.649773,54.649803,54.649749,54.649707,54.649701,54.649723,54.649705,54.649725,54.649718,54.649752,54.649789,54.649812,54.64986,54.64991,54.649932,54.649986,54.650027,54.650034,54.650012,54.64998,54.649933,54.649884,54.649842,54.649818,54.649788,54.649751,54.649715,54.649668,54.64963,54.649589,54.649552,54.649499,54.649445,54.649401,54.649361,54.649328,54.649288,54.649258,54.649253,54.649215,54.649197,54.649199,54.649215,54.649228,54.649265,54.649308,54.649328,54.649361,54.6494,54.649433,54.649447,54.649473,54.649491,54.649526,54.649538,54.64955,54.649533,54.649496,54.649476,54.649465,54.649433,54.649394,54.649345,54.649312,54.649263,54.649227,54.649215,54.649206,54.649189,54.649153,54.64913,54.64911,54.649114,54.64912,54.649111,54.649104,54.649105,54.649123,54.649129,54.649136,54.649145,54.649138,54.64913,54.649112,54.649112,54.649104,54.649089,54.649085,54.649069,54.649042,54.649008,54.64898,54.648957,54.648923,54.648908,54.648863,54.648844,54.648816,54.648758,54.64877,54.648842,54.648819,54.648759,54.64868,54.64861,54.648536,54.648495,54.648449,54.648446,54.648439,54.648438,54.6484,54.648357,54.648334,54.648323,54.648292,54.648294,54.648237,54.648215,54.64821,54.648184,54.648179,54.648172,54.648138,54.648111,54.648085,54.648035,54.647994,54.647958,54.647924,54.647856,54.647804,54.647764,54.647707,54.647712,54.647739,54.647663,54.647571,54.647499,54.647425,54.647363,54.647286,54.647195,54.647128,54.647078,54.647016,54.647001,54.646986,54.646927,54.646925,54.646821,54.646725,54.646623,54.646533,54.646444,54.646351,54.646264,54.646178,54.646097,54.646067,54.646067,54.646105,54.646093,54.646138,54.646175,54.646183,54.646102,54.646047,54.645969,54.645908,54.64587,54.645811,54.645733,54.645686,54.645626,54.64556,54.645492,54.645432,54.645357,54.645273,54.645205,54.645112,54.645023,54.644943,54.644849,54.644756,54.644678,54.644601,54.64452,54.644435,54.644349,54.64427,54.644208,54.644161,54.64409,54.644072,54.644039,54.644037,54.644035,54.644006,54.643945,54.643881,54.643801,54.643804,54.643781,54.643679,54.643584,54.643516,54.64344,54.643403,54.643331,54.64328,54.643211,54.643141,54.643065,54.64298,54.642894,54.642819,54.642732,54.642653,54.642585,54.642517,54.642453,54.642406,54.642368,54.642335,54.642284,54.64223,54.642166,54.642091,54.642015,54.641946,54.641879,54.641806,54.64173,54.641661,54.641597,54.641531,54.641472,54.641402,54.641349,54.641315,54.641295,54.641254,54.641206,54.641171,54.641147,54.641133,54.64112,54.64111,54.641098,54.641057,54.641031,54.641033,54.641051,54.64101,54.640991,54.640963,54.640959,54.640956,54.64094,54.640927,54.640918,54.640913,54.640905,54.640888,54.64087,54.64084,54.640819,54.640801,54.640798,54.64078,54.640779,54.640734,54.640702,54.640673,54.640632,54.640597,54.640564,54.64053,54.640496,54.640456,54.640412,54.640377,54.640337,54.640315,54.640261,54.64022,54.640176,54.640128,54.640076,54.640032,54.639984,54.639918,54.639881,54.639845,54.639811,54.639757,54.639688,54.639619,54.639568,54.639505,54.639452,54.639403,54.639332,54.639277,54.639201,54.639141,54.639079,54.638999,54.638925,54.638837,54.638767,54.638693,54.638615,54.638543,54.638468,54.638382,54.638296,54.63822,54.638143,54.638061,54.637975,54.637892,54.637806,54.637718,54.63763,54.63754,54.637443,54.637356,54.637262,54.637169,54.637075,54.636979,54.636888,54.636793,54.636702,54.636615,54.636525,54.636426,54.636339,54.636248,54.636146,54.636049,54.635955,54.635854,54.635758,54.635667,54.635567,54.635477,54.635376,54.635279,54.635187,54.635145,54.635058,54.634959,54.63487,54.634773,54.634676,54.634585,54.634487,54.634394,54.634301,54.634209,54.634141,54.634055,54.633959,54.633896,54.633804,54.63372,54.633654,54.633573,54.633474,54.633389,54.633318,54.633233,54.633152,54.633082,54.632992,54.632903,54.632814,54.632721,54.632633,54.632576,54.632487,54.632425,54.632362,54.632322,54.632288,54.632243,54.632233,54.632205,54.632145,54.632071,54.632015,54.631943,54.631882,54.631836,54.631803,54.631748,54.631674,54.631601,54.631569,54.631528,54.631505,54.631489,54.631447,54.63139,54.631372,54.63135,54.631333,54.631322,54.631302,54.631261,54.63121,54.631136,54.631056,54.630998,54.630992,54.63098,54.630942,54.630897,54.630867,54.63084,54.63081,54.630749,54.63071,54.630709,54.630695,54.630696,54.630697,54.630675,54.63068,54.630707,54.630712,54.630743,54.630755,54.630765,54.630771,54.630767,54.630766,54.630758,54.630736,54.630722,54.630707,54.630691,54.630682,54.630666,54.630635,54.630611,54.630573,54.630543,54.630542,54.630545,54.63051,54.630486,54.630491,54.630527,54.630523,54.630508,54.63053,54.630508,54.630505,54.630483,54.630476,54.630479,54.630471,54.630452,54.630391,54.630381,54.630311,54.630257,54.630157,54.630068,54.630002,54.629935,54.629863,54.629785,54.629711,54.62964,54.629565,54.629484,54.629419,54.629357,54.629277,54.6292,54.629126,54.629054,54.628964,54.628908,54.628864,54.628826,54.628903,54.628872,54.628886,54.628885,54.628848,54.628795,54.628732,54.628678,54.628612,54.62855,54.628491,54.628462,54.628433,54.628401,54.628362,54.628325,54.6283,54.628264,54.628222,54.628172,54.628123,54.628062,54.628008,54.627949,54.627894,54.627834,54.627783,54.627724,54.627674,54.627614,54.627549,54.627487,54.627423,54.627363,54.627307,54.627259,54.627246,54.627211,54.62717,54.627115,54.627106,54.627055,54.627048,54.62702,54.627003,54.626932,54.626839,54.626754,54.626678,54.626611,54.626544,54.626505,54.626459,54.626399,54.626356,54.626312,54.626272,54.626215,54.626159,54.626126,54.626088,54.626038,54.625993,54.625933,54.625909,54.625882,54.625847,54.625821,54.625735,54.625643,54.625576,54.625505,54.625448,54.625379,54.625332,54.625285,54.625207,54.625129,54.625032,54.624951,54.624901,54.624833,54.624766,54.624686,54.624647,54.624582,54.62454,54.624484,54.624423,54.624377,54.624326,54.624279,54.624258,54.624252,54.624179,54.624128,54.624082,54.624047,54.624029,54.624003,54.623987,54.623957,54.623911,54.623842,54.623818,54.623795,54.623767,54.623756,54.623765,54.623755,54.623749,54.623728,54.623699,54.623673,54.623642,54.623618,54.623593,54.623576,54.623546,54.623504,54.62345,54.6234,54.623357,54.623306,54.623242,54.623172,54.6231,54.623046,54.622994,54.62295,54.622919,54.622889,54.622866,54.622837,54.622805,54.622785,54.622773,54.622749,54.622724,54.62271,54.622679,54.622665,54.62264,54.622623,54.622619,54.622624,54.622636,54.622658,54.622682,54.62269,54.622686,54.622691,54.622705,54.622703,54.622663,54.622661,54.622669,54.622705,54.622681,54.622662,54.622624,54.622598,54.622573,54.622562,54.622539,54.622502,54.622473,54.622434,54.622406,54.622376,54.622337,54.622296,54.622246,54.622206,54.622156,54.622112,54.622073,54.622038,54.621995,54.621948,54.62192,54.621893,54.621868,54.621849,54.621829,54.621812,54.621786,54.621763,54.621741,54.62172,54.621699,54.621679,54.621656,54.621627,54.621591,54.621567,54.621516,54.621468,54.621531,54.621628,54.621724,54.621825,54.621924,54.622016,54.622092,54.622166,54.622224,54.622285,54.622352,54.62242,54.622487,54.62255,54.622631,54.622713,54.622799,54.622891,54.622987,54.623088,54.62318,54.62327,54.623364,54.623453,54.62352,54.623604,54.62371,54.623795,54.623884,54.623982,54.624081,54.624173,54.624142,54.624093,54.624102,54.62415,54.624196,54.624221,54.624216,54.624314,54.624408,54.624416,54.624518,54.624602,54.624707,54.624802,54.624888,54.62498,54.625077,54.62509,54.625188,54.625281,54.625377,54.625448,54.625518,54.625519,54.625518]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[54.621468,54.666799],"lng":[-2.400569,-2.082821]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-7-2" class="tab-pane" aria-labelledby="tabset-7-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb14-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-19"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_e242c8cc2d38ed59b8264d08f458818c {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_e242c8cc2d38ed59b8264d08f458818c&quot; ></div>
        
</body>
<script>
    
    
            var map_e242c8cc2d38ed59b8264d08f458818c = L.map(
                &quot;map_e242c8cc2d38ed59b8264d08f458818c&quot;,
                {
                    center: [54.64469887382651, -2.235693041682313],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_ae6c64eb6dd35de7f56f9f6bcfc66d8a = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_ae6c64eb6dd35de7f56f9f6bcfc66d8a.addTo(map_e242c8cc2d38ed59b8264d08f458818c);
        
    
            var tile_layer_0a7b0007844a83ab1e6bb8f185f86c06 = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_0a7b0007844a83ab1e6bb8f185f86c06.addTo(map_e242c8cc2d38ed59b8264d08f458818c);
        
    
            var color_line_814ff80ab76c9ed5d5fc1ac376ef64ee = L.featureGroup(
                {
}
            );
        
    
            var poly_line_f1f2b0c2e01497672a52b7724be241e7 = L.polyline(
                [[[54.629906, -2.400569], [54.629949, -2.400405]], [[54.629949, -2.400405], [54.629996, -2.400252]], [[54.630035, -2.399923], [54.630042, -2.399767]], [[54.630319, -2.3987], [54.630365, -2.398544]], [[54.630365, -2.398544], [54.630411, -2.398386]], [[54.630411, -2.398386], [54.630444, -2.398229]], [[54.630469, -2.398065], [54.630492, -2.3979]], [[54.630492, -2.3979], [54.630501, -2.397736]], [[54.630416, -2.396072], [54.630375, -2.395925]], [[54.630375, -2.395925], [54.630307, -2.395806]], [[54.630166, -2.395372], [54.6302, -2.395206]], [[54.6302, -2.395206], [54.630194, -2.395051]], [[54.630194, -2.395051], [54.630158, -2.394904]], [[54.630158, -2.394904], [54.630102, -2.394761]], [[54.629893, -2.393701], [54.629881, -2.393533]], [[54.629881, -2.393533], [54.629892, -2.393375]], [[54.629892, -2.393375], [54.629917, -2.393223]], [[54.629917, -2.393223], [54.62998, -2.393098]], [[54.62998, -2.393098], [54.63006, -2.393011]], [[54.63006, -2.393011], [54.630144, -2.392925]], [[54.630144, -2.392925], [54.630221, -2.392825]], [[54.630221, -2.392825], [54.630297, -2.392739]], [[54.630297, -2.392739], [54.630376, -2.392627]], [[54.630677, -2.392195], [54.630761, -2.392115]], [[54.630761, -2.392115], [54.630844, -2.392048]], [[54.630844, -2.392048], [54.630936, -2.391978]], [[54.630936, -2.391978], [54.631016, -2.3919]], [[54.631391, -2.391423], [54.63146, -2.39132]], [[54.63146, -2.39132], [54.631538, -2.391203]], [[54.631618, -2.391116], [54.631697, -2.391013]], [[54.631697, -2.391013], [54.631776, -2.390916]], [[54.631776, -2.390916], [54.63185, -2.390821]], [[54.631913, -2.390706], [54.631959, -2.390572]], [[54.631959, -2.390572], [54.632001, -2.390419]], [[54.632001, -2.390419], [54.632037, -2.390257]], [[54.632037, -2.390257], [54.632081, -2.390116]], [[54.632119, -2.389966], [54.632152, -2.389811]], [[54.632152, -2.389811], [54.632186, -2.389667]], [[54.632186, -2.389667], [54.632218, -2.3895]], [[54.632574, -2.387992], [54.632604, -2.387842]], [[54.632604, -2.387842], [54.632636, -2.38768]], [[54.632636, -2.38768], [54.63268, -2.387539]], [[54.632775, -2.387247], [54.632831, -2.387103]], [[54.632949, -2.386838], [54.633022, -2.386717]], [[54.633022, -2.386717], [54.633075, -2.38659]], [[54.633123, -2.386454], [54.63317, -2.386322]], [[54.633258, -2.386042], [54.633279, -2.385876]], [[54.633279, -2.385876], [54.633299, -2.385723]], [[54.633299, -2.385723], [54.63333, -2.385566]], [[54.63333, -2.385566], [54.633347, -2.385392]], [[54.633416, -2.385067], [54.633424, -2.384912]], [[54.633424, -2.384912], [54.633464, -2.38475]], [[54.633464, -2.38475], [54.633512, -2.384595]], [[54.633614, -2.384135], [54.633635, -2.383983]], [[54.633657, -2.383827], [54.633666, -2.383663]], [[54.633666, -2.383663], [54.633674, -2.38349]], [[54.633674, -2.38349], [54.633681, -2.38333]], [[54.633681, -2.38333], [54.633713, -2.38317]], [[54.633713, -2.38317], [54.633732, -2.383007]], [[54.633798, -2.381492], [54.633809, -2.381318]], [[54.633813, -2.380833], [54.633845, -2.380676]], [[54.633845, -2.380676], [54.633886, -2.380527]], [[54.633886, -2.380527], [54.633911, -2.380375]], [[54.633911, -2.380375], [54.633926, -2.380211]], [[54.633969, -2.379898], [54.634, -2.379751]], [[54.634059, -2.379432], [54.634092, -2.379286]], [[54.634133, -2.37896], [54.634166, -2.378805]], [[54.634166, -2.378805], [54.634181, -2.378651]], [[54.634181, -2.378651], [54.634186, -2.378479]], [[54.634186, -2.378479], [54.634199, -2.378313]], [[54.634199, -2.378313], [54.634206, -2.378154]], [[54.634206, -2.378154], [54.634214, -2.377988]], [[54.634214, -2.377988], [54.63422, -2.377832]], [[54.634281, -2.376502], [54.634302, -2.37634]], [[54.634302, -2.37634], [54.634316, -2.376177]], [[54.63435, -2.375839], [54.634356, -2.375672]], [[54.634356, -2.375672], [54.634368, -2.375513]], [[54.63441, -2.374545], [54.634408, -2.374386]], [[54.634408, -2.374386], [54.634409, -2.374216]], [[54.634409, -2.374216], [54.634388, -2.37405]], [[54.634384, -2.37373], [54.634403, -2.373556]], [[54.634403, -2.373556], [54.63441, -2.373397]], [[54.63441, -2.373397], [54.634422, -2.37323]], [[54.634698, -2.372411], [54.634733, -2.372256]], [[54.634733, -2.372256], [54.634742, -2.372085]], [[54.634742, -2.372085], [54.634729, -2.371917]], [[54.634745, -2.371758], [54.634763, -2.371594]], [[54.634763, -2.371594], [54.634791, -2.37144]], [[54.634876, -2.371153], [54.634909, -2.370991]], [[54.634942, -2.370661], [54.634967, -2.370493]], [[54.634967, -2.370493], [54.634996, -2.370329]], [[54.634996, -2.370329], [54.635034, -2.370186]], [[54.635128, -2.369909], [54.635167, -2.369747]], [[54.635167, -2.369747], [54.635192, -2.369577]], [[54.635192, -2.369577], [54.635205, -2.36941]], [[54.635205, -2.36941], [54.635205, -2.369249]], [[54.635205, -2.369249], [54.635206, -2.369082]], [[54.635206, -2.369082], [54.635171, -2.368928]], [[54.635171, -2.368928], [54.635167, -2.368756]], [[54.635167, -2.368756], [54.635176, -2.368583]], [[54.635176, -2.368583], [54.635155, -2.368425]], [[54.635155, -2.368425], [54.635171, -2.368259]], [[54.635171, -2.368259], [54.635189, -2.3681]], [[54.635189, -2.3681], [54.635193, -2.367932]], [[54.635193, -2.367932], [54.635182, -2.367764]], [[54.635182, -2.367764], [54.635196, -2.367604]], [[54.635196, -2.367604], [54.635166, -2.367441]], [[54.635166, -2.367441], [54.635161, -2.367274]], [[54.635161, -2.367274], [54.635154, -2.367118]], [[54.635154, -2.367118], [54.635162, -2.366944]], [[54.635162, -2.366944], [54.635157, -2.366787]], [[54.635157, -2.366787], [54.63517, -2.366622]], [[54.63517, -2.366622], [54.635207, -2.366465]], [[54.635207, -2.366465], [54.63525, -2.366311]], [[54.63525, -2.366311], [54.635297, -2.366174]], [[54.635297, -2.366174], [54.635351, -2.366033]], [[54.635351, -2.366033], [54.635391, -2.36588]], [[54.635391, -2.36588], [54.635407, -2.365713]], [[54.635407, -2.365713], [54.635418, -2.365542]], [[54.635418, -2.365542], [54.635428, -2.365367]], [[54.635403, -2.365058], [54.635392, -2.364898]], [[54.635422, -2.364406], [54.635425, -2.364239]], [[54.635411, -2.363974], [54.635429, -2.363822]], [[54.63587, -2.363006], [54.635885, -2.362833]], [[54.635885, -2.362833], [54.635875, -2.362666]], [[54.635887, -2.362335], [54.635889, -2.362171]], [[54.635889, -2.362171], [54.635851, -2.362021]], [[54.635851, -2.362021], [54.635843, -2.361859]], [[54.63585, -2.361528], [54.635841, -2.361371]], [[54.635841, -2.361371], [54.635829, -2.361196]], [[54.635829, -2.361196], [54.635813, -2.36102]], [[54.635813, -2.36102], [54.635789, -2.360846]], [[54.635789, -2.360846], [54.635772, -2.360672]], [[54.635705, -2.359837], [54.635695, -2.359677]], [[54.635695, -2.359677], [54.635705, -2.359517]], [[54.635705, -2.359517], [54.635702, -2.359352]], [[54.635702, -2.359352], [54.635722, -2.359184]], [[54.635722, -2.359184], [54.635699, -2.359012]], [[54.635699, -2.359012], [54.63568, -2.358839]], [[54.63568, -2.358839], [54.635714, -2.358688]], [[54.635719, -2.358367], [54.635702, -2.358205]], [[54.635702, -2.358205], [54.635688, -2.358039]], [[54.635688, -2.358039], [54.635664, -2.357887]], [[54.635664, -2.357887], [54.635702, -2.357731]], [[54.635702, -2.357731], [54.635691, -2.357573]], [[54.635691, -2.357573], [54.635705, -2.357408]], [[54.635735, -2.357244], [54.635727, -2.357081]], [[54.635727, -2.357081], [54.635722, -2.356923]], [[54.635722, -2.356923], [54.635711, -2.356768]], [[54.635711, -2.356768], [54.635703, -2.356599]], [[54.635692, -2.356266], [54.63569, -2.356109]], [[54.63569, -2.356109], [54.635645, -2.355957]], [[54.635645, -2.355957], [54.635653, -2.355799]], [[54.635653, -2.355799], [54.635654, -2.355633]], [[54.635654, -2.355633], [54.635654, -2.35546]], [[54.635654, -2.35546], [54.635655, -2.355288]], [[54.635655, -2.355288], [54.635666, -2.355126]], [[54.635666, -2.355126], [54.635686, -2.354957]], [[54.635686, -2.354957], [54.635709, -2.354793]], [[54.635709, -2.354793], [54.635734, -2.354624]], [[54.635763, -2.354464], [54.635754, -2.354306]], [[54.635723, -2.353975], [54.635734, -2.353804]], [[54.635734, -2.353804], [54.635733, -2.353638]], [[54.635733, -2.353638], [54.63576, -2.353479]], [[54.63576, -2.353479], [54.635781, -2.35332]], [[54.635781, -2.35332], [54.635804, -2.353164]], [[54.635804, -2.353164], [54.635799, -2.352987]], [[54.635748, -2.352655], [54.635801, -2.352505]], [[54.635856, -2.352192], [54.635819, -2.352038]], [[54.635797, -2.351866], [54.635797, -2.351699]], [[54.635797, -2.351699], [54.635854, -2.351573]], [[54.635818, -2.350761], [54.635887, -2.350648]], [[54.635887, -2.350648], [54.635909, -2.350487]], [[54.635909, -2.350487], [54.635878, -2.350342]], [[54.635878, -2.350342], [54.635887, -2.350184]], [[54.635887, -2.350184], [54.63589, -2.350018]], [[54.63589, -2.350018], [54.635901, -2.349855]], [[54.635901, -2.349855], [54.635924, -2.349704]], [[54.635924, -2.349704], [54.635916, -2.349541]], [[54.635947, -2.349214], [54.635983, -2.349059]], [[54.635983, -2.349059], [54.636032, -2.348922]], [[54.636032, -2.348922], [54.636098, -2.34879]], [[54.636098, -2.34879], [54.636174, -2.348683]], [[54.636174, -2.348683], [54.636256, -2.348603]], [[54.636256, -2.348603], [54.636247, -2.348442]], [[54.636247, -2.348442], [54.636203, -2.348305]], [[54.636203, -2.348305], [54.636222, -2.348149]], [[54.636377, -2.347872], [54.636438, -2.347742]], [[54.636438, -2.347742], [54.636498, -2.347614]], [[54.636498, -2.347614], [54.636546, -2.347473]], [[54.636622, -2.347187], [54.636686, -2.347058]], [[54.636982, -2.346075], [54.637006, -2.34591]], [[54.637006, -2.34591], [54.637065, -2.345784]], [[54.637065, -2.345784], [54.637138, -2.345671]], [[54.637138, -2.345671], [54.637174, -2.345523]], [[54.637174, -2.345523], [54.637225, -2.345378]], [[54.637225, -2.345378], [54.637284, -2.345248]], [[54.637284, -2.345248], [54.637311, -2.345087]], [[54.637311, -2.345087], [54.637325, -2.344925]], [[54.637325, -2.344925], [54.637363, -2.344765]], [[54.637363, -2.344765], [54.637412, -2.344625]], [[54.637412, -2.344625], [54.637451, -2.344465]], [[54.637451, -2.344465], [54.6375, -2.344321]], [[54.6375, -2.344321], [54.637561, -2.34419]], [[54.637561, -2.34419], [54.637601, -2.344027]], [[54.637601, -2.344027], [54.637563, -2.343867]], [[54.637563, -2.343867], [54.637571, -2.343708]], [[54.637583, -2.343366], [54.637595, -2.343208]], [[54.637595, -2.343208], [54.637596, -2.343053]], [[54.637596, -2.343053], [54.637596, -2.342893]], [[54.637588, -2.342736], [54.637573, -2.342583]], [[54.637599, -2.34208], [54.637616, -2.341911]], [[54.637616, -2.341911], [54.637608, -2.34174]], [[54.637608, -2.34174], [54.637595, -2.341564]], [[54.637595, -2.341564], [54.637577, -2.341408]], [[54.637573, -2.341077], [54.637571, -2.340913]], [[54.637571, -2.340913], [54.637548, -2.340747]], [[54.637548, -2.340747], [54.637566, -2.340578]], [[54.637863, -2.338679], [54.63791, -2.338527]], [[54.63791, -2.338527], [54.637955, -2.338377]], [[54.637955, -2.338377], [54.638011, -2.338231]], [[54.638011, -2.338231], [54.638007, -2.338066]], [[54.638007, -2.338066], [54.638018, -2.337898]], [[54.638018, -2.337898], [54.638053, -2.337753]], [[54.638407, -2.336831], [54.638435, -2.336665]], [[54.638435, -2.336665], [54.638455, -2.336512]], [[54.638644, -2.335237], [54.638669, -2.335068]], [[54.638669, -2.335068], [54.638688, -2.334896]], [[54.638688, -2.334896], [54.638712, -2.334741]], [[54.639803, -2.330991], [54.639837, -2.330847]], [[54.639837, -2.330847], [54.639876, -2.330682]], [[54.639956, -2.330378], [54.639981, -2.330211]], [[54.639981, -2.330211], [54.640033, -2.330083]], [[54.640285, -2.328848], [54.640296, -2.328687]], [[54.640296, -2.328687], [54.640288, -2.328531]], [[54.640288, -2.328531], [54.64028, -2.328366]], [[54.640225, -2.327879], [54.640205, -2.327722]], [[54.640205, -2.327722], [54.640212, -2.327566]], [[54.640392, -2.326298], [54.640427, -2.326135]], [[54.640427, -2.326135], [54.640423, -2.325977]], [[54.64042, -2.325817], [54.640431, -2.325647]], [[54.640431, -2.325647], [54.640449, -2.325491]], [[54.640449, -2.325491], [54.640469, -2.325324]], [[54.640469, -2.325324], [54.640492, -2.325166]], [[54.640506, -2.324844], [54.640535, -2.324692]], [[54.64053, -2.319688], [54.64051, -2.319524]], [[54.64051, -2.319524], [54.640515, -2.319369]], [[54.640515, -2.319369], [54.640532, -2.319209]], [[54.640532, -2.319209], [54.640539, -2.319047]], [[54.640538, -2.318535], [54.640546, -2.31838]], [[54.640546, -2.31838], [54.640532, -2.318218]], [[54.64089, -2.317044], [54.640981, -2.317028]], [[54.640981, -2.317028], [54.641071, -2.317005]], [[54.641071, -2.317005], [54.641153, -2.31691]], [[54.641182, -2.316598], [54.641252, -2.316471]], [[54.641586, -2.315331], [54.64164, -2.315186]], [[54.642619, -2.313282], [54.642661, -2.313125]], [[54.642831, -2.31254], [54.642898, -2.312412]], [[54.642898, -2.312412], [54.642984, -2.312344]], [[54.642984, -2.312344], [54.643078, -2.312323]], [[54.643489, -2.31195], [54.643553, -2.311833]], [[54.643553, -2.311833], [54.643603, -2.311688]], [[54.643603, -2.311688], [54.643639, -2.311536]], [[54.643639, -2.311536], [54.643674, -2.311383]], [[54.643934, -2.310649], [54.643991, -2.310527]], [[54.643991, -2.310527], [54.64407, -2.310604]], [[54.644072, -2.309105], [54.644122, -2.30896]], [[54.644122, -2.30896], [54.644189, -2.308849]], [[54.644189, -2.308849], [54.644245, -2.308721]], [[54.644321, -2.308408], [54.644368, -2.308259]], [[54.645157, -2.305923], [54.645219, -2.305799]], [[54.645615, -2.304831], [54.645709, -2.304819]], [[54.645709, -2.304819], [54.645804, -2.304871]], [[54.645804, -2.304871], [54.6459, -2.304919]], [[54.6459, -2.304919], [54.645985, -2.304985]], [[54.646244, -2.305198], [54.646334, -2.305219]], [[54.646334, -2.305219], [54.646404, -2.305121]], [[54.646404, -2.305121], [54.646437, -2.304966]], [[54.646437, -2.304966], [54.646448, -2.304805]], [[54.647058, -2.303158], [54.64713, -2.303035]], [[54.64713, -2.303035], [54.64721, -2.302955]], [[54.647439, -2.302698], [54.647516, -2.302585]], [[54.647516, -2.302585], [54.647596, -2.302502]], [[54.647596, -2.302502], [54.647682, -2.302453]], [[54.647682, -2.302453], [54.647773, -2.302411]], [[54.647773, -2.302411], [54.647849, -2.302304]], [[54.647849, -2.302304], [54.647909, -2.302161]], [[54.647909, -2.302161], [54.647952, -2.302023]], [[54.647998, -2.301887], [54.648018, -2.301718]], [[54.648018, -2.301718], [54.64805, -2.301552]], [[54.64805, -2.301552], [54.648092, -2.301393]], [[54.648092, -2.301393], [54.648134, -2.301243]], [[54.648134, -2.301243], [54.648189, -2.301115]], [[54.648232, -2.300974], [54.648277, -2.300817]], [[54.648277, -2.300817], [54.648316, -2.300653]], [[54.648316, -2.300653], [54.648363, -2.300519]], [[54.649174, -2.298742], [54.649247, -2.298636]], [[54.649247, -2.298636], [54.649326, -2.298528]], [[54.649326, -2.298528], [54.649398, -2.298432]], [[54.649398, -2.298432], [54.649468, -2.298333]], [[54.650184, -2.296851], [54.650199, -2.296681]], [[54.650199, -2.296681], [54.650205, -2.296501]], [[54.650603, -2.294904], [54.650587, -2.294733]], [[54.650587, -2.294733], [54.650556, -2.294567]], [[54.650556, -2.294567], [54.65053, -2.294403]], [[54.65053, -2.294403], [54.650522, -2.294244]], [[54.650538, -2.294085], [54.650571, -2.293926]], [[54.650571, -2.293926], [54.650611, -2.293763]], [[54.650611, -2.293763], [54.650654, -2.293604]], [[54.650654, -2.293604], [54.650697, -2.293467]], [[54.650697, -2.293467], [54.65074, -2.293327]], [[54.650787, -2.293193], [54.650833, -2.293051]], [[54.650915, -2.292761], [54.650969, -2.292611]], [[54.650969, -2.292611], [54.651019, -2.292463]], [[54.651288, -2.291782], [54.651351, -2.291643]], [[54.651351, -2.291643], [54.651413, -2.291526]], [[54.651478, -2.291219], [54.651438, -2.291071]], [[54.651438, -2.291071], [54.651434, -2.290898]], [[54.651434, -2.290898], [54.651443, -2.290741]], [[54.652069, -2.291312], [54.652163, -2.291342]], [[54.652352, -2.291343], [54.652445, -2.291333]], [[54.652646, -2.291243], [54.65273, -2.29117]], [[54.65273, -2.29117], [54.652809, -2.291071]], [[54.653586, -2.289312], [54.653505, -2.28924]], [[54.653346, -2.289069], [54.653256, -2.289014]], [[54.6511, -2.288607], [54.651042, -2.288484]], [[54.651042, -2.288484], [54.650998, -2.288333]], [[54.650998, -2.288333], [54.650998, -2.288171]], [[54.650998, -2.288171], [54.650989, -2.288007]], [[54.650989, -2.288007], [54.650955, -2.287861]], [[54.650955, -2.287861], [54.650936, -2.287694]], [[54.650896, -2.287367], [54.650838, -2.287235]], [[54.650838, -2.287235], [54.650792, -2.287084]], [[54.650541, -2.28557], [54.65052, -2.285399]], [[54.65052, -2.285399], [54.650518, -2.285231]], [[54.650518, -2.285231], [54.650455, -2.285095]], [[54.650455, -2.285095], [54.650471, -2.284926]], [[54.650164, -2.284163], [54.650151, -2.284001]], [[54.649678, -2.283394], [54.649591, -2.283324]], [[54.649377, -2.283073], [54.649288, -2.28303]], [[54.649288, -2.28303], [54.64919, -2.283032]], [[54.649092, -2.283016], [54.649005, -2.28294]], [[54.649005, -2.28294], [54.648925, -2.282848]], [[54.648925, -2.282848], [54.648853, -2.282737]], [[54.648853, -2.282737], [54.648765, -2.282666]], [[54.648765, -2.282666], [54.648689, -2.282581]], [[54.648617, -2.28248], [54.648556, -2.282335]], [[54.648518, -2.282185], [54.64844, -2.28208]], [[54.64844, -2.28208], [54.648383, -2.281937]], [[54.648206, -2.281549], [54.648172, -2.281405]], [[54.648172, -2.281405], [54.648146, -2.281238]], [[54.648146, -2.281238], [54.648116, -2.281081]], [[54.648116, -2.281081], [54.648084, -2.280919]], [[54.648084, -2.280919], [54.64807, -2.280751]], [[54.64807, -2.280751], [54.648035, -2.280586]], [[54.647987, -2.280439], [54.647956, -2.280291]], [[54.647956, -2.280291], [54.647922, -2.280134]], [[54.647798, -2.279363], [54.647775, -2.279208]], [[54.647775, -2.279208], [54.647759, -2.279044]], [[54.647755, -2.278792], [54.647769, -2.278621]], [[54.647665, -2.277653], [54.647649, -2.27749]], [[54.647649, -2.27749], [54.647653, -2.277329]], [[54.647676, -2.277006], [54.64765, -2.27684]], [[54.64765, -2.27684], [54.647682, -2.276683]], [[54.647748, -2.276379], [54.647802, -2.276231]], [[54.647802, -2.276231], [54.64782, -2.276073]], [[54.64782, -2.276073], [54.647807, -2.275905]], [[54.647807, -2.275905], [54.647807, -2.27573]], [[54.647799, -2.27555], [54.64779, -2.275384]], [[54.647748, -2.27523], [54.64778, -2.275084]], [[54.64778, -2.275084], [54.647761, -2.274931]], [[54.647761, -2.274931], [54.647772, -2.274773]], [[54.647772, -2.274773], [54.647797, -2.274609]], [[54.647797, -2.274609], [54.647794, -2.27445]], [[54.647795, -2.274266], [54.647856, -2.274152]], [[54.647897, -2.273999], [54.647906, -2.273836]], [[54.647981, -2.273377], [54.648009, -2.27322]], [[54.648095, -2.272588], [54.648113, -2.272424]], [[54.648113, -2.272424], [54.648122, -2.272243]], [[54.648122, -2.272243], [54.64818, -2.272106]], [[54.64818, -2.272106], [54.648217, -2.271957]], [[54.648217, -2.271957], [54.648201, -2.2718]], [[54.648201, -2.2718], [54.648263, -2.271685]], [[54.648263, -2.271685], [54.648215, -2.271532]], [[54.648215, -2.271532], [54.648203, -2.271354]], [[54.648203, -2.271354], [54.648217, -2.2712]], [[54.648217, -2.2712], [54.648284, -2.271075]], [[54.648284, -2.271075], [54.648342, -2.270927]], [[54.648342, -2.270927], [54.648384, -2.270786]], [[54.648384, -2.270786], [54.648423, -2.270629]], [[54.648423, -2.270629], [54.648418, -2.270461]], [[54.648418, -2.270461], [54.648412, -2.270295]], [[54.648443, -2.270148], [54.648473, -2.26998]], [[54.648473, -2.26998], [54.648505, -2.269824]], [[54.648505, -2.269824], [54.648505, -2.26965]], [[54.64854, -2.269479], [54.648518, -2.269333]], [[54.648557, -2.26918], [54.648585, -2.269008]], [[54.648871, -2.268156], [54.648897, -2.267996]], [[54.64909, -2.267425], [54.649141, -2.26729]], [[54.649141, -2.26729], [54.64921, -2.26717]], [[54.649319, -2.266896], [54.649349, -2.266746]], [[54.649349, -2.266746], [54.649429, -2.266671]], [[54.649746, -2.266302], [54.649776, -2.266155]], [[54.649776, -2.266155], [54.649855, -2.266064]], [[54.649855, -2.266064], [54.6499, -2.26592]], [[54.6499, -2.26592], [54.649971, -2.265821]], [[54.649971, -2.265821], [54.650043, -2.26572]], [[54.650043, -2.26572], [54.650121, -2.26561]], [[54.650121, -2.26561], [54.650187, -2.265501]], [[54.650187, -2.265501], [54.650275, -2.265428]], [[54.650369, -2.265357], [54.650426, -2.265227]], [[54.650426, -2.265227], [54.650482, -2.265076]], [[54.650542, -2.264943], [54.650575, -2.264785]], [[54.651319, -2.263207], [54.651394, -2.263092]], [[54.651394, -2.263092], [54.651441, -2.262947]], [[54.651441, -2.262947], [54.651524, -2.262862]], [[54.651676, -2.262653], [54.651761, -2.262602]], [[54.651761, -2.262602], [54.651803, -2.262453]], [[54.652106, -2.262038], [54.652165, -2.261919]], [[54.652295, -2.261669], [54.652353, -2.261534]], [[54.652563, -2.26106], [54.652615, -2.260918]], [[54.652872, -2.260673], [54.652947, -2.260581]], [[54.652947, -2.260581], [54.653038, -2.260512]], [[54.653038, -2.260512], [54.653123, -2.260437]], [[54.653123, -2.260437], [54.653211, -2.260375]], [[54.653211, -2.260375], [54.653301, -2.260329]], [[54.653301, -2.260329], [54.653394, -2.260294]], [[54.654003, -2.259812], [54.654097, -2.259766]], [[54.6552, -2.259254], [54.655293, -2.259237]], [[54.655293, -2.259237], [54.655384, -2.259234]], [[54.65557, -2.259217], [54.655668, -2.259184]], [[54.655668, -2.259184], [54.655769, -2.259167]], [[54.656155, -2.259049], [54.656229, -2.258949]], [[54.656826, -2.258887], [54.656912, -2.25882]], [[54.656912, -2.25882], [54.657002, -2.258757]], [[54.657002, -2.258757], [54.65709, -2.258699]], [[54.65709, -2.258699], [54.657186, -2.258664]], [[54.657359, -2.258542], [54.657461, -2.258482]], [[54.657823, -2.258262], [54.657896, -2.258159]], [[54.657896, -2.258159], [54.657989, -2.258122]], [[54.657989, -2.258122], [54.658076, -2.258046]], [[54.658076, -2.258046], [54.658148, -2.257951]], [[54.658949, -2.257308], [54.659033, -2.257247]], [[54.659313, -2.257022], [54.659405, -2.256932]], [[54.660432, -2.256073], [54.660519, -2.255987]], [[54.66075, -2.2557], [54.660799, -2.255566]], [[54.661398, -2.25473], [54.661454, -2.254601]], [[54.661681, -2.254303], [54.661703, -2.254141]], [[54.661857, -2.253719], [54.661905, -2.253572]], [[54.661905, -2.253572], [54.661969, -2.253435]], [[54.661969, -2.253435], [54.662034, -2.253298]], [[54.662388, -2.252143], [54.662403, -2.251985]], [[54.662532, -2.25153], [54.662572, -2.251386]], [[54.662572, -2.251386], [54.662631, -2.251244]], [[54.662722, -2.250964], [54.662758, -2.250802]], [[54.662826, -2.2505], [54.662852, -2.250347]], [[54.662852, -2.250347], [54.662854, -2.250188]], [[54.662921, -2.249709], [54.66294, -2.249552]], [[54.663005, -2.249074], [54.663034, -2.248919]], [[54.663034, -2.248919], [54.663066, -2.24876]], [[54.663182, -2.2483], [54.663208, -2.24815]], [[54.663208, -2.24815], [54.663255, -2.248013]], [[54.663255, -2.248013], [54.663288, -2.247858]], [[54.663288, -2.247858], [54.663339, -2.247704]], [[54.663339, -2.247704], [54.663408, -2.247595]], [[54.663408, -2.247595], [54.663455, -2.247451]], [[54.66348, -2.247135], [54.66351, -2.246978]], [[54.66351, -2.246978], [54.663553, -2.246822]], [[54.663553, -2.246822], [54.663607, -2.246684]], [[54.663803, -2.24543], [54.663836, -2.245255]], [[54.663896, -2.244561], [54.663902, -2.244387]], [[54.663902, -2.244387], [54.663903, -2.24423]], [[54.663886, -2.244058], [54.663872, -2.243888]], [[54.663355, -2.242313], [54.663269, -2.242242]], [[54.663269, -2.242242], [54.663212, -2.242115]], [[54.66307, -2.241919], [54.663, -2.24182]], [[54.663, -2.24182], [54.662914, -2.241755]], [[54.663039, -2.241529], [54.663088, -2.241392]], [[54.663088, -2.241392], [54.663127, -2.241245]], [[54.663127, -2.241245], [54.663147, -2.241085]], [[54.663147, -2.241085], [54.663202, -2.240948]], [[54.663202, -2.240948], [54.663246, -2.240803]], [[54.663246, -2.240803], [54.663284, -2.240654]], [[54.663284, -2.240654], [54.663294, -2.240481]], [[54.66325, -2.240162], [54.66322, -2.239999]], [[54.66322, -2.239999], [54.663195, -2.239844]], [[54.663195, -2.239844], [54.663167, -2.239692]], [[54.663167, -2.239692], [54.663157, -2.239529]], [[54.663103, -2.239403], [54.663092, -2.239231]], [[54.663067, -2.239067], [54.663041, -2.238905]], [[54.662982, -2.238597], [54.662945, -2.238449]], [[54.662945, -2.238449], [54.662911, -2.238303]], [[54.662911, -2.238303], [54.662872, -2.238158]], [[54.662872, -2.238158], [54.662832, -2.238004]], [[54.662832, -2.238004], [54.662797, -2.237844]], [[54.662797, -2.237844], [54.662758, -2.237701]], [[54.662758, -2.237701], [54.662707, -2.237552]], [[54.662707, -2.237552], [54.662671, -2.237409]], [[54.662671, -2.237409], [54.66262, -2.237274]], [[54.66262, -2.237274], [54.662571, -2.237124]], [[54.662538, -2.236962], [54.662496, -2.236815]], [[54.662496, -2.236815], [54.662463, -2.236653]], [[54.662424, -2.236503], [54.662386, -2.236356]], [[54.662386, -2.236356], [54.662333, -2.236218]], [[54.662333, -2.236218], [54.662278, -2.236088]], [[54.662131, -2.235311], [54.662107, -2.235159]], [[54.662107, -2.235159], [54.662091, -2.234996]], [[54.662058, -2.234677], [54.662041, -2.234508]], [[54.662041, -2.234508], [54.662019, -2.234344]], [[54.662019, -2.234344], [54.662003, -2.234183]], [[54.662003, -2.234183], [54.661997, -2.23402]], [[54.661948, -2.233377], [54.661927, -2.233225]], [[54.661927, -2.233225], [54.661895, -2.233069]], [[54.661895, -2.233069], [54.661869, -2.232903]], [[54.661869, -2.232903], [54.661829, -2.232741]], [[54.661829, -2.232741], [54.661754, -2.232638]], [[54.661565, -2.232515], [54.661496, -2.232406]], [[54.661454, -2.232089], [54.661456, -2.231928]], [[54.661456, -2.231928], [54.661465, -2.231754]], [[54.661465, -2.231754], [54.66148, -2.231597]], [[54.66148, -2.231597], [54.661503, -2.231427]], [[54.661503, -2.231427], [54.661546, -2.231275]], [[54.661546, -2.231275], [54.661577, -2.231123]], [[54.661612, -2.230973], [54.661641, -2.230818]], [[54.661641, -2.230818], [54.661676, -2.230662]], [[54.661676, -2.230662], [54.661722, -2.230511]], [[54.66177, -2.230375], [54.661821, -2.230247]], [[54.661821, -2.230247], [54.661903, -2.230153]], [[54.661903, -2.230153], [54.661993, -2.230135]], [[54.662177, -2.230044], [54.662259, -2.229972]], [[54.662259, -2.229972], [54.662346, -2.229896]], [[54.662346, -2.229896], [54.662431, -2.22983]], [[54.662431, -2.22983], [54.662513, -2.22974]], [[54.662646, -2.229366], [54.662722, -2.229276]], [[54.662722, -2.229276], [54.662778, -2.229143]], [[54.662778, -2.229143], [54.662826, -2.229]], [[54.662874, -2.22885], [54.662913, -2.228706]], [[54.662913, -2.228706], [54.66294, -2.228557]], [[54.663319, -2.227756], [54.663399, -2.227642]], [[54.663399, -2.227642], [54.663465, -2.227529]], [[54.663741, -2.227069], [54.66382, -2.226986]], [[54.66382, -2.226986], [54.66391, -2.226988]], [[54.66391, -2.226988], [54.66399, -2.227098]], [[54.66399, -2.227098], [54.664073, -2.227189]], [[54.664073, -2.227189], [54.664148, -2.227287]], [[54.664148, -2.227287], [54.664207, -2.227407]], [[54.664207, -2.227407], [54.664264, -2.227533]], [[54.664326, -2.227655], [54.664379, -2.227792]], [[54.664379, -2.227792], [54.664445, -2.227923]], [[54.664445, -2.227923], [54.664486, -2.228074]], [[54.664486, -2.228074], [54.664532, -2.228213]], [[54.664532, -2.228213], [54.664611, -2.228298]], [[54.664787, -2.2284], [54.664866, -2.228489]], [[54.664866, -2.228489], [54.664955, -2.228553]], [[54.665231, -2.228612], [54.665331, -2.228631]], [[54.665428, -2.228659], [54.665515, -2.228614]], [[54.665515, -2.228614], [54.665593, -2.228512]], [[54.665749, -2.228329], [54.665828, -2.228234]], [[54.665828, -2.228234], [54.665917, -2.228155]], [[54.665999, -2.228091], [54.66609, -2.228025]], [[54.666685, -2.227218], [54.666768, -2.227116]], [[54.666768, -2.227116], [54.666799, -2.226954]], [[54.666799, -2.226954], [54.666793, -2.22679]], [[54.66657, -2.226701], [54.666475, -2.226751]], [[54.666475, -2.226751], [54.666385, -2.226811]], [[54.666232, -2.226903], [54.666133, -2.226917]], [[54.665685, -2.226688], [54.665606, -2.22659]], [[54.665606, -2.22659], [54.665543, -2.226478]], [[54.665322, -2.226149], [54.665232, -2.226082]], [[54.665232, -2.226082], [54.665145, -2.226005]], [[54.664973, -2.225851], [54.664894, -2.225747]], [[54.664894, -2.225747], [54.664829, -2.22562]], [[54.664774, -2.225497], [54.664715, -2.225359]], [[54.664715, -2.225359], [54.664653, -2.225235]], [[54.664653, -2.225235], [54.664584, -2.225129]], [[54.664584, -2.225129], [54.664511, -2.225011]], [[54.664511, -2.225011], [54.664453, -2.224889]], [[54.664453, -2.224889], [54.664372, -2.224793]], [[54.664372, -2.224793], [54.664282, -2.224724]], [[54.664282, -2.224724], [54.664186, -2.224661]], [[54.664186, -2.224661], [54.664089, -2.224615]], [[54.663997, -2.224568], [54.663907, -2.224528]], [[54.663907, -2.224528], [54.663817, -2.224483]], [[54.663817, -2.224483], [54.663728, -2.224431]], [[54.663728, -2.224431], [54.66364, -2.224367]], [[54.66364, -2.224367], [54.663549, -2.224324]], [[54.663389, -2.224173], [54.663309, -2.224075]], [[54.662751, -2.222747], [54.662723, -2.222586]], [[54.662723, -2.222586], [54.662693, -2.222429]], [[54.662693, -2.222429], [54.662665, -2.222261]], [[54.662665, -2.222261], [54.662632, -2.222104]], [[54.662632, -2.222104], [54.6626, -2.221951]], [[54.66231, -2.220506], [54.662244, -2.220386]], [[54.662244, -2.220386], [54.662187, -2.220255]], [[54.662187, -2.220255], [54.662135, -2.220121]], [[54.661938, -2.219754], [54.661892, -2.219621]], [[54.661892, -2.219621], [54.661854, -2.219477]], [[54.661854, -2.219477], [54.6618, -2.21934]], [[54.66171, -2.219059], [54.661652, -2.218928]], [[54.661652, -2.218928], [54.661615, -2.218763]], [[54.661496, -2.218528], [54.661441, -2.2184]], [[54.661441, -2.2184], [54.661368, -2.21829]], [[54.661368, -2.21829], [54.661303, -2.218167]], [[54.661235, -2.218048], [54.661199, -2.2179]], [[54.661199, -2.2179], [54.661143, -2.217776]], [[54.660812, -2.216926], [54.660767, -2.216787]], [[54.660767, -2.216787], [54.660726, -2.216629]], [[54.660075, -2.215978], [54.659986, -2.215914]], [[54.659759, -2.215622], [54.659688, -2.215503]], [[54.659616, -2.215402], [54.659534, -2.215322]], [[54.659534, -2.215322], [54.659445, -2.215252]], [[54.65928, -2.215099], [54.659218, -2.215225]], [[54.658505, -2.215303], [54.658414, -2.215231]], [[54.658414, -2.215231], [54.658321, -2.215162]], [[54.658321, -2.215162], [54.658227, -2.215101]], [[54.658227, -2.215101], [54.658141, -2.215038]], [[54.657414, -2.21456], [54.657317, -2.214553]], [[54.657317, -2.214553], [54.657218, -2.2146]], [[54.657021, -2.214536], [54.656934, -2.214584]], [[54.656934, -2.214584], [54.656849, -2.214677]], [[54.656849, -2.214677], [54.656788, -2.214797]], [[54.656655, -2.215057], [54.656578, -2.215156]], [[54.656578, -2.215156], [54.656482, -2.215148]], [[54.656482, -2.215148], [54.656398, -2.215073]], [[54.656044, -2.214925], [54.655956, -2.214835]], [[54.655956, -2.214835], [54.655867, -2.21477]], [[54.655616, -2.215019], [54.655515, -2.215027]], [[54.655226, -2.215125], [54.655129, -2.215096]], [[54.655129, -2.215096], [54.655037, -2.215056]], [[54.655037, -2.215056], [54.654945, -2.215026]], [[54.654588, -2.214933], [54.654495, -2.214939]], [[54.653571, -2.214767], [54.65348, -2.21476]], [[54.65348, -2.21476], [54.65339, -2.214815]], [[54.65339, -2.214815], [54.653301, -2.214874]], [[54.653077, -2.215076], [54.652989, -2.215146]], [[54.652989, -2.215146], [54.652894, -2.215219]], [[54.652807, -2.215259], [54.652718, -2.215328]], [[54.652718, -2.215328], [54.652627, -2.215405]], [[54.652627, -2.215405], [54.652549, -2.215504]], [[54.652549, -2.215504], [54.652473, -2.215609]], [[54.652473, -2.215609], [54.652391, -2.215701]], [[54.652391, -2.215701], [54.652311, -2.215787]], [[54.65188, -2.216171], [54.651795, -2.216229]], [[54.651795, -2.216229], [54.651709, -2.21628]], [[54.651709, -2.21628], [54.651617, -2.216338]], [[54.651617, -2.216338], [54.651523, -2.216381]], [[54.651523, -2.216381], [54.651434, -2.216417]], [[54.651434, -2.216417], [54.651341, -2.216457]], [[54.651256, -2.216502], [54.65116, -2.216541]], [[54.650879, -2.216546], [54.65079, -2.216507]], [[54.650699, -2.216439], [54.650603, -2.216435]], [[54.650603, -2.216435], [54.650514, -2.216374]], [[54.650514, -2.216374], [54.650411, -2.21637]], [[54.650411, -2.21637], [54.650319, -2.216386]], [[54.650146, -2.216242], [54.650053, -2.216173]], [[54.650053, -2.216173], [54.649957, -2.216152]], [[54.649775, -2.216081], [54.649691, -2.216024]], [[54.649509, -2.215921], [54.649432, -2.215821]], [[54.649432, -2.215821], [54.649353, -2.215737]], [[54.649353, -2.215737], [54.649287, -2.215615]], [[54.649287, -2.215615], [54.649235, -2.215471]], [[54.649235, -2.215471], [54.649189, -2.215324]], [[54.649189, -2.215324], [54.649142, -2.215189]], [[54.649083, -2.214892], [54.649043, -2.214729]], [[54.649043, -2.214729], [54.649009, -2.214582]], [[54.648974, -2.214436], [54.648929, -2.214277]], [[54.648929, -2.214277], [54.648849, -2.214181]], [[54.648849, -2.214181], [54.648773, -2.214092]], [[54.648856, -2.213791], [54.64885, -2.21362]], [[54.64885, -2.21362], [54.648814, -2.213474]], [[54.648814, -2.213474], [54.648786, -2.213305]], [[54.648786, -2.213305], [54.648765, -2.213147]], [[54.648765, -2.213147], [54.648742, -2.212975]], [[54.648687, -2.212234], [54.648637, -2.212097]], [[54.648637, -2.212097], [54.648604, -2.211942]], [[54.648604, -2.211942], [54.648569, -2.211776]], [[54.648569, -2.211776], [54.64854, -2.211602]], [[54.64854, -2.211602], [54.648514, -2.211447]], [[54.648514, -2.211447], [54.648513, -2.211288]], [[54.648513, -2.211288], [54.648495, -2.211117]], [[54.64846, -2.210956], [54.648376, -2.210872]], [[54.648306, -2.210771], [54.648257, -2.210631]], [[54.648202, -2.210483], [54.648154, -2.210338]], [[54.648154, -2.210338], [54.648076, -2.210256]], [[54.647843, -2.209056], [54.64788, -2.208888]], [[54.647759, -2.208637], [54.64776, -2.208477]], [[54.647713, -2.208165], [54.647744, -2.207999]], [[54.647687, -2.207344], [54.647693, -2.207174]], [[54.647693, -2.207174], [54.647643, -2.207021]], [[54.647643, -2.207021], [54.647575, -2.206911]], [[54.647575, -2.206911], [54.647575, -2.206746]], [[54.647575, -2.206746], [54.647583, -2.206589]], [[54.647612, -2.205934], [54.647553, -2.205808]], [[54.647553, -2.205808], [54.647475, -2.20571]], [[54.647475, -2.20571], [54.647453, -2.205549]], [[54.647453, -2.205549], [54.647453, -2.205392]], [[54.647453, -2.205392], [54.647435, -2.205218]], [[54.647435, -2.205218], [54.647435, -2.205046]], [[54.647435, -2.205046], [54.647381, -2.20491]], [[54.647381, -2.20491], [54.647349, -2.20476]], [[54.647349, -2.20476], [54.647358, -2.204602]], [[54.647358, -2.204602], [54.647358, -2.204435]], [[54.647358, -2.204435], [54.647339, -2.204274]], [[54.647367, -2.203765], [54.647378, -2.203598]], [[54.647378, -2.203598], [54.64738, -2.203435]], [[54.647376, -2.203274], [54.647362, -2.203115]], [[54.647362, -2.203115], [54.647363, -2.202945]], [[54.647363, -2.202945], [54.647359, -2.202782]], [[54.647359, -2.202782], [54.647365, -2.202624]], [[54.647359, -2.20212], [54.647367, -2.201958]], [[54.647367, -2.201958], [54.647331, -2.201796]], [[54.647331, -2.201796], [54.647321, -2.20164]], [[54.64731, -2.201149], [54.647317, -2.200972]], [[54.647317, -2.200972], [54.647334, -2.200813]], [[54.647334, -2.200813], [54.647325, -2.200654]], [[54.647343, -2.200155], [54.647352, -2.199987]], [[54.647352, -2.199987], [54.647352, -2.199831]], [[54.647365, -2.199509], [54.647361, -2.199335]], [[54.647333, -2.199018], [54.64731, -2.198852]], [[54.64731, -2.198852], [54.647261, -2.198721]], [[54.647187, -2.198418], [54.647171, -2.198254]], [[54.647171, -2.198254], [54.647157, -2.198097]], [[54.647144, -2.197287], [54.647138, -2.197121]], [[54.647138, -2.197121], [54.647126, -2.196951]], [[54.647126, -2.196951], [54.647123, -2.196795]], [[54.64711, -2.195967], [54.647117, -2.195795]], [[54.64712, -2.195461], [54.647141, -2.195292]], [[54.647141, -2.195292], [54.647162, -2.195129]], [[54.647162, -2.195129], [54.647168, -2.194966]], [[54.647168, -2.194966], [54.647193, -2.194816]], [[54.647193, -2.194816], [54.647261, -2.194691]], [[54.647261, -2.194691], [54.647232, -2.194543]], [[54.647232, -2.194543], [54.647317, -2.194443]], [[54.647317, -2.194443], [54.647388, -2.194331]], [[54.64752, -2.19388], [54.647558, -2.193734]], [[54.647649, -2.193463], [54.647685, -2.193311]], [[54.647685, -2.193311], [54.647756, -2.193181]], [[54.647756, -2.193181], [54.647808, -2.193039]], [[54.647808, -2.193039], [54.647888, -2.192956]], [[54.648094, -2.192646], [54.648171, -2.192565]], [[54.648236, -2.19245], [54.648298, -2.192336]], [[54.648298, -2.192336], [54.648365, -2.192222]], [[54.648365, -2.192222], [54.648439, -2.192128]], [[54.648602, -2.191934], [54.64865, -2.191795]], [[54.64865, -2.191795], [54.648686, -2.191652]], [[54.648686, -2.191652], [54.648717, -2.191493]], [[54.648717, -2.191493], [54.648784, -2.191381]], [[54.648784, -2.191381], [54.648851, -2.191255]], [[54.648851, -2.191255], [54.648916, -2.191143]], [[54.649042, -2.190892], [54.649066, -2.190737]], [[54.649245, -2.190338], [54.649308, -2.190204]], [[54.649308, -2.190204], [54.649352, -2.190052]], [[54.649352, -2.190052], [54.649356, -2.189896]], [[54.649356, -2.189896], [54.649413, -2.189772]], [[54.649413, -2.189772], [54.649473, -2.189646]], [[54.649473, -2.189646], [54.649522, -2.189495]], [[54.649522, -2.189495], [54.649549, -2.18934]], [[54.649549, -2.18934], [54.649595, -2.189189]], [[54.649595, -2.189189], [54.649648, -2.18905]], [[54.649648, -2.18905], [54.6497, -2.188905]], [[54.649824, -2.18864], [54.649883, -2.188513]], [[54.649883, -2.188513], [54.649939, -2.188387]], [[54.649939, -2.188387], [54.64999, -2.188245]], [[54.64999, -2.188245], [54.650044, -2.188111]], [[54.650044, -2.188111], [54.650137, -2.188032]], [[54.650137, -2.188032], [54.650204, -2.187894]], [[54.650337, -2.186336], [54.650398, -2.186219]], [[54.650504, -2.185768], [54.650548, -2.185626]], [[54.650937, -2.184085], [54.65095, -2.183916]], [[54.65095, -2.183916], [54.650953, -2.183732]], [[54.650779, -2.182774], [54.650734, -2.18262]], [[54.650734, -2.18262], [54.650686, -2.182475]], [[54.650688, -2.182311], [54.650698, -2.182144]], [[54.650698, -2.182144], [54.650706, -2.181981]], [[54.650706, -2.181981], [54.650673, -2.18183]], [[54.650676, -2.181658], [54.650661, -2.181492]], [[54.650661, -2.181492], [54.650651, -2.181321]], [[54.650651, -2.181321], [54.650652, -2.181153]], [[54.650652, -2.181153], [54.650676, -2.180999]], [[54.650676, -2.180999], [54.650717, -2.180857]], [[54.650719, -2.180691], [54.650712, -2.180521]], [[54.650712, -2.180521], [54.650727, -2.180356]], [[54.650727, -2.180356], [54.65075, -2.180198]], [[54.65075, -2.180198], [54.650751, -2.180037]], [[54.650751, -2.180037], [54.650736, -2.179854]], [[54.650705, -2.179689], [54.65073, -2.179536]], [[54.65073, -2.179536], [54.650765, -2.17939]], [[54.650765, -2.17939], [54.650755, -2.17922]], [[54.650755, -2.17922], [54.650713, -2.179075]], [[54.650659, -2.178937], [54.650605, -2.178795]], [[54.650435, -2.178408], [54.650402, -2.178255]], [[54.650402, -2.178255], [54.650346, -2.178115]], [[54.650346, -2.178115], [54.650319, -2.177955]], [[54.650319, -2.177955], [54.65028, -2.177783]], [[54.650059, -2.176852], [54.650039, -2.176686]], [[54.649984, -2.176362], [54.649957, -2.176204]], [[54.649957, -2.176204], [54.649908, -2.176062]], [[54.649841, -2.175945], [54.649783, -2.175817]], [[54.649643, -2.175495], [54.649593, -2.175363]], [[54.649556, -2.175217], [54.649528, -2.175043]], [[54.649528, -2.175043], [54.649502, -2.174886]], [[54.649502, -2.174886], [54.649494, -2.174717]], [[54.649513, -2.17456], [54.64954, -2.174401]], [[54.649608, -2.17359], [54.649679, -2.173494]], [[54.649701, -2.17304], [54.649723, -2.172887]], [[54.649723, -2.172887], [54.649705, -2.172719]], [[54.649718, -2.172398], [54.649752, -2.172248]], [[54.64991, -2.171656], [54.649932, -2.171489]], [[54.650034, -2.171031], [54.650012, -2.170864]], [[54.650012, -2.170864], [54.64998, -2.170709]], [[54.64998, -2.170709], [54.649933, -2.170561]], [[54.649589, -2.169231], [54.649552, -2.169065]], [[54.649552, -2.169065], [54.649499, -2.168921]], [[54.649445, -2.168769], [54.649401, -2.168631]], [[54.649361, -2.168464], [54.649328, -2.16832]], [[54.649288, -2.168176], [54.649258, -2.168021]], [[54.649197, -2.167532], [54.649199, -2.167376]], [[54.649491, -2.165699], [54.649526, -2.165547]], [[54.649476, -2.164728], [54.649465, -2.164553]], [[54.649465, -2.164553], [54.649433, -2.1644]], [[54.649394, -2.16426], [54.649345, -2.164115]], [[54.649312, -2.16395], [54.649263, -2.163799]], [[54.649189, -2.163159], [54.649153, -2.163005]], [[54.649153, -2.163005], [54.64913, -2.162848]], [[54.649111, -2.162158], [54.649104, -2.161982]], [[54.649104, -2.161982], [54.649105, -2.16182]], [[54.649145, -2.161155], [54.649138, -2.160989]], [[54.649138, -2.160989], [54.64913, -2.160824]], [[54.64913, -2.160824], [54.649112, -2.160652]], [[54.649104, -2.160312], [54.649089, -2.160153]], [[54.649089, -2.160153], [54.649085, -2.159983]], [[54.64898, -2.159348], [54.648957, -2.159191]], [[54.648957, -2.159191], [54.648923, -2.15904]], [[54.648908, -2.158877], [54.648863, -2.158726]], [[54.648844, -2.158574], [54.648816, -2.158403]], [[54.648816, -2.158403], [54.648758, -2.158262]], [[54.648758, -2.158262], [54.64877, -2.158088]], [[54.64877, -2.158088], [54.648842, -2.157981]], [[54.64868, -2.157729], [54.64861, -2.157616]], [[54.64861, -2.157616], [54.648536, -2.157505]], [[54.648449, -2.157197], [54.648446, -2.157032]], [[54.648446, -2.157032], [54.648439, -2.156871]], [[54.648439, -2.156871], [54.648438, -2.156702]], [[54.648438, -2.156702], [54.6484, -2.156534]], [[54.648334, -2.156217], [54.648323, -2.15605]], [[54.64821, -2.15531], [54.648184, -2.155147]], [[54.648172, -2.154817], [54.648138, -2.154663]], [[54.648138, -2.154663], [54.648111, -2.154494]], [[54.648111, -2.154494], [54.648085, -2.154337]], [[54.648085, -2.154337], [54.648035, -2.154192]], [[54.648035, -2.154192], [54.647994, -2.154054]], [[54.647958, -2.153907], [54.647924, -2.153747]], [[54.647924, -2.153747], [54.647856, -2.153631]], [[54.647764, -2.153357], [54.647707, -2.153219]], [[54.647707, -2.153219], [54.647712, -2.153052]], [[54.647663, -2.152848], [54.647571, -2.152782]], [[54.647016, -2.152044], [54.647001, -2.151885]], [[54.646533, -2.151614], [54.646444, -2.151579]], [[54.646444, -2.151579], [54.646351, -2.151535]], [[54.646047, -2.150473], [54.645969, -2.150394]], [[54.645908, -2.150275], [54.64587, -2.150113]], [[54.645626, -2.149606], [54.64556, -2.149488]], [[54.645492, -2.149352], [54.645432, -2.149224]], [[54.644678, -2.148533], [54.644601, -2.148428]], [[54.644601, -2.148428], [54.64452, -2.148352]], [[54.64452, -2.148352], [54.644435, -2.148278]], [[54.644037, -2.147214], [54.644035, -2.147049]], [[54.643403, -2.145733], [54.643331, -2.145613]], [[54.643331, -2.145613], [54.64328, -2.145469]], [[54.64328, -2.145469], [54.643211, -2.145341]], [[54.643211, -2.145341], [54.643141, -2.145231]], [[54.643141, -2.145231], [54.643065, -2.145122]], [[54.643065, -2.145122], [54.64298, -2.145031]], [[54.64298, -2.145031], [54.642894, -2.14497]], [[54.642894, -2.14497], [54.642819, -2.14487]], [[54.642819, -2.14487], [54.642732, -2.144789]], [[54.642585, -2.144562], [54.642517, -2.144446]], [[54.642517, -2.144446], [54.642453, -2.144335]], [[54.642453, -2.144335], [54.642406, -2.144195]], [[54.642406, -2.144195], [54.642368, -2.144041]], [[54.642368, -2.144041], [54.642335, -2.143888]], [[54.642335, -2.143888], [54.642284, -2.143759]], [[54.642284, -2.143759], [54.64223, -2.143623]], [[54.64223, -2.143623], [54.642166, -2.143513]], [[54.642091, -2.143412], [54.642015, -2.143309]], [[54.642015, -2.143309], [54.641946, -2.143192]], [[54.641946, -2.143192], [54.641879, -2.143074]], [[54.641879, -2.143074], [54.641806, -2.142952]], [[54.641806, -2.142952], [54.64173, -2.142844]], [[54.641402, -2.142264], [54.641349, -2.142123]], [[54.641315, -2.141979], [54.641295, -2.141806]], [[54.641295, -2.141806], [54.641254, -2.141666]], [[54.641133, -2.141074], [54.64112, -2.14091]], [[54.64112, -2.14091], [54.64111, -2.140743]], [[54.64111, -2.140743], [54.641098, -2.140574]], [[54.640991, -2.139648], [54.640963, -2.13949]], [[54.640963, -2.13949], [54.640959, -2.139316]], [[54.640959, -2.139316], [54.640956, -2.13915]], [[54.640956, -2.13915], [54.64094, -2.13898]], [[54.64094, -2.13898], [54.640927, -2.138812]], [[54.640927, -2.138812], [54.640918, -2.138639]], [[54.640918, -2.138639], [54.640913, -2.138466]], [[54.640913, -2.138466], [54.640905, -2.138309]], [[54.640905, -2.138309], [54.640888, -2.138149]], [[54.640888, -2.138149], [54.64087, -2.137993]], [[54.64087, -2.137993], [54.64084, -2.137835]], [[54.64084, -2.137835], [54.640819, -2.137675]], [[54.640819, -2.137675], [54.640801, -2.137518]], [[54.640734, -2.137026], [54.640702, -2.136858]], [[54.640702, -2.136858], [54.640673, -2.136694]], [[54.640673, -2.136694], [54.640632, -2.13655]], [[54.640632, -2.13655], [54.640597, -2.136407]], [[54.64053, -2.1361], [54.640496, -2.135943]], [[54.640496, -2.135943], [54.640456, -2.1358]], [[54.640456, -2.1358], [54.640412, -2.135649]], [[54.64022, -2.134922], [54.640176, -2.134775]], [[54.640176, -2.134775], [54.640128, -2.134643]], [[54.640076, -2.134507], [54.640032, -2.134363]], [[54.639918, -2.134144], [54.639881, -2.134001]], [[54.639619, -2.133309], [54.639568, -2.133165]], [[54.639568, -2.133165], [54.639505, -2.133038]], [[54.639403, -2.132755], [54.639332, -2.132646]], [[54.639277, -2.132514], [54.639201, -2.13238]], [[54.638999, -2.132002], [54.638925, -2.131888]], [[54.638767, -2.13167], [54.638693, -2.131568]], [[54.638693, -2.131568], [54.638615, -2.131464]], [[54.638615, -2.131464], [54.638543, -2.131368]], [[54.638543, -2.131368], [54.638468, -2.131274]], [[54.638468, -2.131274], [54.638382, -2.131203]], [[54.638382, -2.131203], [54.638296, -2.131125]], [[54.638296, -2.131125], [54.63822, -2.131022]], [[54.63822, -2.131022], [54.638143, -2.130922]], [[54.638143, -2.130922], [54.638061, -2.130846]], [[54.638061, -2.130846], [54.637975, -2.130757]], [[54.637975, -2.130757], [54.637892, -2.130697]], [[54.637892, -2.130697], [54.637806, -2.130635]], [[54.637806, -2.130635], [54.637718, -2.130587]], [[54.637718, -2.130587], [54.63763, -2.130534]], [[54.63763, -2.130534], [54.63754, -2.130485]], [[54.637356, -2.13041], [54.637262, -2.130369]], [[54.637262, -2.130369], [54.637169, -2.130329]], [[54.637075, -2.13028], [54.636979, -2.130233]], [[54.636979, -2.130233], [54.636888, -2.130181]], [[54.636702, -2.130152], [54.636615, -2.130111]], [[54.636339, -2.129972], [54.636248, -2.129974]], [[54.636049, -2.129957], [54.635955, -2.129962]], [[54.635955, -2.129962], [54.635854, -2.129927]], [[54.635758, -2.12988], [54.635667, -2.129854]], [[54.635667, -2.129854], [54.635567, -2.129861]], [[54.635567, -2.129861], [54.635477, -2.129825]], [[54.635279, -2.12976], [54.635187, -2.129745]], [[54.634676, -2.129623], [54.634585, -2.129645]], [[54.634209, -2.12958], [54.634141, -2.129515]], [[54.633959, -2.129589], [54.633896, -2.129701]], [[54.633804, -2.129753], [54.63372, -2.129681]], [[54.633654, -2.129567], [54.633573, -2.129494]], [[54.633474, -2.129461], [54.633389, -2.129386]], [[54.633389, -2.129386], [54.633318, -2.129288]], [[54.632992, -2.128977], [54.632903, -2.128947]], [[54.632903, -2.128947], [54.632814, -2.128921]], [[54.632633, -2.128856], [54.632576, -2.128716]], [[54.632576, -2.128716], [54.632487, -2.128629]], [[54.632362, -2.128394], [54.632322, -2.12824]], [[54.632288, -2.128092], [54.632243, -2.127945]], [[54.632243, -2.127945], [54.632233, -2.127783]], [[54.632233, -2.127783], [54.632205, -2.127632]], [[54.632015, -2.127232], [54.631943, -2.127131]], [[54.631943, -2.127131], [54.631882, -2.126991]], [[54.631836, -2.126829], [54.631803, -2.126675]], [[54.631803, -2.126675], [54.631748, -2.126547]], [[54.631528, -2.126036], [54.631505, -2.125876]], [[54.631333, -2.124955], [54.631322, -2.1248]], [[54.631322, -2.1248], [54.631302, -2.124644]], [[54.631302, -2.124644], [54.631261, -2.124506]], [[54.631136, -2.124289], [54.631056, -2.124202]], [[54.630998, -2.124058], [54.630992, -2.123881]], [[54.630992, -2.123881], [54.63098, -2.123715]], [[54.63098, -2.123715], [54.630942, -2.123553]], [[54.630867, -2.123258], [54.63084, -2.123109]], [[54.63084, -2.123109], [54.63081, -2.12295]], [[54.63081, -2.12295], [54.630749, -2.122815]], [[54.630749, -2.122815], [54.63071, -2.122672]], [[54.630697, -2.122057], [54.630675, -2.121897]], [[54.630675, -2.121897], [54.63068, -2.121728]], [[54.63068, -2.121728], [54.630707, -2.121574]], [[54.630755, -2.121228], [54.630765, -2.121054]], [[54.630765, -2.121054], [54.630771, -2.120897]], [[54.630771, -2.120897], [54.630767, -2.120721]], [[54.630767, -2.120721], [54.630766, -2.120558]], [[54.630766, -2.120558], [54.630758, -2.120399]], [[54.630758, -2.120399], [54.630736, -2.120231]], [[54.630736, -2.120231], [54.630722, -2.120074]], [[54.630722, -2.120074], [54.630707, -2.119913]], [[54.630707, -2.119913], [54.630691, -2.119747]], [[54.630691, -2.119747], [54.630682, -2.119583]], [[54.630682, -2.119583], [54.630666, -2.119417]], [[54.630666, -2.119417], [54.630635, -2.119265]], [[54.630635, -2.119265], [54.630611, -2.1191]], [[54.630611, -2.1191], [54.630573, -2.118939]], [[54.630573, -2.118939], [54.630543, -2.118787]], [[54.630543, -2.118787], [54.630542, -2.118624]], [[54.630542, -2.118624], [54.630545, -2.118467]], [[54.630545, -2.118467], [54.63051, -2.118321]], [[54.63051, -2.118321], [54.630486, -2.118172]], [[54.630508, -2.117149], [54.630505, -2.116984]], [[54.630505, -2.116984], [54.630483, -2.116828]], [[54.630483, -2.116828], [54.630476, -2.116673]], [[54.630391, -2.11611], [54.630381, -2.116036]], [[54.630157, -2.115776], [54.630068, -2.115699]], [[54.630068, -2.115699], [54.630002, -2.115594]], [[54.630002, -2.115594], [54.629935, -2.11549]], [[54.629935, -2.11549], [54.629863, -2.115376]], [[54.629863, -2.115376], [54.629785, -2.115261]], [[54.629785, -2.115261], [54.629711, -2.115164]], [[54.629711, -2.115164], [54.62964, -2.11505]], [[54.62964, -2.11505], [54.629565, -2.114953]], [[54.629565, -2.114953], [54.629484, -2.114868]], [[54.629484, -2.114868], [54.629419, -2.11476]], [[54.629419, -2.11476], [54.629357, -2.114631]], [[54.629357, -2.114631], [54.629277, -2.114544]], [[54.629126, -2.11433], [54.629054, -2.114235]], [[54.629054, -2.114235], [54.628964, -2.114238]], [[54.628964, -2.114238], [54.628908, -2.114112]], [[54.628864, -2.113958], [54.628826, -2.113804]], [[54.628903, -2.113699], [54.628872, -2.113545]], [[54.628612, -2.112549], [54.62855, -2.11243]], [[54.62855, -2.11243], [54.628491, -2.112309]], [[54.628491, -2.112309], [54.628462, -2.112148]], [[54.628401, -2.111863], [54.628362, -2.111703]], [[54.628062, -2.110632], [54.628008, -2.110479]], [[54.628008, -2.110479], [54.627949, -2.110347]], [[54.627949, -2.110347], [54.627894, -2.110199]], [[54.627894, -2.110199], [54.627834, -2.110054]], [[54.627834, -2.110054], [54.627783, -2.109914]], [[54.627674, -2.109636], [54.627614, -2.109504]], [[54.627614, -2.109504], [54.627549, -2.109388]], [[54.627549, -2.109388], [54.627487, -2.109277]], [[54.627487, -2.109277], [54.627423, -2.10914]], [[54.627423, -2.10914], [54.627363, -2.109014]], [[54.626932, -2.107261], [54.626839, -2.107207]], [[54.626505, -2.10665], [54.626459, -2.106506]], [[54.626459, -2.106506], [54.626399, -2.106374]], [[54.626399, -2.106374], [54.626356, -2.106229]], [[54.626356, -2.106229], [54.626312, -2.106087]], [[54.626312, -2.106087], [54.626272, -2.105933]], [[54.626272, -2.105933], [54.626215, -2.105799]], [[54.626215, -2.105799], [54.626159, -2.10567]], [[54.626159, -2.10567], [54.626126, -2.105515]], [[54.626126, -2.105515], [54.626088, -2.10536]], [[54.626088, -2.10536], [54.626038, -2.105203]], [[54.625882, -2.104571], [54.625847, -2.104422]], [[54.625576, -2.104111], [54.625505, -2.103992]], [[54.625505, -2.103992], [54.625448, -2.103866]], [[54.625379, -2.103762], [54.625332, -2.103627]], [[54.625285, -2.103493], [54.625207, -2.103365]], [[54.624901, -2.103025], [54.624833, -2.102918]], [[54.624833, -2.102918], [54.624766, -2.10279]], [[54.624766, -2.10279], [54.624686, -2.10269]], [[54.624582, -2.102404], [54.62454, -2.102245]], [[54.62454, -2.102245], [54.624484, -2.102116]], [[54.624484, -2.102116], [54.624423, -2.101987]], [[54.624423, -2.101987], [54.624377, -2.10184]], [[54.624179, -2.101226], [54.624128, -2.101095]], [[54.623911, -2.099922], [54.623842, -2.09979]], [[54.623842, -2.09979], [54.623818, -2.099625]], [[54.623818, -2.099625], [54.623795, -2.099466]], [[54.623767, -2.099317], [54.623756, -2.099159]], [[54.623765, -2.098986], [54.623755, -2.098813]], [[54.623749, -2.098644], [54.623728, -2.098486]], [[54.623728, -2.098486], [54.623699, -2.098327]], [[54.623642, -2.098009], [54.623618, -2.097848]], [[54.623618, -2.097848], [54.623593, -2.097677]], [[54.623593, -2.097677], [54.623576, -2.097525]], [[54.623546, -2.097368], [54.623504, -2.097214]], [[54.623504, -2.097214], [54.62345, -2.09707]], [[54.62345, -2.09707], [54.6234, -2.096924]], [[54.6234, -2.096924], [54.623357, -2.096774]], [[54.623357, -2.096774], [54.623306, -2.096637]], [[54.623306, -2.096637], [54.623242, -2.096524]], [[54.623242, -2.096524], [54.623172, -2.09641]], [[54.623172, -2.09641], [54.6231, -2.096303]], [[54.623046, -2.096177], [54.622994, -2.096038]], [[54.622994, -2.096038], [54.62295, -2.095891]], [[54.62295, -2.095891], [54.622919, -2.095736]], [[54.622866, -2.095471], [54.622837, -2.095308]], [[54.622837, -2.095308], [54.622805, -2.095153]], [[54.622805, -2.095153], [54.622785, -2.094992]], [[54.622785, -2.094992], [54.622773, -2.094832]], [[54.622773, -2.094832], [54.622749, -2.094682]], [[54.622749, -2.094682], [54.622724, -2.094525]], [[54.622724, -2.094525], [54.62271, -2.094365]], [[54.622619, -2.093554], [54.622624, -2.093386]], [[54.622624, -2.093386], [54.622636, -2.093231]], [[54.622691, -2.092419], [54.622705, -2.092244]], [[54.622705, -2.092244], [54.622703, -2.092075]], [[54.622703, -2.092075], [54.622663, -2.091932]], [[54.622661, -2.091746], [54.622669, -2.091582]], [[54.622669, -2.091582], [54.622705, -2.091437]], [[54.622662, -2.091105], [54.622624, -2.090945]], [[54.622624, -2.090945], [54.622598, -2.090792]], [[54.622598, -2.090792], [54.622573, -2.090643]], [[54.622573, -2.090643], [54.622562, -2.090482]], [[54.622337, -2.08939], [54.622296, -2.089227]], [[54.622073, -2.088506], [54.622038, -2.088364]], [[54.622038, -2.088364], [54.621995, -2.088212]], [[54.62192, -2.087906], [54.621893, -2.08774]], [[54.621893, -2.08774], [54.621868, -2.087572]], [[54.621868, -2.087572], [54.621849, -2.087411]], [[54.621849, -2.087411], [54.621829, -2.087248]], [[54.621829, -2.087248], [54.621812, -2.087085]], [[54.621812, -2.087085], [54.621786, -2.086924]], [[54.621786, -2.086924], [54.621763, -2.08676]], [[54.621763, -2.08676], [54.621741, -2.086596]], [[54.621741, -2.086596], [54.62172, -2.086445]], [[54.621656, -2.085972], [54.621627, -2.085815]], [[54.621627, -2.085815], [54.621591, -2.085663]], [[54.621516, -2.085375], [54.621468, -2.085227]], [[54.621531, -2.085116], [54.621628, -2.085122]], [[54.621825, -2.085085], [54.621924, -2.085036]], [[54.622166, -2.08479], [54.622224, -2.084654]], [[54.622224, -2.084654], [54.622285, -2.084534]], [[54.62255, -2.084039], [54.622631, -2.083945]], [[54.622631, -2.083945], [54.622713, -2.083873]], [[54.622987, -2.083703], [54.623088, -2.083676]], [[54.623088, -2.083676], [54.62318, -2.083656]], [[54.62318, -2.083656], [54.62327, -2.083605]], [[54.62327, -2.083605], [54.623364, -2.08354]], [[54.62352, -2.083383], [54.623604, -2.083314]], [[54.623604, -2.083314], [54.62371, -2.083299]], [[54.623884, -2.083201], [54.623982, -2.083208]], [[54.624081, -2.083234], [54.624173, -2.083189]], [[54.624173, -2.083189], [54.624142, -2.083031]], [[54.624142, -2.083031], [54.624093, -2.082889]], [[54.624518, -2.08344], [54.624602, -2.083501]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_7f5018c9aba812a064846188b00d8fd7 = L.polyline(
                [[[54.629996, -2.400252], [54.630028, -2.400092]], [[54.630028, -2.400092], [54.630035, -2.399923]], [[54.63052, -2.397532], [54.630549, -2.397372]], [[54.630578, -2.396727], [54.630568, -2.396569]], [[54.63055, -2.39651], [54.630502, -2.39636]], [[54.630307, -2.395806], [54.630224, -2.395733]], [[54.63019, -2.395531], [54.630166, -2.395372]], [[54.630102, -2.394761], [54.630061, -2.394605]], [[54.630061, -2.394605], [54.63002, -2.39446]], [[54.63002, -2.39446], [54.629965, -2.394326]], [[54.629965, -2.394326], [54.629927, -2.394172]], [[54.629927, -2.394172], [54.629891, -2.394023]], [[54.629891, -2.394023], [54.629891, -2.393859]], [[54.629891, -2.393859], [54.629893, -2.393701]], [[54.634505, -2.372935], [54.634537, -2.372829]], [[54.634729, -2.371917], [54.634745, -2.371758]], [[54.634791, -2.37144], [54.634826, -2.371285]], [[54.634826, -2.371285], [54.634876, -2.371153]], [[54.634909, -2.370991], [54.634919, -2.370818]], [[54.635034, -2.370186], [54.635071, -2.370037]], [[54.635071, -2.370037], [54.635128, -2.369909]], [[54.635428, -2.365367], [54.635411, -2.365213]], [[54.635411, -2.365213], [54.635403, -2.365058]], [[54.635392, -2.364898], [54.63539, -2.364739]], [[54.63539, -2.364739], [54.635394, -2.364567]], [[54.635394, -2.364567], [54.635422, -2.364406]], [[54.635395, -2.364137], [54.635411, -2.363974]], [[54.635429, -2.363822], [54.635445, -2.363719]], [[54.635542, -2.363678], [54.635637, -2.363654]], [[54.635637, -2.363654], [54.635729, -2.363622]], [[54.635875, -2.362666], [54.635864, -2.362501]], [[54.635864, -2.362501], [54.635887, -2.362335]], [[54.635843, -2.361859], [54.635838, -2.361697]], [[54.635838, -2.361697], [54.63585, -2.361528]], [[54.635754, -2.354306], [54.63572, -2.354148]], [[54.63572, -2.354148], [54.635723, -2.353975]], [[54.635801, -2.352505], [54.635838, -2.352348]], [[54.635838, -2.352348], [54.635856, -2.352192]], [[54.635819, -2.352038], [54.635797, -2.351866]], [[54.635854, -2.351573], [54.635843, -2.351409]], [[54.635843, -2.351409], [54.635837, -2.351246]], [[54.635817, -2.35092], [54.635818, -2.350761]], [[54.635916, -2.349541], [54.635933, -2.349373]], [[54.635933, -2.349373], [54.635947, -2.349214]], [[54.636313, -2.347987], [54.636377, -2.347872]], [[54.636546, -2.347473], [54.636611, -2.347346]], [[54.636611, -2.347346], [54.636622, -2.347187]], [[54.636686, -2.347058], [54.63674, -2.346933]], [[54.63674, -2.346933], [54.636787, -2.346789]], [[54.636787, -2.346789], [54.636861, -2.346677]], [[54.636861, -2.346677], [54.636904, -2.346531]], [[54.636904, -2.346531], [54.636954, -2.346399]], [[54.636954, -2.346399], [54.636986, -2.346239]], [[54.636986, -2.346239], [54.636982, -2.346075]], [[54.639876, -2.330682], [54.639923, -2.330529]], [[54.639923, -2.330529], [54.639956, -2.330378]], [[54.64046, -2.321142], [54.640498, -2.320991]], [[54.640498, -2.320991], [54.64054, -2.320836]], [[54.640687, -2.31708], [54.640789, -2.317065]], [[54.641153, -2.31691], [54.641165, -2.316753]], [[54.641395, -2.316252], [54.641413, -2.316106]], [[54.641448, -2.315951], [54.641479, -2.315794]], [[54.64407, -2.310604], [54.644161, -2.310615]], [[54.644145, -2.310293], [54.644117, -2.310126]], [[54.644889, -2.306796], [54.644919, -2.306644]], [[54.644919, -2.306644], [54.644953, -2.306492]], [[54.645317, -2.30564], [54.645402, -2.305591]], [[54.645461, -2.305438], [54.645501, -2.305288]], [[54.645985, -2.304985], [54.646073, -2.305057]], [[54.646073, -2.305057], [54.646153, -2.305135]], [[54.646153, -2.305135], [54.646244, -2.305198]], [[54.65163, -2.290756], [54.651722, -2.29081]], [[54.651722, -2.29081], [54.651813, -2.290877]], [[54.651813, -2.290877], [54.651886, -2.290969]], [[54.651886, -2.290969], [54.651948, -2.291097]], [[54.651948, -2.291097], [54.651988, -2.291239]], [[54.651988, -2.291239], [54.652069, -2.291312]], [[54.653623, -2.28946], [54.653586, -2.289312]], [[54.653256, -2.289014], [54.653159, -2.289021]], [[54.653159, -2.289021], [54.653075, -2.289096]], [[54.653075, -2.289096], [54.65298, -2.289041]], [[54.652141, -2.288748], [54.652052, -2.288713]], [[54.651855, -2.288813], [54.65176, -2.288842]], [[54.65176, -2.288842], [54.651754, -2.288999]], [[54.650732, -2.28644], [54.650734, -2.286281]], [[54.650631, -2.286025], [54.650591, -2.285872]], [[54.650471, -2.284926], [54.650413, -2.284786]], [[54.650406, -2.284621], [54.650377, -2.28447]], [[54.650151, -2.284001], [54.650094, -2.283869]], [[54.649923, -2.283708], [54.649863, -2.283729]], [[54.649753, -2.283481], [54.649678, -2.283394]], [[54.649591, -2.283324], [54.6495, -2.283255]], [[54.6495, -2.283255], [54.649403, -2.283222]], [[54.649403, -2.283222], [54.649377, -2.283073]], [[54.64919, -2.283032], [54.649092, -2.283016]], [[54.648689, -2.282581], [54.648617, -2.28248]], [[54.647759, -2.279044], [54.647769, -2.278873]], [[54.647653, -2.277329], [54.647669, -2.277165]], [[54.647669, -2.277165], [54.647676, -2.277006]], [[54.647682, -2.276683], [54.647714, -2.276524]], [[54.647714, -2.276524], [54.647748, -2.276379]], [[54.647807, -2.27573], [54.647799, -2.27555]], [[54.647794, -2.27445], [54.647795, -2.274266]], [[54.647906, -2.273836], [54.647917, -2.27369]], [[54.647959, -2.273538], [54.647981, -2.273377]], [[54.648009, -2.27322], [54.648024, -2.273057]], [[54.648024, -2.273057], [54.648053, -2.272902]], [[54.648053, -2.272902], [54.648044, -2.272737]], [[54.648044, -2.272737], [54.648095, -2.272588]], [[54.648412, -2.270295], [54.648443, -2.270148]], [[54.650575, -2.264785], [54.650613, -2.264652]], [[54.650613, -2.264652], [54.650669, -2.264522]], [[54.650669, -2.264522], [54.650729, -2.264402]], [[54.650786, -2.264279], [54.650828, -2.264139]], [[54.650828, -2.264139], [54.6509, -2.264027]], [[54.6509, -2.264027], [54.650968, -2.263907]], [[54.650968, -2.263907], [54.651042, -2.263818]], [[54.651042, -2.263818], [54.651084, -2.263672]], [[54.651803, -2.262453], [54.651874, -2.262377]], [[54.652165, -2.261919], [54.652216, -2.261772]], [[54.652216, -2.261772], [54.652295, -2.261669]], [[54.652353, -2.261534], [54.652425, -2.26142]], [[54.652425, -2.26142], [54.652488, -2.261309]], [[54.652488, -2.261309], [54.652521, -2.261202]], [[54.653394, -2.260294], [54.653489, -2.26023]], [[54.653489, -2.26023], [54.653571, -2.260163]], [[54.653571, -2.260163], [54.653665, -2.26012]], [[54.658892, -2.257437], [54.658949, -2.257308]], [[54.659223, -2.257127], [54.659223, -2.257102]], [[54.661451, -2.25456], [54.661538, -2.254491]], [[54.661703, -2.254141], [54.66174, -2.253988]], [[54.66174, -2.253988], [54.661795, -2.25386]], [[54.66294, -2.249552], [54.662946, -2.249377]], [[54.663455, -2.247451], [54.663476, -2.247295]], [[54.663476, -2.247295], [54.66348, -2.247135]], [[54.663758, -2.245735], [54.663796, -2.245611]], [[54.663903, -2.24423], [54.663886, -2.244058]], [[54.662972, -2.241632], [54.663039, -2.241529]], [[54.663294, -2.240481], [54.663275, -2.240316]], [[54.663275, -2.240316], [54.66325, -2.240162]], [[54.663157, -2.239529], [54.663103, -2.239403]], [[54.663092, -2.239231], [54.663067, -2.239067]], [[54.661754, -2.232638], [54.661719, -2.232538]], [[54.66165, -2.232429], [54.661565, -2.232515]], [[54.661496, -2.232406], [54.661477, -2.232252]], [[54.661477, -2.232252], [54.661454, -2.232089]], [[54.661722, -2.230511], [54.66177, -2.230375]], [[54.661993, -2.230135], [54.662094, -2.230118]], [[54.662094, -2.230118], [54.662177, -2.230044]], [[54.662513, -2.22974], [54.662571, -2.229617]], [[54.663054, -2.228216], [54.663113, -2.228095]], [[54.663113, -2.228095], [54.663179, -2.227976]], [[54.663179, -2.227976], [54.663263, -2.227884]], [[54.663263, -2.227884], [54.663319, -2.227756]], [[54.664264, -2.227533], [54.664326, -2.227655]], [[54.664611, -2.228298], [54.664691, -2.228376]], [[54.664691, -2.228376], [54.664787, -2.2284]], [[54.664955, -2.228553], [54.665048, -2.228582]], [[54.665048, -2.228582], [54.665141, -2.228625]], [[54.665141, -2.228625], [54.665231, -2.228612]], [[54.66609, -2.228025], [54.66615, -2.227935]], [[54.66615, -2.227935], [54.66623, -2.227837]], [[54.666793, -2.22679], [54.666772, -2.226639]], [[54.666385, -2.226811], [54.666327, -2.22687]], [[54.664829, -2.22562], [54.664774, -2.225497]], [[54.664089, -2.224615], [54.663997, -2.224568]], [[54.663549, -2.224324], [54.663475, -2.224238]], [[54.663475, -2.224238], [54.663389, -2.224173]], [[54.662591, -2.221705], [54.662557, -2.221548]], [[54.660935, -2.21717], [54.660889, -2.217025]], [[54.660889, -2.217025], [54.660812, -2.216926]], [[54.660741, -2.216592], [54.660663, -2.216471]], [[54.659445, -2.215252], [54.659362, -2.215173]], [[54.659362, -2.215173], [54.65928, -2.215099]], [[54.656398, -2.215073], [54.656317, -2.215005]], [[54.656317, -2.215005], [54.656227, -2.215013]], [[54.656227, -2.215013], [54.656133, -2.214996]], [[54.656133, -2.214996], [54.656044, -2.214925]], [[54.654945, -2.215026], [54.65485, -2.215037]], [[54.65485, -2.215037], [54.654761, -2.214997]], [[54.654385, -2.214863], [54.654301, -2.214806]], [[54.654301, -2.214806], [54.654211, -2.214784]], [[54.654211, -2.214784], [54.654118, -2.214792]], [[54.653929, -2.214782], [54.653838, -2.214743]], [[54.653838, -2.214743], [54.653749, -2.214721]], [[54.653749, -2.214721], [54.653654, -2.214703]], [[54.653654, -2.214703], [54.653571, -2.214767]], [[54.65317, -2.215013], [54.653077, -2.215076]], [[54.65079, -2.216507], [54.650699, -2.216439]], [[54.650319, -2.216386], [54.650242, -2.216275]], [[54.650242, -2.216275], [54.650146, -2.216242]], [[54.649957, -2.216152], [54.649859, -2.216154]], [[54.649859, -2.216154], [54.649775, -2.216081]], [[54.649691, -2.216024], [54.649596, -2.215988]], [[54.649596, -2.215988], [54.649509, -2.215921]], [[54.648723, -2.212813], [54.648706, -2.212672]], [[54.648682, -2.212391], [54.648687, -2.212234]], [[54.648376, -2.210872], [54.648306, -2.210771]], [[54.648076, -2.210256], [54.648042, -2.2101]], [[54.648015, -2.20979], [54.648005, -2.209632]], [[54.648005, -2.209632], [54.647955, -2.209498]], [[54.647955, -2.209498], [54.64789, -2.209382]], [[54.64789, -2.209382], [54.647849, -2.209225]], [[54.647849, -2.209225], [54.647843, -2.209056]], [[54.64776, -2.208477], [54.647716, -2.208334]], [[54.647716, -2.208334], [54.647713, -2.208165]], [[54.647596, -2.206414], [54.647596, -2.20625]], [[54.647596, -2.20625], [54.647591, -2.206094]], [[54.647591, -2.206094], [54.647612, -2.205934]], [[54.647123, -2.196795], [54.647072, -2.196649]], [[54.647132, -2.196522], [54.647146, -2.196367]], [[54.64715, -2.196212], [54.647134, -2.19614]], [[54.647388, -2.194331], [54.647422, -2.194183]], [[54.647463, -2.194034], [54.64752, -2.19388]], [[54.647558, -2.193734], [54.647582, -2.193572]], [[54.647582, -2.193572], [54.647649, -2.193463]], [[54.647888, -2.192956], [54.64793, -2.192819]], [[54.64793, -2.192819], [54.648001, -2.192722]], [[54.648001, -2.192722], [54.648094, -2.192646]], [[54.650252, -2.187757], [54.650228, -2.187666]], [[54.650184, -2.186942], [54.650274, -2.186955]], [[54.650274, -2.186955], [54.65029, -2.187111]], [[54.650609, -2.185637], [54.650655, -2.185494]], [[54.650673, -2.18183], [54.650676, -2.181658]], [[54.650713, -2.179075], [54.650659, -2.178937]], [[54.649908, -2.176062], [54.649841, -2.175945]], [[54.649719, -2.175684], [54.649689, -2.175659]], [[54.64954, -2.174401], [54.649542, -2.174225]], [[54.649679, -2.173494], [54.649773, -2.173506]], [[54.649401, -2.168631], [54.649361, -2.168464]], [[54.649308, -2.166775], [54.649328, -2.166679]], [[54.649526, -2.165547], [54.649538, -2.165385]], [[54.649345, -2.164115], [54.649312, -2.16395]], [[54.648863, -2.158726], [54.648844, -2.158574]], [[54.6484, -2.156534], [54.648357, -2.156383]], [[54.648357, -2.156383], [54.648334, -2.156217]], [[54.648323, -2.15605], [54.648292, -2.1559]], [[54.648292, -2.1559], [54.648294, -2.155743]], [[54.648294, -2.155743], [54.648237, -2.155623]], [[54.648237, -2.155623], [54.648215, -2.155469]], [[54.648215, -2.155469], [54.64821, -2.15531]], [[54.647994, -2.154054], [54.647958, -2.153907]], [[54.647363, -2.152436], [54.647286, -2.152394]], [[54.647286, -2.152394], [54.647195, -2.152418]], [[54.647001, -2.151885], [54.646986, -2.151729]], [[54.646821, -2.151615], [54.646725, -2.151587]], [[54.646067, -2.151087], [54.646067, -2.150941]], [[54.645432, -2.149224], [54.645357, -2.149117]], [[54.645112, -2.148896], [54.645023, -2.148853]], [[54.64409, -2.147705], [54.644072, -2.14755]], [[54.644072, -2.14755], [54.644039, -2.147388]], [[54.644039, -2.147388], [54.644037, -2.147214]], [[54.643801, -2.146558], [54.643804, -2.146463]], [[54.643804, -2.146463], [54.643781, -2.146313]], [[54.64173, -2.142844], [54.641661, -2.142742]], [[54.641661, -2.142742], [54.641597, -2.142632]], [[54.641597, -2.142632], [54.641531, -2.142512]], [[54.641531, -2.142512], [54.641472, -2.142392]], [[54.641472, -2.142392], [54.641402, -2.142264]], [[54.641033, -2.14013], [54.641051, -2.139964]], [[54.641051, -2.139964], [54.64101, -2.139807]], [[54.64101, -2.139807], [54.640991, -2.139648]], [[54.640801, -2.137518], [54.640798, -2.137353]], [[54.640798, -2.137353], [54.64078, -2.137202]], [[54.640412, -2.135649], [54.640377, -2.135506]], [[54.640377, -2.135506], [54.640337, -2.135354]], [[54.640337, -2.135354], [54.640315, -2.13521]], [[54.640261, -2.135074], [54.64022, -2.134922]], [[54.640032, -2.134363], [54.639984, -2.134256]], [[54.639984, -2.134256], [54.639918, -2.134144]], [[54.639881, -2.134001], [54.639845, -2.133842]], [[54.639845, -2.133842], [54.639811, -2.133697]], [[54.639332, -2.132646], [54.639277, -2.132514]], [[54.63754, -2.130485], [54.637443, -2.130452]], [[54.637443, -2.130452], [54.637356, -2.13041]], [[54.637169, -2.130329], [54.637075, -2.13028]], [[54.636888, -2.130181], [54.636793, -2.130201]], [[54.636793, -2.130201], [54.636702, -2.130152]], [[54.634585, -2.129645], [54.634487, -2.129628]], [[54.634055, -2.129568], [54.633959, -2.129589]], [[54.633573, -2.129494], [54.633474, -2.129461]], [[54.633318, -2.129288], [54.633233, -2.129212]], [[54.633233, -2.129212], [54.633152, -2.129111]], [[54.633152, -2.129111], [54.633082, -2.12901]], [[54.633082, -2.12901], [54.632992, -2.128977]], [[54.632814, -2.128921], [54.632721, -2.128925]], [[54.632721, -2.128925], [54.632633, -2.128856]], [[54.632322, -2.12824], [54.632288, -2.128092]], [[54.631748, -2.126547], [54.631674, -2.126426]], [[54.631674, -2.126426], [54.631601, -2.126331]], [[54.63139, -2.125426], [54.631372, -2.125285]], [[54.631372, -2.125285], [54.63135, -2.125122]], [[54.631261, -2.124506], [54.63121, -2.1244]], [[54.63121, -2.1244], [54.631136, -2.124289]], [[54.631056, -2.124202], [54.630998, -2.124058]], [[54.63071, -2.122672], [54.630709, -2.122545]], [[54.630709, -2.122545], [54.630695, -2.122389]], [[54.630695, -2.122389], [54.630696, -2.122232]], [[54.630696, -2.122232], [54.630697, -2.122057]], [[54.630743, -2.121395], [54.630755, -2.121228]], [[54.630476, -2.116673], [54.630479, -2.116567]], [[54.630471, -2.116412], [54.630452, -2.116258]], [[54.630311, -2.115936], [54.630257, -2.115797]], [[54.630257, -2.115797], [54.630157, -2.115776]], [[54.629277, -2.114544], [54.6292, -2.114449]], [[54.6292, -2.114449], [54.629126, -2.11433]], [[54.628826, -2.113804], [54.628903, -2.113699]], [[54.627783, -2.109914], [54.627724, -2.109778]], [[54.627724, -2.109778], [54.627674, -2.109636]], [[54.627363, -2.109014], [54.627307, -2.108876]], [[54.627307, -2.108876], [54.627259, -2.108728]], [[54.627259, -2.108728], [54.627246, -2.108561]], [[54.627246, -2.108561], [54.627211, -2.108395]], [[54.627115, -2.108113], [54.627106, -2.107987]], [[54.627055, -2.107858], [54.627048, -2.107689]], [[54.627048, -2.107689], [54.62702, -2.107542]], [[54.626839, -2.107207], [54.626754, -2.107132]], [[54.626754, -2.107132], [54.626678, -2.107034]], [[54.626611, -2.106927], [54.626544, -2.106795]], [[54.625847, -2.104422], [54.625821, -2.104321]], [[54.625643, -2.10423], [54.625576, -2.104111]], [[54.625332, -2.103627], [54.625285, -2.103493]], [[54.625207, -2.103365], [54.625129, -2.103268]], [[54.625129, -2.103268], [54.625032, -2.103258]], [[54.625032, -2.103258], [54.624951, -2.103174]], [[54.624951, -2.103174], [54.624901, -2.103025]], [[54.624377, -2.10184], [54.624326, -2.101704]], [[54.624326, -2.101704], [54.624279, -2.101562]], [[54.624279, -2.101562], [54.624258, -2.101402]], [[54.623795, -2.099466], [54.623767, -2.099317]], [[54.623755, -2.098813], [54.623749, -2.098644]], [[54.622663, -2.091932], [54.622661, -2.091746]], [[54.621591, -2.085663], [54.621567, -2.085512]], [[54.621567, -2.085512], [54.621516, -2.085375]], [[54.621468, -2.085227], [54.621531, -2.085116]], [[54.623982, -2.083208], [54.624081, -2.083234]], [[54.625077, -2.083707], [54.62509, -2.083755]], [[54.625188, -2.08376], [54.625281, -2.083798]], [[54.625281, -2.083798], [54.625377, -2.083755]], [[54.625377, -2.083755], [54.625448, -2.083823]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_2766c8d5b02c34607a391e8ca9668503 = L.polyline(
                [[[54.630042, -2.399767], [54.630075, -2.399608]], [[54.630075, -2.399608], [54.630119, -2.399461]], [[54.630119, -2.399461], [54.630159, -2.399302]], [[54.630159, -2.399302], [54.630192, -2.399146]], [[54.630192, -2.399146], [54.630244, -2.398998]], [[54.630244, -2.398998], [54.630281, -2.398843]], [[54.630281, -2.398843], [54.630319, -2.3987]], [[54.630444, -2.398229], [54.630469, -2.398065]], [[54.630549, -2.397372], [54.630553, -2.397207]], [[54.630553, -2.397207], [54.630568, -2.39705]], [[54.630568, -2.39705], [54.63058, -2.396885]], [[54.63058, -2.396885], [54.630578, -2.396727]], [[54.630502, -2.39636], [54.630455, -2.396217]], [[54.630455, -2.396217], [54.630416, -2.396072]], [[54.630376, -2.392627], [54.63045, -2.392507]], [[54.63045, -2.392507], [54.630528, -2.392399]], [[54.630528, -2.392399], [54.630605, -2.392295]], [[54.630605, -2.392295], [54.630677, -2.392195]], [[54.631016, -2.3919], [54.6311, -2.391829]], [[54.6311, -2.391829], [54.631176, -2.391743]], [[54.631176, -2.391743], [54.631245, -2.391633]], [[54.631245, -2.391633], [54.631323, -2.39153]], [[54.631323, -2.39153], [54.631391, -2.391423]], [[54.631538, -2.391203], [54.631618, -2.391116]], [[54.63185, -2.390821], [54.631913, -2.390706]], [[54.632081, -2.390116], [54.632119, -2.389966]], [[54.632218, -2.3895], [54.632236, -2.389337]], [[54.632236, -2.389337], [54.632269, -2.389178]], [[54.632269, -2.389178], [54.632299, -2.389031]], [[54.632299, -2.389031], [54.632333, -2.388878]], [[54.632333, -2.388878], [54.632363, -2.388718]], [[54.632363, -2.388718], [54.632398, -2.388557]], [[54.632398, -2.388557], [54.632443, -2.388416]], [[54.632443, -2.388416], [54.632501, -2.388283]], [[54.632501, -2.388283], [54.632538, -2.388134]], [[54.632538, -2.388134], [54.632574, -2.387992]], [[54.63268, -2.387539], [54.632731, -2.387389]], [[54.632731, -2.387389], [54.632775, -2.387247]], [[54.632831, -2.387103], [54.63289, -2.386963]], [[54.63289, -2.386963], [54.632949, -2.386838]], [[54.633075, -2.38659], [54.633123, -2.386454]], [[54.63317, -2.386322], [54.633208, -2.386172]], [[54.633208, -2.386172], [54.633258, -2.386042]], [[54.633347, -2.385392], [54.633379, -2.38523]], [[54.633379, -2.38523], [54.633416, -2.385067]], [[54.63356, -2.384452], [54.633587, -2.384286]], [[54.633587, -2.384286], [54.633614, -2.384135]], [[54.633635, -2.383983], [54.633657, -2.383827]], [[54.633732, -2.383007], [54.633744, -2.382849]], [[54.633744, -2.382849], [54.633767, -2.382673]], [[54.633767, -2.382673], [54.633786, -2.382506]], [[54.633786, -2.382506], [54.633804, -2.382338]], [[54.633804, -2.382338], [54.633812, -2.382159]], [[54.633812, -2.382159], [54.633816, -2.381982]], [[54.633816, -2.381982], [54.633812, -2.38181]], [[54.633812, -2.38181], [54.633818, -2.38165]], [[54.633818, -2.38165], [54.633798, -2.381492]], [[54.633809, -2.381318], [54.633822, -2.38115]], [[54.633822, -2.38115], [54.633821, -2.38099]], [[54.633821, -2.38099], [54.633813, -2.380833]], [[54.633926, -2.380211], [54.633938, -2.380045]], [[54.633938, -2.380045], [54.633969, -2.379898]], [[54.634, -2.379751], [54.634014, -2.379588]], [[54.634014, -2.379588], [54.634059, -2.379432]], [[54.634092, -2.379286], [54.634104, -2.379131]], [[54.634104, -2.379131], [54.634133, -2.37896]], [[54.63422, -2.377832], [54.634226, -2.37767]], [[54.634226, -2.37767], [54.634219, -2.37751]], [[54.634219, -2.37751], [54.634215, -2.377349]], [[54.634215, -2.377349], [54.634228, -2.377169]], [[54.634228, -2.377169], [54.634238, -2.377004]], [[54.634238, -2.377004], [54.634247, -2.376827]], [[54.634247, -2.376827], [54.634263, -2.376664]], [[54.634263, -2.376664], [54.634281, -2.376502]], [[54.634316, -2.376177], [54.634326, -2.376009]], [[54.634326, -2.376009], [54.63435, -2.375839]], [[54.634368, -2.375513], [54.634379, -2.375355]], [[54.634379, -2.375355], [54.634383, -2.375197]], [[54.634383, -2.375197], [54.63441, -2.375042]], [[54.63441, -2.375042], [54.634418, -2.374881]], [[54.634418, -2.374881], [54.634399, -2.374717]], [[54.634399, -2.374717], [54.63441, -2.374545]], [[54.634388, -2.37405], [54.634372, -2.373884]], [[54.634372, -2.373884], [54.634384, -2.37373]], [[54.634422, -2.37323], [54.634449, -2.373062]], [[54.634449, -2.373062], [54.634505, -2.372935]], [[54.634662, -2.372562], [54.634698, -2.372411]], [[54.635772, -2.360672], [54.635763, -2.360501]], [[54.635763, -2.360501], [54.635721, -2.360346]], [[54.635721, -2.360346], [54.6357, -2.360173]], [[54.6357, -2.360173], [54.63571, -2.360005]], [[54.63571, -2.360005], [54.635705, -2.359837]], [[54.635714, -2.358688], [54.635727, -2.358529]], [[54.635727, -2.358529], [54.635719, -2.358367]], [[54.635705, -2.357408], [54.635735, -2.357244]], [[54.635703, -2.356599], [54.635696, -2.356444]], [[54.635696, -2.356444], [54.635692, -2.356266]], [[54.635734, -2.354624], [54.635763, -2.354464]], [[54.635799, -2.352987], [54.635776, -2.352818]], [[54.635776, -2.352818], [54.635748, -2.352655]], [[54.637571, -2.343708], [54.637581, -2.343537]], [[54.637581, -2.343537], [54.637583, -2.343366]], [[54.637596, -2.342893], [54.637588, -2.342736]], [[54.637573, -2.342583], [54.63757, -2.342419]], [[54.63757, -2.342419], [54.637581, -2.342244]], [[54.637581, -2.342244], [54.637599, -2.34208]], [[54.637577, -2.341408], [54.637573, -2.341248]], [[54.637573, -2.341248], [54.637573, -2.341077]], [[54.637566, -2.340578], [54.637594, -2.340428]], [[54.637594, -2.340428], [54.637605, -2.340266]], [[54.637605, -2.340266], [54.637616, -2.340105]], [[54.637616, -2.340105], [54.637629, -2.339943]], [[54.637629, -2.339943], [54.63765, -2.339774]], [[54.63765, -2.339774], [54.637678, -2.339622]], [[54.637678, -2.339622], [54.637708, -2.339455]], [[54.637708, -2.339455], [54.637732, -2.339287]], [[54.637732, -2.339287], [54.63775, -2.33913]], [[54.63775, -2.33913], [54.637779, -2.338968]], [[54.637779, -2.338968], [54.63782, -2.338818]], [[54.63782, -2.338818], [54.637863, -2.338679]], [[54.638053, -2.337753], [54.638114, -2.337632]], [[54.638114, -2.337632], [54.638192, -2.337528]], [[54.638192, -2.337528], [54.638267, -2.337416]], [[54.638267, -2.337416], [54.638326, -2.337291]], [[54.638326, -2.337291], [54.638356, -2.337139]], [[54.638356, -2.337139], [54.638385, -2.336991]], [[54.638385, -2.336991], [54.638407, -2.336831]], [[54.638455, -2.336512], [54.638474, -2.336353]], [[54.638474, -2.336353], [54.638487, -2.3362]], [[54.638487, -2.3362], [54.638486, -2.336028]], [[54.638486, -2.336028], [54.638492, -2.335855]], [[54.638492, -2.335855], [54.638535, -2.335705]], [[54.638535, -2.335705], [54.638578, -2.335549]], [[54.638578, -2.335549], [54.638617, -2.33539]], [[54.638617, -2.33539], [54.638644, -2.335237]], [[54.638712, -2.334741], [54.638744, -2.334594]], [[54.638744, -2.334594], [54.638783, -2.33444]], [[54.638783, -2.33444], [54.638822, -2.33428]], [[54.638822, -2.33428], [54.638855, -2.334125]], [[54.638855, -2.334125], [54.638895, -2.333978]], [[54.638895, -2.333978], [54.638933, -2.33383]], [[54.638933, -2.33383], [54.638969, -2.333672]], [[54.638969, -2.333672], [54.639009, -2.333511]], [[54.639009, -2.333511], [54.63905, -2.333346]], [[54.63905, -2.333346], [54.639089, -2.33319]], [[54.639089, -2.33319], [54.639137, -2.333034]], [[54.639137, -2.333034], [54.639177, -2.332874]], [[54.639177, -2.332874], [54.63922, -2.332726]], [[54.63922, -2.332726], [54.639269, -2.332579]], [[54.639269, -2.332579], [54.639321, -2.332435]], [[54.639321, -2.332435], [54.639366, -2.332286]], [[54.639366, -2.332286], [54.63941, -2.332133]], [[54.63941, -2.332133], [54.639458, -2.331985]], [[54.639458, -2.331985], [54.639511, -2.331853]], [[54.639511, -2.331853], [54.63956, -2.331706]], [[54.63956, -2.331706], [54.639608, -2.331569]], [[54.639608, -2.331569], [54.639656, -2.331423]], [[54.639656, -2.331423], [54.639708, -2.331276]], [[54.639708, -2.331276], [54.639766, -2.331137]], [[54.639766, -2.331137], [54.639803, -2.330991]], [[54.640033, -2.330083], [54.640084, -2.329932]], [[54.640084, -2.329932], [54.640129, -2.329776]], [[54.640129, -2.329776], [54.640162, -2.329624]], [[54.640162, -2.329624], [54.640193, -2.329476]], [[54.640193, -2.329476], [54.640217, -2.329314]], [[54.640217, -2.329314], [54.640241, -2.329155]], [[54.640241, -2.329155], [54.640262, -2.329003]], [[54.640262, -2.329003], [54.640285, -2.328848]], [[54.64028, -2.328366], [54.640267, -2.328206]], [[54.640267, -2.328206], [54.640244, -2.328043]], [[54.640244, -2.328043], [54.640225, -2.327879]], [[54.64036, -2.326952], [54.640368, -2.326776]], [[54.640368, -2.326776], [54.640357, -2.326622]], [[54.640357, -2.326622], [54.64035, -2.326457]], [[54.64035, -2.326457], [54.640392, -2.326298]], [[54.640423, -2.325977], [54.64042, -2.325817]], [[54.640492, -2.325166], [54.640497, -2.324999]], [[54.640497, -2.324999], [54.640506, -2.324844]], [[54.640535, -2.324692], [54.640565, -2.324536]], [[54.640565, -2.324536], [54.640589, -2.324385]], [[54.640589, -2.324385], [54.640593, -2.324213]], [[54.640593, -2.324213], [54.64058, -2.324049]], [[54.64058, -2.324049], [54.640564, -2.323891]], [[54.640564, -2.323891], [54.640568, -2.323719]], [[54.640568, -2.323719], [54.640579, -2.323544]], [[54.640579, -2.323544], [54.640555, -2.323377]], [[54.640555, -2.323377], [54.640504, -2.323233]], [[54.640504, -2.323233], [54.640475, -2.323074]], [[54.640475, -2.323074], [54.640488, -2.322894]], [[54.640488, -2.322894], [54.640489, -2.322729]], [[54.640489, -2.322729], [54.640451, -2.322579]], [[54.640451, -2.322579], [54.640411, -2.322433]], [[54.640411, -2.322433], [54.640399, -2.322271]], [[54.640399, -2.322271], [54.640393, -2.322101]], [[54.640393, -2.322101], [54.640395, -2.321932]], [[54.640395, -2.321932], [54.640398, -2.321758]], [[54.640398, -2.321758], [54.640393, -2.321603]], [[54.640393, -2.321603], [54.640389, -2.321438]], [[54.640389, -2.321438], [54.640417, -2.321281]], [[54.640417, -2.321281], [54.64046, -2.321142]], [[54.64054, -2.320836], [54.640561, -2.320669]], [[54.640561, -2.320669], [54.640574, -2.320498]], [[54.640574, -2.320498], [54.640575, -2.320336]], [[54.640575, -2.320336], [54.640575, -2.320169]], [[54.640575, -2.320169], [54.640573, -2.320004]], [[54.640573, -2.320004], [54.640558, -2.31985]], [[54.640558, -2.31985], [54.64053, -2.319688]], [[54.640539, -2.319047], [54.64054, -2.318876]], [[54.64054, -2.318876], [54.640537, -2.318718]], [[54.640537, -2.318718], [54.640538, -2.318535]], [[54.640532, -2.318218], [54.640508, -2.318055]], [[54.640508, -2.318055], [54.640493, -2.317885]], [[54.640493, -2.317885], [54.640504, -2.317712]], [[54.640504, -2.317712], [54.640523, -2.31754]], [[54.640523, -2.31754], [54.640577, -2.317409]], [[54.640577, -2.317409], [54.640618, -2.317258]], [[54.640789, -2.317065], [54.64089, -2.317044]], [[54.641327, -2.316363], [54.641395, -2.316252]], [[54.641479, -2.315794], [54.641524, -2.315632]], [[54.641524, -2.315632], [54.641553, -2.315478]], [[54.641553, -2.315478], [54.641586, -2.315331]], [[54.64164, -2.315186], [54.641696, -2.315061]], [[54.641842, -2.314825], [54.641905, -2.3147]], [[54.641905, -2.3147], [54.641945, -2.314551]], [[54.641945, -2.314551], [54.641983, -2.314392]], [[54.641983, -2.314392], [54.642007, -2.314241]], [[54.642007, -2.314241], [54.642045, -2.314096]], [[54.642045, -2.314096], [54.642095, -2.313954]], [[54.642095, -2.313954], [54.642163, -2.313841]], [[54.642163, -2.313841], [54.642233, -2.313738]], [[54.642233, -2.313738], [54.642306, -2.313637]], [[54.642306, -2.313637], [54.642384, -2.313532]], [[54.642384, -2.313532], [54.64246, -2.313447]], [[54.64246, -2.313447], [54.642544, -2.313367]], [[54.642544, -2.313367], [54.642619, -2.313282]], [[54.642661, -2.313125], [54.642686, -2.312966]], [[54.642686, -2.312966], [54.642718, -2.312814]], [[54.642718, -2.312814], [54.642774, -2.312681]], [[54.642774, -2.312681], [54.642831, -2.31254]], [[54.643078, -2.312323], [54.643169, -2.31229]], [[54.643169, -2.31229], [54.643262, -2.312249]], [[54.643262, -2.312249], [54.643348, -2.312174]], [[54.643348, -2.312174], [54.64342, -2.312055]], [[54.64342, -2.312055], [54.643489, -2.31195]], [[54.643674, -2.311383], [54.643722, -2.311226]], [[54.643829, -2.310922], [54.64388, -2.31078]], [[54.64388, -2.31078], [54.643934, -2.310649]], [[54.644117, -2.310126], [54.644113, -2.309959]], [[54.644113, -2.309959], [54.644105, -2.309783]], [[54.644105, -2.309783], [54.644085, -2.309623]], [[54.644044, -2.309262], [54.644072, -2.309105]], [[54.644245, -2.308721], [54.644282, -2.308561]], [[54.644282, -2.308561], [54.644321, -2.308408]], [[54.644368, -2.308259], [54.644426, -2.308121]], [[54.644426, -2.308121], [54.644463, -2.307973]], [[54.644463, -2.307973], [54.644522, -2.307843]], [[54.644522, -2.307843], [54.644577, -2.307721]], [[54.644577, -2.307721], [54.644645, -2.307608]], [[54.644645, -2.307608], [54.644713, -2.307501]], [[54.644713, -2.307501], [54.644778, -2.307389]], [[54.644778, -2.307389], [54.644843, -2.307272]], [[54.644843, -2.307272], [54.644877, -2.307117]], [[54.644877, -2.307117], [54.644881, -2.306961]], [[54.644881, -2.306961], [54.644889, -2.306796]], [[54.644953, -2.306492], [54.645003, -2.306353]], [[54.645003, -2.306353], [54.645058, -2.306203]], [[54.645058, -2.306203], [54.645101, -2.306047]], [[54.645101, -2.306047], [54.645157, -2.305923]], [[54.645501, -2.305288], [54.645537, -2.305121]], [[54.645537, -2.305121], [54.64556, -2.304962]], [[54.64556, -2.304962], [54.645615, -2.304831]], [[54.646448, -2.304805], [54.646459, -2.30463]], [[54.646459, -2.30463], [54.646478, -2.304471]], [[54.646478, -2.304471], [54.646506, -2.304318]], [[54.646506, -2.304318], [54.646559, -2.30417]], [[54.646559, -2.30417], [54.64661, -2.304038]], [[54.64661, -2.304038], [54.646656, -2.303895]], [[54.646656, -2.303895], [54.646711, -2.303746]], [[54.646711, -2.303746], [54.646779, -2.303615]], [[54.646779, -2.303615], [54.646851, -2.303491]], [[54.646851, -2.303491], [54.64692, -2.30339]], [[54.64692, -2.30339], [54.646995, -2.303274]], [[54.646995, -2.303274], [54.647058, -2.303158]], [[54.64721, -2.302955], [54.647286, -2.302871]], [[54.647286, -2.302871], [54.647365, -2.30279]], [[54.647365, -2.30279], [54.647439, -2.302698]], [[54.647952, -2.302023], [54.647998, -2.301887]], [[54.648189, -2.301115], [54.648232, -2.300974]], [[54.648363, -2.300519], [54.648413, -2.300385]], [[54.648413, -2.300385], [54.648459, -2.300248]], [[54.648459, -2.300248], [54.648501, -2.300102]], [[54.648501, -2.300102], [54.648553, -2.299954]], [[54.648553, -2.299954], [54.64859, -2.299801]], [[54.64859, -2.299801], [54.648634, -2.299651]], [[54.648634, -2.299651], [54.648682, -2.299499]], [[54.648682, -2.299499], [54.648735, -2.299362]], [[54.648735, -2.299362], [54.6488, -2.299243]], [[54.6488, -2.299243], [54.648873, -2.299147]], [[54.648873, -2.299147], [54.648944, -2.299032]], [[54.648944, -2.299032], [54.64902, -2.298927]], [[54.64902, -2.298927], [54.649099, -2.298829]], [[54.649099, -2.298829], [54.649174, -2.298742]], [[54.649468, -2.298333], [54.649534, -2.298217]], [[54.649534, -2.298217], [54.649606, -2.298086]], [[54.649606, -2.298086], [54.649665, -2.297963]], [[54.649665, -2.297963], [54.649724, -2.297841]], [[54.649724, -2.297841], [54.649786, -2.297704]], [[54.649786, -2.297704], [54.649852, -2.297581]], [[54.649852, -2.297581], [54.649925, -2.297469]], [[54.649925, -2.297469], [54.650003, -2.297371]], [[54.650003, -2.297371], [54.650083, -2.297284]], [[54.650083, -2.297284], [54.650154, -2.297171]], [[54.650154, -2.297171], [54.65018, -2.297014]], [[54.65018, -2.297014], [54.650184, -2.296851]], [[54.650205, -2.296501], [54.650233, -2.296337]], [[54.650233, -2.296337], [54.650281, -2.2962]], [[54.650281, -2.2962], [54.650339, -2.296054]], [[54.650339, -2.296054], [54.650399, -2.295923]], [[54.650399, -2.295923], [54.650451, -2.295777]], [[54.650451, -2.295777], [54.65051, -2.295649]], [[54.65051, -2.295649], [54.650569, -2.295524]], [[54.650569, -2.295524], [54.650619, -2.295378]], [[54.650619, -2.295378], [54.65063, -2.295217]], [[54.65063, -2.295217], [54.650616, -2.29506]], [[54.650616, -2.29506], [54.650603, -2.294904]], [[54.650522, -2.294244], [54.650538, -2.294085]], [[54.65074, -2.293327], [54.650787, -2.293193]], [[54.650833, -2.293051], [54.650871, -2.292903]], [[54.650871, -2.292903], [54.650915, -2.292761]], [[54.651072, -2.292336], [54.651132, -2.292191]], [[54.651132, -2.292191], [54.651185, -2.292042]], [[54.651185, -2.292042], [54.651234, -2.291908]], [[54.651234, -2.291908], [54.651288, -2.291782]], [[54.651413, -2.291526], [54.651452, -2.291376]], [[54.651452, -2.291376], [54.651478, -2.291219]], [[54.652163, -2.291342], [54.652258, -2.291315]], [[54.652258, -2.291315], [54.652352, -2.291343]], [[54.652809, -2.291071], [54.6529, -2.291023]], [[54.6529, -2.291023], [54.652992, -2.290977]], [[54.652992, -2.290977], [54.65308, -2.290905]], [[54.65308, -2.290905], [54.65317, -2.290821]], [[54.65317, -2.290821], [54.65326, -2.290748]], [[54.65326, -2.290748], [54.653339, -2.290676]], [[54.653339, -2.290676], [54.653432, -2.290617]], [[54.653432, -2.290617], [54.653471, -2.290469]], [[54.653471, -2.290469], [54.653511, -2.29032]], [[54.653511, -2.29032], [54.653556, -2.29017]], [[54.653556, -2.29017], [54.653605, -2.290024]], [[54.653605, -2.290024], [54.653608, -2.289855]], [[54.653505, -2.28924], [54.653418, -2.289171]], [[54.653418, -2.289171], [54.653346, -2.289069]], [[54.651688, -2.288976], [54.651582, -2.288978]], [[54.651403, -2.288959], [54.651315, -2.288897]], [[54.651315, -2.288897], [54.65124, -2.2888]], [[54.65116, -2.288726], [54.6511, -2.288607]], [[54.650936, -2.287694], [54.650907, -2.287531]], [[54.650907, -2.287531], [54.650896, -2.287367]], [[54.650792, -2.287084], [54.650768, -2.286926]], [[54.650768, -2.286926], [54.65078, -2.286765]], [[54.65078, -2.286765], [54.650763, -2.286609]], [[54.650763, -2.286609], [54.650732, -2.28644]], [[54.650377, -2.28447], [54.650335, -2.284302]], [[54.650243, -2.284248], [54.650164, -2.284163]], [[54.650094, -2.283869], [54.650006, -2.283798]], [[54.650006, -2.283798], [54.649923, -2.283708]], [[54.648556, -2.282335], [54.648518, -2.282185]], [[54.648383, -2.281937], [54.64831, -2.281841]], [[54.64831, -2.281841], [54.648261, -2.281691]], [[54.648261, -2.281691], [54.648206, -2.281549]], [[54.648035, -2.280586], [54.647987, -2.280439]], [[54.647922, -2.280134], [54.647897, -2.279973]], [[54.647897, -2.279973], [54.64786, -2.279828]], [[54.64786, -2.279828], [54.647851, -2.279665]], [[54.647851, -2.279665], [54.647848, -2.279502]], [[54.647848, -2.279502], [54.647798, -2.279363]], [[54.647751, -2.278299], [54.647717, -2.278153]], [[54.647717, -2.278153], [54.647712, -2.277989]], [[54.647712, -2.277989], [54.647687, -2.277818]], [[54.647687, -2.277818], [54.647665, -2.277653]], [[54.64779, -2.275384], [54.647748, -2.27523]], [[54.647856, -2.274152], [54.647897, -2.273999]], [[54.648505, -2.26965], [54.64854, -2.269479]], [[54.648618, -2.268861], [54.648678, -2.268716]], [[54.648678, -2.268716], [54.648703, -2.26854]], [[54.648703, -2.26854], [54.648729, -2.268367]], [[54.648729, -2.268367], [54.648807, -2.268283]], [[54.648807, -2.268283], [54.648871, -2.268156]], [[54.648897, -2.267996], [54.648946, -2.267844]], [[54.648946, -2.267844], [54.648971, -2.267693]], [[54.648971, -2.267693], [54.649045, -2.267575]], [[54.649045, -2.267575], [54.64909, -2.267425]], [[54.64921, -2.26717], [54.649277, -2.267054]], [[54.649277, -2.267054], [54.649319, -2.266896]], [[54.649429, -2.266671], [54.649509, -2.266567]], [[54.649509, -2.266567], [54.649592, -2.266486]], [[54.649592, -2.266486], [54.649687, -2.266434]], [[54.649687, -2.266434], [54.649746, -2.266302]], [[54.650275, -2.265428], [54.650369, -2.265357]], [[54.650482, -2.265076], [54.650542, -2.264943]], [[54.651524, -2.262862], [54.65159, -2.262743]], [[54.65159, -2.262743], [54.651676, -2.262653]], [[54.651874, -2.262377], [54.651953, -2.262244]], [[54.652791, -2.260751], [54.652872, -2.260673]], [[54.653665, -2.26012], [54.653755, -2.260042]], [[54.653939, -2.259927], [54.654003, -2.259812]], [[54.654097, -2.259766], [54.654196, -2.259719]], [[54.654287, -2.259645], [54.654365, -2.259537]], [[54.654365, -2.259537], [54.654458, -2.259488]], [[54.654458, -2.259488], [54.654549, -2.259451]], [[54.654549, -2.259451], [54.654645, -2.259404]], [[54.654645, -2.259404], [54.654743, -2.259341]], [[54.654743, -2.259341], [54.65483, -2.259269]], [[54.65483, -2.259269], [54.654919, -2.259236]], [[54.655108, -2.25925], [54.6552, -2.259254]], [[54.655384, -2.259234], [54.655478, -2.25923]], [[54.655478, -2.25923], [54.65557, -2.259217]], [[54.655769, -2.259167], [54.655863, -2.259162]], [[54.655863, -2.259162], [54.655961, -2.259122]], [[54.655961, -2.259122], [54.656062, -2.259108]], [[54.656062, -2.259108], [54.656155, -2.259049]], [[54.656229, -2.258949], [54.656325, -2.258937]], [[54.656325, -2.258937], [54.656417, -2.258901]], [[54.656417, -2.258901], [54.656536, -2.258905]], [[54.656734, -2.258908], [54.656826, -2.258887]], [[54.657186, -2.258664], [54.65728, -2.258619]], [[54.65728, -2.258619], [54.657359, -2.258542]], [[54.657651, -2.25838], [54.657738, -2.258342]], [[54.657738, -2.258342], [54.657823, -2.258262]], [[54.658148, -2.257951], [54.658216, -2.257845]], [[54.658216, -2.257845], [54.658319, -2.257777]], [[54.658517, -2.257709], [54.658615, -2.25764]], [[54.658815, -2.257537], [54.658892, -2.257437]], [[54.659033, -2.257247], [54.659131, -2.257184]], [[54.659131, -2.257184], [54.659223, -2.257127]], [[54.659656, -2.256721], [54.659743, -2.256639]], [[54.659743, -2.256639], [54.659833, -2.256602]], [[54.659915, -2.25653], [54.659995, -2.256455]], [[54.659995, -2.256455], [54.660079, -2.256381]], [[54.660079, -2.256381], [54.660176, -2.25632]], [[54.660176, -2.25632], [54.660276, -2.256252]], [[54.660276, -2.256252], [54.660361, -2.256191]], [[54.660361, -2.256191], [54.660432, -2.256073]], [[54.660519, -2.255987], [54.660605, -2.255928]], [[54.660605, -2.255928], [54.660677, -2.255811]], [[54.660677, -2.255811], [54.66075, -2.2557]], [[54.660799, -2.255566], [54.660892, -2.255494]], [[54.660892, -2.255494], [54.660973, -2.255416]], [[54.660973, -2.255416], [54.661054, -2.255312]], [[54.661054, -2.255312], [54.661126, -2.255197]], [[54.661126, -2.255197], [54.661194, -2.255082]], [[54.661194, -2.255082], [54.661258, -2.254955]], [[54.661258, -2.254955], [54.661321, -2.25484]], [[54.661321, -2.25484], [54.661398, -2.25473]], [[54.661618, -2.254421], [54.661681, -2.254303]], [[54.661795, -2.25386], [54.661857, -2.253719]], [[54.662034, -2.253298], [54.662093, -2.253172]], [[54.662093, -2.253172], [54.662151, -2.253035]], [[54.662205, -2.252904], [54.662265, -2.252758]], [[54.662265, -2.252758], [54.662306, -2.252612]], [[54.662306, -2.252612], [54.662347, -2.252461]], [[54.662347, -2.252461], [54.66236, -2.252293]], [[54.66236, -2.252293], [54.662388, -2.252143]], [[54.662403, -2.251985], [54.662438, -2.251825]], [[54.662438, -2.251825], [54.662475, -2.251664]], [[54.662475, -2.251664], [54.662532, -2.25153]], [[54.662631, -2.251244], [54.662674, -2.251101]], [[54.662674, -2.251101], [54.662722, -2.250964]], [[54.662758, -2.250802], [54.662789, -2.250651]], [[54.662789, -2.250651], [54.662826, -2.2505]], [[54.662854, -2.250188], [54.662866, -2.250026]], [[54.662866, -2.250026], [54.662893, -2.249867]], [[54.662893, -2.249867], [54.662921, -2.249709]], [[54.662946, -2.249377], [54.662978, -2.249225]], [[54.662978, -2.249225], [54.663005, -2.249074]], [[54.663066, -2.24876], [54.663097, -2.248606]], [[54.663097, -2.248606], [54.663137, -2.248454]], [[54.663137, -2.248454], [54.663182, -2.2483]], [[54.663607, -2.246684], [54.663657, -2.246546]], [[54.663657, -2.246546], [54.663688, -2.246391]], [[54.663688, -2.246391], [54.663698, -2.246228]], [[54.663698, -2.246228], [54.66371, -2.246071]], [[54.66371, -2.246071], [54.663726, -2.245901]], [[54.663726, -2.245901], [54.663758, -2.245735]], [[54.663861, -2.244895], [54.663873, -2.244724]], [[54.663873, -2.244724], [54.663896, -2.244561]], [[54.663872, -2.243888], [54.663845, -2.243711]], [[54.663845, -2.243711], [54.66381, -2.243568]], [[54.66381, -2.243568], [54.663782, -2.243415]], [[54.663782, -2.243415], [54.663732, -2.243267]], [[54.663732, -2.243267], [54.663683, -2.24313]], [[54.663683, -2.24313], [54.663655, -2.242958]], [[54.663655, -2.242958], [54.663623, -2.242799]], [[54.663623, -2.242799], [54.663566, -2.242659]], [[54.663566, -2.242659], [54.663506, -2.242521]], [[54.663506, -2.242521], [54.663436, -2.242402]], [[54.663436, -2.242402], [54.663355, -2.242313]], [[54.663212, -2.242115], [54.663146, -2.242006]], [[54.663146, -2.242006], [54.66307, -2.241919]], [[54.663041, -2.238905], [54.66303, -2.238745]], [[54.66303, -2.238745], [54.662982, -2.238597]], [[54.662571, -2.237124], [54.662538, -2.236962]], [[54.662463, -2.236653], [54.662424, -2.236503]], [[54.662278, -2.236088], [54.662234, -2.235952]], [[54.662234, -2.235952], [54.662199, -2.235798]], [[54.662199, -2.235798], [54.66218, -2.235637]], [[54.66218, -2.235637], [54.662158, -2.235463]], [[54.662158, -2.235463], [54.662131, -2.235311]], [[54.662091, -2.234996], [54.66207, -2.234836]], [[54.66207, -2.234836], [54.662058, -2.234677]], [[54.661997, -2.23402], [54.662011, -2.233864]], [[54.662011, -2.233864], [54.661995, -2.233706]], [[54.661995, -2.233706], [54.661965, -2.233535]], [[54.661965, -2.233535], [54.661948, -2.233377]], [[54.661577, -2.231123], [54.661612, -2.230973]], [[54.662826, -2.229], [54.662874, -2.22885]], [[54.663465, -2.227529], [54.663532, -2.227407]], [[54.663532, -2.227407], [54.663608, -2.227292]], [[54.663608, -2.227292], [54.663674, -2.227177]], [[54.663674, -2.227177], [54.663741, -2.227069]], [[54.665331, -2.228631], [54.665428, -2.228659]], [[54.665593, -2.228512], [54.665677, -2.228426]], [[54.665677, -2.228426], [54.665749, -2.228329]], [[54.665917, -2.228155], [54.665999, -2.228091]], [[54.66623, -2.227837], [54.666308, -2.227727]], [[54.666382, -2.227631], [54.666447, -2.227511]], [[54.666447, -2.227511], [54.666526, -2.227391]], [[54.666526, -2.227391], [54.666608, -2.227309]], [[54.666608, -2.227309], [54.666685, -2.227218]], [[54.666034, -2.226914], [54.66594, -2.226877]], [[54.66594, -2.226877], [54.665863, -2.226765]], [[54.66577, -2.226742], [54.665685, -2.226688]], [[54.665543, -2.226478], [54.665467, -2.226354]], [[54.665467, -2.226354], [54.665401, -2.226239]], [[54.665401, -2.226239], [54.665322, -2.226149]], [[54.665145, -2.226005], [54.665064, -2.225905]], [[54.665064, -2.225905], [54.664973, -2.225851]], [[54.663309, -2.224075], [54.663233, -2.223966]], [[54.663233, -2.223966], [54.663151, -2.223876]], [[54.663151, -2.223876], [54.663091, -2.223753]], [[54.663091, -2.223753], [54.663038, -2.223624]], [[54.663038, -2.223624], [54.66298, -2.22348]], [[54.66298, -2.22348], [54.662944, -2.223319]], [[54.662944, -2.223319], [54.662909, -2.22317]], [[54.662909, -2.22317], [54.662861, -2.223029]], [[54.662861, -2.223029], [54.662799, -2.222888]], [[54.662799, -2.222888], [54.662751, -2.222747]], [[54.662557, -2.221548], [54.662525, -2.221399]], [[54.662525, -2.221399], [54.662472, -2.221244]], [[54.662472, -2.221244], [54.662461, -2.221089]], [[54.662449, -2.220923], [54.662433, -2.220757]], [[54.662433, -2.220757], [54.662388, -2.220613]], [[54.662388, -2.220613], [54.66231, -2.220506]], [[54.662135, -2.220121], [54.662066, -2.220017]], [[54.662001, -2.219894], [54.661938, -2.219754]], [[54.6618, -2.21934], [54.661755, -2.219204]], [[54.661755, -2.219204], [54.66171, -2.219059]], [[54.661615, -2.218763], [54.661578, -2.218615]], [[54.661578, -2.218615], [54.661496, -2.218528]], [[54.661303, -2.218167], [54.661235, -2.218048]], [[54.661143, -2.217776], [54.661102, -2.217611]], [[54.661102, -2.217611], [54.661044, -2.21746]], [[54.661044, -2.21746], [54.661002, -2.217294]], [[54.661002, -2.217294], [54.660935, -2.21717]], [[54.660663, -2.216471], [54.660596, -2.216362]], [[54.660525, -2.216247], [54.660436, -2.216185]], [[54.660436, -2.216185], [54.660338, -2.216138]], [[54.660338, -2.216138], [54.660247, -2.21608]], [[54.660247, -2.21608], [54.660162, -2.216021]], [[54.660162, -2.216021], [54.660075, -2.215978]], [[54.659986, -2.215914], [54.659907, -2.215807]], [[54.659907, -2.215807], [54.659837, -2.215699]], [[54.659837, -2.215699], [54.659759, -2.215622]], [[54.659688, -2.215503], [54.659616, -2.215402]], [[54.658886, -2.215402], [54.658788, -2.215388]], [[54.658596, -2.215349], [54.658505, -2.215303]], [[54.658141, -2.215038], [54.658055, -2.21498]], [[54.658055, -2.21498], [54.657962, -2.214937]], [[54.657962, -2.214937], [54.657875, -2.214877]], [[54.657875, -2.214877], [54.657782, -2.214802]], [[54.657782, -2.214802], [54.657687, -2.214748]], [[54.657687, -2.214748], [54.657595, -2.214673]], [[54.657595, -2.214673], [54.657513, -2.214585]], [[54.657513, -2.214585], [54.657414, -2.21456]], [[54.657218, -2.2146], [54.657119, -2.214559]], [[54.657119, -2.214559], [54.657021, -2.214536]], [[54.656788, -2.214797], [54.656719, -2.214929]], [[54.656719, -2.214929], [54.656655, -2.215057]], [[54.655795, -2.21485], [54.655697, -2.214925]], [[54.655515, -2.215027], [54.655424, -2.215113]], [[54.655325, -2.215156], [54.655226, -2.215125]], [[54.652894, -2.215219], [54.652807, -2.215259]], [[54.652311, -2.215787], [54.652228, -2.215865]], [[54.652228, -2.215865], [54.652142, -2.215929]], [[54.652142, -2.215929], [54.652054, -2.216012]], [[54.652054, -2.216012], [54.651962, -2.216082]], [[54.651962, -2.216082], [54.65188, -2.216171]], [[54.65116, -2.216541], [54.651063, -2.21655]], [[54.651063, -2.21655], [54.650971, -2.21654]], [[54.650971, -2.21654], [54.650879, -2.216546]], [[54.649142, -2.215189], [54.649103, -2.215045]], [[54.649103, -2.215045], [54.649083, -2.214892]], [[54.649009, -2.214582], [54.648974, -2.214436]], [[54.648742, -2.212975], [54.648723, -2.212813]], [[54.648495, -2.211117], [54.64846, -2.210956]], [[54.648257, -2.210631], [54.648202, -2.210483]], [[54.648042, -2.2101], [54.648049, -2.209944]], [[54.648049, -2.209944], [54.648015, -2.20979]], [[54.64788, -2.208888], [54.647819, -2.208754]], [[54.647819, -2.208754], [54.647759, -2.208637]], [[54.647744, -2.207999], [54.647739, -2.207844]], [[54.647739, -2.207844], [54.647728, -2.207677]], [[54.647728, -2.207677], [54.64773, -2.207514]], [[54.64773, -2.207514], [54.647687, -2.207344]], [[54.647583, -2.206589], [54.647596, -2.206414]], [[54.647339, -2.204274], [54.647362, -2.2041]], [[54.647362, -2.2041], [54.647357, -2.203928]], [[54.647357, -2.203928], [54.647367, -2.203765]], [[54.64738, -2.203435], [54.647376, -2.203274]], [[54.647365, -2.202624], [54.647353, -2.20246]], [[54.647353, -2.20246], [54.64735, -2.202299]], [[54.64735, -2.202299], [54.647359, -2.20212]], [[54.647321, -2.20164], [54.64731, -2.201464]], [[54.64731, -2.201464], [54.647295, -2.201309]], [[54.647295, -2.201309], [54.64731, -2.201149]], [[54.647325, -2.200654], [54.647359, -2.200481]], [[54.647359, -2.200481], [54.647354, -2.200317]], [[54.647354, -2.200317], [54.647343, -2.200155]], [[54.647352, -2.199831], [54.647362, -2.199664]], [[54.647362, -2.199664], [54.647365, -2.199509]], [[54.647361, -2.199335], [54.647341, -2.199179]], [[54.647341, -2.199179], [54.647333, -2.199018]], [[54.647261, -2.198721], [54.647226, -2.198569]], [[54.647226, -2.198569], [54.647187, -2.198418]], [[54.647157, -2.198097], [54.647155, -2.197938]], [[54.647164, -2.19762], [54.647173, -2.197449]], [[54.647173, -2.197449], [54.647144, -2.197287]], [[54.647136, -2.19563], [54.64712, -2.195461]], [[54.648171, -2.192565], [54.648236, -2.19245]], [[54.648439, -2.192128], [54.64853, -2.192042]], [[54.64853, -2.192042], [54.648602, -2.191934]], [[54.648916, -2.191143], [54.648998, -2.191038]], [[54.648998, -2.191038], [54.649042, -2.190892]], [[54.649066, -2.190737], [54.649115, -2.190594]], [[54.649115, -2.190594], [54.649187, -2.190473]], [[54.649187, -2.190473], [54.649245, -2.190338]], [[54.6497, -2.188905], [54.649762, -2.188775]], [[54.649762, -2.188775], [54.649824, -2.18864]], [[54.650204, -2.187894], [54.650252, -2.187757]], [[54.650218, -2.187437], [54.650188, -2.187267]], [[54.650188, -2.187267], [54.650159, -2.187104]], [[54.650159, -2.187104], [54.650184, -2.186942]], [[54.650291, -2.186932], [54.650303, -2.186758]], [[54.65028, -2.186591], [54.650263, -2.186438]], [[54.650263, -2.186438], [54.650337, -2.186336]], [[54.650483, -2.186081], [54.650506, -2.185929]], [[54.650761, -2.184839], [54.650762, -2.184682]], [[54.650762, -2.184682], [54.650839, -2.184574]], [[54.650839, -2.184574], [54.650875, -2.184422]], [[54.650875, -2.184422], [54.650915, -2.184255]], [[54.650915, -2.184255], [54.650937, -2.184085]], [[54.650953, -2.183732], [54.650945, -2.183561]], [[54.650945, -2.183561], [54.650916, -2.183379]], [[54.650916, -2.183379], [54.650878, -2.183222]], [[54.650878, -2.183222], [54.650868, -2.183065]], [[54.650868, -2.183065], [54.650823, -2.182911]], [[54.650823, -2.182911], [54.650779, -2.182774]], [[54.650686, -2.182475], [54.650688, -2.182311]], [[54.650717, -2.180857], [54.650719, -2.180691]], [[54.650736, -2.179854], [54.650705, -2.179689]], [[54.650491, -2.178542], [54.650435, -2.178408]], [[54.650211, -2.177473], [54.650175, -2.177329]], [[54.650175, -2.177329], [54.650128, -2.177169]], [[54.650093, -2.177002], [54.650059, -2.176852]], [[54.650039, -2.176686], [54.650009, -2.176517]], [[54.650009, -2.176517], [54.649984, -2.176362]], [[54.649783, -2.175817], [54.649719, -2.175684]], [[54.649593, -2.175363], [54.649556, -2.175217]], [[54.649494, -2.174717], [54.649513, -2.17456]], [[54.649542, -2.174225], [54.649554, -2.174062]], [[54.649554, -2.174062], [54.649565, -2.173908]], [[54.649587, -2.173744], [54.649608, -2.17359]], [[54.649707, -2.173202], [54.649701, -2.17304]], [[54.649705, -2.172719], [54.649725, -2.172565]], [[54.649725, -2.172565], [54.649718, -2.172398]], [[54.649752, -2.172248], [54.649789, -2.172102]], [[54.649789, -2.172102], [54.649812, -2.17194]], [[54.64986, -2.171791], [54.64991, -2.171656]], [[54.649932, -2.171489], [54.649986, -2.17135]], [[54.650027, -2.171203], [54.650034, -2.171031]], [[54.649933, -2.170561], [54.649884, -2.170408]], [[54.649884, -2.170408], [54.649842, -2.170262]], [[54.649842, -2.170262], [54.649818, -2.170111]], [[54.649818, -2.170111], [54.649788, -2.169964]], [[54.649788, -2.169964], [54.649751, -2.16982]], [[54.649751, -2.16982], [54.649715, -2.169669]], [[54.649715, -2.169669], [54.649668, -2.169527]], [[54.649668, -2.169527], [54.64963, -2.169379]], [[54.64963, -2.169379], [54.649589, -2.169231]], [[54.649499, -2.168921], [54.649445, -2.168769]], [[54.649328, -2.16832], [54.649288, -2.168176]], [[54.649258, -2.168021], [54.649253, -2.167851]], [[54.649215, -2.167687], [54.649197, -2.167532]], [[54.649199, -2.167376], [54.649215, -2.167217]], [[54.649265, -2.166911], [54.649308, -2.166775]], [[54.649361, -2.166531], [54.6494, -2.166367]], [[54.649447, -2.166037], [54.649473, -2.165865]], [[54.649473, -2.165865], [54.649491, -2.165699]], [[54.649538, -2.165385], [54.64955, -2.165225]], [[54.64955, -2.165225], [54.649533, -2.16505]], [[54.649533, -2.16505], [54.649496, -2.1649]], [[54.649496, -2.1649], [54.649476, -2.164728]], [[54.649433, -2.1644], [54.649394, -2.16426]], [[54.649215, -2.163488], [54.649206, -2.163321]], [[54.649206, -2.163321], [54.649189, -2.163159]], [[54.64913, -2.162848], [54.64911, -2.162673]], [[54.64911, -2.162673], [54.649114, -2.162503]], [[54.649114, -2.162503], [54.64912, -2.162331]], [[54.64912, -2.162331], [54.649111, -2.162158]], [[54.649105, -2.16182], [54.649123, -2.161647]], [[54.649123, -2.161647], [54.649129, -2.161478]], [[54.649129, -2.161478], [54.649136, -2.161318]], [[54.649136, -2.161318], [54.649145, -2.161155]], [[54.649112, -2.160652], [54.649112, -2.16047]], [[54.649112, -2.16047], [54.649104, -2.160312]], [[54.649085, -2.159983], [54.649069, -2.159816]], [[54.649069, -2.159816], [54.649042, -2.159652]], [[54.649042, -2.159652], [54.649008, -2.159498]], [[54.649008, -2.159498], [54.64898, -2.159348]], [[54.648923, -2.15904], [54.648908, -2.158877]], [[54.648536, -2.157505], [54.648495, -2.157348]], [[54.648495, -2.157348], [54.648449, -2.157197]], [[54.648184, -2.155147], [54.648179, -2.154973]], [[54.648179, -2.154973], [54.648172, -2.154817]], [[54.647856, -2.153631], [54.647804, -2.153502]], [[54.647804, -2.153502], [54.647764, -2.153357]], [[54.647425, -2.152573], [54.647363, -2.152436]], [[54.647195, -2.152418], [54.647128, -2.152308]], [[54.647128, -2.152308], [54.647078, -2.152162]], [[54.647078, -2.152162], [54.647016, -2.152044]], [[54.646623, -2.151567], [54.646533, -2.151614]], [[54.646351, -2.151535], [54.646264, -2.151439]], [[54.646264, -2.151439], [54.646178, -2.151354]], [[54.646178, -2.151354], [54.646097, -2.151245]], [[54.646097, -2.151245], [54.646067, -2.151087]], [[54.645969, -2.150394], [54.645908, -2.150275]], [[54.64587, -2.150113], [54.645811, -2.14999]], [[54.645686, -2.149736], [54.645626, -2.149606]], [[54.64556, -2.149488], [54.645492, -2.149352]], [[54.645357, -2.149117], [54.645273, -2.149051]], [[54.645205, -2.148929], [54.645112, -2.148896]], [[54.645023, -2.148853], [54.644943, -2.148771]], [[54.644756, -2.148627], [54.644678, -2.148533]], [[54.644435, -2.148278], [54.644349, -2.14821]], [[54.644161, -2.147816], [54.64409, -2.147705]], [[54.644035, -2.147049], [54.644006, -2.146885]], [[54.644006, -2.146885], [54.643945, -2.146767]], [[54.643945, -2.146767], [54.643881, -2.146643]], [[54.64344, -2.145882], [54.643403, -2.145733]], [[54.642732, -2.144789], [54.642653, -2.144675]], [[54.642653, -2.144675], [54.642585, -2.144562]], [[54.642166, -2.143513], [54.642091, -2.143412]], [[54.641349, -2.142123], [54.641315, -2.141979]], [[54.641254, -2.141666], [54.641206, -2.141532]], [[54.641206, -2.141532], [54.641171, -2.141382]], [[54.641171, -2.141382], [54.641147, -2.141232]], [[54.641147, -2.141232], [54.641133, -2.141074]], [[54.640597, -2.136407], [54.640564, -2.136249]], [[54.640564, -2.136249], [54.64053, -2.1361]], [[54.640128, -2.134643], [54.640076, -2.134507]], [[54.639811, -2.133697], [54.639757, -2.133546]], [[54.639688, -2.133431], [54.639619, -2.133309]], [[54.639505, -2.133038], [54.639452, -2.132908]], [[54.639452, -2.132908], [54.639403, -2.132755]], [[54.639079, -2.132107], [54.638999, -2.132002]], [[54.638925, -2.131888], [54.638837, -2.131796]], [[54.638837, -2.131796], [54.638767, -2.13167]], [[54.636426, -2.130013], [54.636339, -2.129972]], [[54.636248, -2.129974], [54.636146, -2.129942]], [[54.636146, -2.129942], [54.636049, -2.129957]], [[54.635854, -2.129927], [54.635758, -2.12988]], [[54.635477, -2.129825], [54.635376, -2.12979]], [[54.635376, -2.12979], [54.635279, -2.12976]], [[54.634487, -2.129628], [54.634394, -2.129612]], [[54.63372, -2.129681], [54.633654, -2.129567]], [[54.632487, -2.128629], [54.632425, -2.128515]], [[54.632205, -2.127632], [54.632145, -2.127511]], [[54.632145, -2.127511], [54.632071, -2.12738]], [[54.632071, -2.12738], [54.632015, -2.127232]], [[54.631882, -2.126991], [54.631836, -2.126829]], [[54.631505, -2.125876], [54.631489, -2.125719]], [[54.631489, -2.125719], [54.631447, -2.125563]], [[54.631447, -2.125563], [54.63139, -2.125426]], [[54.63135, -2.125122], [54.631333, -2.124955]], [[54.630942, -2.123553], [54.630897, -2.123404]], [[54.630897, -2.123404], [54.630867, -2.123258]], [[54.630486, -2.118172], [54.630491, -2.117988]], [[54.630523, -2.117667], [54.630508, -2.117493]], [[54.630508, -2.117493], [54.63053, -2.117316]], [[54.63053, -2.117316], [54.630508, -2.117149]], [[54.628908, -2.114112], [54.628864, -2.113958]], [[54.628872, -2.113545], [54.628886, -2.113371]], [[54.628325, -2.111547], [54.6283, -2.111386]], [[54.6283, -2.111386], [54.628264, -2.111224]], [[54.628264, -2.111224], [54.628222, -2.111076]], [[54.628222, -2.111076], [54.628172, -2.110929]], [[54.628172, -2.110929], [54.628123, -2.110766]], [[54.628123, -2.110766], [54.628062, -2.110632]], [[54.627211, -2.108395], [54.62717, -2.108252]], [[54.62717, -2.108252], [54.627115, -2.108113]], [[54.62702, -2.107542], [54.627003, -2.107388]], [[54.626544, -2.106795], [54.626505, -2.10665]], [[54.626038, -2.105203], [54.625993, -2.105042]], [[54.625993, -2.105042], [54.625933, -2.104899]], [[54.625909, -2.104727], [54.625882, -2.104571]], [[54.625448, -2.103866], [54.625379, -2.103762]], [[54.623756, -2.099159], [54.623765, -2.098986]], [[54.623699, -2.098327], [54.623673, -2.098159]], [[54.623673, -2.098159], [54.623642, -2.098009]], [[54.623576, -2.097525], [54.623546, -2.097368]], [[54.6231, -2.096303], [54.623046, -2.096177]], [[54.62271, -2.094365], [54.622679, -2.09421]], [[54.622679, -2.09421], [54.622665, -2.094041]], [[54.622665, -2.094041], [54.62264, -2.093886]], [[54.62264, -2.093886], [54.622623, -2.093716]], [[54.622623, -2.093716], [54.622619, -2.093554]], [[54.622636, -2.093231], [54.622658, -2.09306]], [[54.622686, -2.092588], [54.622691, -2.092419]], [[54.622705, -2.091437], [54.622681, -2.091268]], [[54.622681, -2.091268], [54.622662, -2.091105]], [[54.622562, -2.090482], [54.622539, -2.090316]], [[54.622473, -2.089999], [54.622434, -2.089859]], [[54.622434, -2.089859], [54.622406, -2.089708]], [[54.622406, -2.089708], [54.622376, -2.089541]], [[54.622376, -2.089541], [54.622337, -2.08939]], [[54.622296, -2.089227], [54.622246, -2.089079]], [[54.622246, -2.089079], [54.622206, -2.088936]], [[54.622206, -2.088936], [54.622156, -2.088795]], [[54.622156, -2.088795], [54.622112, -2.088647]], [[54.622112, -2.088647], [54.622073, -2.088506]], [[54.621995, -2.088212], [54.621948, -2.08806]], [[54.621948, -2.08806], [54.62192, -2.087906]], [[54.62172, -2.086445], [54.621699, -2.086288]], [[54.621699, -2.086288], [54.621679, -2.086122]], [[54.621679, -2.086122], [54.621656, -2.085972]], [[54.621628, -2.085122], [54.621724, -2.085115]], [[54.621724, -2.085115], [54.621825, -2.085085]], [[54.621924, -2.085036], [54.622016, -2.084969]], [[54.622016, -2.084969], [54.622092, -2.084882]], [[54.622092, -2.084882], [54.622166, -2.08479]], [[54.622285, -2.084534], [54.622352, -2.084409]], [[54.622352, -2.084409], [54.62242, -2.08429]], [[54.62242, -2.08429], [54.622487, -2.08416]], [[54.622487, -2.08416], [54.62255, -2.084039]], [[54.622713, -2.083873], [54.622799, -2.08382]], [[54.622799, -2.08382], [54.622891, -2.083762]], [[54.622891, -2.083762], [54.622987, -2.083703]], [[54.623364, -2.08354], [54.623453, -2.0835]], [[54.623453, -2.0835], [54.62352, -2.083383]], [[54.62371, -2.083299], [54.623795, -2.083245]], [[54.623795, -2.083245], [54.623884, -2.083201]], [[54.62498, -2.083703], [54.625077, -2.083707]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_a8140964724738b306d780752242a102 = L.polyline(
                [[[54.630501, -2.397736], [54.630488, -2.397687]], [[54.630224, -2.395733], [54.630186, -2.395741]], [[54.634602, -2.372707], [54.634662, -2.372562]], [[54.634919, -2.370818], [54.634942, -2.370661]], [[54.635425, -2.364239], [54.635395, -2.364137]], [[54.635445, -2.363719], [54.635542, -2.363678]], [[54.635882, -2.363437], [54.63586, -2.363349]], [[54.635861, -2.363173], [54.63587, -2.363006]], [[54.635837, -2.351246], [54.635826, -2.351086]], [[54.635826, -2.351086], [54.635817, -2.35092]], [[54.636222, -2.348149], [54.636236, -2.3481]], [[54.640618, -2.317258], [54.640626, -2.317219]], [[54.641165, -2.316753], [54.641182, -2.316598]], [[54.644161, -2.310615], [54.644163, -2.31044]], [[54.644163, -2.31044], [54.644145, -2.310293]], [[54.644085, -2.309623], [54.644079, -2.309587]], [[54.644055, -2.309421], [54.644044, -2.309262]], [[54.645219, -2.305799], [54.64524, -2.305755]], [[54.64524, -2.305755], [54.645317, -2.30564]], [[54.651443, -2.290741], [54.651448, -2.290697]], [[54.653608, -2.289855], [54.653628, -2.289798]], [[54.653612, -2.289636], [54.653623, -2.28946]], [[54.65298, -2.289041], [54.652904, -2.289045]], [[54.652814, -2.289003], [54.652727, -2.288948]], [[54.652727, -2.288948], [54.65264, -2.288919]], [[54.652525, -2.288911], [54.652445, -2.288835]], [[54.652445, -2.288835], [54.652363, -2.288794]], [[54.652363, -2.288794], [54.652277, -2.288736]], [[54.652052, -2.288713], [54.652033, -2.288727]], [[54.651942, -2.288751], [54.651855, -2.288813]], [[54.651754, -2.288999], [54.651781, -2.28906]], [[54.650734, -2.286281], [54.65068, -2.286177]], [[54.650413, -2.284786], [54.650406, -2.284621]], [[54.649863, -2.283729], [54.649803, -2.28361]], [[54.649803, -2.28361], [54.649753, -2.283481]], [[54.647769, -2.278873], [54.647755, -2.278792]], [[54.650729, -2.264402], [54.650786, -2.264279]], [[54.651084, -2.263672], [54.651124, -2.263556]], [[54.651124, -2.263556], [54.65119, -2.263444]], [[54.652521, -2.261202], [54.652563, -2.26106]], [[54.661454, -2.254601], [54.661451, -2.25456]], [[54.663796, -2.245611], [54.663803, -2.24543]], [[54.662914, -2.241755], [54.66289, -2.241727]], [[54.662571, -2.229617], [54.662611, -2.229512]], [[54.662611, -2.229512], [54.662646, -2.229366]], [[54.66294, -2.228557], [54.662956, -2.228484]], [[54.662994, -2.228333], [54.663054, -2.228216]], [[54.666669, -2.226669], [54.66657, -2.226701]], [[54.6626, -2.221951], [54.662584, -2.221878]], [[54.660726, -2.216629], [54.660741, -2.216592]], [[54.659218, -2.215225], [54.65916, -2.215259]], [[54.659069, -2.215354], [54.658984, -2.215419]], [[54.658984, -2.215419], [54.658886, -2.215402]], [[54.655867, -2.21477], [54.655881, -2.21479]], [[54.654761, -2.214997], [54.654752, -2.21501]], [[54.654678, -2.214921], [54.654588, -2.214933]], [[54.654495, -2.214939], [54.654475, -2.214945]], [[54.654118, -2.214792], [54.654027, -2.214757]], [[54.654027, -2.214757], [54.653929, -2.214782]], [[54.653301, -2.214874], [54.653259, -2.214929]], [[54.651341, -2.216457], [54.651348, -2.216436]], [[54.648773, -2.214092], [54.648773, -2.21408]], [[54.648797, -2.213925], [54.648856, -2.213791]], [[54.648706, -2.212672], [54.648649, -2.212546]], [[54.648649, -2.212546], [54.648682, -2.212391]], [[54.647422, -2.194183], [54.647463, -2.194034]], [[54.650249, -2.187601], [54.650218, -2.187437]], [[54.65029, -2.187111], [54.650303, -2.187124]], [[54.650398, -2.186219], [54.650441, -2.186244]], [[54.650548, -2.185626], [54.650561, -2.185634]], [[54.649749, -2.17336], [54.649707, -2.173202]], [[54.649328, -2.166679], [54.649361, -2.166531]], [[54.648842, -2.157981], [54.648819, -2.157943]], [[54.648759, -2.157817], [54.64868, -2.157729]], [[54.647712, -2.153052], [54.647739, -2.152954]], [[54.646986, -2.151729], [54.646927, -2.151604]], [[54.646138, -2.15063], [54.646175, -2.150484]], [[54.646175, -2.150484], [54.646183, -2.15045]], [[54.641098, -2.140574], [54.641057, -2.140445]], [[54.641031, -2.140286], [54.641033, -2.14013]], [[54.640779, -2.137183], [54.640734, -2.137026]], [[54.640315, -2.13521], [54.640261, -2.135074]], [[54.635187, -2.129745], [54.635145, -2.129776]], [[54.635058, -2.129703], [54.634959, -2.129703]], [[54.634141, -2.129515], [54.634055, -2.129568]], [[54.633896, -2.129701], [54.633804, -2.129753]], [[54.631601, -2.126331], [54.631569, -2.126188]], [[54.631569, -2.126188], [54.631528, -2.126036]], [[54.630381, -2.116036], [54.630311, -2.115936]], [[54.628462, -2.112148], [54.628433, -2.112029]], [[54.627106, -2.107987], [54.627055, -2.107858]], [[54.626678, -2.107034], [54.626611, -2.106927]], [[54.625735, -2.104259], [54.625643, -2.10423]], [[54.622919, -2.095736], [54.622889, -2.095645]], [[54.622889, -2.095645], [54.622866, -2.095471]], [[54.624093, -2.082889], [54.624102, -2.082821]], [[54.624314, -2.083367], [54.624408, -2.083374]], [[54.624408, -2.083374], [54.624416, -2.083373]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_7c6010b18143891edd66a738c960cffa = L.polyline(
                [[[54.630488, -2.397687], [54.63052, -2.397532]], [[54.630568, -2.396569], [54.63055, -2.39651]], [[54.630258, -2.395632], [54.63019, -2.395531]], [[54.634537, -2.372829], [54.634602, -2.372707]], [[54.635729, -2.363622], [54.635745, -2.363614]], [[54.635834, -2.363569], [54.635882, -2.363437]], [[54.63586, -2.363349], [54.635861, -2.363173]], [[54.636236, -2.3481], [54.636313, -2.347987]], [[54.640626, -2.317219], [54.640687, -2.31708]], [[54.641413, -2.316106], [54.641448, -2.315951]], [[54.645402, -2.305591], [54.645408, -2.305588]], [[54.651542, -2.290703], [54.65163, -2.290756]], [[54.652904, -2.289045], [54.652814, -2.289003]], [[54.65264, -2.288919], [54.652582, -2.289037]], [[54.652277, -2.288736], [54.652242, -2.28874]], [[54.652242, -2.28874], [54.652141, -2.288748]], [[54.652033, -2.288727], [54.651942, -2.288751]], [[54.65068, -2.286177], [54.650631, -2.286025]], [[54.647917, -2.27369], [54.647959, -2.273538]], [[54.648518, -2.269333], [54.648557, -2.26918]], [[54.66289, -2.241727], [54.662972, -2.241632]], [[54.661719, -2.232538], [54.66165, -2.232429]], [[54.666772, -2.226639], [54.666762, -2.226633]], [[54.666327, -2.22687], [54.666232, -2.226903]], [[54.662584, -2.221878], [54.662591, -2.221705]], [[54.65916, -2.215259], [54.659069, -2.215354]], [[54.655881, -2.21479], [54.655795, -2.21485]], [[54.654475, -2.214945], [54.654385, -2.214863]], [[54.653259, -2.214929], [54.65317, -2.215013]], [[54.651348, -2.216436], [54.651256, -2.216502]], [[54.647072, -2.196649], [54.647081, -2.196651]], [[54.647134, -2.19614], [54.64711, -2.195967]], [[54.650303, -2.187124], [54.650291, -2.186932]], [[54.650441, -2.186244], [54.650483, -2.186081]], [[54.650561, -2.185634], [54.650643, -2.185721]], [[54.650643, -2.185721], [54.650689, -2.185761]], [[54.649689, -2.175659], [54.649643, -2.175495]], [[54.649773, -2.173506], [54.649803, -2.173496]], [[54.646927, -2.151604], [54.646925, -2.151587]], [[54.646067, -2.150941], [54.646105, -2.150793]], [[54.646102, -2.150519], [54.646047, -2.150473]], [[54.641057, -2.140445], [54.641031, -2.140286]], [[54.64078, -2.137202], [54.640779, -2.137183]], [[54.630707, -2.121574], [54.630712, -2.121549]], [[54.630712, -2.121549], [54.630743, -2.121395]], [[54.630479, -2.116567], [54.630471, -2.116412]], [[54.628433, -2.112029], [54.628401, -2.111863]], [[54.625821, -2.104321], [54.625735, -2.104259]], [[54.624258, -2.101402], [54.624252, -2.101372]], [[54.62415, -2.08297], [54.624196, -2.083073]], [[54.624196, -2.083073], [54.624221, -2.083233]], [[54.624221, -2.083233], [54.624216, -2.083359]], [[54.624216, -2.083359], [54.624314, -2.083367]], [[54.624416, -2.083373], [54.624518, -2.08344]], [[54.62509, -2.083755], [54.625188, -2.08376]], [[54.625448, -2.083823], [54.625518, -2.084062]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_507593e12685109c5c568d54707c95b6 = L.polyline(
                [[[54.630186, -2.395741], [54.630258, -2.395632]], [[54.635745, -2.363614], [54.635834, -2.363569]], [[54.644079, -2.309587], [54.644055, -2.309421]], [[54.645408, -2.305588], [54.645461, -2.305438]], [[54.651448, -2.290697], [54.651542, -2.290703]], [[54.653628, -2.289798], [54.653612, -2.289636]], [[54.652582, -2.289037], [54.652581, -2.28906]], [[54.652581, -2.28906], [54.652525, -2.288911]], [[54.651781, -2.28906], [54.651688, -2.288976]], [[54.659223, -2.257102], [54.659313, -2.257022]], [[54.662956, -2.228484], [54.662994, -2.228333]], [[54.666762, -2.226633], [54.666669, -2.226669]], [[54.654752, -2.21501], [54.654678, -2.214921]], [[54.648773, -2.21408], [54.648797, -2.213925]], [[54.647081, -2.196651], [54.647132, -2.196522]], [[54.650228, -2.187666], [54.650314, -2.187724]], [[54.650314, -2.187724], [54.650317, -2.187726]], [[54.650317, -2.187726], [54.650249, -2.187601]], [[54.650689, -2.185761], [54.650615, -2.185668]], [[54.650615, -2.185668], [54.650609, -2.185637]], [[54.649803, -2.173496], [54.649749, -2.17336]], [[54.648819, -2.157943], [54.648759, -2.157817]], [[54.647739, -2.152954], [54.647663, -2.152848]], [[54.646925, -2.151587], [54.646821, -2.151615]], [[54.646105, -2.150793], [54.646093, -2.150781]], [[54.646093, -2.150781], [54.646138, -2.15063]], [[54.646183, -2.15045], [54.646102, -2.150519]], [[54.635145, -2.129776], [54.635058, -2.129703]], [[54.624252, -2.101372], [54.624179, -2.101226]], [[54.624102, -2.082821], [54.62415, -2.08297]], [[54.625518, -2.084062], [54.625519, -2.084078]], [[54.625519, -2.084078], [54.625518, -2.084077]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_1048bb774c61825a705acc9af1f39bfc = L.polyline(
                [[[54.633512, -2.384595], [54.63356, -2.384452]], [[54.640212, -2.327566], [54.640249, -2.327397]], [[54.640249, -2.327397], [54.640284, -2.327248]], [[54.640284, -2.327248], [54.640328, -2.327101]], [[54.640328, -2.327101], [54.64036, -2.326952]], [[54.641252, -2.316471], [54.641327, -2.316363]], [[54.641696, -2.315061], [54.641762, -2.314939]], [[54.641762, -2.314939], [54.641842, -2.314825]], [[54.643722, -2.311226], [54.643773, -2.311077]], [[54.643773, -2.311077], [54.643829, -2.310922]], [[54.651019, -2.292463], [54.651072, -2.292336]], [[54.652445, -2.291333], [54.652553, -2.291263]], [[54.652553, -2.291263], [54.652646, -2.291243]], [[54.65149, -2.289013], [54.651403, -2.288959]], [[54.65124, -2.2888], [54.65116, -2.288726]], [[54.650591, -2.285872], [54.650573, -2.285717]], [[54.650573, -2.285717], [54.650541, -2.28557]], [[54.648585, -2.269008], [54.648618, -2.268861]], [[54.65119, -2.263444], [54.651254, -2.263321]], [[54.651254, -2.263321], [54.651319, -2.263207]], [[54.652038, -2.262155], [54.652106, -2.262038]], [[54.65271, -2.260833], [54.652791, -2.260751]], [[54.65385, -2.259989], [54.653939, -2.259927]], [[54.654196, -2.259719], [54.654287, -2.259645]], [[54.654919, -2.259236], [54.655015, -2.25924]], [[54.655015, -2.25924], [54.655108, -2.25925]], [[54.656536, -2.258905], [54.656641, -2.258908]], [[54.656641, -2.258908], [54.656734, -2.258908]], [[54.657559, -2.258454], [54.657651, -2.25838]], [[54.658319, -2.257777], [54.658425, -2.257756]], [[54.658425, -2.257756], [54.658517, -2.257709]], [[54.658615, -2.25764], [54.658719, -2.257595]], [[54.658719, -2.257595], [54.658815, -2.257537]], [[54.659573, -2.256798], [54.659656, -2.256721]], [[54.659833, -2.256602], [54.659915, -2.25653]], [[54.661538, -2.254491], [54.661618, -2.254421]], [[54.662151, -2.253035], [54.662205, -2.252904]], [[54.663836, -2.245255], [54.663848, -2.24507]], [[54.663848, -2.24507], [54.663861, -2.244895]], [[54.666308, -2.227727], [54.666382, -2.227631]], [[54.665863, -2.226765], [54.66577, -2.226742]], [[54.662461, -2.221089], [54.662449, -2.220923]], [[54.662066, -2.220017], [54.662001, -2.219894]], [[54.660596, -2.216362], [54.660525, -2.216247]], [[54.658696, -2.215378], [54.658596, -2.215349]], [[54.655424, -2.215113], [54.655325, -2.215156]], [[54.647155, -2.197938], [54.647158, -2.197782]], [[54.647158, -2.197782], [54.647164, -2.19762]], [[54.647146, -2.196367], [54.64715, -2.196212]], [[54.650506, -2.185929], [54.650504, -2.185768]], [[54.650655, -2.185494], [54.650656, -2.18532]], [[54.650656, -2.18532], [54.650688, -2.185151]], [[54.650688, -2.185151], [54.650725, -2.184992]], [[54.650725, -2.184992], [54.650761, -2.184839]], [[54.650605, -2.178795], [54.650552, -2.178659]], [[54.650552, -2.178659], [54.650491, -2.178542]], [[54.65028, -2.177783], [54.650252, -2.177628]], [[54.650252, -2.177628], [54.650211, -2.177473]], [[54.650128, -2.177169], [54.650093, -2.177002]], [[54.649565, -2.173908], [54.649587, -2.173744]], [[54.649812, -2.17194], [54.64986, -2.171791]], [[54.649986, -2.17135], [54.650027, -2.171203]], [[54.649253, -2.167851], [54.649215, -2.167687]], [[54.649215, -2.167217], [54.649228, -2.167063]], [[54.649228, -2.167063], [54.649265, -2.166911]], [[54.649433, -2.1662], [54.649447, -2.166037]], [[54.649263, -2.163799], [54.649227, -2.163655]], [[54.649227, -2.163655], [54.649215, -2.163488]], [[54.647499, -2.152684], [54.647425, -2.152573]], [[54.646725, -2.151587], [54.646623, -2.151567]], [[54.645811, -2.14999], [54.645733, -2.149875]], [[54.645733, -2.149875], [54.645686, -2.149736]], [[54.644943, -2.148771], [54.644849, -2.148692]], [[54.644849, -2.148692], [54.644756, -2.148627]], [[54.644349, -2.14821], [54.64427, -2.148103]], [[54.644208, -2.147959], [54.644161, -2.147816]], [[54.643881, -2.146643], [54.643801, -2.146558]], [[54.643516, -2.146003], [54.64344, -2.145882]], [[54.639757, -2.133546], [54.639688, -2.133431]], [[54.639201, -2.13238], [54.639141, -2.132243]], [[54.636615, -2.130111], [54.636525, -2.130054]], [[54.636525, -2.130054], [54.636426, -2.130013]], [[54.634959, -2.129703], [54.63487, -2.12967]], [[54.634773, -2.129654], [54.634676, -2.129623]], [[54.632425, -2.128515], [54.632362, -2.128394]], [[54.630491, -2.117988], [54.630527, -2.117837]], [[54.630527, -2.117837], [54.630523, -2.117667]], [[54.630452, -2.116258], [54.630391, -2.11611]], [[54.628886, -2.113371], [54.628885, -2.113207]], [[54.628885, -2.113207], [54.628848, -2.113055]], [[54.628848, -2.113055], [54.628795, -2.112925]], [[54.628678, -2.112662], [54.628612, -2.112549]], [[54.627003, -2.107388], [54.626932, -2.107261]], [[54.625933, -2.104899], [54.625909, -2.104727]], [[54.624686, -2.10269], [54.624647, -2.102513]], [[54.624647, -2.102513], [54.624582, -2.102404]], [[54.623987, -2.100257], [54.623957, -2.100086]], [[54.623957, -2.100086], [54.623911, -2.099922]], [[54.622658, -2.09306], [54.622682, -2.092909]], [[54.622682, -2.092909], [54.62269, -2.092753]], [[54.62269, -2.092753], [54.622686, -2.092588]], [[54.622539, -2.090316], [54.622502, -2.090159]], [[54.624802, -2.083595], [54.624888, -2.083653]], [[54.624888, -2.083653], [54.62498, -2.083703]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_5e00e8c180f28ac7bd1d41b014469ece = L.polyline(
                [[[54.651582, -2.288978], [54.65149, -2.289013]], [[54.647769, -2.278621], [54.64777, -2.278462]], [[54.651953, -2.262244], [54.652038, -2.262155]], [[54.643781, -2.146313], [54.643679, -2.146224]], [[54.634394, -2.129612], [54.634301, -2.129605]], [[54.634301, -2.129605], [54.634209, -2.12958]], [[54.628732, -2.11281], [54.628678, -2.112662]], [[54.624128, -2.101095], [54.624082, -2.10093]], [[54.624082, -2.10093], [54.624047, -2.100759]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff8b00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_f7672058c33907e22e25d3b95be99de9 = L.polyline(
                [[[54.650335, -2.284302], [54.650243, -2.284248]], [[54.64777, -2.278462], [54.647751, -2.278299]], [[54.652615, -2.260918], [54.65271, -2.260833]], [[54.653755, -2.260042], [54.65385, -2.259989]], [[54.657461, -2.258482], [54.657559, -2.258454]], [[54.659405, -2.256932], [54.659489, -2.256867]], [[54.659489, -2.256867], [54.659573, -2.256798]], [[54.666133, -2.226917], [54.666034, -2.226914]], [[54.658788, -2.215388], [54.658696, -2.215378]], [[54.655697, -2.214925], [54.655616, -2.215019]], [[54.647117, -2.195795], [54.647136, -2.19563]], [[54.650303, -2.186758], [54.65028, -2.186591]], [[54.6494, -2.166367], [54.649433, -2.1662]], [[54.647571, -2.152782], [54.647499, -2.152684]], [[54.645273, -2.149051], [54.645205, -2.148929]], [[54.64427, -2.148103], [54.644208, -2.147959]], [[54.639141, -2.132243], [54.639079, -2.132107]], [[54.63487, -2.12967], [54.634773, -2.129654]], [[54.628795, -2.112925], [54.628732, -2.11281]], [[54.628362, -2.111703], [54.628325, -2.111547]], [[54.624047, -2.100759], [54.624029, -2.100591]], [[54.624029, -2.100591], [54.624003, -2.100434]], [[54.624003, -2.100434], [54.623987, -2.100257]], [[54.622502, -2.090159], [54.622473, -2.089999]], [[54.624602, -2.083501], [54.624707, -2.083555]], [[54.624707, -2.083555], [54.624802, -2.083595]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_3e24108c58551ac2e893580052ba9bad = L.polyline(
                [[[54.643679, -2.146224], [54.643584, -2.146123]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            var poly_line_9174ff2a4b8e5408adda53697575e75c = L.polyline(
                [[[54.643584, -2.146123], [54.643516, -2.146003]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2e00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff2e00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_814ff80ab76c9ed5d5fc1ac376ef64ee);
        
    
            color_line_814ff80ab76c9ed5d5fc1ac376ef64ee.addTo(map_e242c8cc2d38ed59b8264d08f458818c);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-7---middleton-in-teesdale-to-thwaite" class="level3">
<h3 class="anchored" data-anchor-id="day-7---middleton-in-teesdale-to-thwaite">Day 7 - Middleton in Teesdale to Thwaite</h3>
<p>Big day as I was hoping to get to Hawes in one big push stopping for lunch at the <a href="https://tanhillinn.com/" target="_blank">Tan Hill Inn</a>, England’s highest pub. It was unfortunately drizzling when I woke up early but I forced myself out of the tent and packed it away, noticing that Andy had the foresight to bring a cloth to wipe his tent down and get most of the moisture off of it</p>
<p>I’d made an organisational error and didn’t get snacks (i.e.&nbsp;sweets to chomp on whilst hiking) from the Co-op the previous night after pizza and beers with Alex so after packing everything up I hiked into town to grab some more Haribo Starmix before setting off on The Way in light drizzle. Gentle arable land rolled past with a couple of tuck shops passed on the way, one of which had Irn-Bru cans for sale which I took advantage of for an energy boost later on. <a href="https://www.openstreetmap.org/way/4322169" target="_blank">Grassholme Reservoir</a> was quickly passed.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937954029_ddfb10b140_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbj7yD" target="_blank">Tuck Shop</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53963359822_3ec7884875_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdyjPy" target="_blank">Shell of a House</a></figcaption>
</figure>
</div>
<p>Coming over Beck Head there was a barn owl circling around the field, it seemed to be struggling to gain height and escape in the strong wind that was blowing as it circled the area multiple times. I thought I glimpsed someone walking ahead of me in the same direction with a red bag but lost sight of them quickly even though I should have had a clear view of them as I dropped down into the valley with <a href="https://en.wikipedia.org/wiki/Blackton_Reservoir" target="_blank">Blackton Reservoir</a> as the path went up the hillside opposite. I soon caught up with them though as they had stopped for a break just past Clove Lodge. It was a lady called Jolyene from Ireland who was a locum vet in Cornwall who was doing The Way in sections with her dog (who’s name I forget). We fell into step and talked for a while, losing the path as we headed up Peatbrig Hill. She was looking to redress the balance in her life and spend more time doing the things she enjoyed, running (when the body allowed), travelling with friends and family and her main passion surfing. Around Race Yate she stopped to give her dog some water and said she couldn’t keep pace.</p>
<p>I carried on dropping down to cross the A66 which was a little weird as its somewhere I drive along when heading to Keswick. It was quite noisy due to the traffic, a complete contrast to the quiet hills and dales I’d been walking over the last week and even the villages I passed through. Just south of the A66 was a small farm and a sign for “<a href="https://designatedsites.naturalengland.org.uk/SiteDetail.aspx?SiteCode=S1001347" target="_blank">God’s Bridge</a>” a natural limestone bridge over the River Greta. There wasn’t much water flowing but it was very cool. If I hadn’t been in such a rush I might have investigated more, but I still had a long way to go to get to Hawes.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53964579619_0c22d853fc_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdEzqx" target="_blank">A66 Underpass</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937623091_c497fe5671_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbhqbP" target="_blank">God’s Bridge</a></figcaption>
</figure>
</div>
<p>Following the track up from River Greta I met a father and son who were on day six or seven heading North on The Way. We had a brief chat and they asked how I was getting on in sandals and shorts which I’d opted for that day as it had been raining when I set off and I knew I had the bog that leads up to Tan Hill to contend with. I was quite happy walking in sandals and felt they worked well.</p>
<p>The Way then followed a good shooting track for a few kilometers up the slope towards Tan Hill but eventually petered out. As I left the trail I met two older ladies who were also following The Way North but had taken the sensible option of having their kit sherpa’d ahead each day so they had the luxury of walking with lighter day sacks. Not a bad idea at all I thought as I checked how heavy my pack felt.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937878543_eb11378f99_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbiJ8a" target="_blank">Shooting Track</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53964704650_408b771472_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdFdAf" target="_blank">Tan Hill</a></figcaption>
</figure>
</div>
<p>There were a series of good wooden sign-posts with white painted tops that marked the way through the bog to Tan Hill summit and the highest pub in England. Near the top I saw a couple in the middle of the moor and bog disagreeing about which way to go as they tried to get back on the path. As I met them it was clear they weren’t british and I advised them to follow the marker posts and ignore the smaller plastic ones which I think they had mistakenly started following and had taken them off-track as these were markers for grouse feeders.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937627231_fa4dd386e7_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbhrqc" target="_blank">Caution Deep Hole</a></figcaption>
</figure>
</div>
<p>On arrival at the <a href="https://tanhillinn.com/" target="_blank">Tan Hill Inn</a> I popped in to ask if it would be ok to pitch my tent so it could dry in the wind and sun whilst I had lunch and duly did so before settling down to an expensive pint and scampi and chips which was good but probably a bit over-priced too in my opinion.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53995872166_e26484d05e_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qgqXBd" target="_blank">Drying the Tent</a></figcaption>
</figure>
</div>
<p>No time for a second pint (the queue at the bar precluded this) so I packed up the now dry tent and set off on a good track towards East Stronsdale, gradually losing height. Upper <a href="https://en.wikipedia.org/wiki/East_Gill_Force" target="_blank">East Gill Force</a> was passed and The Way then headed up an interestingly paved path up Kisdon hill before skirting around over jumbled limestone blocks.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937627281_0feff82acc_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbhrr4" target="_blank">Upper East Gill Force</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937958239_804fb2d3f3_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbj8Pe" target="_blank">Old Mining Tracks</a></figcaption>
</figure>
</div>
<p>Traversing Kisdon Hill gave some stunning views into <a href="https://www.yorkshiredales.org.uk/places/swaledale/" target="_blank">Swaledale</a>, unfortunately at this point a heavy shower passed over but as it was late in the day I had the delight of a rainbow over Black Hill.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937877993_b2f532961e_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbiHXF" target="_blank">Rainbow over Black Hill</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937626931_c121841904_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbhrk2" target="_blank">Above Muker</a></figcaption>
</figure>
</div>
<p>Dropping down into <a href="https://en.wikipedia.org/wiki/Thwaite" target="_blank">Thwaite</a> there were more black clouds looming over Dam Hill and Great Shunner Fell so I decided to not push on to Hawes that evening and instead stop in the campsite I’d seen in the valley. Not before having a beer though so I popped into an empty <a href="https://www.keartoncountryhotel.co.uk/" target="_blank">Kearton House</a> only to be told that they weren’t open and the only reason the door was unlocked was because the solicitors had just visited. I was advsed I might be able to get a beer at <a href="https://ushagap.co.uk/campsite/" target="_blank">Usha Campsite</a> where I was heading as they had a small shop so I walked the kilometre or so down the road only to find I was too late in the day as the shop, and reception in general, had closed an hour and a half earlier.</p>
<p>Pitched the tent in a field in the lee of a wall and large tree after carefully looking for dead branches that might come down in high wind and deciding it was relatively unlikely to happen.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53938082505_931c7cc01f_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbjLKK" target="_blank">Usha Gap Campsite</a></figcaption>
</figure>
</div>
<p>A quick shower then boiled some water to make dinner. There were a number of Duke of Edinbrough participants who were hiking around the area and I chatted to a few of the as I ate my rehydrated meal in the warmth and comfort of the facilities. They were bemoaning having to hike 20km or so, but to be fair they were having to carry all of their food, unlike mysel who was making good use of all of the eateries I was passing.</p>
<p>Pretty tired so had an early night, but not before a few more showers passed through which helped me feel vindicated in my decision not to push on to Hawes that evening.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-8-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-1" aria-controls="tabset-8-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-8-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-2" aria-controls="tabset-8-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-8-1" class="tab-pane active" aria-labelledby="tabset-8-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb15-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-20"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-347de55f9048173fcbe7" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-347de55f9048173fcbe7">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.08446,-2.084369,-2.084503,-2.08458,-2.084614,-2.084707,-2.084797,-2.084892,-2.084932,-2.084994,-2.085057,-2.08506,-2.085037,-2.085039,-2.085046,-2.085039,-2.085033,-2.085015,-2.085013,-2.085035,-2.085036,-2.085025,-2.085038,-2.085039,-2.085032,-2.085033,-2.085036,-2.085028,-2.085023,-2.085005,-2.08501,-2.085011,-2.08501,-2.08497,-2.084911,-2.08483,-2.084725,-2.084603,-2.084466,-2.08433,-2.084208,-2.084081,-2.083966,-2.083856,-2.083776,-2.083735,-2.083713,-2.083688,-2.083631,-2.083588,-2.083522,-2.08346,-2.083389,-2.083312,-2.083295,-2.083243,-2.083141,-2.083035,-2.082869,-2.082718,-2.082582,-2.082404,-2.082235,-2.082115,-2.081935,-2.081755,-2.081596,-2.081439,-2.081267,-2.081098,-2.080936,-2.080782,-2.080747,-2.080842,-2.080855,-2.08065,-2.080673,-2.080593,-2.080603,-2.08074,-2.080823,-2.080918,-2.081029,-2.081061,-2.08122,-2.081372,-2.081535,-2.081676,-2.081832,-2.081995,-2.082138,-2.0823,-2.082451,-2.082612,-2.082743,-2.082875,-2.082831,-2.082996,-2.083145,-2.083198,-2.083279,-2.083365,-2.083416,-2.08342,-2.083474,-2.083568,-2.083612,-2.083621,-2.083656,-2.083692,-2.083767,-2.083833,-2.083985,-2.084102,-2.084249,-2.084398,-2.084516,-2.08464,-2.08478,-2.084879,-2.084949,-2.084998,-2.084963,-2.084984,-2.085001,-2.085023,-2.085018,-2.085001,-2.085007,-2.085002,-2.084987,-2.085017,-2.085054,-2.085025,-2.085028,-2.085031,-2.085016,-2.085008,-2.084988,-2.084992,-2.085026,-2.085029,-2.085005,-2.084954,-2.08492,-2.08492,-2.084873,-2.084814,-2.084773,-2.084689,-2.084559,-2.084472,-2.084403,-2.084329,-2.084213,-2.084103,-2.084116,-2.08376,-2.083913,-2.084039,-2.084203,-2.084317,-2.084477,-2.084566,-2.084629,-2.084728,-2.084801,-2.084853,-2.084942,-2.085018,-2.085157,-2.085156,-2.085163,-2.085157,-2.085138,-2.085137,-2.085128,-2.085065,-2.085135,-2.085285,-2.085426,-2.085519,-2.085444,-2.085396,-2.085412,-2.085525,-2.08565,-2.085796,-2.085885,-2.085928,-2.085987,-2.08605,-2.086138,-2.086227,-2.086292,-2.086396,-2.086512,-2.086647,-2.086797,-2.086932,-2.087003,-2.08705,-2.087115,-2.087162,-2.087237,-2.087271,-2.087309,-2.087353,-2.087407,-2.087455,-2.087547,-2.087614,-2.08766,-2.087725,-2.087793,-2.087863,-2.087946,-2.088017,-2.088076,-2.088126,-2.088245,-2.088399,-2.088539,-2.088646,-2.088764,-2.088857,-2.088966,-2.089088,-2.08923,-2.089371,-2.089467,-2.089564,-2.089676,-2.089808,-2.089906,-2.09002,-2.09013,-2.090247,-2.09037,-2.090519,-2.09067,-2.090819,-2.090972,-2.091118,-2.091276,-2.091417,-2.091564,-2.091692,-2.091831,-2.091964,-2.092103,-2.092235,-2.092355,-2.092488,-2.092662,-2.092823,-2.092988,-2.093151,-2.093149,-2.093303,-2.093458,-2.093614,-2.093771,-2.093928,-2.09409,-2.094252,-2.094421,-2.094586,-2.094751,-2.094916,-2.09508,-2.095242,-2.0954,-2.095563,-2.095708,-2.095862,-2.09603,-2.096194,-2.09635,-2.096525,-2.096684,-2.096838,-2.097003,-2.097154,-2.097314,-2.097457,-2.097599,-2.09775,-2.097897,-2.098045,-2.098216,-2.09837,-2.098524,-2.098669,-2.098818,-2.098952,-2.099072,-2.099159,-2.099307,-2.099463,-2.099609,-2.099744,-2.099879,-2.099983,-2.100143,-2.100308,-2.100466,-2.100621,-2.100771,-2.100915,-2.101059,-2.101218,-2.101356,-2.101513,-2.101662,-2.10181,-2.10191,-2.102036,-2.102182,-2.102315,-2.102443,-2.102551,-2.102623,-2.102757,-2.102856,-2.102851,-2.102882,-2.102942,-2.103046,-2.103184,-2.1033,-2.10344,-2.10359,-2.103731,-2.103847,-2.103967,-2.104096,-2.104235,-2.10437,-2.104486,-2.104611,-2.10474,-2.104865,-2.105004,-2.105158,-2.105293,-2.105412,-2.105558,-2.105693,-2.105835,-2.105974,-2.10609,-2.106208,-2.106345,-2.106423,-2.106501,-2.10654,-2.10656,-2.106607,-2.10669,-2.106744,-2.106809,-2.106859,-2.106897,-2.106962,-2.107047,-2.107128,-2.107191,-2.10734,-2.107489,-2.107642,-2.107791,-2.107948,-2.108104,-2.108258,-2.108398,-2.108541,-2.108664,-2.108786,-2.108858,-2.108963,-2.109058,-2.109163,-2.109253,-2.109332,-2.109368,-2.109401,-2.109447,-2.109494,-2.109545,-2.109582,-2.109634,-2.109698,-2.109797,-2.10992,-2.10987,-2.109801,-2.109754,-2.109759,-2.109806,-2.109888,-2.109989,-2.110071,-2.110127,-2.110165,-2.110169,-2.110236,-2.110338,-2.110484,-2.110627,-2.110798,-2.110959,-2.111132,-2.111295,-2.111439,-2.111593,-2.111751,-2.111911,-2.112056,-2.112203,-2.112329,-2.112429,-2.112552,-2.112719,-2.112879,-2.113005,-2.113162,-2.11331,-2.113464,-2.113627,-2.113799,-2.113965,-2.11412,-2.114289,-2.114444,-2.114604,-2.114765,-2.114943,-2.115093,-2.115245,-2.115393,-2.115561,-2.115723,-2.115888,-2.116048,-2.11621,-2.116359,-2.116522,-2.116679,-2.116855,-2.117008,-2.117169,-2.117267,-2.117357,-2.117514,-2.117673,-2.11783,-2.117988,-2.11807,-2.118082,-2.118134,-2.118244,-2.118409,-2.118519,-2.118541,-2.118536,-2.118542,-2.11869,-2.118539,-2.118537,-2.118572,-2.118599,-2.11866,-2.118802,-2.118892,-2.118969,-2.119061,-2.119182,-2.119241,-2.119327,-2.119429,-2.119448,-2.119476,-2.119489,-2.119511,-2.119526,-2.119612,-2.119619,-2.119716,-2.119836,-2.11997,-2.120101,-2.120223,-2.12033,-2.120457,-2.120527,-2.120618,-2.120701,-2.12078,-2.12083,-2.120893,-2.120951,-2.121015,-2.121072,-2.121118,-2.121184,-2.121147,-2.121215,-2.121327,-2.121341,-2.12144,-2.121477,-2.121523,-2.121652,-2.121788,-2.121918,-2.121971,-2.122051,-2.122047,-2.122031,-2.12201,-2.122066,-2.122072,-2.12206,-2.122018,-2.12195,-2.121864,-2.121769,-2.121748,-2.121655,-2.121575,-2.121514,-2.121508,-2.121494,-2.121528,-2.121657,-2.121777,-2.121908,-2.122036,-2.122164,-2.1223,-2.122439,-2.122571,-2.122698,-2.122824,-2.122949,-2.123066,-2.122984,-2.122838,-2.122685,-2.122525,-2.12237,-2.122234,-2.122091,-2.121933,-2.121776,-2.121631,-2.121484,-2.121339,-2.12118,-2.121033,-2.120895,-2.120742,-2.120614,-2.120483,-2.12035,-2.120228,-2.120088,-2.119946,-2.119801,-2.119658,-2.119516,-2.119381,-2.119248,-2.119117,-2.119129,-2.118986,-2.118884,-2.118877,-2.118756,-2.118752,-2.11885,-2.11887,-2.118883,-2.11887,-2.118789,-2.118752,-2.118741,-2.118791,-2.11877,-2.118711,-2.118609,-2.118478,-2.118352,-2.118252,-2.118123,-2.117991,-2.117862,-2.117748,-2.117626,-2.117505,-2.117431,-2.117408,-2.117384,-2.117346,-2.117307,-2.117227,-2.117176,-2.117128,-2.117042,-2.116976,-2.116941,-2.116931,-2.116924,-2.116928,-2.116922,-2.116914,-2.116882,-2.116828,-2.116789,-2.116772,-2.116722,-2.116773,-2.116773,-2.116716,-2.116649,-2.116574,-2.116501,-2.11644,-2.116349,-2.116271,-2.116195,-2.116143,-2.116092,-2.116053,-2.115994,-2.115924,-2.115837,-2.115761,-2.115676,-2.115583,-2.115545,-2.1155,-2.115462,-2.115436,-2.115436,-2.115421,-2.115416,-2.115398,-2.115392,-2.115349,-2.11539,-2.115414,-2.115398,-2.115407,-2.115478,-2.115619,-2.11577,-2.115888,-2.115955,-2.115973,-2.115961,-2.115914,-2.115865,-2.115884,-2.115907,-2.11587,-2.115922,-2.115807,-2.115639,-2.115479,-2.115311,-2.115149,-2.114973,-2.114807,-2.114634,-2.11446,-2.114303,-2.114129,-2.113949,-2.113782,-2.113675,-2.113504,-2.113331,-2.113161,-2.112987,-2.112813,-2.112633,-2.112456,-2.112292,-2.112115,-2.111942,-2.111786,-2.111641,-2.111464,-2.111301,-2.111148,-2.111144,-2.111314,-2.111474,-2.111644,-2.11172,-2.111555,-2.111399,-2.111226,-2.111078,-2.110936,-2.110776,-2.110639,-2.110505,-2.110365,-2.110216,-2.110067,-2.109934,-2.109869,-2.109746,-2.109579,-2.109427,-2.109329,-2.109229,-2.109095,-2.108996,-2.109064,-2.109113,-2.109242,-2.109368,-2.109482,-2.109565,-2.109697,-2.109857,-2.109779,-2.109763,-2.109755,-2.109749,-2.109741,-2.109764,-2.109764,-2.109764,-2.109758,-2.109755,-2.109783,-2.109737,-2.109626,-2.109513,-2.109484,-2.10948,-2.109464,-2.109438,-2.109416,-2.109402,-2.109413,-2.109412,-2.109401,-2.109399,-2.109507,-2.109642,-2.109795,-2.109934,-2.110086,-2.110187,-2.11018,-2.1102,-2.110212,-2.110245,-2.110284,-2.110328,-2.110372,-2.110421,-2.110465,-2.110489,-2.1106,-2.110677,-2.110709,-2.110768,-2.110843,-2.11091,-2.110955,-2.111023,-2.111073,-2.111109,-2.111155,-2.111206,-2.111239,-2.111264,-2.111312,-2.111393,-2.111503,-2.111583,-2.111631,-2.111644,-2.111667,-2.111675,-2.11168,-2.111668,-2.11165,-2.111658,-2.111658,-2.111655,-2.111654,-2.111671,-2.111656,-2.111651,-2.111657,-2.111674,-2.111681,-2.111678,-2.111655,-2.111662,-2.111641,-2.111634,-2.111625,-2.111595,-2.111562,-2.111502,-2.11144,-2.111407,-2.111395,-2.111396,-2.111379,-2.111375,-2.111391,-2.111403,-2.111493,-2.11159,-2.111639,-2.111672,-2.111699,-2.111716,-2.111738,-2.111753,-2.11175,-2.111744,-2.111731,-2.11175,-2.111756,-2.111719,-2.111665,-2.1116,-2.11157,-2.111498,-2.111457,-2.111408,-2.111337,-2.111259,-2.111166,-2.111124,-2.111059,-2.110995,-2.110935,-2.110868,-2.11079,-2.110716,-2.110653,-2.110591,-2.110535,-2.110466,-2.110396,-2.110345,-2.110263,-2.110193,-2.110137,-2.110063,-2.110031,-2.109984,-2.109941,-2.109804,-2.109722,-2.109665,-2.1096,-2.109534,-2.109486,-2.109431,-2.109382,-2.109381,-2.109448,-2.109495,-2.109549,-2.109598,-2.109648,-2.109672,-2.109686,-2.109721,-2.10972,-2.1097,-2.109703,-2.109724,-2.109712,-2.10969,-2.109636,-2.109581,-2.109523,-2.109454,-2.109403,-2.109321,-2.109276,-2.1092,-2.109152,-2.10912,-2.109089,-2.109065,-2.108935,-2.108884,-2.108824,-2.108732,-2.108698,-2.108645,-2.108571,-2.108504,-2.108444,-2.108401,-2.108372,-2.108374,-2.108337,-2.108318,-2.108314,-2.108201,-2.108061,-2.107962,-2.107911,-2.107879,-2.107834,-2.107769,-2.107712,-2.107665,-2.107617,-2.107577,-2.107514,-2.107451,-2.107387,-2.107379,-2.107375,-2.107348,-2.107293,-2.107246,-2.107202,-2.107133,-2.107109,-2.107048,-2.106998,-2.106938,-2.10685,-2.106763,-2.106702,-2.106673,-2.10667,-2.106634,-2.106597,-2.106578,-2.106539,-2.106501,-2.106428,-2.106327,-2.106265,-2.106196,-2.106164,-2.106079,-2.106019,-2.105983,-2.105952,-2.105908,-2.105867,-2.105803,-2.105751,-2.105695,-2.105634,-2.105595,-2.105572,-2.105542,-2.105451,-2.10534,-2.105353,-2.105337,-2.1053,-2.105273,-2.10526,-2.105292,-2.105266,-2.105243,-2.105145,-2.105116,-2.105116,-2.104956,-2.104801,-2.104641,-2.104483,-2.104365,-2.104397,-2.104345,-2.104306,-2.104258,-2.10419,-2.104127,-2.104075,-2.104013,-2.103971,-2.103879,-2.103773,-2.103661,-2.103653,-2.103532,-2.103435,-2.103338,-2.103251,-2.10315,-2.103049,-2.102946,-2.102849,-2.102754,-2.102666,-2.102574,-2.102488,-2.102448,-2.102391,-2.102326,-2.10225,-2.102173,-2.102096,-2.102007,-2.101908,-2.101815,-2.101708,-2.101604,-2.10151,-2.10144,-2.101352,-2.101281,-2.101203,-2.101159,-2.101173,-2.101179,-2.101194,-2.101205,-2.101219,-2.10125,-2.101278,-2.101315,-2.101327,-2.10134,-2.101362,-2.10138,-2.101398,-2.101434,-2.101443,-2.10142,-2.10138,-2.101333,-2.101304,-2.101263,-2.101194,-2.101143,-2.101189,-2.101346,-2.101449,-2.101441,-2.101581,-2.1017,-2.10187,-2.102047,-2.102216,-2.102395,-2.102574,-2.102734,-2.102902,-2.103074,-2.103236,-2.103395,-2.103568,-2.103729,-2.103882,-2.104037,-2.104198,-2.10436,-2.104516,-2.104681,-2.104832,-2.10497,-2.105091,-2.105225,-2.105344,-2.105463,-2.105597,-2.105731,-2.105863,-2.105992,-2.106038,-2.106019,-2.105982,-2.105965,-2.105947,-2.105934,-2.10593,-2.105943,-2.106001,-2.105848,-2.105717,-2.105603,-2.105494,-2.105375,-2.105243,-2.105116,-2.104988,-2.104836,-2.104676,-2.104539,-2.104367,-2.104212,-2.104051,-2.103891,-2.103836,-2.103811,-2.103771,-2.103711,-2.103665,-2.103621,-2.103569,-2.103497,-2.103432,-2.103359,-2.103292,-2.10321,-2.103124,-2.103042,-2.102951,-2.102862,-2.102769,-2.102653,-2.102595,-2.10246,-2.102338,-2.102246,-2.102172,-2.102089,-2.101999,-2.101908,-2.101854,-2.101791,-2.101755,-2.101702,-2.101658,-2.101631,-2.101602,-2.101576,-2.101497,-2.101479,-2.101456,-2.101375,-2.101339,-2.101372,-2.101436,-2.101499,-2.101554,-2.101588,-2.101621,-2.10163,-2.101626,-2.101623,-2.10155,-2.101484,-2.101338,-2.1012,-2.101054,-2.100892,-2.100736,-2.100588,-2.100512,-2.100403,-2.100302,-2.100204,-2.100087,-2.099982,-2.099872,-2.099802,-2.099727,-2.099621,-2.09956,-2.099524,-2.099485,-2.099426,-2.099341,-2.099228,-2.099115,-2.099035,-2.098988,-2.09896,-2.098926,-2.09889,-2.098855,-2.098828,-2.098804,-2.098809,-2.098841,-2.098868,-2.098845,-2.098774,-2.098707,-2.09868,-2.098661,-2.098655,-2.098662,-2.098678,-2.098696,-2.098755,-2.098852,-2.098972,-2.099028,-2.099105,-2.099215,-2.099325,-2.09939,-2.099424,-2.099462,-2.099514,-2.099578,-2.099631,-2.099645,-2.099645,-2.09964,-2.099629,-2.099616,-2.0996,-2.099558,-2.099463,-2.099355,-2.099234,-2.099114,-2.099045,-2.098947,-2.098823,-2.098691,-2.098593,-2.098426,-2.098353,-2.098179,-2.098019,-2.097868,-2.097704,-2.097543,-2.097388,-2.097241,-2.097093,-2.09694,-2.096803,-2.096677,-2.09652,-2.096374,-2.096208,-2.096081,-2.096013,-2.095946,-2.095855,-2.095769,-2.09571,-2.095623,-2.09553,-2.095466,-2.095361,-2.095272,-2.095159,-2.095079,-2.094983,-2.094861,-2.094773,-2.094698,-2.094635,-2.094609,-2.094533,-2.094427,-2.094351,-2.094287,-2.094225,-2.094154,-2.094102,-2.093993,-2.09389,-2.093837,-2.093795,-2.093731,-2.09368,-2.093651,-2.093614,-2.09358,-2.093555,-2.093538,-2.093471,-2.093384,-2.093307,-2.093257,-2.093183,-2.093156,-2.093134,-2.093131,-2.093071,-2.093037,-2.093,-2.092977,-2.092935,-2.092889,-2.092844,-2.092824,-2.092805,-2.092712,-2.092685,-2.092547,-2.092419,-2.092349,-2.092281,-2.092247,-2.092161,-2.092108,-2.092056,-2.091989,-2.091964,-2.091925,-2.091881,-2.091833,-2.091787,-2.091769,-2.091744,-2.091716,-2.091668,-2.091685,-2.091708,-2.091722,-2.091678,-2.09173,-2.09178,-2.091788,-2.091777,-2.091732,-2.091706,-2.091682,-2.091637,-2.091589,-2.091538,-2.091511,-2.091506,-2.091433,-2.09131,-2.091225,-2.091147,-2.091136,-2.091076,-2.091007,-2.090933,-2.090915,-2.090863,-2.0908,-2.090748,-2.090682,-2.090608,-2.090526,-2.090469,-2.090477,-2.090419,-2.090393,-2.09034,-2.090301,-2.09024,-2.090175,-2.090107,-2.090032,-2.089956,-2.089886,-2.089841,-2.08977,-2.089673,-2.089597,-2.08956,-2.089488,-2.089409,-2.089362,-2.0893,-2.089249,-2.089179,-2.089101,-2.089033,-2.088946,-2.088881,-2.08883,-2.088735,-2.088643,-2.08856,-2.088488,-2.088421,-2.088332,-2.088268,-2.088201,-2.088149,-2.08809,-2.088045,-2.087981,-2.087902,-2.087831,-2.087738,-2.087653,-2.087541,-2.08742,-2.087354,-2.087335,-2.087326,-2.087352,-2.08727,-2.087194,-2.087131,-2.087091,-2.087,-2.086891,-2.086864,-2.086803,-2.086745,-2.086772,-2.086741,-2.086669,-2.086601,-2.086541,-2.086464,-2.086423,-2.086377,-2.086358,-2.086307,-2.086261,-2.086221,-2.08618,-2.086114,-2.084432,-2.084352,-2.084253,-2.084141,-2.084042,-2.083937,-2.083823,-2.083727,-2.083665,-2.083574,-2.083549,-2.083509,-2.083439,-2.083337,-2.083224,-2.083157,-2.0831,-2.083065,-2.083005,-2.082938,-2.08287,-2.082808,-2.082738,-2.082637,-2.082545,-2.082415,-2.082259,-2.08212,-2.082001,-2.082145,-2.08226,-2.082345,-2.082202,-2.082047,-2.081921,-2.081802,-2.08176,-2.081679,-2.081593,-2.08148,-2.081432,-2.081261,-2.081103,-2.080966,-2.080903,-2.080823,-2.080712,-2.080595,-2.080503,-2.080396,-2.080276,-2.080148,-2.080042,-2.079926,-2.079821,-2.079771,-2.079631,-2.079519,-2.079433,-2.079308,-2.079154,-2.079032,-2.078898,-2.078747,-2.078605,-2.078483,-2.078357,-2.078226,-2.078116,-2.078107,-2.07812,-2.078126,-2.078154,-2.078161,-2.078153,-2.078145,-2.078121,-2.078017,-2.077966,-2.077959,-2.077943,-2.077904,-2.07784,-2.077783,-2.077706,-2.077626,-2.077573,-2.077544,-2.077475,-2.077516,-2.077581,-2.077627,-2.077727,-2.077798,-2.07786,-2.077929,-2.077977,-2.077964,-2.077985,-2.077932,-2.077848,-2.077842,-2.077746,-2.077683,-2.077605,-2.077536,-2.077513,-2.07746,-2.077401,-2.077373,-2.077391,-2.077353,-2.077304,-2.077221,-2.077182,-2.077159,-2.077046,-2.076931,-2.076852,-2.07677,-2.076654,-2.07653,-2.076405,-2.076277,-2.076145,-2.07604,-2.075916,-2.075805,-2.075728,-2.075601,-2.07551,-2.075425,-2.07531,-2.075188,-2.075101,-2.074985,-2.074884,-2.074774,-2.07465,-2.07452,-2.074375,-2.074248,-2.074152,-2.074047,-2.073924,-2.073798,-2.073708,-2.073605,-2.073497,-2.073409,-2.073323,-2.073223,-2.07311,-2.072992,-2.072897,-2.072781,-2.072649,-2.072526,-2.072371,-2.072248,-2.072107,-2.071993,-2.071868,-2.071725,-2.071599,-2.071505,-2.071387,-2.071304,-2.071219,-2.071133,-2.071161,-2.071116,-2.071028,-2.070948,-2.070855,-2.070747,-2.070637,-2.070585,-2.070465,-2.070387,-2.07029,-2.070242,-2.070233,-2.070207,-2.070179,-2.070112,-2.070037,-2.069947,-2.06987,-2.069765,-2.069678,-2.069661,-2.069747,-2.069673,-2.069633,-2.069658,-2.06968,-2.069658,-2.069635,-2.06956,-2.069509,-2.069453,-2.069413,-2.069375,-2.06935,-2.069352,-2.06928,-2.069245,-2.069201,-2.069159,-2.069118,-2.069125,-2.069,-2.068943,-2.06883,-2.068838,-2.068886,-2.069036,-2.069172,-2.069328,-2.069395,-2.069527,-2.069624,-2.069742,-2.069861,-2.069923,-2.069975,-2.07007,-2.070177,-2.070283,-2.070342,-2.070418,-2.070468,-2.070528,-2.070592,-2.070627,-2.070673,-2.070606,-2.070563,-2.070623,-2.070655,-2.070703,-2.070623,-2.070581,-2.070568,-2.070534,-2.070478,-2.070412,-2.070368,-2.070279,-2.070221,-2.070165,-2.070091,-2.070055,-2.070008,-2.069986,-2.070094,-2.070234,-2.070389,-2.070564,-2.070731,-2.070903,-2.07106,-2.071225,-2.071393,-2.071556,-2.071721,-2.071762,-2.071911,-2.07206,-2.07223,-2.072386,-2.072554,-2.072631,-2.072595,-2.072604,-2.072597,-2.072609,-2.072542,-2.072554,-2.072399,-2.072268,-2.072105,-2.071971,-2.071815,-2.071648,-2.071486,-2.071328,-2.071172,-2.071012,-2.070855,-2.070695,-2.070526,-2.070365,-2.070204,-2.070189,-2.070026,-2.069913,-2.069888,-2.069829,-2.069784,-2.069752,-2.069699,-2.069655,-2.069639,-2.069644,-2.069563,-2.069409,-2.069267,-2.069245,-2.069181,-2.069112,-2.069041,-2.068999,-2.068953,-2.068936,-2.068849,-2.068689,-2.068536,-2.068388,-2.068245,-2.068165,-2.068085,-2.068064,-2.068097,-2.068137,-2.068085,-2.067974,-2.067919,-2.068023,-2.06804,-2.067891,-2.067748,-2.067798,-2.067803,-2.067808,-2.0678,-2.067789,-2.067803,-2.067823,-2.067824,-2.06784,-2.067856,-2.067881,-2.067923,-2.067923,-2.067841,-2.067783,-2.067759,-2.067711,-2.067702,-2.067673,-2.067644,-2.067653,-2.06767,-2.067649,-2.067629,-2.067671,-2.067656,-2.067639,-2.067611,-2.0676,-2.067665,-2.067737,-2.067752,-2.067793,-2.067813,-2.067765,-2.067725,-2.067693,-2.067628,-2.067566,-2.067539,-2.067561,-2.067525,-2.067478,-2.067471,-2.067497,-2.067535,-2.067463,-2.067399,-2.067373,-2.067365,-2.067292,-2.067251,-2.067152,-2.067151,-2.067091,-2.067055,-2.067001,-2.066963,-2.066932,-2.066872,-2.06686,-2.066693,-2.066545,-2.066385,-2.066214,-2.066058,-2.065887,-2.065727,-2.065566,-2.065395,-2.065239,-2.065087,-2.064918,-2.064756,-2.064606,-2.064436,-2.064272,-2.064098,-2.063931,-2.063773,-2.063616,-2.063447,-2.063292,-2.063122,-2.062993,-2.0629,-2.062815,-2.062748,-2.06267,-2.062638,-2.062632,-2.062572,-2.062528,-2.062521,-2.062482,-2.062488,-2.06247,-2.062433,-2.062434,-2.062485,-2.062529,-2.062606,-2.062685,-2.062709,-2.062646,-2.062636,-2.06265,-2.062619,-2.062589,-2.062551,-2.062507,-2.062473,-2.062412,-2.062357,-2.062291,-2.062221,-2.062165,-2.062106,-2.062015,-2.061912,-2.061827,-2.061759,-2.061683,-2.061587,-2.061516,-2.061485,-2.061474,-2.061406,-2.06131,-2.06121,-2.061137,-2.061071,-2.061002,-2.060912,-2.060841,-2.060753,-2.06066,-2.060609,-2.060579,-2.060537,-2.060457,-2.060456,-2.060471,-2.060555,-2.060671,-2.060765,-2.06083,-2.060893,-2.060961,-2.061044,-2.061122,-2.061211,-2.061305,-2.061424,-2.06155,-2.061659,-2.061771,-2.061848,-2.061931,-2.062042,-2.062129,-2.062194,-2.062246,-2.062303,-2.062364,-2.062438,-2.062492,-2.062576,-2.062634,-2.062709,-2.062724,-2.062719,-2.062678,-2.062772,-2.062883,-2.062975,-2.063054,-2.063142,-2.063248,-2.063347,-2.063409,-2.063493,-2.0636,-2.063684,-2.063764,-2.063863,-2.06395,-2.064035,-2.064103,-2.064191,-2.064291,-2.06442,-2.064515,-2.064602,-2.064698,-2.064824,-2.06495,-2.065087,-2.065204,-2.065339,-2.065486,-2.065616,-2.06574,-2.065823,-2.065924,-2.066043,-2.066166,-2.066273,-2.0664,-2.066495,-2.066598,-2.06672,-2.06683,-2.066944,-2.066977,-2.066963,-2.066984,-2.067038,-2.067061,-2.067117,-2.067191,-2.067285,-2.067317,-2.067304,-2.067289,-2.067297,-2.067291,-2.067368,-2.067519,-2.067618,-2.067769,-2.067923,-2.068064,-2.068137,-2.068227,-2.06833,-2.068424,-2.068562,-2.068696,-2.068796,-2.068919,-2.069051,-2.069167,-2.069244,-2.069289,-2.069292,-2.069315,-2.069305,-2.069277,-2.069251,-2.06923,-2.069198,-2.069144,-2.06911,-2.069097,-2.069108,-2.06908,-2.069051,-2.069012,-2.068988,-2.068988,-2.068981,-2.068961,-2.068918,-2.068938,-2.068989,-2.069061,-2.06912,-2.069182,-2.069267,-2.06936,-2.069413,-2.069487,-2.069562,-2.069671,-2.06977,-2.069865,-2.069944,-2.070014,-2.070076,-2.070105,-2.070108,-2.070116,-2.070116,-2.070133,-2.070152,-2.070195,-2.070212,-2.070235,-2.070296,-2.070385,-2.070504,-2.070576,-2.070678,-2.070799,-2.070939,-2.071075,-2.071202,-2.071325,-2.07144,-2.071443,-2.071575,-2.071689,-2.071811,-2.071922,-2.072055,-2.072054,-2.072143,-2.072297,-2.072457,-2.072517,-2.072551,-2.072561,-2.072573,-2.072623,-2.072713,-2.072807,-2.072927,-2.073025,-2.073124,-2.073239,-2.07335,-2.073487,-2.073623,-2.073776,-2.073922,-2.074045,-2.074195,-2.074361,-2.074505,-2.074658,-2.074812,-2.074975,-2.075117,-2.07526,-2.075405,-2.075554,-2.075688,-2.075849,-2.076027,-2.076186,-2.076324,-2.076453,-2.076591,-2.076734,-2.076886,-2.07704,-2.0772,-2.077326,-2.077443,-2.077589,-2.077725,-2.07784,-2.077991,-2.078131,-2.078283,-2.078453,-2.078613,-2.078764,-2.078917,-2.079087,-2.079249,-2.079387,-2.079534,-2.079702,-2.079856,-2.08002,-2.080178,-2.080342,-2.080496,-2.080666,-2.080818,-2.080981,-2.081142,-2.081309,-2.081465,-2.081634,-2.081778,-2.081934,-2.082091,-2.082234,-2.082406,-2.082561,-2.082721,-2.082868,-2.083021,-2.083166,-2.083317,-2.083448,-2.083581,-2.083718,-2.083846,-2.083977,-2.084113,-2.084245,-2.08439,-2.084533,-2.084664,-2.084803,-2.084945,-2.08507,-2.085195,-2.08533,-2.085459,-2.085592,-2.085713,-2.085833,-2.085937,-2.086063,-2.086158,-2.086261,-2.086392,-2.086497,-2.086635,-2.086775,-2.086922,-2.087054,-2.087194,-2.087329,-2.08748,-2.087609,-2.087724,-2.087862,-2.088015,-2.08818,-2.088324,-2.088482,-2.088647,-2.088801,-2.088941,-2.089079,-2.089237,-2.089385,-2.089516,-2.089638,-2.089776,-2.089898,-2.090016,-2.090151,-2.090262,-2.090385,-2.090512,-2.090597,-2.090725,-2.09085,-2.09097,-2.091091,-2.091217,-2.091334,-2.09146,-2.091592,-2.091714,-2.091841,-2.091988,-2.092087,-2.092228,-2.092384,-2.092534,-2.092708,-2.092774,-2.092936,-2.093091,-2.093242,-2.093394,-2.093552,-2.093709,-2.093858,-2.094007,-2.094174,-2.094328,-2.0945,-2.094665,-2.094818,-2.09497,-2.095119,-2.095286,-2.095441,-2.095599,-2.095746,-2.095895,-2.096037,-2.09616,-2.096299,-2.096449,-2.096607,-2.096765,-2.096924,-2.097077,-2.097212,-2.097349,-2.097482,-2.097628,-2.097772,-2.097917,-2.098063,-2.098218,-2.098342,-2.09852,-2.098693,-2.098776,-2.098933,-2.099031,-2.099121,-2.09923,-2.099284,-2.099364,-2.099484,-2.099605,-2.09973,-2.09986,-2.099997,-2.100114,-2.100179,-2.100313,-2.100447,-2.100611,-2.100756,-2.100885,-2.100999,-2.101167,-2.101274,-2.101432,-2.101596,-2.101773,-2.101927,-2.102084,-2.102239,-2.102407,-2.102566,-2.102578,-2.102715,-2.102864,-2.103029,-2.103189,-2.103329,-2.103486,-2.103651,-2.103811,-2.103953,-2.104108,-2.104257,-2.104411,-2.104571,-2.104726,-2.104887,-2.105015,-2.105175,-2.105263,-2.105411,-2.105557,-2.105711,-2.105863,-2.105995,-2.106056,-2.106161,-2.106267,-2.106374,-2.106475,-2.106561,-2.106683,-2.106818,-2.106904,-2.107036,-2.107183,-2.107339,-2.107503,-2.107641,-2.107802,-2.107959,-2.108106,-2.108267,-2.108436,-2.108598,-2.108746,-2.108901,-2.109052,-2.109195,-2.109349,-2.109507,-2.109658,-2.109804,-2.109956,-2.110109,-2.110252,-2.110405,-2.110544,-2.110687,-2.110835,-2.110974,-2.111134,-2.111283,-2.111424,-2.111581,-2.111722,-2.111857,-2.111968,-2.112,-2.112083,-2.112241,-2.112372,-2.112523,-2.112662,-2.112819,-2.112965,-2.11311,-2.113261,-2.113409,-2.113558,-2.113716,-2.113885,-2.114042,-2.114198,-2.114347,-2.114497,-2.114632,-2.114801,-2.114936,-2.115092,-2.115247,-2.11541,-2.115556,-2.115721,-2.115882,-2.1159,-2.116053,-2.116209,-2.116349,-2.116495,-2.116652,-2.1168,-2.116957,-2.11712,-2.117288,-2.11743,-2.117586,-2.117751,-2.117888,-2.118025,-2.118184,-2.118199,-2.118341,-2.118508,-2.118625,-2.118755,-2.118897,-2.119068,-2.119231,-2.11938,-2.119535,-2.119696,-2.119854,-2.120022,-2.12018,-2.120332,-2.120496,-2.120658,-2.120825,-2.120988,-2.121148,-2.121284,-2.121422,-2.121589,-2.121707,-2.121829,-2.121977,-2.122128,-2.12228,-2.122425,-2.122542,-2.122679,-2.122831,-2.122992,-2.123143,-2.123273,-2.123406,-2.123571,-2.123745,-2.123905,-2.124023,-2.124147,-2.124287,-2.124421,-2.124551,-2.124702,-2.124851,-2.124984,-2.125117,-2.125244,-2.125366,-2.125495,-2.125588,-2.125731,-2.125835,-2.125923,-2.126088,-2.126248,-2.126406,-2.126567,-2.126713,-2.12686,-2.126965,-2.127025,-2.127166,-2.127305,-2.127426,-2.127554,-2.127687,-2.127852,-2.128007,-2.128178,-2.128337,-2.128506,-2.12866,-2.128807,-2.128972,-2.129102,-2.129235,-2.129339,-2.129435,-2.129538,-2.129659,-2.129778,-2.129908,-2.12996,-2.130049,-2.13015,-2.13027,-2.130361,-2.13046,-2.130598,-2.130733,-2.130874,-2.131027,-2.131181,-2.131252,-2.131366,-2.131513,-2.131597,-2.131736,-2.131895,-2.13204,-2.132204,-2.132369,-2.132521,-2.132602,-2.132703,-2.132812,-2.132955,-2.133122,-2.13328,-2.133443,-2.133609,-2.133741,-2.133873,-2.134015,-2.134138,-2.134291,-2.134435,-2.134578,-2.134686,-2.134803,-2.134924,-2.135066,-2.135189,-2.135327,-2.135478,-2.135624,-2.135749,-2.135911,-2.136063,-2.136204,-2.13635,-2.13649,-2.136583,-2.136713,-2.136875,-2.137013,-2.13717,-2.137342,-2.137385,-2.137508,-2.137627,-2.137786,-2.137948,-2.138117,-2.138232,-2.138379,-2.138545,-2.138708,-2.138823,-2.138933,-2.13909,-2.139242,-2.139389,-2.139371,-2.139542,-2.139682,-2.139809,-2.139945,-2.140102,-2.14025,-2.140391,-2.140544,-2.140675,-2.140843,-2.141,-2.141121,-2.14123,-2.141376,-2.141531,-2.141683,-2.1418,-2.141905,-2.142061,-2.142206,-2.142341,-2.142504,-2.14264,-2.142782,-2.142941,-2.143099,-2.143254,-2.143409,-2.143563,-2.143682,-2.143837,-2.143981,-2.144086,-2.144241,-2.144403,-2.144503,-2.144641,-2.144801,-2.144962,-2.14509,-2.145203,-2.145359,-2.145509,-2.14565,-2.14581,-2.145973,-2.146118,-2.146274,-2.146426,-2.146572,-2.146725,-2.146891,-2.147035,-2.147132,-2.14724,-2.147329,-2.147453,-2.147523,-2.147599,-2.147756,-2.14792,-2.148061,-2.148199,-2.148319,-2.148473,-2.14863,-2.148788,-2.148944,-2.149092,-2.149237,-2.149382,-2.149499,-2.149635,-2.149747,-2.149877,-2.149962,-2.14997,-2.150123,-2.150238,-2.150354,-2.15045,-2.150548,-2.150665,-2.150728,-2.15081,-2.150911,-2.151026,-2.151112,-2.151219,-2.151222,-2.151311,-2.151403,-2.151529,-2.151691,-2.151812,-2.151902,-2.151971,-2.152059,-2.152139,-2.152204,-2.152271,-2.152312,-2.152452,-2.152552,-2.15264,-2.15278,-2.152917,-2.153001,-2.153108,-2.153181,-2.153285,-2.153384,-2.153478,-2.153586,-2.153687,-2.153815,-2.153946,-2.154029,-2.154117,-2.154228,-2.154328,-2.154424,-2.154539,-2.154683,-2.154818,-2.154919,-2.154997,-2.155065,-2.155067,-2.155207,-2.155294,-2.155357,-2.155413,-2.155437,-2.155453,-2.155521,-2.155585,-2.155647,-2.155694,-2.155765,-2.155846,-2.155936,-2.15604,-2.156129,-2.156274,-2.156409,-2.15655,-2.156693,-2.156824,-2.156928,-2.157046,-2.157186,-2.157323,-2.157463,-2.157598,-2.157718,-2.157854,-2.157994,-2.158114,-2.158187,-2.158271,-2.158249,-2.158262,-2.15828,-2.158363,-2.158467,-2.158568,-2.158668,-2.158789,-2.158892,-2.159017,-2.159142,-2.15926,-2.159392,-2.159544,-2.159707,-2.159873,-2.159993,-2.160046,-2.160177,-2.160253,-2.160136,-2.160092,-2.160151,-2.160177,-2.160213,-2.160228,-2.160267,-2.160194,-2.160168,-2.160136,-2.160093,-2.160076,-2.160135,-2.160286,-2.160412,-2.160295,-2.160189,-2.160122,-2.160081,-2.16007,-2.160028,-2.160007,-2.16004,-2.160175,-2.160186,-2.160156,-2.160118,-2.160081,-2.160037,-2.160025,-2.160002,-2.159987,-2.15999,-2.159971,-2.159941,-2.159892,-2.159878,-2.15985,-2.159824,-2.159797,-2.159759,-2.159711,-2.15969,-2.159665,-2.159657,-2.159636,-2.159602,-2.159593,-2.159584,-2.159598,-2.159599,-2.159573,-2.159569,-2.159605,-2.159646,-2.159666,-2.159689,-2.159733,-2.159748,-2.159752,-2.159792,-2.159839,-2.159849,-2.159868,-2.159881,-2.159894,-2.159923,-2.159948,-2.16001,-2.160051,-2.16009,-2.160108,-2.160145,-2.160171,-2.160201,-2.160212,-2.160212,-2.160199,-2.160165,-2.160101,-2.159986,-2.159864,-2.159795,-2.159836,-2.159907,-2.159996,-2.160045,-2.160062,-2.160073,-2.160072,-2.160052,-2.160044,-2.160067,-2.160083,-2.160065,-2.160023,-2.16018,-2.16034,-2.160501,-2.160659,-2.160811,-2.160966,-2.161116,-2.161256,-2.161398,-2.161535,-2.16167,-2.161811,-2.161945,-2.162068,-2.162112,-2.162065,-2.162035,-2.162033,-2.162037,-2.162048,-2.162075,-2.162077,-2.162109,-2.162128,-2.16219,-2.162281,-2.162339,-2.162422,-2.16251,-2.162615,-2.162694,-2.162761,-2.162853,-2.162965,-2.163073,-2.163146,-2.163218,-2.163297,-2.163403,-2.163467,-2.163532,-2.163611,-2.163707,-2.163781,-2.163879,-2.163978,-2.164059,-2.16415,-2.16421,-2.164238,-2.16429,-2.164377,-2.164461,-2.164509,-2.16458,-2.164678,-2.164799,-2.164931,-2.165051,-2.16516,-2.165294,-2.165405,-2.165536,-2.165643,-2.16579,-2.165878,-2.165997,-2.166087,-2.166195,-2.166299,-2.166413,-2.166539,-2.166649,-2.166777,-2.166923,-2.16707,-2.167207,-2.167317,-2.167476,-2.167571,-2.167665,-2.167786,-2.167866,-2.167932,-2.167996,-2.168046,-2.168084,-2.168095,-2.168108,-2.168104,-2.168107,-2.168132,-2.168124,-2.168104,-2.168085,-2.168085,-2.168067,-2.168065,-2.168061,-2.168082,-2.168086,-2.168094,-2.168126,-2.168089,-2.168087,-2.168065,-2.168014,-2.167956,-2.168045,-2.168126,-2.168237,-2.168352,-2.168485,-2.168589,-2.168704,-2.168813,-2.168904,-2.169019,-2.16913,-2.16925,-2.169374,-2.169491,-2.169602,-2.16972,-2.169852,-2.169987,-2.170133,-2.170257,-2.170363,-2.17042,-2.17051,-2.170627,-2.170736,-2.170839,-2.170975,-2.171096,-2.171216,-2.171318,-2.171461,-2.171588,-2.17169,-2.171782,-2.171886,-2.171963,-2.172031,-2.172115,-2.172192,-2.172303,-2.172415,-2.172576,-2.172692,-2.172813,-2.172942,-2.173083,-2.173201,-2.17331,-2.173404,-2.173568,-2.173726,-2.173865,-2.173934,-2.173984,-2.174066,-2.174164,-2.174302,-2.174441,-2.174592,-2.174656,-2.17476,-2.174793,-2.174928,-2.175007,-2.175141,-2.175227,-2.175219,-2.175372,-2.175432,-2.175515,-2.175536,-2.17555,-2.175633,-2.17572,-2.175779,-2.175825,-2.175912,-2.175979,-2.176055,-2.176068,-2.176159,-2.176256,-2.176343,-2.176401,-2.176476,-2.176573,-2.176666,-2.176755,-2.176796,-2.17679,-2.176711,-2.176645,-2.176529,-2.1766,-2.176532,-2.176485,-2.176418,-2.176292,-2.17614,-2.176115,-2.176256,-2.176348,-2.176415,-2.1764,-2.176387,-2.176375,-2.176356,-2.176316,-2.176286,-2.176312,-2.176365,-2.176363,-2.176298,-2.17624,-2.176184,-2.176107,-2.176026,-2.175975,-2.175933,-2.175839,-2.175761,-2.175741,-2.175683,-2.175589,-2.175519,-2.175494,-2.175471,-2.175397,-2.175337,-2.17531,-2.175251,-2.175218,-2.175136,-2.175079,-2.175025,-2.174947,-2.174903,-2.174878,-2.174839,-2.174822,-2.174788,-2.174742,-2.174686,-2.17462,-2.174544,-2.174452,-2.174366,-2.174259,-2.174175,-2.17415,-2.174059,-2.173941,-2.17381,-2.17375,-2.173648,-2.173511,-2.173367,-2.173263,-2.173227,-2.173129,-2.173137,-2.173107,-2.173054,-2.173044,-2.173024,-2.173018,-2.172994,-2.172966,-2.172934,-2.172882,-2.172846,-2.172835,-2.17282,-2.172807,-2.172799,-2.172773,-2.172733,-2.172703,-2.172657,-2.172606,-2.172619,-2.172655,-2.172732,-2.172709,-2.172704,-2.172668,-2.172666,-2.172657,-2.172617,-2.172552,-2.172466,-2.172401,-2.172389,-2.172403,-2.172377,-2.172345,-2.172299,-2.172253,-2.172207,-2.172161,-2.172121,-2.172071,-2.172027,-2.171994,-2.171945,-2.17192,-2.171877,-2.171827,-2.171762,-2.171692,-2.17163,-2.171589,-2.171556,-2.171544,-2.171521,-2.171463,-2.171405,-2.171347,-2.171272,-2.171165,-2.171031,-2.170981,-2.171025,-2.171101,-2.171115,-2.171101,-2.171064,-2.171047,-2.170984,-2.170928,-2.170856,-2.170806,-2.170749,-2.170681,-2.170636,-2.170648,-2.170599,-2.170525,-2.170427,-2.170321,-2.170361,-2.170343,-2.170284,-2.170221,-2.170226,-2.170182,-2.170119,-2.170025,-2.169945,-2.16985,-2.169761,-2.169769,-2.169756,-2.169735,-2.169704,-2.169677,-2.169668,-2.169661,-2.169673,-2.169664,-2.169638,-2.169628,-2.169609,-2.169595,-2.169583,-2.169498,-2.169451,-2.169375,-2.169325,-2.169284,-2.169247,-2.169221,-2.169201,-2.16916,-2.169118,-2.169056,-2.169009,-2.168942,-2.168956,-2.168927,-2.168876,-2.168825,-2.168795,-2.168775,-2.168719,-2.168656,-2.168636,-2.16858,-2.168509,-2.168486,-2.168423,-2.168385,-2.168342,-2.168308,-2.168249,-2.168201,-2.168199,-2.168141,-2.168089,-2.168053,-2.168076,-2.168074,-2.168023,-2.167972,-2.16795,-2.167957,-2.167934,-2.167978,-2.167989,-2.167966,-2.167966,-2.167925,-2.16788,-2.167861,-2.167878,-2.167871,-2.167868,-2.167834,-2.167799,-2.16778,-2.167775,-2.167779,-2.167777,-2.1678,-2.16782,-2.16779,-2.167785,-2.167785,-2.167795,-2.167758,-2.167768,-2.167705,-2.167638,-2.167636,-2.167653,-2.167629,-2.167553,-2.167517,-2.167499,-2.167457,-2.167392,-2.167413,-2.167416,-2.16743,-2.167378,-2.167318,-2.167244,-2.167143,-2.167084,-2.16708,-2.167088,-2.167049,-2.16702,-2.167039,-2.167012,-2.166962,-2.166878,-2.166761,-2.166655,-2.166595,-2.166556,-2.16651,-2.166415,-2.166314,-2.166221,-2.166153,-2.166064,-2.165942,-2.165858,-2.165768,-2.165648,-2.165501,-2.165351,-2.165197,-2.165055,-2.164917,-2.16478,-2.164668,-2.164625,-2.164615,-2.164561,-2.164462,-2.164372,-2.1643,-2.16419,-2.164105,-2.164055,-2.164006,-2.163946,-2.16386,-2.163804,-2.163755,-2.163679,-2.16361,-2.163546,-2.163469,-2.163421,-2.163359,-2.163326,-2.163295,-2.163243,-2.163172,-2.163091,-2.163016,-2.163018,-2.162976,-2.163041,-2.163007,-2.163056,-2.162931,-2.162919,-2.162829,-2.162768,-2.162658,-2.16258,-2.162436,-2.162289,-2.162139,-2.161995,-2.161832,-2.161677,-2.161519,-2.16136,-2.161235,-2.161312,-2.161446,-2.161574,-2.161702,-2.161838,-2.161835,-2.161669,-2.161508,-2.161363,-2.161404,-2.161501,-2.16148,-2.161622,-2.161763,-2.161854,-2.161853,-2.161953,-2.162064,-2.162222,-2.16231,-2.162462,-2.16261,-2.16275,-2.162897,-2.163025,-2.162911,-2.162747,-2.162699,-2.162571,-2.16247,-2.162349,-2.162232,-2.162145,-2.162085,-2.162034,-2.162019,-2.161992,-2.161857,-2.161726,-2.16164,-2.161516,-2.161381,-2.161236,-2.16107,-2.160912,-2.160764,-2.160604,-2.160479,-2.160369,-2.160216,-2.160068,-2.159943,-2.159807,-2.159644,-2.159498,-2.159357,-2.159237,-2.159078,-2.158916,-2.158761,-2.158696,-2.158609,-2.158471,-2.158341,-2.158237,-2.158113,-2.157971,-2.157893,-2.157748,-2.157606,-2.157477,-2.157334,-2.157194,-2.157061,-2.156932,-2.15682,-2.156737,-2.156648,-2.156624,-2.156528,-2.156391,-2.156241,-2.156109,-2.155957,-2.15581,-2.155721,-2.15558,-2.155425,-2.155288,-2.155238,-2.155083,-2.154926,-2.154812,-2.154724,-2.154624,-2.154518,-2.154427,-2.154309,-2.15419,-2.154058,-2.153993,-2.153888,-2.153735,-2.153611,-2.153502,-2.15343,-2.153314,-2.153205,-2.153075,-2.152947,-2.152861,-2.152769,-2.152829,-2.152715,-2.152601,-2.152465,-2.152396,-2.152295,-2.152182,-2.152038,-2.151949,-2.151825,-2.151691,-2.151568,-2.151469,-2.151357,-2.151221,-2.151102,-2.150958,-2.150845,-2.150796,-2.150675,-2.150586,-2.150489,-2.150405,-2.150313,-2.150205,-2.150061,-2.14992,-2.149781,-2.149629,-2.149464,-2.149337,-2.149231,-2.149213,-2.149101,-2.148961,-2.148843,-2.148737,-2.148668,-2.148595,-2.148506,-2.148397,-2.14829,-2.14824,-2.14818,-2.148095,-2.148022,-2.147967,-2.147892,-2.147785,-2.147797,-2.147831,-2.147768,-2.147721,-2.147609,-2.147555,-2.147527,-2.147447,-2.147407,-2.147312,-2.147252,-2.147223,-2.147243,-2.147162,-2.147094,-2.147083,-2.147053,-2.146993,-2.146975,-2.146997,-2.146949,-2.146965,-2.146995,-2.147044,-2.147053,-2.147114,-2.147136,-2.147222,-2.147215,-2.14724,-2.147298,-2.147326,-2.147296,-2.147403,-2.147476,-2.147498,-2.147503,-2.147537,-2.147547,-2.147585,-2.147622,-2.147658,-2.147685,-2.147686,-2.14767,-2.147673,-2.147685,-2.147706,-2.147738,-2.14779,-2.147831,-2.147874,-2.147873,-2.147896,-2.147922,-2.147953,-2.14801,-2.148041,-2.148077,-2.14807,-2.1481,-2.14815,-2.148183,-2.148218,-2.148223,-2.148233,-2.148247,-2.148345,-2.148369,-2.148418,-2.148466,-2.148499,-2.148542,-2.148545,-2.148544,-2.148577,-2.148621,-2.148668,-2.148701,-2.148728,-2.148766,-2.148825,-2.148865,-2.148918,-2.148961,-2.149007,-2.14905,-2.149088,-2.149157,-2.149247,-2.149316,-2.14934,-2.149387,-2.149465,-2.149572,-2.149661,-2.149718,-2.149744,-2.149728,-2.149729,-2.149724,-2.149739,-2.149796,-2.149884,-2.149959,-2.150007,-2.15006,-2.1501,-2.150106,-2.150081,-2.15017,-2.150181,-2.150132,-2.1501,-2.150076,-2.150095,-2.150117,-2.150116,-2.150119,-2.150135,-2.150159,-2.150172,-2.150213,-2.150249,-2.150293,-2.150336,-2.150316,-2.15035,-2.150423,-2.15045,-2.150525,-2.150539,-2.150539,-2.150533,-2.15055,-2.150588,-2.150557,-2.15051,-2.150502,-2.150482,-2.150405,-2.150275,-2.150175,-2.150079,-2.149958,-2.149884,-2.149862,-2.149866,-2.149877,-2.149864,-2.149854,-2.149844,-2.149848,-2.149834,-2.149812,-2.149815,-2.149848,-2.149853,-2.149876,-2.149926,-2.150081,-2.150224,-2.150365,-2.150528,-2.150668,-2.150796,-2.150937,-2.151067,-2.151199,-2.151322,-2.15142,-2.151504,-2.151668,-2.151826,-2.151982,-2.152138,-2.152301,-2.152457,-2.152622,-2.152783,-2.152938,-2.153105,-2.153261,-2.153426,-2.153592,-2.153746,-2.153895,-2.153958,-2.153957,-2.153928,-2.153927,-2.153957,-2.153884,-2.15388,-2.153767,-2.153697,-2.153703,-2.153646,-2.153674,-2.153755,-2.153923,-2.153998,-2.15416,-2.154301,-2.154334,-2.154478,-2.154618,-2.154717,-2.154875,-2.155022,-2.155159,-2.155286,-2.155444,-2.155607,-2.155761,-2.155923,-2.15608,-2.156227,-2.156372,-2.156524,-2.156687,-2.15684,-2.157006,-2.15716,-2.157308,-2.15746,-2.157612,-2.157769,-2.157923,-2.158089,-2.158249,-2.158414,-2.158578,-2.158739,-2.158902,-2.159066,-2.159221,-2.159371,-2.159539,-2.159706,-2.159811,-2.159973,-2.160114,-2.160253,-2.160403,-2.160518,-2.160684,-2.160847,-2.161004,-2.161124,-2.16126,-2.16142,-2.161564,-2.161714,-2.161832,-2.161953,-2.162085,-2.162222,-2.162369,-2.162537,-2.162696,-2.162867,-2.163024,-2.163191,-2.163265,-2.163407,-2.163483,-2.163564,-2.163632,-2.163705,-2.163762,-2.163805,-2.163849,-2.163937,-2.16405,-2.164181,-2.164308,-2.164428,-2.164501,-2.164652,-2.164725,-2.164851,-2.164978,-2.165094,-2.165193,-2.165296,-2.165459,-2.165538,-2.1657,-2.165851,-2.166006,-2.166101,-2.166264,-2.166418,-2.166578,-2.166631,-2.166808,-2.166944,-2.167107,-2.167258,-2.167415,-2.167571,-2.167739,-2.1679,-2.167813,-2.167777,-2.16783,-2.167915,-2.167937,-2.167939,-2.167946,-2.167969,-2.168001,-2.168024,-2.167934,-2.167823,-2.167723,-2.167616,-2.16752,-2.16747,-2.167337,-2.167229,-2.167133,-2.167039,-2.166957,-2.166865,-2.166773,-2.166688,-2.166575,-2.166466,-2.166355,-2.166246,-2.166155,-2.166027,-2.16589,-2.165762,-2.165631,-2.165498,-2.165356,-2.165214,-2.165068,-2.164913,-2.164757,-2.164599,-2.164431,-2.16426,-2.164108,-2.163946,-2.163775,-2.163623,-2.163455,-2.163288,-2.163126,-2.162976,-2.162836,-2.162658,-2.162502,-2.162332,-2.162174,-2.162008,-2.161847,-2.161693,-2.161544,-2.1614,-2.161257,-2.161105,-2.160935,-2.160776,-2.160621,-2.16046,-2.160305,-2.160137,-2.159966,-2.159853,-2.159727,-2.15959,-2.159435,-2.159276,-2.159131,-2.159014,-2.158858,-2.158707,-2.158555,-2.158396,-2.158229,-2.158063,-2.157885,-2.157716,-2.157546,-2.15739,-2.157228,-2.157064,-2.156904,-2.156753,-2.156626,-2.156489,-2.156351,-2.15622,-2.156075,-2.155944,-2.155812,-2.155696,-2.155556,-2.155426,-2.155287,-2.155147,-2.154981,-2.15482,-2.154699,-2.154574,-2.154404,-2.154254,-2.154096,-2.153935,-2.153763,-2.153602,-2.15344,-2.153283,-2.153111,-2.152951,-2.152795,-2.152644,-2.152517,-2.152583,-2.152669,-2.152695,-2.152539,-2.15237,-2.152212,-2.152054,-2.151908,-2.151827,-2.151771,-2.151711,-2.151569,-2.15141,-2.151297,-2.151353,-2.151376,-2.151492,-2.151468,-2.151437,-2.151357,-2.151514,-2.151677,-2.151789,-2.151823,-2.151921,-2.152022,-2.152168,-2.152333,-2.152467,-2.152634,-2.152744,-2.152624,-2.152583,-2.15296,-2.152863,-2.152865,-2.152763,-2.152626,-2.152477,-2.152344,-2.15218,-2.152009,-2.151881,-2.151812,-2.151772,-2.15171,-2.151564,-2.151407,-2.151325,-2.151399,-2.151475,-2.151525],"lat":[54.61886,54.618937,54.618988,54.619067,54.619134,54.619208,54.619295,54.619375,54.619465,54.619557,54.619651,54.619743,54.619839,54.619935,54.620026,54.620119,54.62022,54.620312,54.620402,54.620495,54.620597,54.620694,54.620796,54.620897,54.620995,54.621088,54.621179,54.621278,54.621372,54.621465,54.621568,54.621668,54.621761,54.62186,54.621958,54.622045,54.622123,54.622199,54.622244,54.622304,54.62238,54.622442,54.622514,54.62258,54.622659,54.622749,54.622839,54.62293,54.623019,54.623118,54.623204,54.623289,54.623373,54.623465,54.62356,54.623637,54.623728,54.623799,54.623843,54.623865,54.623912,54.62393,54.62394,54.623947,54.623938,54.623911,54.623874,54.623839,54.623808,54.623778,54.623746,54.623705,54.623689,54.623424,54.623451,54.623519,54.62361,54.623689,54.623678,54.623634,54.623623,54.623551,54.623614,54.623616,54.623589,54.623613,54.623652,54.623698,54.623738,54.623776,54.623814,54.623852,54.623881,54.623874,54.623884,54.623811,54.623824,54.623803,54.623761,54.623664,54.623581,54.623501,54.623408,54.623312,54.623219,54.623146,54.623047,54.622956,54.622853,54.622764,54.622682,54.622588,54.62254,54.62248,54.622445,54.622389,54.622316,54.622238,54.622171,54.622091,54.62201,54.621922,54.621822,54.621722,54.621622,54.621532,54.621438,54.621336,54.621232,54.621129,54.621038,54.62094,54.620849,54.620753,54.620659,54.620557,54.620463,54.620372,54.620283,54.620192,54.6201,54.619998,54.619904,54.619809,54.619712,54.619612,54.619523,54.61943,54.619332,54.619246,54.619194,54.619109,54.619022,54.61892,54.618859,54.618785,54.618723,54.618665,54.618712,54.618734,54.618778,54.618843,54.618889,54.618973,54.619058,54.619147,54.619231,54.61933,54.619408,54.619489,54.619439,54.619338,54.619243,54.619147,54.619053,54.618955,54.618851,54.618759,54.618678,54.61871,54.618749,54.618727,54.618644,54.618556,54.618462,54.618387,54.618334,54.618289,54.618213,54.618117,54.618025,54.617935,54.617851,54.61777,54.61768,54.61761,54.61754,54.617481,54.61744,54.617388,54.617296,54.6172,54.617106,54.617009,54.616923,54.616831,54.616736,54.616645,54.616548,54.616456,54.616373,54.616282,54.616195,54.616112,54.616029,54.615935,54.615854,54.615773,54.61569,54.615654,54.615595,54.615556,54.615509,54.615439,54.615367,54.615288,54.615224,54.615152,54.615104,54.615052,54.614974,54.614898,54.614836,54.614777,54.614706,54.614643,54.614579,54.614518,54.614453,54.614401,54.614365,54.614321,54.614293,54.614241,54.614205,54.614151,54.614099,54.614031,54.613978,54.613928,54.613885,54.613828,54.613767,54.613729,54.613736,54.613717,54.613722,54.613711,54.613706,54.613718,54.613738,54.613747,54.613751,54.613748,54.61376,54.613762,54.613767,54.613762,54.61377,54.613771,54.61377,54.613762,54.613775,54.613752,54.613717,54.613702,54.613694,54.613709,54.613714,54.613703,54.613688,54.613658,54.613634,54.613606,54.613566,54.613515,54.61347,54.613431,54.613398,54.613353,54.613343,54.613316,54.61329,54.613243,54.613201,54.613153,54.613087,54.613006,54.61296,54.612918,54.612876,54.612831,54.612772,54.612693,54.612693,54.612694,54.612714,54.612675,54.612642,54.612599,54.612554,54.612516,54.612472,54.61243,54.612387,54.612343,54.612265,54.612199,54.612164,54.612102,54.612038,54.611971,54.61189,54.61183,54.611767,54.611672,54.611577,54.611493,54.611422,54.611363,54.611296,54.611248,54.6112,54.611152,54.611086,54.611017,54.610953,54.6109,54.610835,54.610774,54.610717,54.610656,54.610601,54.610551,54.610519,54.610461,54.610395,54.610353,54.610307,54.610258,54.610196,54.610128,54.610065,54.610011,54.60995,54.609861,54.609765,54.609668,54.609582,54.609498,54.609411,54.609328,54.609233,54.609145,54.609058,54.608969,54.608882,54.608788,54.608762,54.608731,54.608705,54.608678,54.608637,54.608598,54.608548,54.608501,54.608446,54.608389,54.608324,54.608241,54.608161,54.608088,54.608009,54.607928,54.607844,54.607749,54.607654,54.607555,54.607468,54.607379,54.607288,54.607199,54.607109,54.607035,54.60697,54.606881,54.606791,54.606692,54.6066,54.606507,54.606418,54.606348,54.606259,54.606166,54.606075,54.606046,54.605964,54.605882,54.605824,54.605782,54.60581,54.605806,54.605807,54.605788,54.605753,54.605704,54.605666,54.605644,54.60561,54.605558,54.605492,54.605416,54.605352,54.605337,54.605303,54.605275,54.605229,54.605202,54.605187,54.605176,54.605184,54.605187,54.605167,54.60515,54.60514,54.605111,54.605083,54.605075,54.605022,54.604983,54.604937,54.604916,54.604916,54.604932,54.604942,54.604951,54.604978,54.604996,54.605008,54.605014,54.605027,54.605025,54.605097,54.605059,54.605079,54.605079,54.605089,54.605077,54.604991,54.604895,54.604798,54.604731,54.6047,54.604624,54.604526,54.604592,54.604688,54.604729,54.604689,54.604591,54.604502,54.60441,54.604325,54.604286,54.604198,54.604114,54.604041,54.60397,54.603882,54.603805,54.603726,54.603629,54.603534,54.603442,54.603345,54.603245,54.60317,54.603172,54.603097,54.603036,54.602982,54.602929,54.602858,54.602786,54.602728,54.60264,54.602561,54.602498,54.602406,54.60231,54.602219,54.602133,54.602047,54.601954,54.601861,54.601771,54.601683,54.60159,54.601526,54.601518,54.601437,54.601341,54.601255,54.601193,54.601131,54.60108,54.601056,54.600968,54.600872,54.600774,54.600742,54.600654,54.600557,54.600462,54.60037,54.600287,54.600205,54.600125,54.600108,54.600035,54.599948,54.599855,54.599763,54.599663,54.599571,54.599498,54.599437,54.599369,54.599303,54.599241,54.599176,54.599114,54.599049,54.59898,54.598911,54.598848,54.598777,54.59869,54.598642,54.598607,54.598568,54.598531,54.598484,54.598443,54.598401,54.598361,54.598322,54.59828,54.598236,54.598196,54.598146,54.598097,54.598051,54.597993,54.597934,54.597874,54.597818,54.597765,54.597709,54.597654,54.597598,54.597542,54.597487,54.597424,54.597367,54.597303,54.59726,54.597182,54.597126,54.597067,54.597028,54.596953,54.596856,54.596765,54.596702,54.596612,54.596516,54.596415,54.59632,54.596219,54.596134,54.596059,54.595991,54.595925,54.595846,54.595781,54.595728,54.595666,54.595597,54.595535,54.595476,54.595392,54.595294,54.595198,54.595096,54.595008,54.594922,54.59483,54.594776,54.594698,54.594613,54.594524,54.594429,54.594332,54.594239,54.594147,54.594051,54.593951,54.593857,54.593759,54.593661,54.593571,54.59348,54.593387,54.593297,54.593205,54.593124,54.593031,54.592948,54.592865,54.592786,54.592698,54.592607,54.592511,54.592414,54.592329,54.592229,54.592148,54.592058,54.591983,54.591901,54.591809,54.591736,54.591639,54.591549,54.591453,54.591364,54.591262,54.591172,54.591073,54.590984,54.590893,54.590802,54.590706,54.590609,54.590515,54.590458,54.590407,54.590332,54.59025,54.590154,54.590062,54.589964,54.589869,54.589776,54.589753,54.589663,54.589593,54.589525,54.589522,54.589521,54.589517,54.589514,54.58951,54.589506,54.589498,54.589492,54.589487,54.589476,54.589476,54.589478,54.58948,54.589475,54.58948,54.589477,54.589478,54.589482,54.589486,54.589491,54.589493,54.589492,54.589487,54.589511,54.589547,54.589544,54.58953,54.589512,54.589527,54.589534,54.589535,54.589525,54.589442,54.589412,54.589363,54.589325,54.589297,54.589249,54.589211,54.589165,54.589119,54.589066,54.589022,54.588982,54.589046,54.58913,54.589189,54.589177,54.589129,54.589058,54.58898,54.58892,54.588845,54.588811,54.588724,54.588666,54.5886,54.588527,54.588446,54.588398,54.588413,54.588326,54.588236,54.588137,54.588106,54.588009,54.587913,54.58781,54.587718,54.587623,54.587531,54.587434,54.587336,54.587263,54.587199,54.587109,54.587017,54.586916,54.586817,54.586717,54.586618,54.586524,54.586426,54.586324,54.586227,54.58615,54.586103,54.586055,54.586013,54.585961,54.585933,54.58584,54.585746,54.585649,54.58556,54.585464,54.585375,54.585275,54.585176,54.585079,54.584985,54.584905,54.584823,54.584727,54.584633,54.584547,54.584456,54.58436,54.584279,54.584192,54.584102,54.584004,54.583908,54.583812,54.583719,54.583632,54.583551,54.583475,54.583386,54.583288,54.583192,54.58309,54.582991,54.582898,54.582802,54.582702,54.582606,54.582504,54.582412,54.582315,54.582226,54.582134,54.582033,54.581941,54.581846,54.581746,54.581653,54.581559,54.581467,54.58137,54.581307,54.581209,54.581108,54.581008,54.580914,54.580827,54.580734,54.580638,54.58053,54.580483,54.580385,54.580293,54.580196,54.580121,54.580037,54.579947,54.579857,54.579758,54.579661,54.579565,54.579469,54.579368,54.579273,54.579182,54.579091,54.578995,54.578903,54.578813,54.578724,54.578635,54.57854,54.578442,54.578352,54.578267,54.578183,54.578105,54.578016,54.577931,54.577847,54.577755,54.577673,54.577592,54.577506,54.577417,54.577325,54.577237,54.577156,54.577068,54.576973,54.576888,54.576808,54.576719,54.576631,54.576536,54.576447,54.576361,54.576309,54.576221,54.576123,54.576038,54.575955,54.575867,54.575777,54.575687,54.575588,54.575505,54.575486,54.5754,54.575305,54.575215,54.575118,54.575023,54.57498,54.57488,54.574789,54.574696,54.574605,54.574506,54.574412,54.57432,54.574232,54.574144,54.57406,54.573969,54.573879,54.573781,54.573695,54.573605,54.573513,54.573419,54.573319,54.57325,54.573164,54.57307,54.572987,54.572889,54.572802,54.572719,54.572629,54.572533,54.572434,54.572344,54.572251,54.572158,54.57206,54.57197,54.571895,54.571847,54.571777,54.571686,54.571595,54.571508,54.571419,54.57133,54.571233,54.571139,54.571051,54.570965,54.570876,54.570783,54.570692,54.570598,54.570506,54.570416,54.570328,54.570239,54.570157,54.570065,54.569971,54.569886,54.569797,54.569709,54.569627,54.569544,54.569452,54.569354,54.569257,54.569161,54.56907,54.568975,54.568881,54.568793,54.56872,54.568633,54.568541,54.568448,54.568363,54.568274,54.568177,54.568088,54.567997,54.567897,54.567807,54.567718,54.567628,54.567544,54.567456,54.567359,54.56726,54.567184,54.567109,54.567018,54.566922,54.566823,54.566724,54.566617,54.566528,54.566437,54.566343,54.566266,54.566171,54.566116,54.566089,54.566086,54.566101,54.566097,54.566078,54.565983,54.565895,54.565802,54.565715,54.565632,54.56555,54.565459,54.565369,54.565282,54.565198,54.565131,54.56506,54.565059,54.564994,54.564922,54.564847,54.564759,54.564678,54.564597,54.564512,54.564434,54.564349,54.564259,54.564174,54.564085,54.563997,54.563911,54.563823,54.563741,54.563653,54.56356,54.563478,54.563397,54.563319,54.563241,54.563161,54.563075,54.562993,54.562913,54.562829,54.562743,54.56265,54.562557,54.562453,54.562356,54.562255,54.562157,54.562055,54.561957,54.561866,54.561775,54.561678,54.561584,54.561494,54.561398,54.561303,54.561208,54.561113,54.56102,54.560934,54.560841,54.560753,54.560672,54.560577,54.560489,54.560467,54.5604,54.560406,54.560346,54.560286,54.560257,54.560257,54.56026,54.560257,54.56025,54.560241,54.560222,54.560203,54.560197,54.560185,54.560162,54.560118,54.560087,54.560086,54.560083,54.56008,54.560068,54.560044,54.559999,54.559945,54.559887,54.559833,54.559775,54.559714,54.559664,54.559598,54.559535,54.559468,54.559378,54.559285,54.559196,54.559103,54.559007,54.558914,54.55882,54.558728,54.558668,54.558685,54.558629,54.558565,54.558497,54.558418,54.558357,54.558294,54.558238,54.558196,54.558183,54.55818,54.558189,54.558209,54.558244,54.558227,54.558139,54.558051,54.557956,54.55786,54.557763,54.55768,54.557593,54.557505,54.557416,54.557333,54.557248,54.557167,54.55708,54.556997,54.556921,54.556836,54.556761,54.556693,54.556598,54.556553,54.55648,54.556405,54.556318,54.55624,54.556166,54.556089,54.556001,54.555912,54.555821,54.555732,54.555636,54.555541,54.555449,54.555358,54.555273,54.555228,54.555137,54.555049,54.554954,54.554862,54.554775,54.554686,54.554591,54.554551,54.554455,54.554358,54.554262,54.554166,54.554085,54.554,54.553941,54.553885,54.553839,54.553814,54.553806,54.553777,54.553693,54.55362,54.553546,54.553472,54.553406,54.553338,54.553263,54.553166,54.553086,54.553019,54.552936,54.552848,54.55275,54.552657,54.55258,54.552514,54.552443,54.552365,54.552279,54.552176,54.552083,54.55199,54.551893,54.551802,54.551703,54.551607,54.551519,54.55142,54.55132,54.551227,54.551137,54.551046,54.550952,54.550854,54.55076,54.550666,54.550567,54.550479,54.550406,54.550336,54.550239,54.550154,54.550088,54.550012,54.549917,54.54982,54.549726,54.549637,54.549546,54.549448,54.549358,54.549265,54.54917,54.549069,54.54897,54.548874,54.54878,54.548697,54.548631,54.548571,54.548504,54.548419,54.54834,54.548275,54.548222,54.548229,54.548228,54.548229,54.548229,54.548258,54.548296,54.548331,54.548364,54.548412,54.548444,54.548475,54.548497,54.548547,54.548607,54.548659,54.548698,54.548718,54.548655,54.54857,54.548487,54.548399,54.548314,54.548229,54.548151,54.548073,54.547985,54.547914,54.54784,54.547767,54.54768,54.547598,54.547533,54.547452,54.547369,54.547281,54.547189,54.547107,54.547033,54.54695,54.546867,54.546775,54.546695,54.546608,54.546532,54.546458,54.546372,54.546281,54.546197,54.546107,54.546019,54.545924,54.545834,54.545732,54.545639,54.545556,54.545471,54.545393,54.545304,54.545217,54.545122,54.54511,54.545014,54.544929,54.54484,54.544742,54.544652,54.544565,54.544467,54.544369,54.544275,54.544185,54.544098,54.544005,54.543955,54.543886,54.543796,54.543714,54.543619,54.543528,54.543434,54.543346,54.543264,54.543165,54.543074,54.542987,54.542896,54.542799,54.542705,54.542615,54.542525,54.542431,54.542338,54.542235,54.542145,54.542057,54.541971,54.541881,54.541789,54.541698,54.541608,54.541518,54.541416,54.541327,54.541232,54.541136,54.541037,54.540938,54.540857,54.540797,54.540711,54.540627,54.540531,54.540447,54.540363,54.540272,54.540194,54.540103,54.540017,54.539927,54.539839,54.539746,54.53966,54.539571,54.539563,54.539469,54.539376,54.539281,54.539188,54.539098,54.539013,54.538929,54.538844,54.538754,54.538671,54.538575,54.53848,54.538394,54.538308,54.538212,54.538119,54.538028,54.537932,54.53784,54.537743,54.537647,54.537568,54.537474,54.537383,54.537292,54.537194,54.537115,54.537028,54.536934,54.536844,54.53676,54.536674,54.536581,54.536499,54.536405,54.53631,54.53621,54.536122,54.536042,54.535951,54.535876,54.535798,54.535725,54.535654,54.535567,54.535464,54.535363,54.535265,54.535184,54.535092,54.535007,54.534915,54.534841,54.534769,54.534717,54.534622,54.534531,54.534435,54.534338,54.534256,54.534171,54.534082,54.534,54.533901,54.533805,54.533709,54.533611,54.533524,54.533429,54.533327,54.533243,54.530592,54.530512,54.530429,54.530349,54.530275,54.530202,54.530132,54.53005,54.529966,54.529886,54.52979,54.529698,54.529605,54.529523,54.52946,54.529365,54.529281,54.529192,54.529102,54.529018,54.528933,54.528848,54.528767,54.528688,54.528609,54.528551,54.528523,54.528479,54.528418,54.52845,54.528514,54.528485,54.528441,54.528405,54.528352,54.528278,54.528177,54.5281,54.528057,54.527985,54.527975,54.527971,54.527974,54.527931,54.527847,54.527769,54.527697,54.527634,54.527558,54.527492,54.527418,54.527352,54.527275,54.527201,54.527134,54.527107,54.527054,54.526981,54.526897,54.526843,54.526795,54.526726,54.526674,54.526649,54.526598,54.526538,54.526486,54.52643,54.526357,54.526303,54.526206,54.526106,54.526016,54.525989,54.525893,54.525802,54.525705,54.525633,54.525536,54.525437,54.525343,54.525253,54.525165,54.525072,54.524994,54.524905,54.524818,54.524728,54.524644,54.524554,54.524459,54.524365,54.524282,54.524199,54.52411,54.524024,54.523931,54.523834,54.52374,54.523645,54.523564,54.52347,54.523393,54.5233,54.523212,54.523123,54.523028,54.52294,54.522849,54.522751,54.522657,54.522569,54.522483,54.522403,54.522313,54.522222,54.522161,54.522093,54.522014,54.521938,54.521873,54.521802,54.521743,54.521677,54.521615,54.521542,54.52147,54.52139,54.521306,54.521233,54.521154,54.521075,54.521003,54.520936,54.520856,54.520796,54.520726,54.520657,54.520592,54.520538,54.520489,54.520423,54.52034,54.520261,54.520202,54.520135,54.520057,54.519981,54.519911,54.519836,54.519753,54.519675,54.519607,54.51954,54.519468,54.519393,54.519339,54.519269,54.519224,54.519153,54.519092,54.519018,54.518955,54.518898,54.518843,54.518763,54.5187,54.518624,54.518536,54.518457,54.518367,54.518275,54.518199,54.518115,54.518029,54.517949,54.517878,54.517787,54.517711,54.517631,54.51756,54.517467,54.517372,54.51728,54.517186,54.517096,54.517012,54.516928,54.51685,54.516769,54.516685,54.516594,54.516517,54.516425,54.516335,54.516242,54.516148,54.516054,54.51596,54.515868,54.515778,54.515691,54.515602,54.515514,54.515425,54.515334,54.515243,54.51515,54.515063,54.514975,54.514877,54.514783,54.51472,54.514625,54.514555,54.514465,54.51446,54.514424,54.514375,54.51435,54.514269,54.514203,54.514132,54.514063,54.514002,54.513915,54.513829,54.513753,54.513678,54.513612,54.513523,54.513439,54.513351,54.513265,54.513182,54.513085,54.512994,54.512902,54.512812,54.512724,54.512631,54.512655,54.512564,54.512476,54.512378,54.512288,54.512195,54.512108,54.512019,54.511939,54.511852,54.511763,54.511681,54.511591,54.511496,54.5114,54.51133,54.511291,54.511276,54.51127,54.511279,54.511279,54.511257,54.511241,54.511231,54.511226,54.511225,54.511211,54.51124,54.511271,54.511268,54.51126,54.511237,54.511151,54.51116,54.510995,54.510898,54.510798,54.510713,54.510712,54.510726,54.510774,54.51079,54.510794,54.510782,54.51081,54.510838,54.510843,54.51085,54.510878,54.510893,54.510892,54.5109,54.510913,54.510923,54.510924,54.510923,54.510856,54.510767,54.510675,54.510587,54.510495,54.51041,54.510319,54.51022,54.510129,54.510048,54.510005,54.50995,54.509854,54.509761,54.509671,54.509584,54.509483,54.509391,54.509291,54.509214,54.509205,54.50923,54.509201,54.509153,54.509068,54.508991,54.5089,54.508804,54.508712,54.508619,54.508547,54.508463,54.50839,54.508391,54.508428,54.50848,54.508385,54.508291,54.508223,54.508132,54.508087,54.507989,54.507889,54.507788,54.507695,54.507605,54.507616,54.507521,54.507425,54.507339,54.507246,54.507137,54.507041,54.50695,54.506859,54.506768,54.506671,54.506569,54.506472,54.506374,54.506277,54.506176,54.506076,54.505982,54.505892,54.505797,54.505705,54.505612,54.505519,54.505429,54.505342,54.505245,54.505152,54.505061,54.504968,54.504875,54.504784,54.504692,54.5046,54.504501,54.50441,54.504314,54.504234,54.504147,54.50405,54.503956,54.503868,54.503779,54.5037,54.503603,54.503516,54.503422,54.503333,54.503246,54.503149,54.503053,54.50299,54.503014,54.503049,54.503049,54.503066,54.503088,54.503105,54.503135,54.503166,54.503192,54.5032,54.503181,54.503153,54.503164,54.503123,54.503105,54.503124,54.503144,54.503158,54.503155,54.503159,54.503156,54.503177,54.50319,54.503136,54.503051,54.502976,54.50289,54.502807,54.502707,54.502616,54.502533,54.502437,54.502339,54.502242,54.502144,54.502048,54.501959,54.501859,54.501767,54.501671,54.501586,54.501503,54.501409,54.501321,54.501222,54.501129,54.501038,54.50094,54.500849,54.500755,54.500665,54.500571,54.500476,54.500387,54.500306,54.500213,54.500123,54.500037,54.499957,54.499876,54.499789,54.499699,54.499617,54.499535,54.499441,54.499347,54.499265,54.499185,54.499116,54.49903,54.498939,54.498847,54.498772,54.498686,54.498604,54.498521,54.498436,54.498337,54.498244,54.498166,54.498157,54.498061,54.497983,54.497911,54.497833,54.497742,54.497652,54.497565,54.497479,54.4974,54.497313,54.497235,54.49717,54.497106,54.49704,54.496969,54.496883,54.496801,54.49673,54.49665,54.496555,54.496463,54.496372,54.496281,54.4962,54.496114,54.496025,54.495935,54.495845,54.495755,54.495663,54.495614,54.495529,54.495456,54.495378,54.495292,54.495211,54.495133,54.495048,54.494955,54.494869,54.494792,54.494715,54.494629,54.494554,54.494478,54.494398,54.494315,54.49424,54.494163,54.494096,54.494014,54.493927,54.493846,54.493787,54.493729,54.493667,54.493601,54.493554,54.493504,54.49345,54.493376,54.493297,54.493228,54.493167,54.493099,54.49303,54.492974,54.4929,54.49282,54.492748,54.492669,54.492598,54.492509,54.492413,54.49232,54.492231,54.492141,54.492047,54.491967,54.491884,54.491791,54.491743,54.491646,54.491553,54.49146,54.491374,54.491345,54.491274,54.491237,54.491214,54.4912,54.491105,54.491027,54.490959,54.490877,54.49082,54.490762,54.490687,54.490629,54.490564,54.490493,54.490415,54.490321,54.490222,54.49013,54.490039,54.489947,54.489847,54.489751,54.489655,54.489563,54.489471,54.489379,54.489316,54.48922,54.489126,54.48907,54.488976,54.488883,54.488783,54.488686,54.488635,54.488542,54.488452,54.488361,54.488273,54.488181,54.488103,54.488017,54.487927,54.487838,54.487746,54.487672,54.487596,54.487515,54.487423,54.487341,54.487248,54.487159,54.487057,54.486959,54.486863,54.486766,54.486665,54.48657,54.486467,54.486375,54.486286,54.486206,54.486146,54.486065,54.485994,54.485926,54.485865,54.485808,54.485754,54.485693,54.485625,54.485621,54.485555,54.485486,54.485412,54.485349,54.485289,54.485292,54.485217,54.485197,54.485167,54.485082,54.484989,54.484889,54.484792,54.484698,54.484619,54.484538,54.48447,54.4844,54.484331,54.484269,54.4842,54.484141,54.48409,54.484049,54.484001,54.48395,54.483915,54.483881,54.483847,54.483824,54.48379,54.48376,54.483717,54.483669,54.483622,54.483583,54.483536,54.483498,54.483501,54.483525,54.483577,54.483637,54.483682,54.483715,54.483738,54.483728,54.483693,54.483626,54.483554,54.483507,54.483456,54.483395,54.483355,54.483307,54.483282,54.483264,54.483236,54.483208,54.483221,54.483208,54.483231,54.483278,54.483307,54.483314,54.483311,54.483293,54.483264,54.483231,54.483194,54.48319,54.483163,54.48313,54.483106,54.483093,54.483101,54.483082,54.483049,54.483006,54.482988,54.482954,54.48294,54.482919,54.482899,54.482869,54.482831,54.482788,54.482733,54.482679,54.482627,54.482575,54.482522,54.482465,54.482414,54.482357,54.48231,54.482268,54.482216,54.482174,54.482118,54.482059,54.482005,54.481952,54.481891,54.481828,54.481768,54.4817,54.481631,54.481574,54.481502,54.481434,54.481366,54.481299,54.481246,54.481193,54.481149,54.481083,54.481018,54.480951,54.48091,54.480856,54.480792,54.48073,54.48069,54.480663,54.480608,54.480569,54.480539,54.480509,54.480449,54.480401,54.480362,54.480313,54.480264,54.480206,54.480143,54.480081,54.480015,54.479955,54.479892,54.479829,54.479762,54.479683,54.47962,54.479557,54.479493,54.479431,54.47936,54.4793,54.479231,54.479168,54.479102,54.479037,54.478985,54.478979,54.478929,54.47894,54.478974,54.478986,54.47901,54.478978,54.478969,54.478947,54.478932,54.47891,54.47888,54.478842,54.478806,54.478786,54.478774,54.478745,54.478722,54.478703,54.478687,54.478659,54.478646,54.478621,54.478592,54.478558,54.478519,54.478477,54.478417,54.47837,54.478329,54.478287,54.478246,54.478211,54.478168,54.478115,54.47806,54.478006,54.477961,54.477917,54.477876,54.477834,54.477787,54.47773,54.47771,54.477707,54.477678,54.477684,54.477609,54.477523,54.477459,54.477375,54.477294,54.47723,54.477172,54.477118,54.477053,54.476991,54.47692,54.476834,54.47679,54.476731,54.476706,54.476664,54.47661,54.476546,54.476548,54.476471,54.476453,54.476409,54.476404,54.476425,54.47645,54.476491,54.476493,54.476507,54.476535,54.476485,54.476454,54.476463,54.476431,54.476388,54.476397,54.476397,54.476381,54.476326,54.476293,54.476271,54.476235,54.476216,54.476195,54.476172,54.476122,54.476083,54.476025,54.475975,54.475926,54.475885,54.475834,54.475779,54.475688,54.475618,54.475542,54.475466,54.475384,54.475303,54.475236,54.475179,54.475096,54.475049,54.475,54.474958,54.474919,54.474863,54.474826,54.474788,54.474747,54.474724,54.474732,54.474736,54.474704,54.474685,54.474647,54.474612,54.474619,54.474609,54.47458,54.474545,54.474519,54.474478,54.474424,54.474387,54.474345,54.47431,54.474266,54.474222,54.474203,54.474177,54.47414,54.474109,54.47405,54.473994,54.473923,54.473834,54.473753,54.47371,54.473644,54.47361,54.473569,54.473529,54.47348,54.473446,54.473413,54.473385,54.473348,54.473324,54.473304,54.473277,54.473234,54.473194,54.473146,54.473102,54.473075,54.473024,54.472994,54.472958,54.472932,54.472901,54.472866,54.47284,54.472832,54.472791,54.472753,54.472712,54.472665,54.472629,54.472601,54.472592,54.472592,54.472571,54.472531,54.472505,54.472485,54.472441,54.472399,54.472378,54.472337,54.47229,54.472271,54.4722,54.472138,54.472088,54.472076,54.472046,54.472021,54.472008,54.471999,54.471989,54.471974,54.471957,54.471941,54.471919,54.471917,54.47191,54.471883,54.471866,54.4718,54.471747,54.471727,54.471667,54.471606,54.471566,54.47154,54.47149,54.47144,54.471381,54.471322,54.471298,54.471272,54.471235,54.471177,54.471122,54.471098,54.47109,54.471097,54.471027,54.470958,54.470907,54.47085,54.470787,54.470756,54.470719,54.470665,54.470601,54.470542,54.470476,54.470424,54.470349,54.470303,54.470232,54.470149,54.470119,54.470128,54.470137,54.470138,54.470099,54.47006,54.469982,54.469886,54.469837,54.469784,54.469722,54.469658,54.469611,54.469619,54.469582,54.46959,54.469611,54.469616,54.469599,54.469572,54.469537,54.469485,54.469424,54.469351,54.469278,54.4692,54.469142,54.469081,54.469025,54.468932,54.468855,54.468787,54.468716,54.468641,54.468567,54.468514,54.468462,54.468421,54.468377,54.468378,54.468297,54.468233,54.468182,54.468152,54.468108,54.468087,54.468053,54.468043,54.468023,54.467977,54.46789,54.467818,54.467746,54.467706,54.467699,54.46769,54.46765,54.467647,54.467587,54.467537,54.467493,54.467432,54.467381,54.467349,54.467299,54.467234,54.467168,54.467099,54.46704,54.466984,54.466925,54.466874,54.466837,54.466776,54.466746,54.46671,54.466663,54.466613,54.466568,54.466496,54.466436,54.46639,54.466325,54.466304,54.466267,54.466177,54.466122,54.466061,54.466049,54.466019,54.466016,54.465937,54.465899,54.465879,54.465849,54.465778,54.465708,54.465696,54.465716,54.465685,54.46559,54.465564,54.465512,54.465452,54.465395,54.465391,54.465424,54.46536,54.465311,54.465255,54.465212,54.46523,54.465154,54.46509,54.465035,54.46501,54.464983,54.464921,54.464846,54.464806,54.464775,54.464728,54.464734,54.46469,54.464649,54.464633,54.464633,54.4646,54.464583,54.464545,54.464479,54.464447,54.464412,54.46434,54.464327,54.464304,54.464228,54.464181,54.464181,54.464178,54.464122,54.464053,54.464027,54.463998,54.46394,54.463907,54.463895,54.463856,54.463861,54.463817,54.463768,54.463735,54.463725,54.463692,54.463607,54.463536,54.463454,54.463399,54.463318,54.463235,54.463197,54.463172,54.463118,54.463068,54.463006,54.462959,54.462922,54.462892,54.462862,54.462831,54.46278,54.462739,54.462675,54.462621,54.462554,54.462504,54.462464,54.462368,54.462323,54.462251,54.462184,54.462109,54.462039,54.461971,54.461894,54.461816,54.461738,54.461668,54.46159,54.461517,54.461476,54.461397,54.461321,54.461268,54.461252,54.46119,54.461114,54.461023,54.460945,54.46086,54.460777,54.460695,54.460604,54.460544,54.460468,54.460386,54.460336,54.46028,54.460196,54.460124,54.460038,54.459963,54.459888,54.459814,54.459742,54.459665,54.459609,54.459548,54.459472,54.459393,54.459329,54.459247,54.459172,54.459102,54.459047,54.459001,54.45893,54.458844,54.458755,54.458659,54.458611,54.458533,54.458441,54.458398,54.458309,54.458212,54.45812,54.458036,54.457942,54.457856,54.457769,54.45769,54.457606,54.457539,54.457463,54.457419,54.457374,54.457319,54.457266,54.457197,54.45713,54.457064,54.457006,54.456962,54.456917,54.456859,54.456795,54.456736,54.456677,54.45661,54.456524,54.456436,54.456336,54.456238,54.456148,54.456067,54.455989,54.45592,54.455839,54.455778,54.455704,54.455636,54.455566,54.455504,54.455452,54.455423,54.455421,54.455433,54.455493,54.45556,54.455508,54.455513,54.455575,54.455671,54.455767,54.455857,54.455953,54.456049,54.456083,54.456003,54.455911,54.455815,54.455722,54.455629,54.455545,54.455504,54.455512,54.456107,54.456019,54.455922,54.45583,54.455738,54.455649,54.455555,54.455457,54.455404,54.455305,54.45521,54.455114,54.455015,54.454921,54.454825,54.454731,54.454633,54.454535,54.454441,54.454342,54.45425,54.454156,54.454057,54.453964,54.453874,54.45378,54.453686,54.453594,54.453505,54.453415,54.453314,54.45322,54.453128,54.45303,54.452934,54.452842,54.452737,54.452634,54.452538,54.452447,54.45235,54.452259,54.45216,54.45207,54.451979,54.451889,54.451802,54.451709,54.451613,54.451522,54.45143,54.45134,54.451246,54.451155,54.451059,54.450965,54.450872,54.450774,54.45068,54.450586,54.450486,54.450385,54.450286,54.450191,54.450108,54.450038,54.44997,54.44988,54.449789,54.449703,54.44962,54.449525,54.449433,54.449335,54.449245,54.449144,54.449043,54.44895,54.44885,54.448759,54.448668,54.448639,54.448621,54.448599,54.448583,54.448561,54.448518,54.448482,54.448438,54.448388,54.448327,54.448277,54.448223,54.448175,54.448104,54.448011,54.447919,54.447824,54.447732,54.447632,54.447535,54.447444,54.447345,54.44725,54.447156,54.447061,54.446985,54.446889,54.446807,54.446718,54.446636,54.446557,54.44647,54.446386,54.446314,54.446235,54.446151,54.446071,54.445992,54.445911,54.445829,54.445735,54.445649,54.445571,54.445478,54.445397,54.445319,54.445236,54.445162,54.445068,54.444971,54.444878,54.444791,54.444709,54.444617,54.44453,54.444444,54.444381,54.444314,54.444244,54.444179,54.444122,54.444058,54.443988,54.443913,54.443861,54.443775,54.443716,54.443634,54.443559,54.44349,54.443418,54.443358,54.443289,54.443236,54.443185,54.443154,54.443102,54.443047,54.443005,54.442917,54.442844,54.442788,54.442699,54.442604,54.442517,54.442418,54.442323,54.442229,54.442138,54.44204,54.441947,54.441852,54.441761,54.441663,54.441565,54.441464,54.441374,54.441273,54.441178,54.441079,54.440988,54.440886,54.440793,54.440691,54.440592,54.440501,54.440407,54.440311,54.440226,54.440145,54.440072,54.440011,54.439957,54.439887,54.43981,54.439746,54.439657,54.439587,54.439514,54.439442,54.439373,54.439302,54.439237,54.439167,54.439113,54.439065,54.439026,54.438966,54.438896,54.438806,54.438719,54.438646,54.438582,54.438513,54.438463,54.43839,54.438323,54.438248,54.4382,54.438134,54.438066,54.43799,54.437917,54.437835,54.437754,54.437667,54.437584,54.437517,54.43744,54.437404,54.437337,54.437281,54.437225,54.437168,54.437106,54.437025,54.436951,54.436924,54.436908,54.436866,54.436774,54.436675,54.436599,54.436513,54.43646,54.436407,54.436372,54.436287,54.436211,54.436115,54.436058,54.435981,54.435959,54.435879,54.43585,54.43583,54.435742,54.435652,54.435554,54.435456,54.435378,54.435294,54.435203,54.435107,54.435024,54.434937,54.434845,54.434747,54.434664,54.434594,54.434519,54.434433,54.434347,54.434271,54.434187,54.434112,54.434018,54.433927,54.433845,54.433753,54.433688,54.433608,54.433523,54.433437,54.433349,54.433296,54.433268,54.433178,54.433125,54.433046,54.432961,54.432869,54.432772,54.432682,54.432584,54.432486,54.432391,54.432297,54.43221,54.432119,54.432021,54.431929,54.431839,54.431757,54.431672,54.431583,54.431494,54.43142,54.431342,54.431242,54.43115,54.431066,54.43098,54.430883,54.430785,54.430704,54.430612,54.430522,54.430431,54.430342,54.430255,54.43016,54.430071,54.429989,54.429897,54.429806,54.429712,54.429616,54.429528,54.429433,54.429345,54.429261,54.429176,54.429094,54.429018,54.428941,54.428857,54.428759,54.428681,54.428621,54.428561,54.428477,54.428396,54.428353,54.428308,54.428236,54.428189,54.428112,54.428065,54.427969,54.427882,54.427785,54.427687,54.427596,54.427499,54.427402,54.427304,54.427216,54.427116,54.427018,54.426926,54.42683,54.426734,54.426641,54.42655,54.42645,54.426356,54.42627,54.426171,54.426083,54.425992,54.425903,54.425808,54.42571,54.425615,54.42552,54.425428,54.42534,54.425265,54.425175,54.425084,54.424986,54.424893,54.424803,54.424711,54.424615,54.424528,54.42444,54.424342,54.42425,54.42416,54.42407,54.423984,54.423884,54.423785,54.423694,54.4236,54.423507,54.423416,54.423324,54.423234,54.423222,54.423119,54.423026,54.422933,54.422847,54.422766,54.422696,54.42264,54.422607,54.422513,54.422425,54.422325,54.42223,54.422133,54.422031,54.421942,54.421854,54.421772,54.421673,54.421579,54.421484,54.421396,54.421294,54.421199,54.421114,54.421032,54.420961,54.42087,54.420775,54.420681,54.420593,54.420494,54.420399,54.420317,54.420235,54.420153,54.420068,54.419986,54.419889,54.419799,54.419701,54.419606,54.41951,54.419408,54.419312,54.419219,54.419121,54.419028,54.418929,54.418826,54.418729,54.418629,54.418546,54.418454,54.418363,54.418272,54.418182,54.418087,54.417994,54.417901,54.417803,54.417712,54.417621,54.417535,54.417445,54.417352,54.417252,54.417161,54.417069,54.416978,54.416885,54.41679,54.4167,54.41661,54.41652,54.416435,54.416339,54.416252,54.416155,54.416057,54.415961,54.41587,54.415777,54.415682,54.415591,54.415502,54.415412,54.41532,54.415228,54.415141,54.415052,54.414959,54.414863,54.414768,54.414676,54.414583,54.414485,54.414389,54.414292,54.414202,54.414112,54.414022,54.413923,54.413821,54.41373,54.413631,54.413528,54.413431,54.413337,54.413243,54.413146,54.413046,54.41295,54.412858,54.412765,54.412673,54.412583,54.41249,54.412404,54.412311,54.412219,54.412125,54.41203,54.411951,54.411854,54.411756,54.411659,54.411573,54.411479,54.411383,54.411291,54.411201,54.411104,54.411033,54.410963,54.410875,54.410783,54.410692,54.4106,54.410511,54.410417,54.410318,54.410221,54.41014,54.410081,54.409994,54.409906,54.409807,54.409719,54.409636,54.409565,54.409487,54.409404,54.409323,54.409254,54.409169,54.409095,54.409027,54.408982,54.408942,54.408898,54.408862,54.408813,54.408772,54.408708,54.408621,54.408597,54.408504,54.408431,54.408351,54.40827,54.408196,54.40812,54.408026,54.407941,54.407857,54.407777,54.407693,54.407602,54.407523,54.40743,54.40734,54.407247,54.407153,54.407063,54.407012,54.406921,54.406833,54.406751,54.406659,54.406575,54.406484,54.406394,54.406382,54.406288,54.406266,54.4062,54.406103,54.406018,54.405934,54.40587,54.405791,54.405733,54.405704,54.405655,54.405604,54.405614,54.405622,54.40562,54.405596,54.405536,54.405459,54.405412,54.405345,54.405283,54.40524,54.405148,54.405147,54.405184,54.405221,54.405189,54.405118,54.405018,54.404974,54.404937,54.404864,54.404871,54.404797,54.404785,54.404789,54.404714,54.404735,54.404766,54.404766,54.404734,54.404723,54.404653,54.404635,54.404547,54.404475,54.4044,54.404334,54.404275,54.40419,54.404101,54.404013,54.403918,54.40382,54.403772,54.403759,54.403676,54.403598,54.403552,54.403522,54.403505,54.403453,54.403415,54.403387,54.403324,54.40326,54.403205,54.40317,54.403139,54.403089,54.403079,54.40311,54.403169,54.403228,54.403218,54.403236,54.403222,54.403138,54.403061,54.403013,54.402954,54.402886,54.402819,54.402776,54.402692,54.402643,54.4026,54.402547,54.402511,54.402452,54.402394,54.402341,54.402274,54.402192,54.402109,54.402027,54.401952,54.401907,54.401879,54.401827,54.401791,54.401753,54.401667,54.401618,54.401606,54.401562,54.40147,54.401465,54.401437,54.401368,54.40129,54.401218,54.401184,54.401104,54.401041,54.400981,54.400928,54.400847,54.400775,54.400739,54.400685,54.400627,54.400536,54.400475,54.400407,54.400351,54.40029,54.400213,54.400135,54.400058,54.399992,54.399931,54.399887,54.399803,54.399728,54.399661,54.399627,54.399548,54.399485,54.39944,54.399384,54.399313,54.399248,54.399199,54.399136,54.3991,54.399029,54.398938,54.398878,54.3988,54.398723,54.39864,54.398568,54.398494,54.398448,54.398398,54.398353,54.398336,54.398313,54.398257,54.398189,54.398151,54.398086,54.398041,54.397969,54.397896,54.397811,54.397722,54.397647,54.397581,54.397509,54.397417,54.397328,54.397248,54.397163,54.397075,54.39699,54.396919,54.396824,54.396732,54.396645,54.396554,54.396489,54.396393,54.396303,54.396218,54.39613,54.396051,54.395958,54.395869,54.395778,54.395697,54.39561,54.395517,54.395423,54.395339,54.395242,54.395149,54.395058,54.394968,54.394877,54.394784,54.394689,54.394602,54.394584,54.394509,54.394416,54.394319,54.394228,54.394139,54.394123,54.394048,54.39396,54.39386,54.39377,54.393677,54.39358,54.393489,54.393395,54.393306,54.393212,54.393121,54.393028,54.392928,54.392829,54.392733,54.392642,54.39255,54.392456,54.392358,54.392258,54.392165,54.392064,54.391966,54.391876,54.391787,54.39169,54.391597,54.391501,54.391414,54.391321,54.391231,54.39114,54.391044,54.39095,54.390876,54.390808,54.390717,54.39062,54.39053,54.390431,54.390341,54.39025,54.390161,54.390068,54.389978,54.389881,54.389789,54.389697,54.389606,54.389512,54.389424,54.389326,54.389233,54.389145,54.389045,54.388953,54.388868,54.388776,54.38868,54.388586,54.388498,54.388432,54.38835,54.388261,54.388166,54.388072,54.388026,54.387931,54.387879,54.387792,54.387716,54.387623,54.387537,54.38745,54.387355,54.387256,54.387183,54.387107,54.387017,54.386921,54.38683,54.386729,54.38664,54.386536,54.386436,54.386339,54.386245,54.386152,54.386061,54.385968,54.385874,54.385784,54.38569,54.385599,54.385505,54.385417,54.385323,54.385238,54.385146,54.385047,54.38495,54.38486,54.384769,54.384678,54.384585,54.384556,54.384455,54.384359,54.384291,54.384217,54.384137,54.384065,54.383979,54.383886,54.383793,54.383695,54.383596,54.383503,54.383404,54.383314,54.383224,54.383133,54.38304,54.382948,54.382854,54.382765,54.382673,54.382678,54.382715,54.382761,54.382774,54.382727,54.382664,54.382618,54.382551,54.382486,54.382428,54.382355,54.382303,54.382326,54.382305,54.382293,54.382252,54.382231,54.382207,54.382204,54.382209,54.382209,54.382196,54.382187,54.382167,54.38216,54.382159,54.38213,54.382034,54.381942,54.381845,54.381748,54.381652,54.381571,54.381575,54.381506,54.381423,54.381329,54.381241,54.381144,54.38106,54.381033,54.380953,54.380919,54.380871,54.380867,54.380817,54.380765,54.380696,54.380648,54.380606,54.380558,54.380503,54.380485,54.380502,54.380527,54.380532,54.380531,54.380565,54.380604,54.380645,54.380636,54.380643,54.380633,54.380656,54.380683,54.380665,54.380698,54.380736,54.380768,54.380791,54.38082,54.380834,54.380851,54.380864,54.380847,54.380851,54.38087,54.380872,54.380857,54.380865,54.380902,54.380913,54.380954,54.380994,54.381016,54.381017,54.381019,54.381017,54.381014,54.381065,54.381009,54.380972,54.380927,54.380879,54.380813,54.380742,54.380681,54.380634,54.380602,54.38059,54.380574,54.380562,54.380557,54.380579,54.380576,54.380522,54.380438,54.380353,54.380259,54.380176,54.380089,54.379993,54.379903,54.379825,54.379764,54.379703,54.37964,54.379575,54.379553,54.379506,54.379487,54.379429,54.379363,54.379288,54.379216,54.379146,54.37912,54.379143,54.379151,54.37913,54.379143,54.37917,54.379197,54.379217,54.379193,54.379107,54.379103,54.379154,54.379184,54.379208,54.379225,54.379243,54.379255,54.379273,54.379299,54.379396,54.379379,54.379294,54.379202,54.379096,54.378995,54.378897,54.378799,54.378702,54.378622,54.378552,54.378476,54.378398,54.378327,54.378242,54.378183,54.378103,54.378026,54.37794,54.377858,54.377775,54.377692,54.377604,54.377534,54.377455,54.377388,54.377316,54.377237,54.377166,54.377107,54.377051,54.376992,54.376946,54.376895,54.376852,54.376806,54.376763,54.376739,54.376724,54.376729,54.376757,54.376781,54.376798,54.376814,54.376842,54.376866,54.376883,54.376906,54.376934,54.37698,54.376978,54.376963,54.376964,54.376988,54.376994,54.377007,54.377019,54.377056,54.377093,54.377128,54.377143,54.377142,54.377145,54.377135,54.377112,54.377072,54.377046,54.377061,54.37713,54.377198,54.377256,54.377298,54.377316,54.37738,54.377448,54.37749,54.377525,54.377554,54.377573,54.377579,54.377597,54.377602,54.377607,54.377603,54.377608,54.377611,54.377611,54.377587,54.377537,54.377479,54.377423,54.377362,54.377303,54.377252,54.377194,54.377131,54.377062,54.377001,54.376946,54.376894,54.376848,54.376823,54.376861,54.376926,54.376981,54.376983,54.37696,54.376942,54.376933,54.37692,54.376915,54.376907,54.376894,54.376886,54.37687,54.376891,54.376921,54.376994,54.376947,54.377031,54.377053,54.377064,54.377082,54.37711,54.377138,54.377196,54.377279,54.377369,54.377452,54.377491,54.377489,54.37742,54.377327,54.377246,54.377312,54.377314,54.377404,54.377486,54.377514,54.377478,54.377398,54.377304,54.377223,54.377155,54.377107,54.377084,54.377024,54.377051,54.376977,54.37691,54.3769,54.376778,54.376813,54.376913,54.376988,54.377039,54.377068,54.377123,54.377151,54.377151,54.377218,54.377307,54.377397,54.377492,54.377538,54.377514,54.377434,54.377343,54.3773,54.377321]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[54.376724,54.623947],"lng":[-2.176796,-2.060456]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-8-2" class="tab-pane" aria-labelledby="tabset-8-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb16-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-20"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_71a7d122ffcfff6ebf8c4d49ebf5ef4e {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_71a7d122ffcfff6ebf8c4d49ebf5ef4e&quot; ></div>
        
</body>
<script>
    
    
            var map_71a7d122ffcfff6ebf8c4d49ebf5ef4e = L.map(
                &quot;map_71a7d122ffcfff6ebf8c4d49ebf5ef4e&quot;,
                {
                    center: [54.49808346910182, -2.1185644648486366],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_c9641756e7913c7892a15bc5d9ae2aaa = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_c9641756e7913c7892a15bc5d9ae2aaa.addTo(map_71a7d122ffcfff6ebf8c4d49ebf5ef4e);
        
    
            var tile_layer_5c04dfc0416d1ea05132782a94f5dcf7 = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_5c04dfc0416d1ea05132782a94f5dcf7.addTo(map_71a7d122ffcfff6ebf8c4d49ebf5ef4e);
        
    
            var color_line_658cc468865489efb4b91681967796d1 = L.featureGroup(
                {
}
            );
        
    
            var poly_line_33857a07660fd118d9f5393fcab8b359 = L.polyline(
                [[[54.61886, -2.08446], [54.618937, -2.084369]], [[54.618937, -2.084369], [54.618988, -2.084503]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_9bf34757f8e646fccde1aac768cd25f5 = L.polyline(
                [[[54.618988, -2.084503], [54.619067, -2.08458]], [[54.619067, -2.08458], [54.619134, -2.084614]], [[54.62356, -2.083295], [54.623637, -2.083243]], [[54.62394, -2.082235], [54.623947, -2.082115]], [[54.623705, -2.080782], [54.623689, -2.080747]], [[54.62361, -2.080673], [54.623689, -2.080593]], [[54.623551, -2.080918], [54.623614, -2.081029]], [[54.623589, -2.08122], [54.623613, -2.081372]], [[54.623874, -2.082612], [54.623884, -2.082743]], [[54.623811, -2.082875], [54.623824, -2.082831]], [[54.623803, -2.082996], [54.623761, -2.083145]], [[54.618665, -2.08376], [54.618712, -2.083913]], [[54.618778, -2.084203], [54.618843, -2.084317]], [[54.619439, -2.085157], [54.619338, -2.085156]], [[54.618749, -2.085426], [54.618727, -2.085519]], [[54.618556, -2.085396], [54.618462, -2.085412]], [[54.618462, -2.085412], [54.618387, -2.085525]], [[54.618387, -2.085525], [54.618334, -2.08565]], [[54.618334, -2.08565], [54.618289, -2.085796]], [[54.618289, -2.085796], [54.618213, -2.085885]], [[54.618213, -2.085885], [54.618117, -2.085928]], [[54.618117, -2.085928], [54.618025, -2.085987]], [[54.618025, -2.085987], [54.617935, -2.08605]], [[54.617935, -2.08605], [54.617851, -2.086138]], [[54.617851, -2.086138], [54.61777, -2.086227]], [[54.61777, -2.086227], [54.61768, -2.086292]], [[54.61768, -2.086292], [54.61761, -2.086396]], [[54.61761, -2.086396], [54.61754, -2.086512]], [[54.61754, -2.086512], [54.617481, -2.086647]], [[54.617481, -2.086647], [54.61744, -2.086797]], [[54.616736, -2.087309], [54.616645, -2.087353]], [[54.616373, -2.087547], [54.616282, -2.087614]], [[54.616112, -2.087725], [54.616029, -2.087793]], [[54.615773, -2.088017], [54.61569, -2.088076]], [[54.615595, -2.088245], [54.615556, -2.088399]], [[54.615556, -2.088399], [54.615509, -2.088539]], [[54.615509, -2.088539], [54.615439, -2.088646]], [[54.615439, -2.088646], [54.615367, -2.088764]], [[54.615367, -2.088764], [54.615288, -2.088857]], [[54.615288, -2.088857], [54.615224, -2.088966]], [[54.615224, -2.088966], [54.615152, -2.089088]], [[54.615152, -2.089088], [54.615104, -2.08923]], [[54.615104, -2.08923], [54.615052, -2.089371]], [[54.615052, -2.089371], [54.614974, -2.089467]], [[54.614777, -2.089808], [54.614706, -2.089906]], [[54.614706, -2.089906], [54.614643, -2.09002]], [[54.614579, -2.09013], [54.614518, -2.090247]], [[54.613828, -2.092235], [54.613767, -2.092355]], [[54.613718, -2.093303], [54.613738, -2.093458]], [[54.613316, -2.09837], [54.61329, -2.098524]], [[54.61329, -2.098524], [54.613243, -2.098669]], [[54.613243, -2.098669], [54.613201, -2.098818]], [[54.613201, -2.098818], [54.613153, -2.098952]], [[54.613153, -2.098952], [54.613087, -2.099072]], [[54.61296, -2.099307], [54.612918, -2.099463]], [[54.612918, -2.099463], [54.612876, -2.099609]], [[54.612876, -2.099609], [54.612831, -2.099744]], [[54.612693, -2.100143], [54.612694, -2.100308]], [[54.612599, -2.100915], [54.612554, -2.101059]], [[54.612554, -2.101059], [54.612516, -2.101218]], [[54.612343, -2.10181], [54.612265, -2.10191]], [[54.612265, -2.10191], [54.612199, -2.102036]], [[54.612199, -2.102036], [54.612164, -2.102182]], [[54.612164, -2.102182], [54.612102, -2.102315]], [[54.612038, -2.102443], [54.611971, -2.102551]], [[54.611971, -2.102551], [54.61189, -2.102623]], [[54.61189, -2.102623], [54.61183, -2.102757]], [[54.611672, -2.102851], [54.611577, -2.102882]], [[54.611363, -2.103184], [54.611296, -2.1033]], [[54.611296, -2.1033], [54.611248, -2.10344]], [[54.611248, -2.10344], [54.6112, -2.10359]], [[54.6112, -2.10359], [54.611152, -2.103731]], [[54.611152, -2.103731], [54.611086, -2.103847]], [[54.611086, -2.103847], [54.611017, -2.103967]], [[54.611017, -2.103967], [54.610953, -2.104096]], [[54.610953, -2.104096], [54.6109, -2.104235]], [[54.6109, -2.104235], [54.610835, -2.10437]], [[54.610835, -2.10437], [54.610774, -2.104486]], [[54.610774, -2.104486], [54.610717, -2.104611]], [[54.610717, -2.104611], [54.610656, -2.10474]], [[54.610656, -2.10474], [54.610601, -2.104865]], [[54.610601, -2.104865], [54.610551, -2.105004]], [[54.610461, -2.105293], [54.610395, -2.105412]], [[54.610395, -2.105412], [54.610353, -2.105558]], [[54.610353, -2.105558], [54.610307, -2.105693]], [[54.610307, -2.105693], [54.610258, -2.105835]], [[54.610258, -2.105835], [54.610196, -2.105974]], [[54.609582, -2.106607], [54.609498, -2.10669]], [[54.606881, -2.10987], [54.606791, -2.109801]], [[54.606166, -2.110127], [54.606075, -2.110165]], [[54.605824, -2.110484], [54.605782, -2.110627]], [[54.605782, -2.110627], [54.60581, -2.110798]], [[54.605303, -2.112879], [54.605275, -2.113005]], [[54.605229, -2.113162], [54.605202, -2.11331]], [[54.605187, -2.113965], [54.605167, -2.11412]], [[54.60515, -2.114289], [54.60514, -2.114444]], [[54.60514, -2.114444], [54.605111, -2.114604]], [[54.604916, -2.115561], [54.604916, -2.115723]], [[54.604916, -2.115723], [54.604932, -2.115888]], [[54.605025, -2.117169], [54.605097, -2.117267]], [[54.605089, -2.11783], [54.605077, -2.117988]], [[54.605077, -2.117988], [54.604991, -2.11807]], [[54.604624, -2.118519], [54.604526, -2.118541]], [[54.604592, -2.118536], [54.604688, -2.118542]], [[54.604729, -2.11869], [54.604689, -2.118539]], [[54.604689, -2.118539], [54.604591, -2.118537]], [[54.604114, -2.118969], [54.604041, -2.119061]], [[54.604041, -2.119061], [54.60397, -2.119182]], [[54.603534, -2.119476], [54.603442, -2.119489]], [[54.603245, -2.119526], [54.60317, -2.119612]], [[54.602498, -2.120701], [54.602406, -2.12078]], [[54.601683, -2.121147], [54.60159, -2.121215]], [[54.601341, -2.121477], [54.601255, -2.121523]], [[54.601255, -2.121523], [54.601193, -2.121652]], [[54.601193, -2.121652], [54.601131, -2.121788]], [[54.60108, -2.121918], [54.601056, -2.121971]], [[54.600968, -2.122051], [54.600872, -2.122047]], [[54.600774, -2.122031], [54.600742, -2.12201]], [[54.599948, -2.121575], [54.599855, -2.121514]], [[54.599855, -2.121514], [54.599763, -2.121508]], [[54.597367, -2.119117], [54.597303, -2.119129]], [[54.596953, -2.11885], [54.596856, -2.11887]], [[54.595666, -2.117862], [54.595597, -2.117748]], [[54.59483, -2.117176], [54.594776, -2.117128]], [[54.594698, -2.117042], [54.594613, -2.116976]], [[54.591809, -2.115545], [54.591736, -2.1155]], [[54.591736, -2.1155], [54.591639, -2.115462]], [[54.589663, -2.11587], [54.589593, -2.115922]], [[54.589525, -2.115807], [54.589522, -2.115639]], [[54.589478, -2.113782], [54.58948, -2.113675]], [[54.589475, -2.113504], [54.58948, -2.113331]], [[54.589442, -2.11172], [54.589412, -2.111555]], [[54.588724, -2.109113], [54.588666, -2.109242]], [[54.588398, -2.109697], [54.588413, -2.109857]], [[54.588413, -2.109857], [54.588326, -2.109779]], [[54.588326, -2.109779], [54.588236, -2.109763]], [[54.588236, -2.109763], [54.588137, -2.109755]], [[54.588009, -2.109741], [54.587913, -2.109764]], [[54.587913, -2.109764], [54.58781, -2.109764]], [[54.587531, -2.109755], [54.587434, -2.109783]], [[54.587263, -2.109626], [54.587199, -2.109513]], [[54.587199, -2.109513], [54.587109, -2.109484]], [[54.587109, -2.109484], [54.587017, -2.10948]], [[54.586227, -2.109399], [54.58615, -2.109507]], [[54.585961, -2.110086], [54.585933, -2.110187]], [[54.58584, -2.11018], [54.585746, -2.1102]], [[54.58137, -2.111641], [54.581307, -2.111634]], [[54.581209, -2.111625], [54.581108, -2.111595]], [[54.580638, -2.111395], [54.58053, -2.111396]], [[54.579368, -2.11175], [54.579273, -2.111744]], [[54.579273, -2.111744], [54.579182, -2.111731]], [[54.578995, -2.111756], [54.578903, -2.111719]], [[54.578903, -2.111719], [54.578813, -2.111665]], [[54.578105, -2.111166], [54.578016, -2.111124]], [[54.576888, -2.110263], [54.576808, -2.110193]], [[54.576808, -2.110193], [54.576719, -2.110137]], [[54.576719, -2.110137], [54.576631, -2.110063]], [[54.576361, -2.109941], [54.576309, -2.109804]], [[54.576309, -2.109804], [54.576221, -2.109722]], [[54.57488, -2.10972], [54.574789, -2.1097]], [[54.574696, -2.109703], [54.574605, -2.109724]], [[54.57197, -2.108314], [54.571895, -2.108201]], [[54.571895, -2.108201], [54.571847, -2.108061]], [[54.571847, -2.108061], [54.571777, -2.107962]], [[54.571419, -2.107769], [54.57133, -2.107712]], [[54.57133, -2.107712], [54.571233, -2.107665]], [[54.571233, -2.107665], [54.571139, -2.107617]], [[54.571139, -2.107617], [54.571051, -2.107577]], [[54.570692, -2.107379], [54.570598, -2.107375]], [[54.570598, -2.107375], [54.570506, -2.107348]], [[54.570506, -2.107348], [54.570416, -2.107293]], [[54.570416, -2.107293], [54.570328, -2.107246]], [[54.566171, -2.105116], [54.566116, -2.105116]], [[54.566097, -2.104483], [54.566078, -2.104365]], [[54.565131, -2.103773], [54.56506, -2.103661]], [[54.564994, -2.103532], [54.564922, -2.103435]], [[54.560346, -2.101581], [54.560286, -2.1017]], [[54.558728, -2.105943], [54.558668, -2.106001]], [[54.558183, -2.104676], [54.55818, -2.104539]], [[54.55818, -2.104539], [54.558189, -2.104367]], [[54.557763, -2.103665], [54.55768, -2.103621]], [[54.557593, -2.103569], [54.557505, -2.103497]], [[54.556405, -2.102246], [54.556318, -2.102172]], [[54.556318, -2.102172], [54.55624, -2.102089]], [[54.555273, -2.101497], [54.555228, -2.101479]], [[54.554862, -2.101372], [54.554775, -2.101436]], [[54.553086, -2.099727], [54.553019, -2.099621]], [[54.548275, -2.098823], [54.548222, -2.098691]], [[54.548718, -2.096208], [54.548655, -2.096081]], [[54.54768, -2.095079], [54.547598, -2.094983]], [[54.540272, -2.090933], [54.540194, -2.090915]], [[54.539469, -2.090419], [54.539376, -2.090393]], [[54.534717, -2.086864], [54.534622, -2.086803]], [[54.528418, -2.082001], [54.52845, -2.082145]], [[54.528441, -2.082202], [54.528405, -2.082047]], [[54.5281, -2.081679], [54.528057, -2.081593]], [[54.527971, -2.081261], [54.527974, -2.081103]], [[54.527054, -2.079631], [54.526981, -2.079519]], [[54.526674, -2.078898], [54.526649, -2.078747]], [[54.526649, -2.078747], [54.526598, -2.078605]], [[54.526598, -2.078605], [54.526538, -2.078483]], [[54.526538, -2.078483], [54.526486, -2.078357]], [[54.526486, -2.078357], [54.52643, -2.078226]], [[54.526206, -2.07812], [54.526106, -2.078126]], [[54.525893, -2.078153], [54.525802, -2.078145]], [[54.525253, -2.077904], [54.525165, -2.07784]], [[54.522657, -2.077391], [54.522569, -2.077353]], [[54.522313, -2.077182], [54.522222, -2.077159]], [[54.522222, -2.077159], [54.522161, -2.077046]], [[54.518199, -2.071028], [54.518115, -2.070948]], [[54.518115, -2.070948], [54.518029, -2.070855]], [[54.516517, -2.069747], [54.516425, -2.069673]], [[54.516425, -2.069673], [54.516335, -2.069633]], [[54.514555, -2.06883], [54.514465, -2.068838]], [[54.514424, -2.069036], [54.514375, -2.069172]], [[54.514375, -2.069172], [54.51435, -2.069328]], [[54.512564, -2.070623], [54.512476, -2.070581]], [[54.512378, -2.070568], [54.512288, -2.070534]], [[54.512288, -2.070534], [54.512195, -2.070478]], [[54.51124, -2.071911], [54.511271, -2.07206]], [[54.510798, -2.072609], [54.510713, -2.072542]], [[54.51079, -2.072105], [54.510794, -2.071971]], [[54.510843, -2.071328], [54.51085, -2.071172]], [[54.510878, -2.071012], [54.510893, -2.070855]], [[54.510856, -2.069913], [54.510767, -2.069888]], [[54.510767, -2.069888], [54.510675, -2.069829]], [[54.510675, -2.069829], [54.510587, -2.069784]], [[54.510587, -2.069784], [54.510495, -2.069752]], [[54.5089, -2.068064], [54.508804, -2.068097]], [[54.508463, -2.067919], [54.50839, -2.068023]], [[54.50848, -2.067748], [54.508385, -2.067798]], [[54.508385, -2.067798], [54.508291, -2.067803]], [[54.507989, -2.067803], [54.507889, -2.067823]], [[54.507695, -2.06784], [54.507605, -2.067856]], [[54.504692, -2.067525], [54.5046, -2.067478]], [[54.5046, -2.067478], [54.504501, -2.067471]], [[54.504234, -2.067463], [54.504147, -2.067399]], [[54.504147, -2.067399], [54.50405, -2.067373]], [[54.503956, -2.067365], [54.503868, -2.067292]], [[54.503868, -2.067292], [54.503779, -2.067251]], [[54.503779, -2.067251], [54.5037, -2.067152]], [[54.503603, -2.067151], [54.503516, -2.067091]], [[54.503053, -2.066872], [54.50299, -2.06686]], [[54.503014, -2.066693], [54.503049, -2.066545]], [[54.503166, -2.065566], [54.503192, -2.065395]], [[54.50319, -2.063122], [54.503136, -2.062993]], [[54.503136, -2.062993], [54.503051, -2.0629]], [[54.495663, -2.062719], [54.495614, -2.062678]], [[54.492598, -2.066944], [54.492509, -2.066977]], [[54.492509, -2.066977], [54.492413, -2.066963]], [[54.49232, -2.066984], [54.492231, -2.067038]], [[54.492231, -2.067038], [54.492141, -2.067061]], [[54.492141, -2.067061], [54.492047, -2.067117]], [[54.491884, -2.067285], [54.491791, -2.067317]], [[54.491646, -2.067289], [54.491553, -2.067297]], [[54.49146, -2.067291], [54.491374, -2.067368]], [[54.491105, -2.068137], [54.491027, -2.068227]], [[54.49082, -2.068562], [54.490762, -2.068696]], [[54.490762, -2.068696], [54.490687, -2.068796]], [[54.489379, -2.069097], [54.489316, -2.069108]], [[54.489316, -2.069108], [54.48922, -2.06908]], [[54.489126, -2.069051], [54.48907, -2.069012]], [[54.488976, -2.068988], [54.488883, -2.068988]], [[54.488542, -2.068938], [54.488452, -2.068989]], [[54.486286, -2.070296], [54.486206, -2.070385]], [[54.486206, -2.070385], [54.486146, -2.070504]], [[54.485693, -2.071325], [54.485625, -2.07144]], [[54.485555, -2.071575], [54.485486, -2.071689]], [[54.485349, -2.071922], [54.485289, -2.072055]], [[54.485217, -2.072143], [54.485197, -2.072297]], [[54.485197, -2.072297], [54.485167, -2.072457]], [[54.485167, -2.072457], [54.485082, -2.072517]], [[54.4844, -2.073025], [54.484331, -2.073124]], [[54.484331, -2.073124], [54.484269, -2.073239]], [[54.484001, -2.073922], [54.48395, -2.074045]], [[54.483915, -2.074195], [54.483881, -2.074361]], [[54.478985, -2.091988], [54.478979, -2.092087]], [[54.478929, -2.092228], [54.47894, -2.092384]], [[54.477707, -2.098693], [54.477678, -2.098776]], [[54.477053, -2.09986], [54.476991, -2.099997]], [[54.476991, -2.099997], [54.47692, -2.100114]], [[54.476493, -2.102407], [54.476507, -2.102566]], [[54.476397, -2.103486], [54.476397, -2.103651]], [[54.476172, -2.104887], [54.476122, -2.105015]], [[54.476083, -2.105175], [54.476025, -2.105263]], [[54.476025, -2.105263], [54.475975, -2.105411]], [[54.474732, -2.108436], [54.474736, -2.108598]], [[54.474609, -2.109507], [54.47458, -2.109658]], [[54.47458, -2.109658], [54.474545, -2.109804]], [[54.473413, -2.113261], [54.473385, -2.113409]], [[54.473385, -2.113409], [54.473348, -2.113558]], [[54.472791, -2.116053], [54.472753, -2.116209]], [[54.471917, -2.120658], [54.47191, -2.120825]], [[54.47191, -2.120825], [54.471883, -2.120988]], [[54.470665, -2.124984], [54.470601, -2.125117]], [[54.470099, -2.126713], [54.47006, -2.12686]], [[54.469611, -2.127687], [54.469619, -2.127852]], [[54.469619, -2.127852], [54.469582, -2.128007]], [[54.46959, -2.128178], [54.469611, -2.128337]], [[54.469424, -2.129235], [54.469351, -2.129339]], [[54.469142, -2.129659], [54.469081, -2.129778]], [[54.469081, -2.129778], [54.469025, -2.129908]], [[54.468787, -2.13015], [54.468716, -2.13027]], [[54.468462, -2.130733], [54.468421, -2.130874]], [[54.468421, -2.130874], [54.468377, -2.131027]], [[54.468297, -2.131252], [54.468233, -2.131366]], [[54.468182, -2.131513], [54.468152, -2.131597]], [[54.468053, -2.13204], [54.468043, -2.132204]], [[54.467818, -2.132703], [54.467746, -2.132812]], [[54.467647, -2.133609], [54.467587, -2.133741]], [[54.467587, -2.133741], [54.467537, -2.133873]], [[54.467432, -2.134138], [54.467381, -2.134291]], [[54.466746, -2.135911], [54.46671, -2.136063]], [[54.46671, -2.136063], [54.466663, -2.136204]], [[54.466663, -2.136204], [54.466613, -2.13635]], [[54.465395, -2.139945], [54.465391, -2.140102]], [[54.465035, -2.141376], [54.46501, -2.141531]], [[54.46501, -2.141531], [54.464983, -2.141683]], [[54.464983, -2.141683], [54.464921, -2.1418]], [[54.464921, -2.1418], [54.464846, -2.141905]], [[54.464846, -2.141905], [54.464806, -2.142061]], [[54.464806, -2.142061], [54.464775, -2.142206]], [[54.46469, -2.14264], [54.464649, -2.142782]], [[54.464649, -2.142782], [54.464633, -2.142941]], [[54.464633, -2.142941], [54.464633, -2.143099]], [[54.464633, -2.143099], [54.4646, -2.143254]], [[54.464545, -2.143563], [54.464479, -2.143682]], [[54.464479, -2.143682], [54.464447, -2.143837]], [[54.464447, -2.143837], [54.464412, -2.143981]], [[54.464412, -2.143981], [54.46434, -2.144086]], [[54.46434, -2.144086], [54.464327, -2.144241]], [[54.463907, -2.14581], [54.463895, -2.145973]], [[54.463861, -2.146274], [54.463817, -2.146426]], [[54.463817, -2.146426], [54.463768, -2.146572]], [[54.463768, -2.146572], [54.463735, -2.146725]], [[54.463454, -2.147329], [54.463399, -2.147453]], [[54.463172, -2.14792], [54.463118, -2.148061]], [[54.462922, -2.14863], [54.462892, -2.148788]], [[54.462554, -2.149747], [54.462504, -2.149877]], [[54.462039, -2.150548], [54.461971, -2.150665]], [[54.461738, -2.150911], [54.461668, -2.151026]], [[54.461668, -2.151026], [54.46159, -2.151112]], [[54.46159, -2.151112], [54.461517, -2.151219]], [[54.461321, -2.151403], [54.461268, -2.151529]], [[54.461268, -2.151529], [54.461252, -2.151691]], [[54.461252, -2.151691], [54.46119, -2.151812]], [[54.46119, -2.151812], [54.461114, -2.151902]], [[54.461114, -2.151902], [54.461023, -2.151971]], [[54.461023, -2.151971], [54.460945, -2.152059]], [[54.460945, -2.152059], [54.46086, -2.152139]], [[54.46086, -2.152139], [54.460777, -2.152204]], [[54.460777, -2.152204], [54.460695, -2.152271]], [[54.460695, -2.152271], [54.460604, -2.152312]], [[54.460604, -2.152312], [54.460544, -2.152452]], [[54.460544, -2.152452], [54.460468, -2.152552]], [[54.460386, -2.15264], [54.460336, -2.15278]], [[54.460336, -2.15278], [54.46028, -2.152917]], [[54.46028, -2.152917], [54.460196, -2.153001]], [[54.460196, -2.153001], [54.460124, -2.153108]], [[54.460124, -2.153108], [54.460038, -2.153181]], [[54.460038, -2.153181], [54.459963, -2.153285]], [[54.459963, -2.153285], [54.459888, -2.153384]], [[54.459888, -2.153384], [54.459814, -2.153478]], [[54.459814, -2.153478], [54.459742, -2.153586]], [[54.459742, -2.153586], [54.459665, -2.153687]], [[54.459665, -2.153687], [54.459609, -2.153815]], [[54.459548, -2.153946], [54.459472, -2.154029]], [[54.459472, -2.154029], [54.459393, -2.154117]], [[54.459393, -2.154117], [54.459329, -2.154228]], [[54.459329, -2.154228], [54.459247, -2.154328]], [[54.459247, -2.154328], [54.459172, -2.154424]], [[54.459172, -2.154424], [54.459102, -2.154539]], [[54.459102, -2.154539], [54.459047, -2.154683]], [[54.458659, -2.155067], [54.458611, -2.155207]], [[54.458611, -2.155207], [54.458533, -2.155294]], [[54.457856, -2.155694], [54.457769, -2.155765]], [[54.457606, -2.155936], [54.457539, -2.15604]], [[54.455566, -2.159142], [54.455504, -2.15926]], [[54.455504, -2.15926], [54.455452, -2.159392]], [[54.455452, -2.159392], [54.455423, -2.159544]], [[54.455423, -2.159544], [54.455421, -2.159707]], [[54.455493, -2.159993], [54.45556, -2.160046]], [[54.456049, -2.160228], [54.456083, -2.160267]], [[54.455504, -2.160286], [54.455512, -2.160412]], [[54.453415, -2.159657], [54.453314, -2.159636]], [[54.453314, -2.159636], [54.45322, -2.159602]], [[54.44997, -2.159864], [54.44988, -2.159795]], [[54.443102, -2.167207], [54.443047, -2.167317]], [[54.443005, -2.167476], [54.442917, -2.167571]], [[54.435981, -2.175007], [54.435959, -2.175141]], [[54.435959, -2.175141], [54.435879, -2.175227]], [[54.434112, -2.176755], [54.434018, -2.176796]], [[54.434018, -2.176796], [54.433927, -2.17679]], [[54.433845, -2.176711], [54.433753, -2.176645]], [[54.433753, -2.176645], [54.433688, -2.176529]], [[54.433688, -2.176529], [54.433608, -2.1766]], [[54.433268, -2.17614], [54.433178, -2.176115]], [[54.433178, -2.176115], [54.433125, -2.176256]], [[54.433046, -2.176348], [54.432961, -2.176415]], [[54.432961, -2.176415], [54.432869, -2.1764]], [[54.432869, -2.1764], [54.432772, -2.176387]], [[54.427882, -2.173054], [54.427785, -2.173044]], [[54.426171, -2.172619], [54.426083, -2.172655]], [[54.426083, -2.172655], [54.425992, -2.172732]], [[54.42264, -2.171031], [54.422607, -2.170981]], [[54.422513, -2.171025], [54.422425, -2.171101]], [[54.415502, -2.168089], [54.415412, -2.168053]], [[54.415412, -2.168053], [54.41532, -2.168076]], [[54.41373, -2.167834], [54.413631, -2.167799]], [[54.411951, -2.167553], [54.411854, -2.167517]], [[54.411854, -2.167517], [54.411756, -2.167499]], [[54.411756, -2.167499], [54.411659, -2.167457]], [[54.411104, -2.167318], [54.411033, -2.167244]], [[54.410875, -2.167084], [54.410783, -2.16708]], [[54.409636, -2.166415], [54.409565, -2.166314]], [[54.409565, -2.166314], [54.409487, -2.166221]], [[54.409404, -2.166153], [54.409323, -2.166064]], [[54.408708, -2.164668], [54.408621, -2.164625]], [[54.408504, -2.164561], [54.408431, -2.164462]], [[54.407063, -2.163359], [54.407012, -2.163326]], [[54.406921, -2.163295], [54.406833, -2.163243]], [[54.4062, -2.162931], [54.406103, -2.162919]], [[54.405536, -2.161235], [54.405459, -2.161312]], [[54.405459, -2.161312], [54.405412, -2.161446]], [[54.405412, -2.161446], [54.405345, -2.161574]], [[54.405345, -2.161574], [54.405283, -2.161702]], [[54.405283, -2.161702], [54.40524, -2.161838]], [[54.40524, -2.161838], [54.405148, -2.161835]], [[54.405148, -2.161835], [54.405147, -2.161669]], [[54.405018, -2.16148], [54.404974, -2.161622]], [[54.404974, -2.161622], [54.404937, -2.161763]], [[54.404937, -2.161763], [54.404864, -2.161854]], [[54.404789, -2.162222], [54.404714, -2.16231]], [[54.404714, -2.16231], [54.404735, -2.162462]], [[54.404475, -2.162571], [54.4044, -2.16247]], [[54.4044, -2.16247], [54.404334, -2.162349]], [[54.403772, -2.161857], [54.403759, -2.161726]], [[54.40326, -2.160369], [54.403205, -2.160216]], [[54.40317, -2.160068], [54.403139, -2.159943]], [[54.40311, -2.159498], [54.403169, -2.159357]], [[54.403218, -2.159078], [54.403236, -2.158916]], [[54.403222, -2.158761], [54.403138, -2.158696]], [[54.403138, -2.158696], [54.403061, -2.158609]], [[54.403061, -2.158609], [54.403013, -2.158471]], [[54.402954, -2.158341], [54.402886, -2.158237]], [[54.402886, -2.158237], [54.402819, -2.158113]], [[54.402819, -2.158113], [54.402776, -2.157971]], [[54.402776, -2.157971], [54.402692, -2.157893]], [[54.402692, -2.157893], [54.402643, -2.157748]], [[54.402643, -2.157748], [54.4026, -2.157606]], [[54.4026, -2.157606], [54.402547, -2.157477]], [[54.402547, -2.157477], [54.402511, -2.157334]], [[54.402511, -2.157334], [54.402452, -2.157194]], [[54.402452, -2.157194], [54.402394, -2.157061]], [[54.402394, -2.157061], [54.402341, -2.156932]], [[54.402341, -2.156932], [54.402274, -2.15682]], [[54.402274, -2.15682], [54.402192, -2.156737]], [[54.401952, -2.156528], [54.401907, -2.156391]], [[54.401827, -2.156109], [54.401791, -2.155957]], [[54.401791, -2.155957], [54.401753, -2.15581]], [[54.401753, -2.15581], [54.401667, -2.155721]], [[54.401667, -2.155721], [54.401618, -2.15558]], [[54.401618, -2.15558], [54.401606, -2.155425]], [[54.401437, -2.154926], [54.401368, -2.154812]], [[54.401368, -2.154812], [54.40129, -2.154724]], [[54.40129, -2.154724], [54.401218, -2.154624]], [[54.401041, -2.154309], [54.400981, -2.15419]], [[54.400536, -2.15343], [54.400475, -2.153314]], [[54.400475, -2.153314], [54.400407, -2.153205]], [[54.40029, -2.152947], [54.400213, -2.152861]], [[54.400213, -2.152861], [54.400135, -2.152769]], [[54.399887, -2.152465], [54.399803, -2.152396]], [[54.399803, -2.152396], [54.399728, -2.152295]], [[54.399728, -2.152295], [54.399661, -2.152182]], [[54.399661, -2.152182], [54.399627, -2.152038]], [[54.399627, -2.152038], [54.399548, -2.151949]], [[54.399548, -2.151949], [54.399485, -2.151825]], [[54.399485, -2.151825], [54.39944, -2.151691]], [[54.39944, -2.151691], [54.399384, -2.151568]], [[54.399384, -2.151568], [54.399313, -2.151469]], [[54.399248, -2.151357], [54.399199, -2.151221]], [[54.399199, -2.151221], [54.399136, -2.151102]], [[54.399136, -2.151102], [54.3991, -2.150958]], [[54.3991, -2.150958], [54.399029, -2.150845]], [[54.399029, -2.150845], [54.398938, -2.150796]], [[54.398878, -2.150675], [54.3988, -2.150586]], [[54.3988, -2.150586], [54.398723, -2.150489]], [[54.398723, -2.150489], [54.39864, -2.150405]], [[54.39864, -2.150405], [54.398568, -2.150313]], [[54.398568, -2.150313], [54.398494, -2.150205]], [[54.398494, -2.150205], [54.398448, -2.150061]], [[54.398448, -2.150061], [54.398398, -2.14992]], [[54.398398, -2.14992], [54.398353, -2.149781]], [[54.398353, -2.149781], [54.398336, -2.149629]], [[54.398336, -2.149629], [54.398313, -2.149464]], [[54.398313, -2.149464], [54.398257, -2.149337]], [[54.398257, -2.149337], [54.398189, -2.149231]], [[54.398086, -2.149101], [54.398041, -2.148961]], [[54.397896, -2.148737], [54.397811, -2.148668]], [[54.397722, -2.148595], [54.397647, -2.148506]], [[54.397509, -2.14829], [54.397417, -2.14824]], [[54.397417, -2.14824], [54.397328, -2.14818]], [[54.397328, -2.14818], [54.397248, -2.148095]], [[54.397248, -2.148095], [54.397163, -2.148022]], [[54.397163, -2.148022], [54.397075, -2.147967]], [[54.397075, -2.147967], [54.39699, -2.147892]], [[54.39699, -2.147892], [54.396919, -2.147785]], [[54.396919, -2.147785], [54.396824, -2.147797]], [[54.396554, -2.147721], [54.396489, -2.147609]], [[54.396489, -2.147609], [54.396393, -2.147555]], [[54.396393, -2.147555], [54.396303, -2.147527]], [[54.396303, -2.147527], [54.396218, -2.147447]], [[54.396218, -2.147447], [54.39613, -2.147407]], [[54.39613, -2.147407], [54.396051, -2.147312]], [[54.396051, -2.147312], [54.395958, -2.147252]], [[54.395958, -2.147252], [54.395869, -2.147223]], [[54.395869, -2.147223], [54.395778, -2.147243]], [[54.395778, -2.147243], [54.395697, -2.147162]], [[54.395697, -2.147162], [54.39561, -2.147094]], [[54.39561, -2.147094], [54.395517, -2.147083]], [[54.395517, -2.147083], [54.395423, -2.147053]], [[54.395423, -2.147053], [54.395339, -2.146993]], [[54.395339, -2.146993], [54.395242, -2.146975]], [[54.395149, -2.146997], [54.395058, -2.146949]], [[54.395058, -2.146949], [54.394968, -2.146965]], [[54.394784, -2.147044], [54.394689, -2.147053]], [[54.394509, -2.147222], [54.394416, -2.147215]], [[54.394228, -2.147298], [54.394139, -2.147326]], [[54.393306, -2.147658], [54.393212, -2.147685]], [[54.393212, -2.147685], [54.393121, -2.147686]], [[54.392642, -2.147738], [54.39255, -2.14779]], [[54.39255, -2.14779], [54.392456, -2.147831]], [[54.392456, -2.147831], [54.392358, -2.147874]], [[54.392258, -2.147873], [54.392165, -2.147896]], [[54.392165, -2.147896], [54.392064, -2.147922]], [[54.391787, -2.148041], [54.39169, -2.148077]], [[54.391501, -2.1481], [54.391414, -2.14815]], [[54.391414, -2.14815], [54.391321, -2.148183]], [[54.391044, -2.148233], [54.39095, -2.148247]], [[54.39095, -2.148247], [54.390876, -2.148345]], [[54.390717, -2.148418], [54.39062, -2.148466]], [[54.389881, -2.148701], [54.389789, -2.148728]], [[54.38835, -2.149661], [54.388261, -2.149718]], [[54.388261, -2.149718], [54.388166, -2.149744]], [[54.387792, -2.149796], [54.387716, -2.149884]], [[54.387256, -2.150106], [54.387183, -2.150081]], [[54.386921, -2.150132], [54.38683, -2.1501]], [[54.385505, -2.15035], [54.385417, -2.150423]], [[54.385417, -2.150423], [54.385323, -2.15045]], [[54.385323, -2.15045], [54.385238, -2.150525]], [[54.385238, -2.150525], [54.385146, -2.150539]], [[54.382774, -2.150528], [54.382727, -2.150668]], [[54.382326, -2.151668], [54.382305, -2.151826]], [[54.381748, -2.153927], [54.381652, -2.153957]], [[54.381652, -2.153957], [54.381571, -2.153884]], [[54.380765, -2.154618], [54.380696, -2.154717]], [[54.380696, -2.154717], [54.380648, -2.154875]], [[54.380485, -2.155444], [54.380502, -2.155607]], [[54.380531, -2.15608], [54.380565, -2.156227]], [[54.380565, -2.156227], [54.380604, -2.156372]], [[54.380604, -2.156372], [54.380645, -2.156524]], [[54.380643, -2.15684], [54.380633, -2.157006]], [[54.380633, -2.157006], [54.380656, -2.15716]], [[54.380656, -2.15716], [54.380683, -2.157308]], [[54.38082, -2.158249], [54.380834, -2.158414]], [[54.380834, -2.158414], [54.380851, -2.158578]], [[54.380851, -2.158578], [54.380864, -2.158739]], [[54.380864, -2.158739], [54.380847, -2.158902]], [[54.380847, -2.158902], [54.380851, -2.159066]], [[54.380851, -2.159066], [54.38087, -2.159221]], [[54.38087, -2.159221], [54.380872, -2.159371]], [[54.380857, -2.159539], [54.380865, -2.159706]], [[54.380865, -2.159706], [54.380902, -2.159811]], [[54.380913, -2.159973], [54.380954, -2.160114]], [[54.380954, -2.160114], [54.380994, -2.160253]], [[54.381019, -2.160684], [54.381017, -2.160847]], [[54.381017, -2.160847], [54.381014, -2.161004]], [[54.379429, -2.164851], [54.379363, -2.164978]], [[54.379151, -2.1657], [54.37913, -2.165851]], [[54.37913, -2.165851], [54.379143, -2.166006]], [[54.379193, -2.166578], [54.379107, -2.166631]], [[54.379107, -2.166631], [54.379103, -2.166808]], [[54.379294, -2.167915], [54.379202, -2.167937]], [[54.376891, -2.152795], [54.376921, -2.152644]], [[54.376947, -2.152583], [54.377031, -2.152669]], [[54.377064, -2.152539], [54.377082, -2.15237]], [[54.377327, -2.151353], [54.377246, -2.151376]], [[54.377024, -2.152467], [54.377051, -2.152634]], [[54.377051, -2.152634], [54.376977, -2.152744]], [[54.377343, -2.151399], [54.3773, -2.151475]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_39ad30135b79706a454dc6ee6fae4fb4 = L.polyline(
                [[[54.619134, -2.084614], [54.619208, -2.084707]], [[54.619557, -2.084994], [54.619651, -2.085057]], [[54.619651, -2.085057], [54.619743, -2.08506]], [[54.619743, -2.08506], [54.619839, -2.085037]], [[54.619839, -2.085037], [54.619935, -2.085039]], [[54.619935, -2.085039], [54.620026, -2.085046]], [[54.620026, -2.085046], [54.620119, -2.085039]], [[54.620402, -2.085013], [54.620495, -2.085035]], [[54.620495, -2.085035], [54.620597, -2.085036]], [[54.620597, -2.085036], [54.620694, -2.085025]], [[54.620694, -2.085025], [54.620796, -2.085038]], [[54.620796, -2.085038], [54.620897, -2.085039]], [[54.620897, -2.085039], [54.620995, -2.085032]], [[54.620995, -2.085032], [54.621088, -2.085033]], [[54.621088, -2.085033], [54.621179, -2.085036]], [[54.621179, -2.085036], [54.621278, -2.085028]], [[54.621278, -2.085028], [54.621372, -2.085023]], [[54.621372, -2.085023], [54.621465, -2.085005]], [[54.621568, -2.08501], [54.621668, -2.085011]], [[54.621668, -2.085011], [54.621761, -2.08501]], [[54.621958, -2.084911], [54.622045, -2.08483]], [[54.622045, -2.08483], [54.622123, -2.084725]], [[54.622123, -2.084725], [54.622199, -2.084603]], [[54.622199, -2.084603], [54.622244, -2.084466]], [[54.622244, -2.084466], [54.622304, -2.08433]], [[54.622304, -2.08433], [54.62238, -2.084208]], [[54.62238, -2.084208], [54.622442, -2.084081]], [[54.622442, -2.084081], [54.622514, -2.083966]], [[54.622514, -2.083966], [54.62258, -2.083856]], [[54.622659, -2.083776], [54.622749, -2.083735]], [[54.62293, -2.083688], [54.623019, -2.083631]], [[54.623019, -2.083631], [54.623118, -2.083588]], [[54.623118, -2.083588], [54.623204, -2.083522]], [[54.623204, -2.083522], [54.623289, -2.08346]], [[54.623289, -2.08346], [54.623373, -2.083389]], [[54.623373, -2.083389], [54.623465, -2.083312]], [[54.623465, -2.083312], [54.62356, -2.083295]], [[54.623843, -2.082869], [54.623865, -2.082718]], [[54.623865, -2.082718], [54.623912, -2.082582]], [[54.623912, -2.082582], [54.62393, -2.082404]], [[54.62393, -2.082404], [54.62394, -2.082235]], [[54.623839, -2.081439], [54.623808, -2.081267]], [[54.623778, -2.081098], [54.623746, -2.080936]], [[54.623746, -2.080936], [54.623705, -2.080782]], [[54.623698, -2.081676], [54.623738, -2.081832]], [[54.623738, -2.081832], [54.623776, -2.081995]], [[54.623776, -2.081995], [54.623814, -2.082138]], [[54.623814, -2.082138], [54.623852, -2.0823]], [[54.623581, -2.083279], [54.623501, -2.083365]], [[54.623501, -2.083365], [54.623408, -2.083416]], [[54.623312, -2.08342], [54.623219, -2.083474]], [[54.623146, -2.083568], [54.623047, -2.083612]], [[54.622764, -2.083692], [54.622682, -2.083767]], [[54.622682, -2.083767], [54.622588, -2.083833]], [[54.62254, -2.083985], [54.62248, -2.084102]], [[54.622389, -2.084398], [54.622316, -2.084516]], [[54.622316, -2.084516], [54.622238, -2.08464]], [[54.622238, -2.08464], [54.622171, -2.08478]], [[54.622091, -2.084879], [54.62201, -2.084949]], [[54.62201, -2.084949], [54.621922, -2.084998]], [[54.621822, -2.084963], [54.621722, -2.084984]], [[54.621722, -2.084984], [54.621622, -2.085001]], [[54.621622, -2.085001], [54.621532, -2.085023]], [[54.621532, -2.085023], [54.621438, -2.085018]], [[54.621438, -2.085018], [54.621336, -2.085001]], [[54.621129, -2.085002], [54.621038, -2.084987]], [[54.621038, -2.084987], [54.62094, -2.085017]], [[54.62094, -2.085017], [54.620849, -2.085054]], [[54.620849, -2.085054], [54.620753, -2.085025]], [[54.620753, -2.085025], [54.620659, -2.085028]], [[54.620659, -2.085028], [54.620557, -2.085031]], [[54.620557, -2.085031], [54.620463, -2.085016]], [[54.620463, -2.085016], [54.620372, -2.085008]], [[54.619998, -2.085029], [54.619904, -2.085005]], [[54.619904, -2.085005], [54.619809, -2.084954]], [[54.619809, -2.084954], [54.619712, -2.08492]], [[54.619712, -2.08492], [54.619612, -2.08492]], [[54.619612, -2.08492], [54.619523, -2.084873]], [[54.619109, -2.084472], [54.619022, -2.084403]], [[54.61892, -2.084329], [54.618859, -2.084213]], [[54.618859, -2.084213], [54.618785, -2.084103]], [[54.618973, -2.084566], [54.619058, -2.084629]], [[54.619058, -2.084629], [54.619147, -2.084728]], [[54.61933, -2.084853], [54.619408, -2.084942]], [[54.619408, -2.084942], [54.619489, -2.085018]], [[54.619338, -2.085156], [54.619243, -2.085163]], [[54.619243, -2.085163], [54.619147, -2.085157]], [[54.61871, -2.085285], [54.618749, -2.085426]], [[54.617296, -2.087003], [54.6172, -2.08705]], [[54.6172, -2.08705], [54.617106, -2.087115]], [[54.614321, -2.090819], [54.614293, -2.090972]], [[54.613717, -2.092823], [54.613722, -2.092988]], [[54.613722, -2.092988], [54.613711, -2.093151]], [[54.613748, -2.093928], [54.61376, -2.09409]], [[54.61376, -2.09409], [54.613762, -2.094252]], [[54.613566, -2.097314], [54.613515, -2.097457]], [[54.613515, -2.097457], [54.61347, -2.097599]], [[54.61347, -2.097599], [54.613431, -2.09775]], [[54.608731, -2.107489], [54.608705, -2.107642]], [[54.608705, -2.107642], [54.608678, -2.107791]], [[54.608501, -2.108398], [54.608446, -2.108541]], [[54.607749, -2.109368], [54.607654, -2.109401]], [[54.607654, -2.109401], [54.607555, -2.109447]], [[54.607468, -2.109494], [54.607379, -2.109545]], [[54.607379, -2.109545], [54.607288, -2.109582]], [[54.607288, -2.109582], [54.607199, -2.109634]], [[54.60561, -2.112056], [54.605558, -2.112203]], [[54.605558, -2.112203], [54.605492, -2.112329]], [[54.605492, -2.112329], [54.605416, -2.112429]], [[54.605337, -2.112719], [54.605303, -2.112879]], [[54.605075, -2.114943], [54.605022, -2.115093]], [[54.605022, -2.115093], [54.604983, -2.115245]], [[54.604932, -2.115888], [54.604942, -2.116048]], [[54.604942, -2.116048], [54.604951, -2.11621]], [[54.604951, -2.11621], [54.604978, -2.116359]], [[54.604895, -2.118082], [54.604798, -2.118134]], [[54.604798, -2.118134], [54.604731, -2.118244]], [[54.604591, -2.118537], [54.604502, -2.118572]], [[54.604502, -2.118572], [54.60441, -2.118599]], [[54.602982, -2.11997], [54.602929, -2.120101]], [[54.602929, -2.120101], [54.602858, -2.120223]], [[54.602858, -2.120223], [54.602786, -2.12033]], [[54.602786, -2.12033], [54.602728, -2.120457]], [[54.602728, -2.120457], [54.60264, -2.120527]], [[54.60037, -2.122018], [54.600287, -2.12195]], [[54.600287, -2.12195], [54.600205, -2.121864]], [[54.599763, -2.121508], [54.599663, -2.121494]], [[54.599663, -2.121494], [54.599571, -2.121528]], [[54.599571, -2.121528], [54.599498, -2.121657]], [[54.599498, -2.121657], [54.599437, -2.121777]], [[54.599437, -2.121777], [54.599369, -2.121908]], [[54.599369, -2.121908], [54.599303, -2.122036]], [[54.599303, -2.122036], [54.599241, -2.122164]], [[54.599241, -2.122164], [54.599176, -2.1223]], [[54.599176, -2.1223], [54.599114, -2.122439]], [[54.599114, -2.122439], [54.599049, -2.122571]], [[54.599049, -2.122571], [54.59898, -2.122698]], [[54.59898, -2.122698], [54.598911, -2.122824]], [[54.598911, -2.122824], [54.598848, -2.122949]], [[54.59869, -2.122984], [54.598642, -2.122838]], [[54.598642, -2.122838], [54.598607, -2.122685]], [[54.598607, -2.122685], [54.598568, -2.122525]], [[54.598568, -2.122525], [54.598531, -2.12237]], [[54.598531, -2.12237], [54.598484, -2.122234]], [[54.598484, -2.122234], [54.598443, -2.122091]], [[54.598443, -2.122091], [54.598401, -2.121933]], [[54.598401, -2.121933], [54.598361, -2.121776]], [[54.598361, -2.121776], [54.598322, -2.121631]], [[54.598322, -2.121631], [54.59828, -2.121484]], [[54.59828, -2.121484], [54.598236, -2.121339]], [[54.598236, -2.121339], [54.598196, -2.12118]], [[54.598196, -2.12118], [54.598146, -2.121033]], [[54.598146, -2.121033], [54.598097, -2.120895]], [[54.598097, -2.120895], [54.598051, -2.120742]], [[54.598051, -2.120742], [54.597993, -2.120614]], [[54.597818, -2.120228], [54.597765, -2.120088]], [[54.597765, -2.120088], [54.597709, -2.119946]], [[54.597709, -2.119946], [54.597654, -2.119801]], [[54.597654, -2.119801], [54.597598, -2.119658]], [[54.597598, -2.119658], [54.597542, -2.119516]], [[54.597542, -2.119516], [54.597487, -2.119381]], [[54.597487, -2.119381], [54.597424, -2.119248]], [[54.597424, -2.119248], [54.597367, -2.119117]], [[54.596516, -2.118752], [54.596415, -2.118741]], [[54.596219, -2.11877], [54.596134, -2.118711]], [[54.596134, -2.118711], [54.596059, -2.118609]], [[54.595476, -2.117505], [54.595392, -2.117431]], [[54.595392, -2.117431], [54.595294, -2.117408]], [[54.595294, -2.117408], [54.595198, -2.117384]], [[54.595198, -2.117384], [54.595096, -2.117346]], [[54.595008, -2.117307], [54.594922, -2.117227]], [[54.594922, -2.117227], [54.59483, -2.117176]], [[54.594613, -2.116976], [54.594524, -2.116941]], [[54.594332, -2.116924], [54.594239, -2.116928]], [[54.594239, -2.116928], [54.594147, -2.116922]], [[54.594147, -2.116922], [54.594051, -2.116914]], [[54.594051, -2.116914], [54.593951, -2.116882]], [[54.593951, -2.116882], [54.593857, -2.116828]], [[54.593857, -2.116828], [54.593759, -2.116789]], [[54.593661, -2.116772], [54.593571, -2.116722]], [[54.593387, -2.116773], [54.593297, -2.116716]], [[54.592698, -2.116195], [54.592607, -2.116143]], [[54.591639, -2.115462], [54.591549, -2.115436]], [[54.591549, -2.115436], [54.591453, -2.115436]], [[54.591453, -2.115436], [54.591364, -2.115421]], [[54.591073, -2.115392], [54.590984, -2.115349]], [[54.590609, -2.115407], [54.590515, -2.115478]], [[54.590515, -2.115478], [54.590458, -2.115619]], [[54.590458, -2.115619], [54.590407, -2.11577]], [[54.590407, -2.11577], [54.590332, -2.115888]], [[54.590332, -2.115888], [54.59025, -2.115955]], [[54.589522, -2.115639], [54.589521, -2.115479]], [[54.589521, -2.115479], [54.589517, -2.115311]], [[54.589517, -2.115311], [54.589514, -2.115149]], [[54.589514, -2.115149], [54.58951, -2.114973]], [[54.58951, -2.114973], [54.589506, -2.114807]], [[54.589506, -2.114807], [54.589498, -2.114634]], [[54.589498, -2.114634], [54.589492, -2.11446]], [[54.589492, -2.11446], [54.589487, -2.114303]], [[54.589487, -2.114303], [54.589476, -2.114129]], [[54.589476, -2.114129], [54.589476, -2.113949]], [[54.589476, -2.113949], [54.589478, -2.113782]], [[54.58948, -2.113331], [54.589477, -2.113161]], [[54.589477, -2.113161], [54.589478, -2.112987]], [[54.589478, -2.112987], [54.589482, -2.112813]], [[54.589482, -2.112813], [54.589486, -2.112633]], [[54.589486, -2.112633], [54.589491, -2.112456]], [[54.589491, -2.112456], [54.589493, -2.112292]], [[54.589493, -2.112292], [54.589492, -2.112115]], [[54.589492, -2.112115], [54.589487, -2.111942]], [[54.589487, -2.111942], [54.589511, -2.111786]], [[54.589511, -2.111786], [54.589547, -2.111641]], [[54.589547, -2.111641], [54.589544, -2.111464]], [[54.589544, -2.111464], [54.58953, -2.111301]], [[54.589535, -2.111474], [54.589525, -2.111644]], [[54.589363, -2.111399], [54.589325, -2.111226]], [[54.589165, -2.110639], [54.589119, -2.110505]], [[54.589119, -2.110505], [54.589066, -2.110365]], [[54.589066, -2.110365], [54.589022, -2.110216]], [[54.589022, -2.110216], [54.588982, -2.110067]], [[54.589129, -2.109427], [54.589058, -2.109329]], [[54.589058, -2.109329], [54.58898, -2.109229]], [[54.586103, -2.109642], [54.586055, -2.109795]], [[54.586055, -2.109795], [54.586013, -2.109934]], [[54.586013, -2.109934], [54.585961, -2.110086]], [[54.585746, -2.1102], [54.585649, -2.110212]], [[54.585649, -2.110212], [54.58556, -2.110245]], [[54.58556, -2.110245], [54.585464, -2.110284]], [[54.585464, -2.110284], [54.585375, -2.110328]], [[54.585176, -2.110421], [54.585079, -2.110465]], [[54.585079, -2.110465], [54.584985, -2.110489]], [[54.583632, -2.111312], [54.583551, -2.111393]], [[54.583288, -2.111631], [54.583192, -2.111644]], [[54.583192, -2.111644], [54.58309, -2.111667]], [[54.58309, -2.111667], [54.582991, -2.111675]], [[54.582991, -2.111675], [54.582898, -2.11168]], [[54.582898, -2.11168], [54.582802, -2.111668]], [[54.582802, -2.111668], [54.582702, -2.11165]], [[54.582134, -2.111656], [54.582033, -2.111651]], [[54.582033, -2.111651], [54.581941, -2.111657]], [[54.581653, -2.111678], [54.581559, -2.111655]], [[54.581559, -2.111655], [54.581467, -2.111662]], [[54.581008, -2.111562], [54.580914, -2.111502]], [[54.578635, -2.11157], [54.57854, -2.111498]], [[54.57854, -2.111498], [54.578442, -2.111457]], [[54.577931, -2.111059], [54.577847, -2.110995]], [[54.57406, -2.109454], [54.573969, -2.109403]], [[54.573969, -2.109403], [54.573879, -2.109321]], [[54.573879, -2.109321], [54.573781, -2.109276]], [[54.573781, -2.109276], [54.573695, -2.1092]], [[54.573695, -2.1092], [54.573605, -2.109152]], [[54.57307, -2.108824], [54.572987, -2.108732]], [[54.572987, -2.108732], [54.572889, -2.108698]], [[54.572434, -2.108401], [54.572344, -2.108372]], [[54.572344, -2.108372], [54.572251, -2.108374]], [[54.569709, -2.10685], [54.569627, -2.106763]], [[54.569627, -2.106763], [54.569544, -2.106702]], [[54.56872, -2.106327], [54.568633, -2.106265]], [[54.568088, -2.105952], [54.567997, -2.105908]], [[54.567997, -2.105908], [54.567897, -2.105867]], [[54.567897, -2.105867], [54.567807, -2.105803]], [[54.567807, -2.105803], [54.567718, -2.105751]], [[54.567456, -2.105595], [54.567359, -2.105572]], [[54.567359, -2.105572], [54.56726, -2.105542]], [[54.56726, -2.105542], [54.567184, -2.105451]], [[54.567184, -2.105451], [54.567109, -2.10534]], [[54.566617, -2.10526], [54.566528, -2.105292]], [[54.566528, -2.105292], [54.566437, -2.105266]], [[54.566437, -2.105266], [54.566343, -2.105243]], [[54.566086, -2.104801], [54.566101, -2.104641]], [[54.566101, -2.104641], [54.566097, -2.104483]], [[54.565895, -2.104345], [54.565802, -2.104306]], [[54.565802, -2.104306], [54.565715, -2.104258]], [[54.56555, -2.104127], [54.565459, -2.104075]], [[54.565459, -2.104075], [54.565369, -2.104013]], [[54.565369, -2.104013], [54.565282, -2.103971]], [[54.565282, -2.103971], [54.565198, -2.103879]], [[54.564922, -2.103435], [54.564847, -2.103338]], [[54.564847, -2.103338], [54.564759, -2.103251]], [[54.564759, -2.103251], [54.564678, -2.10315]], [[54.564678, -2.10315], [54.564597, -2.103049]], [[54.564597, -2.103049], [54.564512, -2.102946]], [[54.564512, -2.102946], [54.564434, -2.102849]], [[54.564434, -2.102849], [54.564349, -2.102754]], [[54.564349, -2.102754], [54.564259, -2.102666]], [[54.564259, -2.102666], [54.564174, -2.102574]], [[54.564174, -2.102574], [54.564085, -2.102488]], [[54.563997, -2.102448], [54.563911, -2.102391]], [[54.563823, -2.102326], [54.563741, -2.10225]], [[54.563741, -2.10225], [54.563653, -2.102173]], [[54.563653, -2.102173], [54.56356, -2.102096]], [[54.56356, -2.102096], [54.563478, -2.102007]], [[54.563478, -2.102007], [54.563397, -2.101908]], [[54.563397, -2.101908], [54.563319, -2.101815]], [[54.563319, -2.101815], [54.563241, -2.101708]], [[54.563241, -2.101708], [54.563161, -2.101604]], [[54.563161, -2.101604], [54.563075, -2.10151]], [[54.563075, -2.10151], [54.562993, -2.10144]], [[54.562993, -2.10144], [54.562913, -2.101352]], [[54.562913, -2.101352], [54.562829, -2.101281]], [[54.562829, -2.101281], [54.562743, -2.101203]], [[54.562557, -2.101173], [54.562453, -2.101179]], [[54.562453, -2.101179], [54.562356, -2.101194]], [[54.562356, -2.101194], [54.562255, -2.101205]], [[54.562255, -2.101205], [54.562157, -2.101219]], [[54.562157, -2.101219], [54.562055, -2.10125]], [[54.562055, -2.10125], [54.561957, -2.101278]], [[54.561957, -2.101278], [54.561866, -2.101315]], [[54.561866, -2.101315], [54.561775, -2.101327]], [[54.561775, -2.101327], [54.561678, -2.10134]], [[54.561678, -2.10134], [54.561584, -2.101362]], [[54.561584, -2.101362], [54.561494, -2.10138]], [[54.561494, -2.10138], [54.561398, -2.101398]], [[54.561398, -2.101398], [54.561303, -2.101434]], [[54.561303, -2.101434], [54.561208, -2.101443]], [[54.561208, -2.101443], [54.561113, -2.10142]], [[54.560753, -2.101263], [54.560672, -2.101194]], [[54.560672, -2.101194], [54.560577, -2.101143]], [[54.560286, -2.1017], [54.560257, -2.10187]], [[54.560257, -2.10187], [54.560257, -2.102047]], [[54.560257, -2.102047], [54.56026, -2.102216]], [[54.56026, -2.102216], [54.560257, -2.102395]], [[54.560257, -2.102395], [54.56025, -2.102574]], [[54.56025, -2.102574], [54.560241, -2.102734]], [[54.560241, -2.102734], [54.560222, -2.102902]], [[54.560222, -2.102902], [54.560203, -2.103074]], [[54.560203, -2.103074], [54.560197, -2.103236]], [[54.560197, -2.103236], [54.560185, -2.103395]], [[54.560185, -2.103395], [54.560162, -2.103568]], [[54.560162, -2.103568], [54.560118, -2.103729]], [[54.560118, -2.103729], [54.560087, -2.103882]], [[54.560087, -2.103882], [54.560086, -2.104037]], [[54.560086, -2.104037], [54.560083, -2.104198]], [[54.560083, -2.104198], [54.56008, -2.10436]], [[54.56008, -2.10436], [54.560068, -2.104516]], [[54.560068, -2.104516], [54.560044, -2.104681]], [[54.560044, -2.104681], [54.559999, -2.104832]], [[54.559999, -2.104832], [54.559945, -2.10497]], [[54.559945, -2.10497], [54.559887, -2.105091]], [[54.559887, -2.105091], [54.559833, -2.105225]], [[54.559664, -2.105597], [54.559598, -2.105731]], [[54.559598, -2.105731], [54.559535, -2.105863]], [[54.559535, -2.105863], [54.559468, -2.105992]], [[54.559285, -2.106019], [54.559196, -2.105982]], [[54.559196, -2.105982], [54.559103, -2.105965]], [[54.559103, -2.105965], [54.559007, -2.105947]], [[54.559007, -2.105947], [54.558914, -2.105934]], [[54.558914, -2.105934], [54.55882, -2.10593]], [[54.55882, -2.10593], [54.558728, -2.105943]], [[54.558629, -2.105717], [54.558565, -2.105603]], [[54.558565, -2.105603], [54.558497, -2.105494]], [[54.558497, -2.105494], [54.558418, -2.105375]], [[54.558418, -2.105375], [54.558357, -2.105243]], [[54.558294, -2.105116], [54.558238, -2.104988]], [[54.558238, -2.104988], [54.558196, -2.104836]], [[54.558196, -2.104836], [54.558183, -2.104676]], [[54.558189, -2.104367], [54.558209, -2.104212]], [[54.557333, -2.103359], [54.557248, -2.103292]], [[54.557248, -2.103292], [54.557167, -2.10321]], [[54.557167, -2.10321], [54.55708, -2.103124]], [[54.556761, -2.102769], [54.556693, -2.102653]], [[54.556553, -2.10246], [54.55648, -2.102338]], [[54.555449, -2.101602], [54.555358, -2.101576]], [[54.555358, -2.101576], [54.555273, -2.101497]], [[54.555049, -2.101375], [54.554954, -2.101339]], [[54.554, -2.101484], [54.553941, -2.101338]], [[54.553941, -2.101338], [54.553885, -2.1012]], [[54.553885, -2.1012], [54.553839, -2.101054]], [[54.553839, -2.101054], [54.553814, -2.100892]], [[54.553814, -2.100892], [54.553806, -2.100736]], [[54.553806, -2.100736], [54.553777, -2.100588]], [[54.55275, -2.099485], [54.552657, -2.099426]], [[54.552514, -2.099228], [54.552443, -2.099115]], [[54.552443, -2.099115], [54.552365, -2.099035]], [[54.552176, -2.09896], [54.552083, -2.098926]], [[54.55132, -2.098845], [54.551227, -2.098774]], [[54.551227, -2.098774], [54.551137, -2.098707]], [[54.551137, -2.098707], [54.551046, -2.09868]], [[54.551046, -2.09868], [54.550952, -2.098661]], [[54.550567, -2.098696], [54.550479, -2.098755]], [[54.550479, -2.098755], [54.550406, -2.098852]], [[54.550088, -2.099215], [54.550012, -2.099325]], [[54.550012, -2.099325], [54.549917, -2.09939]], [[54.549917, -2.09939], [54.54982, -2.099424]], [[54.549726, -2.099462], [54.549637, -2.099514]], [[54.549637, -2.099514], [54.549546, -2.099578]], [[54.549546, -2.099578], [54.549448, -2.099631]], [[54.549265, -2.099645], [54.54917, -2.09964]], [[54.548874, -2.0996], [54.54878, -2.099558]], [[54.54878, -2.099558], [54.548697, -2.099463]], [[54.548697, -2.099463], [54.548631, -2.099355]], [[54.54857, -2.096013], [54.548487, -2.095946]], [[54.548487, -2.095946], [54.548399, -2.095855]], [[54.548399, -2.095855], [54.548314, -2.095769]], [[54.548314, -2.095769], [54.548229, -2.09571]], [[54.548151, -2.095623], [54.548073, -2.09553]], [[54.548073, -2.09553], [54.547985, -2.095466]], [[54.547985, -2.095466], [54.547914, -2.095361]], [[54.547914, -2.095361], [54.54784, -2.095272]], [[54.547369, -2.094698], [54.547281, -2.094635]], [[54.545834, -2.09358], [54.545732, -2.093555]], [[54.545732, -2.093555], [54.545639, -2.093538]], [[54.544275, -2.092824], [54.544185, -2.092805]], [[54.544185, -2.092805], [54.544098, -2.092712]], [[54.542705, -2.091769], [54.542615, -2.091744]], [[54.541698, -2.091777], [54.541608, -2.091732]], [[54.541608, -2.091732], [54.541518, -2.091706]], [[54.540857, -2.091433], [54.540797, -2.09131]], [[54.540531, -2.091136], [54.540447, -2.091076]], [[54.540447, -2.091076], [54.540363, -2.091007]], [[54.540017, -2.0908], [54.539927, -2.090748]], [[54.539927, -2.090748], [54.539839, -2.090682]], [[54.539839, -2.090682], [54.539746, -2.090608]], [[54.539746, -2.090608], [54.53966, -2.090526]], [[54.539376, -2.090393], [54.539281, -2.09034]], [[54.539281, -2.09034], [54.539188, -2.090301]], [[54.539188, -2.090301], [54.539098, -2.09024]], [[54.539013, -2.090175], [54.538929, -2.090107]], [[54.538929, -2.090107], [54.538844, -2.090032]], [[54.538844, -2.090032], [54.538754, -2.089956]], [[54.538754, -2.089956], [54.538671, -2.089886]], [[54.538671, -2.089886], [54.538575, -2.089841]], [[54.538575, -2.089841], [54.53848, -2.08977]], [[54.53848, -2.08977], [54.538394, -2.089673]], [[54.538394, -2.089673], [54.538308, -2.089597]], [[54.538308, -2.089597], [54.538212, -2.08956]], [[54.538212, -2.08956], [54.538119, -2.089488]], [[54.538119, -2.089488], [54.538028, -2.089409]], [[54.538028, -2.089409], [54.537932, -2.089362]], [[54.537932, -2.089362], [54.53784, -2.0893]], [[54.53784, -2.0893], [54.537743, -2.089249]], [[54.537743, -2.089249], [54.537647, -2.089179]], [[54.537647, -2.089179], [54.537568, -2.089101]], [[54.537568, -2.089101], [54.537474, -2.089033]], [[54.537474, -2.089033], [54.537383, -2.088946]], [[54.537383, -2.088946], [54.537292, -2.088881]], [[54.537292, -2.088881], [54.537194, -2.08883]], [[54.537194, -2.08883], [54.537115, -2.088735]], [[54.537115, -2.088735], [54.537028, -2.088643]], [[54.537028, -2.088643], [54.536934, -2.08856]], [[54.53676, -2.088421], [54.536674, -2.088332]], [[54.536674, -2.088332], [54.536581, -2.088268]], [[54.536581, -2.088268], [54.536499, -2.088201]], [[54.536499, -2.088201], [54.536405, -2.088149]], [[54.536405, -2.088149], [54.53631, -2.08809]], [[54.53631, -2.08809], [54.53621, -2.088045]], [[54.53621, -2.088045], [54.536122, -2.087981]], [[54.536122, -2.087981], [54.536042, -2.087902]], [[54.536042, -2.087902], [54.535951, -2.087831]], [[54.535951, -2.087831], [54.535876, -2.087738]], [[54.535876, -2.087738], [54.535798, -2.087653]], [[54.535798, -2.087653], [54.535725, -2.087541]], [[54.535725, -2.087541], [54.535654, -2.08742]], [[54.535654, -2.08742], [54.535567, -2.087354]], [[54.535567, -2.087354], [54.535464, -2.087335]], [[54.535464, -2.087335], [54.535363, -2.087326]], [[54.535184, -2.08727], [54.535092, -2.087194]], [[54.535092, -2.087194], [54.535007, -2.087131]], [[54.535007, -2.087131], [54.534915, -2.087091]], [[54.534915, -2.087091], [54.534841, -2.087]], [[54.534622, -2.086803], [54.534531, -2.086745]], [[54.534531, -2.086745], [54.534435, -2.086772]], [[54.534435, -2.086772], [54.534338, -2.086741]], [[54.534338, -2.086741], [54.534256, -2.086669]], [[54.534171, -2.086601], [54.534082, -2.086541]], [[54.534, -2.086464], [54.533901, -2.086423]], [[54.533901, -2.086423], [54.533805, -2.086377]], [[54.533805, -2.086377], [54.533709, -2.086358]], [[54.533709, -2.086358], [54.533611, -2.086307]], [[54.533611, -2.086307], [54.533524, -2.086261]], [[54.533524, -2.086261], [54.533429, -2.086221]], [[54.533429, -2.086221], [54.533327, -2.08618]], [[54.533327, -2.08618], [54.533243, -2.086114]], [[54.530512, -2.084352], [54.530429, -2.084253]], [[54.530429, -2.084253], [54.530349, -2.084141]], [[54.530349, -2.084141], [54.530275, -2.084042]], [[54.530275, -2.084042], [54.530202, -2.083937]], [[54.530202, -2.083937], [54.530132, -2.083823]], [[54.530132, -2.083823], [54.53005, -2.083727]], [[54.53005, -2.083727], [54.529966, -2.083665]], [[54.529966, -2.083665], [54.529886, -2.083574]], [[54.529698, -2.083509], [54.529605, -2.083439]], [[54.529605, -2.083439], [54.529523, -2.083337]], [[54.529523, -2.083337], [54.52946, -2.083224]], [[54.52946, -2.083224], [54.529365, -2.083157]], [[54.529365, -2.083157], [54.529281, -2.0831]], [[54.529281, -2.0831], [54.529192, -2.083065]], [[54.529192, -2.083065], [54.529102, -2.083005]], [[54.529102, -2.083005], [54.529018, -2.082938]], [[54.529018, -2.082938], [54.528933, -2.08287]], [[54.528933, -2.08287], [54.528848, -2.082808]], [[54.528767, -2.082738], [54.528688, -2.082637]], [[54.528523, -2.082259], [54.528479, -2.08212]], [[54.528278, -2.081802], [54.528177, -2.08176]], [[54.528177, -2.08176], [54.5281, -2.081679]], [[54.527769, -2.080823], [54.527697, -2.080712]], [[54.527697, -2.080712], [54.527634, -2.080595]], [[54.521306, -2.075728], [54.521233, -2.075601]], [[54.521233, -2.075601], [54.521154, -2.07551]], [[54.521154, -2.07551], [54.521075, -2.075425]], [[54.520726, -2.074884], [54.520657, -2.074774]], [[54.520657, -2.074774], [54.520592, -2.07465]], [[54.520592, -2.07465], [54.520538, -2.07452]], [[54.519675, -2.073223], [54.519607, -2.07311]], [[54.519607, -2.07311], [54.51954, -2.072992]], [[54.51954, -2.072992], [54.519468, -2.072897]], [[54.518843, -2.071599], [54.518763, -2.071505]], [[54.518457, -2.071133], [54.518367, -2.071161]], [[54.518367, -2.071161], [54.518275, -2.071116]], [[54.518275, -2.071116], [54.518199, -2.071028]], [[54.517949, -2.070747], [54.517878, -2.070637]], [[54.517878, -2.070637], [54.517787, -2.070585]], [[54.51756, -2.07029], [54.517467, -2.070242]], [[54.517467, -2.070242], [54.517372, -2.070233]], [[54.517372, -2.070233], [54.51728, -2.070207]], [[54.51728, -2.070207], [54.517186, -2.070179]], [[54.517096, -2.070112], [54.517012, -2.070037]], [[54.51685, -2.06987], [54.516769, -2.069765]], [[54.516769, -2.069765], [54.516685, -2.069678]], [[54.516685, -2.069678], [54.516594, -2.069661]], [[54.515778, -2.069509], [54.515691, -2.069453]], [[54.515691, -2.069453], [54.515602, -2.069413]], [[54.515334, -2.069352], [54.515243, -2.06928]], [[54.515243, -2.06928], [54.51515, -2.069245]], [[54.51515, -2.069245], [54.515063, -2.069201]], [[54.514975, -2.069159], [54.514877, -2.069118]], [[54.514269, -2.069395], [54.514203, -2.069527]], [[54.513612, -2.070283], [54.513523, -2.070342]], [[54.513523, -2.070342], [54.513439, -2.070418]], [[54.513439, -2.070418], [54.513351, -2.070468]], [[54.513351, -2.070468], [54.513265, -2.070528]], [[54.511681, -2.070091], [54.511591, -2.070055]], [[54.511276, -2.070389], [54.51127, -2.070564]], [[54.51127, -2.070564], [54.511279, -2.070731]], [[54.511279, -2.070731], [54.511279, -2.070903]], [[54.511257, -2.07106], [54.511241, -2.071225]], [[54.511241, -2.071225], [54.511231, -2.071393]], [[54.51126, -2.072386], [54.511237, -2.072554]], [[54.510995, -2.072604], [54.510898, -2.072597]], [[54.51041, -2.069699], [54.510319, -2.069655]], [[54.510129, -2.069644], [54.510048, -2.069563]], [[54.510048, -2.069563], [54.510005, -2.069409]], [[54.510005, -2.069409], [54.50995, -2.069267]], [[54.509761, -2.069181], [54.509671, -2.069112]], [[54.509671, -2.069112], [54.509584, -2.069041]], [[54.509483, -2.068999], [54.509391, -2.068953]], [[54.509391, -2.068953], [54.509291, -2.068936]], [[54.509205, -2.068689], [54.50923, -2.068536]], [[54.50923, -2.068536], [54.509201, -2.068388]], [[54.507425, -2.067923], [54.507339, -2.067841]], [[54.50695, -2.067702], [54.506859, -2.067673]], [[54.506569, -2.06767], [54.506472, -2.067649]], [[54.506472, -2.067649], [54.506374, -2.067629]], [[54.506076, -2.067639], [54.505982, -2.067611]], [[54.505982, -2.067611], [54.505892, -2.0676]], [[54.503049, -2.066545], [54.503049, -2.066385]], [[54.503049, -2.066385], [54.503066, -2.066214]], [[54.503088, -2.066058], [54.503105, -2.065887]], [[54.503105, -2.065887], [54.503135, -2.065727]], [[54.503153, -2.064918], [54.503164, -2.064756]], [[54.498772, -2.060912], [54.498686, -2.060841]], [[54.498686, -2.060841], [54.498604, -2.060753]], [[54.49717, -2.061424], [54.497106, -2.06155]], [[54.497106, -2.06155], [54.49704, -2.061659]], [[54.496555, -2.062194], [54.496463, -2.062246]], [[54.496463, -2.062246], [54.496372, -2.062303]], [[54.496372, -2.062303], [54.496281, -2.062364]], [[54.496281, -2.062364], [54.4962, -2.062438]], [[54.496025, -2.062576], [54.495935, -2.062634]], [[54.494478, -2.06395], [54.494398, -2.064035]], [[54.493601, -2.065204], [54.493554, -2.065339]], [[54.491345, -2.067519], [54.491274, -2.067618]], [[54.491274, -2.067618], [54.491237, -2.067769]], [[54.491237, -2.067769], [54.491214, -2.067923]], [[54.489471, -2.06911], [54.489379, -2.069097]], [[54.487746, -2.069562], [54.487672, -2.069671]], [[54.487672, -2.069671], [54.487596, -2.06977]], [[54.487596, -2.06977], [54.487515, -2.069865]], [[54.487515, -2.069865], [54.487423, -2.069944]], [[54.487423, -2.069944], [54.487341, -2.070014]], [[54.48657, -2.070195], [54.486467, -2.070212]], [[54.486467, -2.070212], [54.486375, -2.070235]], [[54.485926, -2.070799], [54.485865, -2.070939]], [[54.485865, -2.070939], [54.485808, -2.071075]], [[54.485486, -2.071689], [54.485412, -2.071811]], [[54.48376, -2.074975], [54.483717, -2.075117]], [[54.483717, -2.075117], [54.483669, -2.07526]], [[54.483622, -2.075405], [54.483583, -2.075554]], [[54.483583, -2.075554], [54.483536, -2.075688]], [[54.483536, -2.075688], [54.483498, -2.075849]], [[54.483498, -2.075849], [54.483501, -2.076027]], [[54.483501, -2.076027], [54.483525, -2.076186]], [[54.483525, -2.076186], [54.483577, -2.076324]], [[54.483577, -2.076324], [54.483637, -2.076453]], [[54.483637, -2.076453], [54.483682, -2.076591]], [[54.483554, -2.077443], [54.483507, -2.077589]], [[54.483507, -2.077589], [54.483456, -2.077725]], [[54.483456, -2.077725], [54.483395, -2.07784]], [[54.483395, -2.07784], [54.483355, -2.077991]], [[54.483307, -2.078131], [54.483282, -2.078283]], [[54.483264, -2.078453], [54.483236, -2.078613]], [[54.483264, -2.080178], [54.483231, -2.080342]], [[54.483231, -2.080342], [54.483194, -2.080496]], [[54.483194, -2.080496], [54.48319, -2.080666]], [[54.483163, -2.080818], [54.48313, -2.080981]], [[54.48313, -2.080981], [54.483106, -2.081142]], [[54.483106, -2.081142], [54.483093, -2.081309]], [[54.483049, -2.081778], [54.483006, -2.081934]], [[54.483006, -2.081934], [54.482988, -2.082091]], [[54.48294, -2.082406], [54.482919, -2.082561]], [[54.482919, -2.082561], [54.482899, -2.082721]], [[54.482899, -2.082721], [54.482869, -2.082868]], [[54.482869, -2.082868], [54.482831, -2.083021]], [[54.482831, -2.083021], [54.482788, -2.083166]], [[54.482788, -2.083166], [54.482733, -2.083317]], [[54.482679, -2.083448], [54.482627, -2.083581]], [[54.482627, -2.083581], [54.482575, -2.083718]], [[54.482575, -2.083718], [54.482522, -2.083846]], [[54.482522, -2.083846], [54.482465, -2.083977]], [[54.482465, -2.083977], [54.482414, -2.084113]], [[54.481631, -2.085937], [54.481574, -2.086063]], [[54.481574, -2.086063], [54.481502, -2.086158]], [[54.481083, -2.087054], [54.481018, -2.087194]], [[54.481018, -2.087194], [54.480951, -2.087329]], [[54.480951, -2.087329], [54.48091, -2.08748]], [[54.48091, -2.08748], [54.480856, -2.087609]], [[54.480856, -2.087609], [54.480792, -2.087724]], [[54.479892, -2.090262], [54.479829, -2.090385]], [[54.479829, -2.090385], [54.479762, -2.090512]], [[54.479762, -2.090512], [54.479683, -2.090597]], [[54.47894, -2.092384], [54.478974, -2.092534]], [[54.478745, -2.0945], [54.478722, -2.094665]], [[54.478722, -2.094665], [54.478703, -2.094818]], [[54.478659, -2.095119], [54.478646, -2.095286]], [[54.478646, -2.095286], [54.478621, -2.095441]], [[54.478621, -2.095441], [54.478592, -2.095599]], [[54.478592, -2.095599], [54.478558, -2.095746]], [[54.47837, -2.096299], [54.478329, -2.096449]], [[54.478329, -2.096449], [54.478287, -2.096607]], [[54.477876, -2.097917], [54.477834, -2.098063]], [[54.477834, -2.098063], [54.477787, -2.098218]], [[54.47771, -2.09852], [54.477707, -2.098693]], [[54.477523, -2.099121], [54.477459, -2.09923]], [[54.477459, -2.09923], [54.477375, -2.099284]], [[54.47692, -2.100114], [54.476834, -2.100179]], [[54.476834, -2.100179], [54.47679, -2.100313]], [[54.476706, -2.100611], [54.476664, -2.100756]], [[54.476664, -2.100756], [54.47661, -2.100885]], [[54.476471, -2.101274], [54.476453, -2.101432]], [[54.476453, -2.101432], [54.476409, -2.101596]], [[54.476409, -2.101596], [54.476404, -2.101773]], [[54.476425, -2.101927], [54.47645, -2.102084]], [[54.474685, -2.108901], [54.474647, -2.109052]], [[54.474647, -2.109052], [54.474612, -2.109195]], [[54.472571, -2.117288], [54.472531, -2.11743]], [[54.472076, -2.119068], [54.472046, -2.119231]], [[54.472046, -2.119231], [54.472021, -2.11938]], [[54.47144, -2.122425], [54.471381, -2.122542]], [[54.471177, -2.123273], [54.471122, -2.123406]], [[54.470232, -2.125835], [54.470149, -2.125923]], [[54.470149, -2.125923], [54.470119, -2.126088]], [[54.469982, -2.126965], [54.469886, -2.127025]], [[54.469886, -2.127025], [54.469837, -2.127166]], [[54.468023, -2.132369], [54.467977, -2.132521]], [[54.467977, -2.132521], [54.46789, -2.132602]], [[54.466496, -2.136583], [54.466436, -2.136713]], [[54.466436, -2.136713], [54.46639, -2.136875]], [[54.466267, -2.137342], [54.466177, -2.137385]], [[54.466019, -2.137948], [54.466016, -2.138117]], [[54.466016, -2.138117], [54.465937, -2.138232]], [[54.465937, -2.138232], [54.465899, -2.138379]], [[54.465778, -2.138823], [54.465708, -2.138933]], [[54.465685, -2.139389], [54.46559, -2.139371]], [[54.465564, -2.139542], [54.465512, -2.139682]], [[54.465424, -2.14025], [54.46536, -2.140391]], [[54.46536, -2.140391], [54.465311, -2.140544]], [[54.465212, -2.140843], [54.46523, -2.141]], [[54.46523, -2.141], [54.465154, -2.141121]], [[54.465154, -2.141121], [54.46509, -2.14123]], [[54.46509, -2.14123], [54.465035, -2.141376]], [[54.456677, -2.157994], [54.45661, -2.158114]], [[54.45661, -2.158114], [54.456524, -2.158187]], [[54.455857, -2.160177], [54.455953, -2.160213]], [[54.455953, -2.160213], [54.456049, -2.160228]], [[54.455922, -2.160122], [54.45583, -2.160081]], [[54.455738, -2.16007], [54.455649, -2.160028]], [[54.455649, -2.160028], [54.455555, -2.160007]], [[54.455457, -2.16004], [54.455404, -2.160175]], [[54.45521, -2.160156], [54.455114, -2.160118]], [[54.454921, -2.160037], [54.454825, -2.160025]], [[54.454825, -2.160025], [54.454731, -2.160002]], [[54.454731, -2.160002], [54.454633, -2.159987]], [[54.454441, -2.159971], [54.454342, -2.159941]], [[54.454342, -2.159941], [54.45425, -2.159892]], [[54.452737, -2.159573], [54.452634, -2.159569]], [[54.452634, -2.159569], [54.452538, -2.159605]], [[54.452538, -2.159605], [54.452447, -2.159646]], [[54.452447, -2.159646], [54.45235, -2.159666]], [[54.45235, -2.159666], [54.452259, -2.159689]], [[54.451709, -2.159849], [54.451613, -2.159868]], [[54.451613, -2.159868], [54.451522, -2.159881]], [[54.45143, -2.159894], [54.45134, -2.159923]], [[54.451155, -2.16001], [54.451059, -2.160051]], [[54.451059, -2.160051], [54.450965, -2.16009]], [[54.450965, -2.16009], [54.450872, -2.160108]], [[54.450774, -2.160145], [54.45068, -2.160171]], [[54.449433, -2.160062], [54.449335, -2.160073]], [[54.449335, -2.160073], [54.449245, -2.160072]], [[54.449245, -2.160072], [54.449144, -2.160052]], [[54.449144, -2.160052], [54.449043, -2.160044]], [[54.449043, -2.160044], [54.44895, -2.160067]], [[54.448621, -2.16034], [54.448599, -2.160501]], [[54.448438, -2.161256], [54.448388, -2.161398]], [[54.448388, -2.161398], [54.448327, -2.161535]], [[54.448327, -2.161535], [54.448277, -2.16167]], [[54.448175, -2.161945], [54.448104, -2.162068]], [[54.448104, -2.162068], [54.448011, -2.162112]], [[54.448011, -2.162112], [54.447919, -2.162065]], [[54.447919, -2.162065], [54.447824, -2.162035]], [[54.447824, -2.162035], [54.447732, -2.162033]], [[54.447732, -2.162033], [54.447632, -2.162037]], [[54.447632, -2.162037], [54.447535, -2.162048]], [[54.447535, -2.162048], [54.447444, -2.162075]], [[54.447444, -2.162075], [54.447345, -2.162077]], [[54.447345, -2.162077], [54.44725, -2.162109]], [[54.44725, -2.162109], [54.447156, -2.162128]], [[54.447156, -2.162128], [54.447061, -2.16219]], [[54.446636, -2.162615], [54.446557, -2.162694]], [[54.446557, -2.162694], [54.44647, -2.162761]], [[54.446235, -2.163073], [54.446151, -2.163146]], [[54.446151, -2.163146], [54.446071, -2.163218]], [[54.446071, -2.163218], [54.445992, -2.163297]], [[54.445735, -2.163532], [54.445649, -2.163611]], [[54.445649, -2.163611], [54.445571, -2.163707]], [[54.445571, -2.163707], [54.445478, -2.163781]], [[54.445236, -2.164059], [54.445162, -2.16415]], [[54.445162, -2.16415], [54.445068, -2.16421]], [[54.444617, -2.164509], [54.44453, -2.16458]], [[54.44453, -2.16458], [54.444444, -2.164678]], [[54.444444, -2.164678], [54.444381, -2.164799]], [[54.444381, -2.164799], [54.444314, -2.164931]], [[54.444058, -2.165405], [54.443988, -2.165536]], [[54.443988, -2.165536], [54.443913, -2.165643]], [[54.443913, -2.165643], [54.443861, -2.16579]], [[54.443716, -2.165997], [54.443634, -2.166087]], [[54.443634, -2.166087], [54.443559, -2.166195]], [[54.443559, -2.166195], [54.44349, -2.166299]], [[54.443236, -2.166777], [54.443185, -2.166923]], [[54.443185, -2.166923], [54.443154, -2.16707]], [[54.443154, -2.16707], [54.443102, -2.167207]], [[54.442788, -2.167786], [54.442699, -2.167866]], [[54.442699, -2.167866], [54.442604, -2.167932]], [[54.442604, -2.167932], [54.442517, -2.167996]], [[54.442517, -2.167996], [54.442418, -2.168046]], [[54.442229, -2.168095], [54.442138, -2.168108]], [[54.441663, -2.168104], [54.441565, -2.168085]], [[54.441565, -2.168085], [54.441464, -2.168085]], [[54.441464, -2.168085], [54.441374, -2.168067]], [[54.441079, -2.168082], [54.440988, -2.168086]], [[54.440988, -2.168086], [54.440886, -2.168094]], [[54.440886, -2.168094], [54.440793, -2.168126]], [[54.440793, -2.168126], [54.440691, -2.168089]], [[54.440691, -2.168089], [54.440592, -2.168087]], [[54.440592, -2.168087], [54.440501, -2.168065]], [[54.440311, -2.167956], [54.440226, -2.168045]], [[54.440226, -2.168045], [54.440145, -2.168126]], [[54.440145, -2.168126], [54.440072, -2.168237]], [[54.440072, -2.168237], [54.440011, -2.168352]], [[54.439887, -2.168589], [54.43981, -2.168704]], [[54.43981, -2.168704], [54.439746, -2.168813]], [[54.439657, -2.168904], [54.439587, -2.169019]], [[54.439587, -2.169019], [54.439514, -2.16913]], [[54.439514, -2.16913], [54.439442, -2.16925]], [[54.439237, -2.169602], [54.439167, -2.16972]], [[54.439167, -2.16972], [54.439113, -2.169852]], [[54.438966, -2.170257], [54.438896, -2.170363]], [[54.438806, -2.17042], [54.438719, -2.17051]], [[54.438719, -2.17051], [54.438646, -2.170627]], [[54.438463, -2.170975], [54.43839, -2.171096]], [[54.43839, -2.171096], [54.438323, -2.171216]], [[54.438066, -2.17169], [54.43799, -2.171782]], [[54.437517, -2.172303], [54.43744, -2.172415]], [[54.437281, -2.172813], [54.437225, -2.172942]], [[54.437106, -2.173201], [54.437025, -2.17331]], [[54.436908, -2.173726], [54.436866, -2.173865]], [[54.436774, -2.173934], [54.436675, -2.173984]], [[54.436675, -2.173984], [54.436599, -2.174066]], [[54.436513, -2.174164], [54.43646, -2.174302]], [[54.43646, -2.174302], [54.436407, -2.174441]], [[54.436407, -2.174441], [54.436372, -2.174592]], [[54.435554, -2.175536], [54.435456, -2.17555]], [[54.435456, -2.17555], [54.435378, -2.175633]], [[54.435203, -2.175779], [54.435107, -2.175825]], [[54.435107, -2.175825], [54.435024, -2.175912]], [[54.434433, -2.176401], [54.434347, -2.176476]], [[54.434347, -2.176476], [54.434271, -2.176573]], [[54.434271, -2.176573], [54.434187, -2.176666]], [[54.434187, -2.176666], [54.434112, -2.176755]], [[54.432297, -2.176312], [54.43221, -2.176365]], [[54.432119, -2.176363], [54.432021, -2.176298]], [[54.432021, -2.176298], [54.431929, -2.17624]], [[54.431929, -2.17624], [54.431839, -2.176184]], [[54.431839, -2.176184], [54.431757, -2.176107]], [[54.431757, -2.176107], [54.431672, -2.176026]], [[54.431672, -2.176026], [54.431583, -2.175975]], [[54.431583, -2.175975], [54.431494, -2.175933]], [[54.43115, -2.175683], [54.431066, -2.175589]], [[54.431066, -2.175589], [54.43098, -2.175519]], [[54.430342, -2.175218], [54.430255, -2.175136]], [[54.430255, -2.175136], [54.43016, -2.175079]], [[54.430071, -2.175025], [54.429989, -2.174947]], [[54.429345, -2.174686], [54.429261, -2.17462]], [[54.429261, -2.17462], [54.429176, -2.174544]], [[54.429176, -2.174544], [54.429094, -2.174452]], [[54.429094, -2.174452], [54.429018, -2.174366]], [[54.428681, -2.174059], [54.428621, -2.173941]], [[54.428621, -2.173941], [54.428561, -2.17381]], [[54.428561, -2.17381], [54.428477, -2.17375]], [[54.427116, -2.172846], [54.427018, -2.172835]], [[54.427018, -2.172835], [54.426926, -2.17282]], [[54.426926, -2.17282], [54.42683, -2.172807]], [[54.42683, -2.172807], [54.426734, -2.172799]], [[54.426734, -2.172799], [54.426641, -2.172773]], [[54.426641, -2.172773], [54.42655, -2.172733]], [[54.42645, -2.172703], [54.426356, -2.172657]], [[54.426356, -2.172657], [54.42627, -2.172606]], [[54.425903, -2.172709], [54.425808, -2.172704]], [[54.425615, -2.172666], [54.42552, -2.172657]], [[54.42552, -2.172657], [54.425428, -2.172617]], [[54.425428, -2.172617], [54.42534, -2.172552]], [[54.42534, -2.172552], [54.425265, -2.172466]], [[54.425265, -2.172466], [54.425175, -2.172401]], [[54.425175, -2.172401], [54.425084, -2.172389]], [[54.425084, -2.172389], [54.424986, -2.172403]], [[54.424986, -2.172403], [54.424893, -2.172377]], [[54.424893, -2.172377], [54.424803, -2.172345]], [[54.424803, -2.172345], [54.424711, -2.172299]], [[54.424711, -2.172299], [54.424615, -2.172253]], [[54.424615, -2.172253], [54.424528, -2.172207]], [[54.424528, -2.172207], [54.42444, -2.172161]], [[54.42425, -2.172071], [54.42416, -2.172027]], [[54.423785, -2.171877], [54.423694, -2.171827]], [[54.423694, -2.171827], [54.4236, -2.171762]], [[54.4236, -2.171762], [54.423507, -2.171692]], [[54.423507, -2.171692], [54.423416, -2.17163]], [[54.423416, -2.17163], [54.423324, -2.171589]], [[54.423026, -2.171463], [54.422933, -2.171405]], [[54.422766, -2.171272], [54.422696, -2.171165]], [[54.422696, -2.171165], [54.42264, -2.171031]], [[54.422425, -2.171101], [54.422325, -2.171115]], [[54.422325, -2.171115], [54.42223, -2.171101]], [[54.421854, -2.170928], [54.421772, -2.170856]], [[54.421772, -2.170856], [54.421673, -2.170806]], [[54.421579, -2.170749], [54.421484, -2.170681]], [[54.421484, -2.170681], [54.421396, -2.170636]], [[54.421114, -2.170525], [54.421032, -2.170427]], [[54.421032, -2.170427], [54.420961, -2.170321]], [[54.420775, -2.170343], [54.420681, -2.170284]], [[54.420317, -2.170119], [54.420235, -2.170025]], [[54.420235, -2.170025], [54.420153, -2.169945]], [[54.41951, -2.169677], [54.419408, -2.169668]], [[54.418826, -2.169609], [54.418729, -2.169595]], [[54.418729, -2.169595], [54.418629, -2.169583]], [[54.418629, -2.169583], [54.418546, -2.169498]], [[54.418546, -2.169498], [54.418454, -2.169451]], [[54.417712, -2.169118], [54.417621, -2.169056]], [[54.417621, -2.169056], [54.417535, -2.169009]], [[54.417252, -2.168927], [54.417161, -2.168876]], [[54.416978, -2.168795], [54.416885, -2.168775]], [[54.414863, -2.167957], [54.414768, -2.167934]], [[54.414768, -2.167934], [54.414676, -2.167978]], [[54.414676, -2.167978], [54.414583, -2.167989]], [[54.414112, -2.167861], [54.414022, -2.167878]], [[54.413923, -2.167871], [54.413821, -2.167868]], [[54.413631, -2.167799], [54.413528, -2.16778]], [[54.413528, -2.16778], [54.413431, -2.167775]], [[54.413046, -2.16782], [54.41295, -2.16779]], [[54.41295, -2.16779], [54.412858, -2.167785]], [[54.412858, -2.167785], [54.412765, -2.167785]], [[54.412765, -2.167785], [54.412673, -2.167795]], [[54.412583, -2.167758], [54.41249, -2.167768]], [[54.41249, -2.167768], [54.412404, -2.167705]], [[54.412125, -2.167653], [54.41203, -2.167629]], [[54.411573, -2.167392], [54.411479, -2.167413]], [[54.410692, -2.167088], [54.4106, -2.167049]], [[54.4106, -2.167049], [54.410511, -2.16702]], [[54.410318, -2.167012], [54.410221, -2.166962]], [[54.410221, -2.166962], [54.41014, -2.166878]], [[54.409906, -2.166595], [54.409807, -2.166556]], [[54.409254, -2.165942], [54.409169, -2.165858]], [[54.408862, -2.165055], [54.408813, -2.164917]], [[54.408813, -2.164917], [54.408772, -2.16478]], [[54.407523, -2.163679], [54.40743, -2.16361]], [[54.40743, -2.16361], [54.40734, -2.163546]], [[54.40734, -2.163546], [54.407247, -2.163469]], [[54.407247, -2.163469], [54.407153, -2.163421]], [[54.406833, -2.163243], [54.406751, -2.163172]], [[54.406751, -2.163172], [54.406659, -2.163091]], [[54.406659, -2.163091], [54.406575, -2.163016]], [[54.406575, -2.163016], [54.406484, -2.163018]], [[54.406103, -2.162919], [54.406018, -2.162829]], [[54.405614, -2.161832], [54.405622, -2.161677]], [[54.40562, -2.161519], [54.405596, -2.16136]], [[54.405596, -2.16136], [54.405536, -2.161235]], [[54.404275, -2.162232], [54.40419, -2.162145]], [[54.40382, -2.161992], [54.403772, -2.161857]], [[54.403598, -2.161516], [54.403552, -2.161381]], [[54.403453, -2.160912], [54.403415, -2.160764]], [[54.403415, -2.160764], [54.403387, -2.160604]], [[54.393028, -2.14767], [54.392928, -2.147673]], [[54.38683, -2.1501], [54.386729, -2.150076]], [[54.386729, -2.150076], [54.38664, -2.150095]], [[54.386536, -2.150117], [54.386436, -2.150116]], [[54.386436, -2.150116], [54.386339, -2.150119]], [[54.385874, -2.150249], [54.385784, -2.150293]], [[54.385784, -2.150293], [54.38569, -2.150336]], [[54.38569, -2.150336], [54.385599, -2.150316]], [[54.384291, -2.150275], [54.384217, -2.150175]], [[54.383695, -2.149877], [54.383596, -2.149864]], [[54.383596, -2.149864], [54.383503, -2.149854]], [[54.383503, -2.149854], [54.383404, -2.149844]], [[54.383404, -2.149844], [54.383314, -2.149848]], [[54.382854, -2.149853], [54.382765, -2.149876]], [[54.382618, -2.150937], [54.382551, -2.151067]], [[54.382551, -2.151067], [54.382486, -2.151199]], [[54.382486, -2.151199], [54.382428, -2.151322]], [[54.382252, -2.152138], [54.382231, -2.152301]], [[54.382231, -2.152301], [54.382207, -2.152457]], [[54.382209, -2.152938], [54.382196, -2.153105]], [[54.382196, -2.153105], [54.382187, -2.153261]], [[54.382187, -2.153261], [54.382167, -2.153426]], [[54.382167, -2.153426], [54.38216, -2.153592]], [[54.38216, -2.153592], [54.382159, -2.153746]], [[54.379154, -2.166944], [54.379184, -2.167107]], [[54.379184, -2.167107], [54.379208, -2.167258]], [[54.379208, -2.167258], [54.379225, -2.167415]], [[54.378476, -2.167723], [54.378398, -2.167616]], [[54.377604, -2.166688], [54.377534, -2.166575]], [[54.377534, -2.166575], [54.377455, -2.166466]], [[54.377455, -2.166466], [54.377388, -2.166355]], [[54.377166, -2.166027], [54.377107, -2.16589]], [[54.377107, -2.16589], [54.377051, -2.165762]], [[54.377051, -2.165762], [54.376992, -2.165631]], [[54.376992, -2.165631], [54.376946, -2.165498]], [[54.376946, -2.165498], [54.376895, -2.165356]], [[54.376895, -2.165356], [54.376852, -2.165214]], [[54.376852, -2.165214], [54.376806, -2.165068]], [[54.376806, -2.165068], [54.376763, -2.164913]], [[54.376763, -2.164913], [54.376739, -2.164757]], [[54.376739, -2.164757], [54.376724, -2.164599]], [[54.376724, -2.164599], [54.376729, -2.164431]], [[54.376729, -2.164431], [54.376757, -2.16426]], [[54.376757, -2.16426], [54.376781, -2.164108]], [[54.376934, -2.162976], [54.37698, -2.162836]], [[54.37698, -2.162836], [54.376978, -2.162658]], [[54.376978, -2.162658], [54.376963, -2.162502]], [[54.377007, -2.161847], [54.377019, -2.161693]], [[54.377019, -2.161693], [54.377056, -2.161544]], [[54.377056, -2.161544], [54.377093, -2.1614]], [[54.377112, -2.16046], [54.377072, -2.160305]], [[54.377072, -2.160305], [54.377046, -2.160137]], [[54.377046, -2.160137], [54.377061, -2.159966]], [[54.377061, -2.159966], [54.37713, -2.159853]], [[54.37738, -2.159131], [54.377448, -2.159014]], [[54.377448, -2.159014], [54.37749, -2.158858]], [[54.37749, -2.158858], [54.377525, -2.158707]], [[54.377525, -2.158707], [54.377554, -2.158555]], [[54.377602, -2.157885], [54.377607, -2.157716]], [[54.377607, -2.157716], [54.377603, -2.157546]], [[54.377608, -2.15739], [54.377611, -2.157228]], [[54.377611, -2.157228], [54.377611, -2.157064]], [[54.377423, -2.156489], [54.377362, -2.156351]], [[54.377362, -2.156351], [54.377303, -2.15622]], [[54.377303, -2.15622], [54.377252, -2.156075]], [[54.377252, -2.156075], [54.377194, -2.155944]], [[54.377062, -2.155696], [54.377001, -2.155556]], [[54.377001, -2.155556], [54.376946, -2.155426]], [[54.376946, -2.155426], [54.376894, -2.155287]], [[54.376894, -2.155287], [54.376848, -2.155147]], [[54.376848, -2.155147], [54.376823, -2.154981]], [[54.376823, -2.154981], [54.376861, -2.15482]], [[54.376861, -2.15482], [54.376926, -2.154699]], [[54.376926, -2.154699], [54.376981, -2.154574]], [[54.376981, -2.154574], [54.376983, -2.154404]], [[54.376983, -2.154404], [54.37696, -2.154254]], [[54.376942, -2.154096], [54.376933, -2.153935]], [[54.376915, -2.153602], [54.376907, -2.15344]], [[54.376907, -2.15344], [54.376894, -2.153283]], [[54.377196, -2.151908], [54.377279, -2.151827]], [[54.377279, -2.151827], [54.377369, -2.151771]], [[54.377398, -2.151789], [54.377304, -2.151823]], [[54.377123, -2.152344], [54.377151, -2.15218]], [[54.377151, -2.15218], [54.377151, -2.152009]], [[54.377151, -2.152009], [54.377218, -2.151881]], [[54.377218, -2.151881], [54.377307, -2.151812]], [[54.377492, -2.15171], [54.377538, -2.151564]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_6e237bf0f2d1f546f24f6835f4827ff0 = L.polyline(
                [[[54.619208, -2.084707], [54.619295, -2.084797]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5d00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff5d00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_c5bcf93118a8c1cfe61d1a3fadddb497 = L.polyline(
                [[[54.619295, -2.084797], [54.619375, -2.084892]], [[54.379202, -2.167937], [54.379096, -2.167939]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff8b00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_d093aca936283d87836cc88dfc1dc25a = L.polyline(
                [[[54.619375, -2.084892], [54.619465, -2.084932]], [[54.623728, -2.083141], [54.623799, -2.083035]], [[54.623911, -2.081755], [54.623874, -2.081596]], [[54.623613, -2.081372], [54.623652, -2.081535]], [[54.622956, -2.083621], [54.622853, -2.083656]], [[54.507137, -2.067759], [54.507041, -2.067711]], [[54.379096, -2.167939], [54.378995, -2.167946]], [[54.376988, -2.152763], [54.377039, -2.152626]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_22b4ec6cc07003177f3ca87a15201b91 = L.polyline(
                [[[54.619465, -2.084932], [54.619557, -2.084994]], [[54.623799, -2.083035], [54.623843, -2.082869]], [[54.623938, -2.081935], [54.623911, -2.081755]], [[54.623874, -2.081596], [54.623839, -2.081439]], [[54.623808, -2.081267], [54.623778, -2.081098]], [[54.623652, -2.081535], [54.623698, -2.081676]], [[54.623408, -2.083416], [54.623312, -2.08342]], [[54.623047, -2.083612], [54.622956, -2.083621]], [[54.622853, -2.083656], [54.622764, -2.083692]], [[54.622588, -2.083833], [54.62254, -2.083985]], [[54.622171, -2.08478], [54.622091, -2.084879]], [[54.621336, -2.085001], [54.621232, -2.085007]], [[54.621232, -2.085007], [54.621129, -2.085002]], [[54.618843, -2.084317], [54.618889, -2.084477]], [[54.618889, -2.084477], [54.618973, -2.084566]], [[54.619147, -2.084728], [54.619231, -2.084801]], [[54.619231, -2.084801], [54.61933, -2.084853]], [[54.595096, -2.117346], [54.595008, -2.117307]], [[54.594524, -2.116941], [54.594429, -2.116931]], [[54.594429, -2.116931], [54.594332, -2.116924]], [[54.593759, -2.116789], [54.593661, -2.116772]], [[54.592229, -2.115924], [54.592148, -2.115837]], [[54.592148, -2.115837], [54.592058, -2.115761]], [[54.589325, -2.111226], [54.589297, -2.111078]], [[54.589297, -2.111078], [54.589249, -2.110936]], [[54.589249, -2.110936], [54.589211, -2.110776]], [[54.589211, -2.110776], [54.589165, -2.110639]], [[54.563911, -2.102391], [54.563823, -2.102326]], [[54.539098, -2.09024], [54.539013, -2.090175]], [[54.536934, -2.08856], [54.536844, -2.088488]], [[54.536844, -2.088488], [54.53676, -2.088421]], [[54.534082, -2.086541], [54.534, -2.086464]], [[54.517186, -2.070179], [54.517096, -2.070112]], [[54.510898, -2.072597], [54.510798, -2.072609]], [[54.509584, -2.069041], [54.509483, -2.068999]], [[54.507339, -2.067841], [54.507246, -2.067783]], [[54.507246, -2.067783], [54.507137, -2.067759]], [[54.507041, -2.067711], [54.50695, -2.067702]], [[54.46559, -2.139371], [54.465564, -2.139542]], [[54.384359, -2.150405], [54.384291, -2.150275]], [[54.377039, -2.152626], [54.377068, -2.152477]], [[54.377068, -2.152477], [54.377123, -2.152344]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_25397dbd4ea60733c10a3133657fc502 = L.polyline(
                [[[54.620119, -2.085039], [54.62022, -2.085033]], [[54.62022, -2.085033], [54.620312, -2.085015]], [[54.620312, -2.085015], [54.620402, -2.085013]], [[54.621465, -2.085005], [54.621568, -2.08501]], [[54.621761, -2.08501], [54.62186, -2.08497]], [[54.62186, -2.08497], [54.621958, -2.084911]], [[54.62258, -2.083856], [54.622659, -2.083776]], [[54.622749, -2.083735], [54.622839, -2.083713]], [[54.622839, -2.083713], [54.62293, -2.083688]], [[54.623637, -2.083243], [54.623728, -2.083141]], [[54.623947, -2.082115], [54.623938, -2.081935]], [[54.623852, -2.0823], [54.623881, -2.082451]], [[54.623881, -2.082451], [54.623874, -2.082612]], [[54.623884, -2.082743], [54.623811, -2.082875]], [[54.623761, -2.083145], [54.623664, -2.083198]], [[54.623664, -2.083198], [54.623581, -2.083279]], [[54.623219, -2.083474], [54.623146, -2.083568]], [[54.62248, -2.084102], [54.622445, -2.084249]], [[54.622445, -2.084249], [54.622389, -2.084398]], [[54.621922, -2.084998], [54.621822, -2.084963]], [[54.620372, -2.085008], [54.620283, -2.084988]], [[54.620283, -2.084988], [54.620192, -2.084992]], [[54.620192, -2.084992], [54.6201, -2.085026]], [[54.6201, -2.085026], [54.619998, -2.085029]], [[54.619523, -2.084873], [54.61943, -2.084814]], [[54.61943, -2.084814], [54.619332, -2.084773]], [[54.619332, -2.084773], [54.619246, -2.084689]], [[54.619246, -2.084689], [54.619194, -2.084559]], [[54.619194, -2.084559], [54.619109, -2.084472]], [[54.619022, -2.084403], [54.61892, -2.084329]], [[54.618785, -2.084103], [54.618723, -2.084116]], [[54.618712, -2.083913], [54.618734, -2.084039]], [[54.619489, -2.085018], [54.619439, -2.085157]], [[54.619147, -2.085157], [54.619053, -2.085138]], [[54.619053, -2.085138], [54.618955, -2.085137]], [[54.618955, -2.085137], [54.618851, -2.085128]], [[54.618851, -2.085128], [54.618759, -2.085065]], [[54.618759, -2.085065], [54.618678, -2.085135]], [[54.618678, -2.085135], [54.61871, -2.085285]], [[54.61744, -2.086797], [54.617388, -2.086932]], [[54.617388, -2.086932], [54.617296, -2.087003]], [[54.617106, -2.087115], [54.617009, -2.087162]], [[54.617009, -2.087162], [54.616923, -2.087237]], [[54.616923, -2.087237], [54.616831, -2.087271]], [[54.616831, -2.087271], [54.616736, -2.087309]], [[54.616645, -2.087353], [54.616548, -2.087407]], [[54.616548, -2.087407], [54.616456, -2.087455]], [[54.616456, -2.087455], [54.616373, -2.087547]], [[54.616282, -2.087614], [54.616195, -2.08766]], [[54.616195, -2.08766], [54.616112, -2.087725]], [[54.616029, -2.087793], [54.615935, -2.087863]], [[54.615935, -2.087863], [54.615854, -2.087946]], [[54.615854, -2.087946], [54.615773, -2.088017]], [[54.614974, -2.089467], [54.614898, -2.089564]], [[54.614898, -2.089564], [54.614836, -2.089676]], [[54.614836, -2.089676], [54.614777, -2.089808]], [[54.614643, -2.09002], [54.614579, -2.09013]], [[54.614518, -2.090247], [54.614453, -2.09037]], [[54.614453, -2.09037], [54.614401, -2.090519]], [[54.614401, -2.090519], [54.614365, -2.09067]], [[54.614365, -2.09067], [54.614321, -2.090819]], [[54.614293, -2.090972], [54.614241, -2.091118]], [[54.614241, -2.091118], [54.614205, -2.091276]], [[54.614205, -2.091276], [54.614151, -2.091417]], [[54.614151, -2.091417], [54.614099, -2.091564]], [[54.614099, -2.091564], [54.614031, -2.091692]], [[54.614031, -2.091692], [54.613978, -2.091831]], [[54.613978, -2.091831], [54.613928, -2.091964]], [[54.613928, -2.091964], [54.613885, -2.092103]], [[54.613885, -2.092103], [54.613828, -2.092235]], [[54.613736, -2.092662], [54.613717, -2.092823]], [[54.613738, -2.093458], [54.613747, -2.093614]], [[54.613747, -2.093614], [54.613751, -2.093771]], [[54.613751, -2.093771], [54.613748, -2.093928]], [[54.613762, -2.094252], [54.613767, -2.094421]], [[54.613767, -2.094421], [54.613762, -2.094586]], [[54.613762, -2.094586], [54.61377, -2.094751]], [[54.61377, -2.094751], [54.613771, -2.094916]], [[54.613771, -2.094916], [54.61377, -2.09508]], [[54.61377, -2.09508], [54.613762, -2.095242]], [[54.613762, -2.095242], [54.613775, -2.0954]], [[54.613775, -2.0954], [54.613752, -2.095563]], [[54.613752, -2.095563], [54.613717, -2.095708]], [[54.613717, -2.095708], [54.613702, -2.095862]], [[54.613702, -2.095862], [54.613694, -2.09603]], [[54.613694, -2.09603], [54.613709, -2.096194]], [[54.613709, -2.096194], [54.613714, -2.09635]], [[54.613714, -2.09635], [54.613703, -2.096525]], [[54.613703, -2.096525], [54.613688, -2.096684]], [[54.613688, -2.096684], [54.613658, -2.096838]], [[54.613658, -2.096838], [54.613634, -2.097003]], [[54.613634, -2.097003], [54.613606, -2.097154]], [[54.613606, -2.097154], [54.613566, -2.097314]], [[54.613431, -2.09775], [54.613398, -2.097897]], [[54.613398, -2.097897], [54.613353, -2.098045]], [[54.613353, -2.098045], [54.613343, -2.098216]], [[54.613343, -2.098216], [54.613316, -2.09837]], [[54.613087, -2.099072], [54.613006, -2.099159]], [[54.613006, -2.099159], [54.61296, -2.099307]], [[54.612831, -2.099744], [54.612772, -2.099879]], [[54.612772, -2.099879], [54.612693, -2.099983]], [[54.612693, -2.099983], [54.612693, -2.100143]], [[54.612694, -2.100308], [54.612714, -2.100466]], [[54.612714, -2.100466], [54.612675, -2.100621]], [[54.612675, -2.100621], [54.612642, -2.100771]], [[54.612642, -2.100771], [54.612599, -2.100915]], [[54.612516, -2.101218], [54.612472, -2.101356]], [[54.612472, -2.101356], [54.61243, -2.101513]], [[54.61243, -2.101513], [54.612387, -2.101662]], [[54.612387, -2.101662], [54.612343, -2.10181]], [[54.612102, -2.102315], [54.612038, -2.102443]], [[54.611577, -2.102882], [54.611493, -2.102942]], [[54.611493, -2.102942], [54.611422, -2.103046]], [[54.611422, -2.103046], [54.611363, -2.103184]], [[54.610551, -2.105004], [54.610519, -2.105158]], [[54.610519, -2.105158], [54.610461, -2.105293]], [[54.610196, -2.105974], [54.610128, -2.10609]], [[54.610128, -2.10609], [54.610065, -2.106208]], [[54.610065, -2.106208], [54.610011, -2.106345]], [[54.609861, -2.106501], [54.609765, -2.10654]], [[54.609765, -2.10654], [54.609668, -2.10656]], [[54.609668, -2.10656], [54.609582, -2.106607]], [[54.609498, -2.10669], [54.609411, -2.106744]], [[54.609411, -2.106744], [54.609328, -2.106809]], [[54.609328, -2.106809], [54.609233, -2.106859]], [[54.609233, -2.106859], [54.609145, -2.106897]], [[54.609145, -2.106897], [54.609058, -2.106962]], [[54.609058, -2.106962], [54.608969, -2.107047]], [[54.608969, -2.107047], [54.608882, -2.107128]], [[54.608882, -2.107128], [54.608788, -2.107191]], [[54.608788, -2.107191], [54.608762, -2.10734]], [[54.608762, -2.10734], [54.608731, -2.107489]], [[54.608678, -2.107791], [54.608637, -2.107948]], [[54.608637, -2.107948], [54.608598, -2.108104]], [[54.608598, -2.108104], [54.608548, -2.108258]], [[54.608548, -2.108258], [54.608501, -2.108398]], [[54.608446, -2.108541], [54.608389, -2.108664]], [[54.608389, -2.108664], [54.608324, -2.108786]], [[54.608324, -2.108786], [54.608241, -2.108858]], [[54.608241, -2.108858], [54.608161, -2.108963]], [[54.608161, -2.108963], [54.608088, -2.109058]], [[54.608088, -2.109058], [54.608009, -2.109163]], [[54.608009, -2.109163], [54.607928, -2.109253]], [[54.607928, -2.109253], [54.607844, -2.109332]], [[54.607844, -2.109332], [54.607749, -2.109368]], [[54.607555, -2.109447], [54.607468, -2.109494]], [[54.607199, -2.109634], [54.607109, -2.109698]], [[54.607109, -2.109698], [54.607035, -2.109797]], [[54.607035, -2.109797], [54.60697, -2.10992]], [[54.60697, -2.10992], [54.606881, -2.10987]], [[54.606791, -2.109801], [54.606692, -2.109754]], [[54.606692, -2.109754], [54.6066, -2.109759]], [[54.6066, -2.109759], [54.606507, -2.109806]], [[54.606507, -2.109806], [54.606418, -2.109888]], [[54.606418, -2.109888], [54.606348, -2.109989]], [[54.606348, -2.109989], [54.606259, -2.110071]], [[54.606259, -2.110071], [54.606166, -2.110127]], [[54.605882, -2.110338], [54.605824, -2.110484]], [[54.60581, -2.110798], [54.605806, -2.110959]], [[54.605806, -2.110959], [54.605807, -2.111132]], [[54.605807, -2.111132], [54.605788, -2.111295]], [[54.605788, -2.111295], [54.605753, -2.111439]], [[54.605753, -2.111439], [54.605704, -2.111593]], [[54.605704, -2.111593], [54.605666, -2.111751]], [[54.605666, -2.111751], [54.605644, -2.111911]], [[54.605644, -2.111911], [54.60561, -2.112056]], [[54.605416, -2.112429], [54.605352, -2.112552]], [[54.605352, -2.112552], [54.605337, -2.112719]], [[54.605202, -2.11331], [54.605187, -2.113464]], [[54.605187, -2.113464], [54.605176, -2.113627]], [[54.605176, -2.113627], [54.605184, -2.113799]], [[54.605184, -2.113799], [54.605187, -2.113965]], [[54.605167, -2.11412], [54.60515, -2.114289]], [[54.605111, -2.114604], [54.605083, -2.114765]], [[54.605083, -2.114765], [54.605075, -2.114943]], [[54.604983, -2.115245], [54.604937, -2.115393]], [[54.604937, -2.115393], [54.604916, -2.115561]], [[54.604978, -2.116359], [54.604996, -2.116522]], [[54.604996, -2.116522], [54.605008, -2.116679]], [[54.605008, -2.116679], [54.605014, -2.116855]], [[54.605014, -2.116855], [54.605027, -2.117008]], [[54.605027, -2.117008], [54.605025, -2.117169]], [[54.605079, -2.117514], [54.605079, -2.117673]], [[54.605079, -2.117673], [54.605089, -2.11783]], [[54.604991, -2.11807], [54.604895, -2.118082]], [[54.604731, -2.118244], [54.6047, -2.118409]], [[54.6047, -2.118409], [54.604624, -2.118519]], [[54.604688, -2.118542], [54.604729, -2.11869]], [[54.60441, -2.118599], [54.604325, -2.11866]], [[54.604325, -2.11866], [54.604286, -2.118802]], [[54.604286, -2.118802], [54.604198, -2.118892]], [[54.604198, -2.118892], [54.604114, -2.118969]], [[54.60397, -2.119182], [54.603882, -2.119241]], [[54.603882, -2.119241], [54.603805, -2.119327]], [[54.603805, -2.119327], [54.603726, -2.119429]], [[54.603726, -2.119429], [54.603629, -2.119448]], [[54.603629, -2.119448], [54.603534, -2.119476]], [[54.603442, -2.119489], [54.603345, -2.119511]], [[54.603345, -2.119511], [54.603245, -2.119526]], [[54.603036, -2.119836], [54.602982, -2.11997]], [[54.60264, -2.120527], [54.602561, -2.120618]], [[54.602406, -2.12078], [54.60231, -2.12083]], [[54.60231, -2.12083], [54.602219, -2.120893]], [[54.602219, -2.120893], [54.602133, -2.120951]], [[54.602133, -2.120951], [54.602047, -2.121015]], [[54.602047, -2.121015], [54.601954, -2.121072]], [[54.601954, -2.121072], [54.601861, -2.121118]], [[54.601861, -2.121118], [54.601771, -2.121184]], [[54.601771, -2.121184], [54.601683, -2.121147]], [[54.60159, -2.121215], [54.601526, -2.121327]], [[54.601131, -2.121788], [54.60108, -2.121918]], [[54.600872, -2.122047], [54.600774, -2.122031]], [[54.600557, -2.122072], [54.600462, -2.12206]], [[54.600462, -2.12206], [54.60037, -2.122018]], [[54.600205, -2.121864], [54.600125, -2.121769]], [[54.600035, -2.121655], [54.599948, -2.121575]], [[54.598848, -2.122949], [54.598777, -2.123066]], [[54.598777, -2.123066], [54.59869, -2.122984]], [[54.597993, -2.120614], [54.597934, -2.120483]], [[54.597934, -2.120483], [54.597874, -2.12035]], [[54.597874, -2.12035], [54.597818, -2.120228]], [[54.596856, -2.11887], [54.596765, -2.118883]], [[54.596612, -2.118789], [54.596516, -2.118752]], [[54.596415, -2.118741], [54.59632, -2.118791]], [[54.59632, -2.118791], [54.596219, -2.11877]], [[54.596059, -2.118609], [54.595991, -2.118478]], [[54.595991, -2.118478], [54.595925, -2.118352]], [[54.595925, -2.118352], [54.595846, -2.118252]], [[54.595846, -2.118252], [54.595781, -2.118123]], [[54.595781, -2.118123], [54.595728, -2.117991]], [[54.595728, -2.117991], [54.595666, -2.117862]], [[54.595597, -2.117748], [54.595535, -2.117626]], [[54.595535, -2.117626], [54.595476, -2.117505]], [[54.593571, -2.116722], [54.59348, -2.116773]], [[54.59348, -2.116773], [54.593387, -2.116773]], [[54.593297, -2.116716], [54.593205, -2.116649]], [[54.593205, -2.116649], [54.593124, -2.116574]], [[54.593124, -2.116574], [54.593031, -2.116501]], [[54.593031, -2.116501], [54.592948, -2.11644]], [[54.592948, -2.11644], [54.592865, -2.116349]], [[54.592865, -2.116349], [54.592786, -2.116271]], [[54.592786, -2.116271], [54.592698, -2.116195]], [[54.592607, -2.116143], [54.592511, -2.116092]], [[54.592511, -2.116092], [54.592414, -2.116053]], [[54.592414, -2.116053], [54.592329, -2.115994]], [[54.592329, -2.115994], [54.592229, -2.115924]], [[54.592058, -2.115761], [54.591983, -2.115676]], [[54.591983, -2.115676], [54.591901, -2.115583]], [[54.591901, -2.115583], [54.591809, -2.115545]], [[54.591364, -2.115421], [54.591262, -2.115416]], [[54.591262, -2.115416], [54.591172, -2.115398]], [[54.591172, -2.115398], [54.591073, -2.115392]], [[54.590984, -2.115349], [54.590893, -2.11539]], [[54.590893, -2.11539], [54.590802, -2.115414]], [[54.590802, -2.115414], [54.590706, -2.115398]], [[54.590706, -2.115398], [54.590609, -2.115407]], [[54.59025, -2.115955], [54.590154, -2.115973]], [[54.590154, -2.115973], [54.590062, -2.115961]], [[54.590062, -2.115961], [54.589964, -2.115914]], [[54.589964, -2.115914], [54.589869, -2.115865]], [[54.589869, -2.115865], [54.589776, -2.115884]], [[54.58953, -2.111301], [54.589512, -2.111148]], [[54.589525, -2.111644], [54.589442, -2.11172]], [[54.589412, -2.111555], [54.589363, -2.111399]], [[54.588982, -2.110067], [54.589046, -2.109934]], [[54.589046, -2.109934], [54.58913, -2.109869]], [[54.58913, -2.109869], [54.589189, -2.109746]], [[54.589189, -2.109746], [54.589177, -2.109579]], [[54.589177, -2.109579], [54.589129, -2.109427]], [[54.58898, -2.109229], [54.58892, -2.109095]], [[54.58892, -2.109095], [54.588845, -2.108996]], [[54.588666, -2.109242], [54.5886, -2.109368]], [[54.5886, -2.109368], [54.588527, -2.109482]], [[54.588527, -2.109482], [54.588446, -2.109565]], [[54.588446, -2.109565], [54.588398, -2.109697]], [[54.58781, -2.109764], [54.587718, -2.109764]], [[54.587718, -2.109764], [54.587623, -2.109758]], [[54.587623, -2.109758], [54.587531, -2.109755]], [[54.587434, -2.109783], [54.587336, -2.109737]], [[54.587336, -2.109737], [54.587263, -2.109626]], [[54.587017, -2.10948], [54.586916, -2.109464]], [[54.586916, -2.109464], [54.586817, -2.109438]], [[54.586817, -2.109438], [54.586717, -2.109416]], [[54.586717, -2.109416], [54.586618, -2.109402]], [[54.586618, -2.109402], [54.586524, -2.109413]], [[54.586524, -2.109413], [54.586426, -2.109412]], [[54.586426, -2.109412], [54.586324, -2.109401]], [[54.586324, -2.109401], [54.586227, -2.109399]], [[54.58615, -2.109507], [54.586103, -2.109642]], [[54.585375, -2.110328], [54.585275, -2.110372]], [[54.585275, -2.110372], [54.585176, -2.110421]], [[54.584985, -2.110489], [54.584905, -2.1106]], [[54.584905, -2.1106], [54.584823, -2.110677]], [[54.584823, -2.110677], [54.584727, -2.110709]], [[54.584727, -2.110709], [54.584633, -2.110768]], [[54.584633, -2.110768], [54.584547, -2.110843]], [[54.584547, -2.110843], [54.584456, -2.11091]], [[54.584456, -2.11091], [54.58436, -2.110955]], [[54.58436, -2.110955], [54.584279, -2.111023]], [[54.584279, -2.111023], [54.584192, -2.111073]], [[54.584192, -2.111073], [54.584102, -2.111109]], [[54.584102, -2.111109], [54.584004, -2.111155]], [[54.584004, -2.111155], [54.583908, -2.111206]], [[54.583908, -2.111206], [54.583812, -2.111239]], [[54.583812, -2.111239], [54.583719, -2.111264]], [[54.583719, -2.111264], [54.583632, -2.111312]], [[54.583551, -2.111393], [54.583475, -2.111503]], [[54.583475, -2.111503], [54.583386, -2.111583]], [[54.583386, -2.111583], [54.583288, -2.111631]], [[54.582702, -2.11165], [54.582606, -2.111658]], [[54.582606, -2.111658], [54.582504, -2.111658]], [[54.582504, -2.111658], [54.582412, -2.111655]], [[54.582412, -2.111655], [54.582315, -2.111654]], [[54.582315, -2.111654], [54.582226, -2.111671]], [[54.582226, -2.111671], [54.582134, -2.111656]], [[54.581941, -2.111657], [54.581846, -2.111674]], [[54.581846, -2.111674], [54.581746, -2.111681]], [[54.581746, -2.111681], [54.581653, -2.111678]], [[54.581467, -2.111662], [54.58137, -2.111641]], [[54.581108, -2.111595], [54.581008, -2.111562]], [[54.580914, -2.111502], [54.580827, -2.11144]], [[54.580827, -2.11144], [54.580734, -2.111407]], [[54.580734, -2.111407], [54.580638, -2.111395]], [[54.580385, -2.111375], [54.580293, -2.111391]], [[54.580293, -2.111391], [54.580196, -2.111403]], [[54.580196, -2.111403], [54.580121, -2.111493]], [[54.580121, -2.111493], [54.580037, -2.11159]], [[54.580037, -2.11159], [54.579947, -2.111639]], [[54.579947, -2.111639], [54.579857, -2.111672]], [[54.579857, -2.111672], [54.579758, -2.111699]], [[54.579758, -2.111699], [54.579661, -2.111716]], [[54.579661, -2.111716], [54.579565, -2.111738]], [[54.579565, -2.111738], [54.579469, -2.111753]], [[54.579469, -2.111753], [54.579368, -2.11175]], [[54.579182, -2.111731], [54.579091, -2.11175]], [[54.579091, -2.11175], [54.578995, -2.111756]], [[54.578813, -2.111665], [54.578724, -2.1116]], [[54.578724, -2.1116], [54.578635, -2.11157]], [[54.578442, -2.111457], [54.578352, -2.111408]], [[54.578352, -2.111408], [54.578267, -2.111337]], [[54.578267, -2.111337], [54.578183, -2.111259]], [[54.578183, -2.111259], [54.578105, -2.111166]], [[54.578016, -2.111124], [54.577931, -2.111059]], [[54.577847, -2.110995], [54.577755, -2.110935]], [[54.577755, -2.110935], [54.577673, -2.110868]], [[54.577673, -2.110868], [54.577592, -2.11079]], [[54.577592, -2.11079], [54.577506, -2.110716]], [[54.577506, -2.110716], [54.577417, -2.110653]], [[54.577417, -2.110653], [54.577325, -2.110591]], [[54.577325, -2.110591], [54.577237, -2.110535]], [[54.577237, -2.110535], [54.577156, -2.110466]], [[54.577156, -2.110466], [54.577068, -2.110396]], [[54.577068, -2.110396], [54.576973, -2.110345]], [[54.576973, -2.110345], [54.576888, -2.110263]], [[54.576631, -2.110063], [54.576536, -2.110031]], [[54.576536, -2.110031], [54.576447, -2.109984]], [[54.576447, -2.109984], [54.576361, -2.109941]], [[54.576221, -2.109722], [54.576123, -2.109665]], [[54.576123, -2.109665], [54.576038, -2.1096]], [[54.576038, -2.1096], [54.575955, -2.109534]], [[54.575955, -2.109534], [54.575867, -2.109486]], [[54.575867, -2.109486], [54.575777, -2.109431]], [[54.575777, -2.109431], [54.575687, -2.109382]], [[54.575687, -2.109382], [54.575588, -2.109381]], [[54.575588, -2.109381], [54.575505, -2.109448]], [[54.5754, -2.109549], [54.575305, -2.109598]], [[54.575305, -2.109598], [54.575215, -2.109648]], [[54.575215, -2.109648], [54.575118, -2.109672]], [[54.575118, -2.109672], [54.575023, -2.109686]], [[54.574789, -2.1097], [54.574696, -2.109703]], [[54.574605, -2.109724], [54.574506, -2.109712]], [[54.574506, -2.109712], [54.574412, -2.10969]], [[54.574412, -2.10969], [54.57432, -2.109636]], [[54.57432, -2.109636], [54.574232, -2.109581]], [[54.574232, -2.109581], [54.574144, -2.109523]], [[54.574144, -2.109523], [54.57406, -2.109454]], [[54.573605, -2.109152], [54.573513, -2.10912]], [[54.573513, -2.10912], [54.573419, -2.109089]], [[54.573419, -2.109089], [54.573319, -2.109065]], [[54.573319, -2.109065], [54.57325, -2.108935]], [[54.57325, -2.108935], [54.573164, -2.108884]], [[54.573164, -2.108884], [54.57307, -2.108824]], [[54.572889, -2.108698], [54.572802, -2.108645]], [[54.572802, -2.108645], [54.572719, -2.108571]], [[54.572719, -2.108571], [54.572629, -2.108504]], [[54.572629, -2.108504], [54.572533, -2.108444]], [[54.572533, -2.108444], [54.572434, -2.108401]], [[54.572251, -2.108374], [54.572158, -2.108337]], [[54.572158, -2.108337], [54.57206, -2.108318]], [[54.57206, -2.108318], [54.57197, -2.108314]], [[54.571777, -2.107962], [54.571686, -2.107911]], [[54.571686, -2.107911], [54.571595, -2.107879]], [[54.571595, -2.107879], [54.571508, -2.107834]], [[54.571508, -2.107834], [54.571419, -2.107769]], [[54.571051, -2.107577], [54.570965, -2.107514]], [[54.570965, -2.107514], [54.570876, -2.107451]], [[54.570876, -2.107451], [54.570783, -2.107387]], [[54.570783, -2.107387], [54.570692, -2.107379]], [[54.570328, -2.107246], [54.570239, -2.107202]], [[54.570239, -2.107202], [54.570157, -2.107133]], [[54.570157, -2.107133], [54.570065, -2.107109]], [[54.570065, -2.107109], [54.569971, -2.107048]], [[54.569971, -2.107048], [54.569886, -2.106998]], [[54.569886, -2.106998], [54.569797, -2.106938]], [[54.569797, -2.106938], [54.569709, -2.10685]], [[54.569544, -2.106702], [54.569452, -2.106673]], [[54.569452, -2.106673], [54.569354, -2.10667]], [[54.569354, -2.10667], [54.569257, -2.106634]], [[54.569257, -2.106634], [54.569161, -2.106597]], [[54.569161, -2.106597], [54.56907, -2.106578]], [[54.56907, -2.106578], [54.568975, -2.106539]], [[54.568975, -2.106539], [54.568881, -2.106501]], [[54.568881, -2.106501], [54.568793, -2.106428]], [[54.568793, -2.106428], [54.56872, -2.106327]], [[54.568633, -2.106265], [54.568541, -2.106196]], [[54.568541, -2.106196], [54.568448, -2.106164]], [[54.568448, -2.106164], [54.568363, -2.106079]], [[54.568363, -2.106079], [54.568274, -2.106019]], [[54.568274, -2.106019], [54.568177, -2.105983]], [[54.568177, -2.105983], [54.568088, -2.105952]], [[54.567718, -2.105751], [54.567628, -2.105695]], [[54.567628, -2.105695], [54.567544, -2.105634]], [[54.567544, -2.105634], [54.567456, -2.105595]], [[54.567109, -2.10534], [54.567018, -2.105353]], [[54.567018, -2.105353], [54.566922, -2.105337]], [[54.566922, -2.105337], [54.566823, -2.1053]], [[54.566823, -2.1053], [54.566724, -2.105273]], [[54.566724, -2.105273], [54.566617, -2.10526]], [[54.566343, -2.105243], [54.566266, -2.105145]], [[54.566266, -2.105145], [54.566171, -2.105116]], [[54.566089, -2.104956], [54.566086, -2.104801]], [[54.565715, -2.104258], [54.565632, -2.10419]], [[54.565632, -2.10419], [54.56555, -2.104127]], [[54.565198, -2.103879], [54.565131, -2.103773]], [[54.564085, -2.102488], [54.563997, -2.102448]], [[54.562743, -2.101203], [54.56265, -2.101159]], [[54.56265, -2.101159], [54.562557, -2.101173]], [[54.561113, -2.10142], [54.56102, -2.10138]], [[54.56102, -2.10138], [54.560934, -2.101333]], [[54.560934, -2.101333], [54.560841, -2.101304]], [[54.560841, -2.101304], [54.560753, -2.101263]], [[54.560577, -2.101143], [54.560489, -2.101189]], [[54.560489, -2.101189], [54.560467, -2.101346]], [[54.560467, -2.101346], [54.5604, -2.101449]], [[54.559833, -2.105225], [54.559775, -2.105344]], [[54.559775, -2.105344], [54.559714, -2.105463]], [[54.559714, -2.105463], [54.559664, -2.105597]], [[54.559468, -2.105992], [54.559378, -2.106038]], [[54.559378, -2.106038], [54.559285, -2.106019]], [[54.558357, -2.105243], [54.558294, -2.105116]], [[54.558209, -2.104212], [54.558244, -2.104051]], [[54.558244, -2.104051], [54.558227, -2.103891]], [[54.558227, -2.103891], [54.558139, -2.103836]], [[54.558139, -2.103836], [54.558051, -2.103811]], [[54.558051, -2.103811], [54.557956, -2.103771]], [[54.557956, -2.103771], [54.55786, -2.103711]], [[54.55786, -2.103711], [54.557763, -2.103665]], [[54.557505, -2.103497], [54.557416, -2.103432]], [[54.557416, -2.103432], [54.557333, -2.103359]], [[54.55708, -2.103124], [54.556997, -2.103042]], [[54.556997, -2.103042], [54.556921, -2.102951]], [[54.556921, -2.102951], [54.556836, -2.102862]], [[54.556836, -2.102862], [54.556761, -2.102769]], [[54.556693, -2.102653], [54.556598, -2.102595]], [[54.556598, -2.102595], [54.556553, -2.10246]], [[54.55648, -2.102338], [54.556405, -2.102246]], [[54.55624, -2.102089], [54.556166, -2.101999]], [[54.556166, -2.101999], [54.556089, -2.101908]], [[54.556089, -2.101908], [54.556001, -2.101854]], [[54.556001, -2.101854], [54.555912, -2.101791]], [[54.555912, -2.101791], [54.555821, -2.101755]], [[54.555821, -2.101755], [54.555732, -2.101702]], [[54.555732, -2.101702], [54.555636, -2.101658]], [[54.555636, -2.101658], [54.555541, -2.101631]], [[54.555541, -2.101631], [54.555449, -2.101602]], [[54.555137, -2.101456], [54.555049, -2.101375]], [[54.554954, -2.101339], [54.554862, -2.101372]], [[54.554775, -2.101436], [54.554686, -2.101499]], [[54.554686, -2.101499], [54.554591, -2.101554]], [[54.554455, -2.101621], [54.554358, -2.10163]], [[54.554358, -2.10163], [54.554262, -2.101626]], [[54.554262, -2.101626], [54.554166, -2.101623]], [[54.554166, -2.101623], [54.554085, -2.10155]], [[54.554085, -2.10155], [54.554, -2.101484]], [[54.553777, -2.100588], [54.553693, -2.100512]], [[54.553693, -2.100512], [54.55362, -2.100403]], [[54.55362, -2.100403], [54.553546, -2.100302]], [[54.553546, -2.100302], [54.553472, -2.100204]], [[54.553472, -2.100204], [54.553406, -2.100087]], [[54.553406, -2.100087], [54.553338, -2.099982]], [[54.553338, -2.099982], [54.553263, -2.099872]], [[54.553263, -2.099872], [54.553166, -2.099802]], [[54.553166, -2.099802], [54.553086, -2.099727]], [[54.553019, -2.099621], [54.552936, -2.09956]], [[54.552936, -2.09956], [54.552848, -2.099524]], [[54.552848, -2.099524], [54.55275, -2.099485]], [[54.552657, -2.099426], [54.55258, -2.099341]], [[54.55258, -2.099341], [54.552514, -2.099228]], [[54.552365, -2.099035], [54.552279, -2.098988]], [[54.552279, -2.098988], [54.552176, -2.09896]], [[54.552083, -2.098926], [54.55199, -2.09889]], [[54.55199, -2.09889], [54.551893, -2.098855]], [[54.551893, -2.098855], [54.551802, -2.098828]], [[54.551802, -2.098828], [54.551703, -2.098804]], [[54.551703, -2.098804], [54.551607, -2.098809]], [[54.551607, -2.098809], [54.551519, -2.098841]], [[54.551519, -2.098841], [54.55142, -2.098868]], [[54.55142, -2.098868], [54.55132, -2.098845]], [[54.550952, -2.098661], [54.550854, -2.098655]], [[54.550854, -2.098655], [54.55076, -2.098662]], [[54.55076, -2.098662], [54.550666, -2.098678]], [[54.550666, -2.098678], [54.550567, -2.098696]], [[54.550406, -2.098852], [54.550336, -2.098972]], [[54.550336, -2.098972], [54.550239, -2.099028]], [[54.550239, -2.099028], [54.550154, -2.099105]], [[54.550154, -2.099105], [54.550088, -2.099215]], [[54.54982, -2.099424], [54.549726, -2.099462]], [[54.549448, -2.099631], [54.549358, -2.099645]], [[54.549358, -2.099645], [54.549265, -2.099645]], [[54.54917, -2.09964], [54.549069, -2.099629]], [[54.549069, -2.099629], [54.54897, -2.099616]], [[54.54897, -2.099616], [54.548874, -2.0996]], [[54.548631, -2.099355], [54.548571, -2.099234]], [[54.548571, -2.099234], [54.548504, -2.099114]], [[54.548504, -2.099114], [54.548419, -2.099045]], [[54.548419, -2.099045], [54.54834, -2.098947]], [[54.54834, -2.098947], [54.548275, -2.098823]], [[54.548258, -2.098019], [54.548296, -2.097868]], [[54.548296, -2.097868], [54.548331, -2.097704]], [[54.548331, -2.097704], [54.548364, -2.097543]], [[54.548364, -2.097543], [54.548412, -2.097388]], [[54.548412, -2.097388], [54.548444, -2.097241]], [[54.548444, -2.097241], [54.548475, -2.097093]], [[54.548475, -2.097093], [54.548497, -2.09694]], [[54.548497, -2.09694], [54.548547, -2.096803]], [[54.548547, -2.096803], [54.548607, -2.096677]], [[54.548607, -2.096677], [54.548659, -2.09652]], [[54.548659, -2.09652], [54.548698, -2.096374]], [[54.548698, -2.096374], [54.548718, -2.096208]], [[54.548655, -2.096081], [54.54857, -2.096013]], [[54.548229, -2.09571], [54.548151, -2.095623]], [[54.54784, -2.095272], [54.547767, -2.095159]], [[54.547767, -2.095159], [54.54768, -2.095079]], [[54.547598, -2.094983], [54.547533, -2.094861]], [[54.547533, -2.094861], [54.547452, -2.094773]], [[54.547452, -2.094773], [54.547369, -2.094698]], [[54.547281, -2.094635], [54.547189, -2.094609]], [[54.547189, -2.094609], [54.547107, -2.094533]], [[54.547107, -2.094533], [54.547033, -2.094427]], [[54.547033, -2.094427], [54.54695, -2.094351]], [[54.54695, -2.094351], [54.546867, -2.094287]], [[54.546867, -2.094287], [54.546775, -2.094225]], [[54.546775, -2.094225], [54.546695, -2.094154]], [[54.546695, -2.094154], [54.546608, -2.094102]], [[54.546608, -2.094102], [54.546532, -2.093993]], [[54.546532, -2.093993], [54.546458, -2.09389]], [[54.546458, -2.09389], [54.546372, -2.093837]], [[54.546372, -2.093837], [54.546281, -2.093795]], [[54.546281, -2.093795], [54.546197, -2.093731]], [[54.546197, -2.093731], [54.546107, -2.09368]], [[54.546107, -2.09368], [54.546019, -2.093651]], [[54.546019, -2.093651], [54.545924, -2.093614]], [[54.545924, -2.093614], [54.545834, -2.09358]], [[54.545639, -2.093538], [54.545556, -2.093471]], [[54.545556, -2.093471], [54.545471, -2.093384]], [[54.545471, -2.093384], [54.545393, -2.093307]], [[54.545393, -2.093307], [54.545304, -2.093257]], [[54.545304, -2.093257], [54.545217, -2.093183]], [[54.545217, -2.093183], [54.545122, -2.093156]], [[54.544929, -2.093071], [54.54484, -2.093037]], [[54.54484, -2.093037], [54.544742, -2.093]], [[54.544742, -2.093], [54.544652, -2.092977]], [[54.544652, -2.092977], [54.544565, -2.092935]], [[54.544565, -2.092935], [54.544467, -2.092889]], [[54.544467, -2.092889], [54.544369, -2.092844]], [[54.544369, -2.092844], [54.544275, -2.092824]], [[54.544098, -2.092712], [54.544005, -2.092685]], [[54.544005, -2.092685], [54.543955, -2.092547]], [[54.543955, -2.092547], [54.543886, -2.092419]], [[54.543886, -2.092419], [54.543796, -2.092349]], [[54.543796, -2.092349], [54.543714, -2.092281]], [[54.543714, -2.092281], [54.543619, -2.092247]], [[54.543619, -2.092247], [54.543528, -2.092161]], [[54.543528, -2.092161], [54.543434, -2.092108]], [[54.543434, -2.092108], [54.543346, -2.092056]], [[54.543346, -2.092056], [54.543264, -2.091989]], [[54.543264, -2.091989], [54.543165, -2.091964]], [[54.543165, -2.091964], [54.543074, -2.091925]], [[54.543074, -2.091925], [54.542987, -2.091881]], [[54.542987, -2.091881], [54.542896, -2.091833]], [[54.542896, -2.091833], [54.542799, -2.091787]], [[54.542799, -2.091787], [54.542705, -2.091769]], [[54.542615, -2.091744], [54.542525, -2.091716]], [[54.542525, -2.091716], [54.542431, -2.091668]], [[54.542431, -2.091668], [54.542338, -2.091685]], [[54.542338, -2.091685], [54.542235, -2.091708]], [[54.542235, -2.091708], [54.542145, -2.091722]], [[54.542145, -2.091722], [54.542057, -2.091678]], [[54.542057, -2.091678], [54.541971, -2.09173]], [[54.541971, -2.09173], [54.541881, -2.09178]], [[54.541881, -2.09178], [54.541789, -2.091788]], [[54.541789, -2.091788], [54.541698, -2.091777]], [[54.541518, -2.091706], [54.541416, -2.091682]], [[54.541416, -2.091682], [54.541327, -2.091637]], [[54.541327, -2.091637], [54.541232, -2.091589]], [[54.541232, -2.091589], [54.541136, -2.091538]], [[54.541136, -2.091538], [54.541037, -2.091511]], [[54.541037, -2.091511], [54.540938, -2.091506]], [[54.540938, -2.091506], [54.540857, -2.091433]], [[54.540797, -2.09131], [54.540711, -2.091225]], [[54.540711, -2.091225], [54.540627, -2.091147]], [[54.540627, -2.091147], [54.540531, -2.091136]], [[54.540363, -2.091007], [54.540272, -2.090933]], [[54.540103, -2.090863], [54.540017, -2.0908]], [[54.53966, -2.090526], [54.539571, -2.090469]], [[54.535363, -2.087326], [54.535265, -2.087352]], [[54.535265, -2.087352], [54.535184, -2.08727]], [[54.534841, -2.087], [54.534769, -2.086891]], [[54.534256, -2.086669], [54.534171, -2.086601]], [[54.533243, -2.086114], [54.530592, -2.084432]], [[54.530592, -2.084432], [54.530512, -2.084352]], [[54.529886, -2.083574], [54.52979, -2.083549]], [[54.52979, -2.083549], [54.529698, -2.083509]], [[54.528848, -2.082808], [54.528767, -2.082738]], [[54.528688, -2.082637], [54.528609, -2.082545]], [[54.528609, -2.082545], [54.528551, -2.082415]], [[54.528551, -2.082415], [54.528523, -2.082259]], [[54.528479, -2.08212], [54.528418, -2.082001]], [[54.528405, -2.082047], [54.528352, -2.081921]], [[54.528352, -2.081921], [54.528278, -2.081802]], [[54.527974, -2.081103], [54.527931, -2.080966]], [[54.527931, -2.080966], [54.527847, -2.080903]], [[54.527847, -2.080903], [54.527769, -2.080823]], [[54.527634, -2.080595], [54.527558, -2.080503]], [[54.527558, -2.080503], [54.527492, -2.080396]], [[54.527492, -2.080396], [54.527418, -2.080276]], [[54.527418, -2.080276], [54.527352, -2.080148]], [[54.527352, -2.080148], [54.527275, -2.080042]], [[54.527275, -2.080042], [54.527201, -2.079926]], [[54.527201, -2.079926], [54.527134, -2.079821]], [[54.526981, -2.079519], [54.526897, -2.079433]], [[54.526897, -2.079433], [54.526843, -2.079308]], [[54.526843, -2.079308], [54.526795, -2.079154]], [[54.526795, -2.079154], [54.526726, -2.079032]], [[54.526726, -2.079032], [54.526674, -2.078898]], [[54.52643, -2.078226], [54.526357, -2.078116]], [[54.526106, -2.078126], [54.526016, -2.078154]], [[54.525802, -2.078145], [54.525705, -2.078121]], [[54.525705, -2.078121], [54.525633, -2.078017]], [[54.525633, -2.078017], [54.525536, -2.077966]], [[54.525536, -2.077966], [54.525437, -2.077959]], [[54.525437, -2.077959], [54.525343, -2.077943]], [[54.525343, -2.077943], [54.525253, -2.077904]], [[54.525165, -2.07784], [54.525072, -2.077783]], [[54.525072, -2.077783], [54.524994, -2.077706]], [[54.524994, -2.077706], [54.524905, -2.077626]], [[54.524905, -2.077626], [54.524818, -2.077573]], [[54.524818, -2.077573], [54.524728, -2.077544]], [[54.524728, -2.077544], [54.524644, -2.077475]], [[54.524644, -2.077475], [54.524554, -2.077516]], [[54.524554, -2.077516], [54.524459, -2.077581]], [[54.524459, -2.077581], [54.524365, -2.077627]], [[54.524365, -2.077627], [54.524282, -2.077727]], [[54.524282, -2.077727], [54.524199, -2.077798]], [[54.524199, -2.077798], [54.52411, -2.07786]], [[54.52411, -2.07786], [54.524024, -2.077929]], [[54.524024, -2.077929], [54.523931, -2.077977]], [[54.523931, -2.077977], [54.523834, -2.077964]], [[54.523834, -2.077964], [54.52374, -2.077985]], [[54.52374, -2.077985], [54.523645, -2.077932]], [[54.523645, -2.077932], [54.523564, -2.077848]], [[54.523564, -2.077848], [54.52347, -2.077842]], [[54.52347, -2.077842], [54.523393, -2.077746]], [[54.523393, -2.077746], [54.5233, -2.077683]], [[54.5233, -2.077683], [54.523212, -2.077605]], [[54.523212, -2.077605], [54.523123, -2.077536]], [[54.523123, -2.077536], [54.523028, -2.077513]], [[54.523028, -2.077513], [54.52294, -2.07746]], [[54.52294, -2.07746], [54.522849, -2.077401]], [[54.522849, -2.077401], [54.522751, -2.077373]], [[54.522751, -2.077373], [54.522657, -2.077391]], [[54.522569, -2.077353], [54.522483, -2.077304]], [[54.522483, -2.077304], [54.522403, -2.077221]], [[54.522403, -2.077221], [54.522313, -2.077182]], [[54.522161, -2.077046], [54.522093, -2.076931]], [[54.522093, -2.076931], [54.522014, -2.076852]], [[54.522014, -2.076852], [54.521938, -2.07677]], [[54.521938, -2.07677], [54.521873, -2.076654]], [[54.521873, -2.076654], [54.521802, -2.07653]], [[54.521802, -2.07653], [54.521743, -2.076405]], [[54.521743, -2.076405], [54.521677, -2.076277]], [[54.521677, -2.076277], [54.521615, -2.076145]], [[54.521615, -2.076145], [54.521542, -2.07604]], [[54.521542, -2.07604], [54.52147, -2.075916]], [[54.52147, -2.075916], [54.52139, -2.075805]], [[54.52139, -2.075805], [54.521306, -2.075728]], [[54.521075, -2.075425], [54.521003, -2.07531]], [[54.521003, -2.07531], [54.520936, -2.075188]], [[54.520936, -2.075188], [54.520856, -2.075101]], [[54.520856, -2.075101], [54.520796, -2.074985]], [[54.520796, -2.074985], [54.520726, -2.074884]], [[54.520538, -2.07452], [54.520489, -2.074375]], [[54.520489, -2.074375], [54.520423, -2.074248]], [[54.520423, -2.074248], [54.52034, -2.074152]], [[54.52034, -2.074152], [54.520261, -2.074047]], [[54.520261, -2.074047], [54.520202, -2.073924]], [[54.520202, -2.073924], [54.520135, -2.073798]], [[54.520135, -2.073798], [54.520057, -2.073708]], [[54.520057, -2.073708], [54.519981, -2.073605]], [[54.519981, -2.073605], [54.519911, -2.073497]], [[54.519911, -2.073497], [54.519836, -2.073409]], [[54.519836, -2.073409], [54.519753, -2.073323]], [[54.519753, -2.073323], [54.519675, -2.073223]], [[54.519468, -2.072897], [54.519393, -2.072781]], [[54.519393, -2.072781], [54.519339, -2.072649]], [[54.519339, -2.072649], [54.519269, -2.072526]], [[54.519269, -2.072526], [54.519224, -2.072371]], [[54.519224, -2.072371], [54.519153, -2.072248]], [[54.519153, -2.072248], [54.519092, -2.072107]], [[54.519092, -2.072107], [54.519018, -2.071993]], [[54.519018, -2.071993], [54.518955, -2.071868]], [[54.518955, -2.071868], [54.518898, -2.071725]], [[54.518898, -2.071725], [54.518843, -2.071599]], [[54.518763, -2.071505], [54.5187, -2.071387]], [[54.5187, -2.071387], [54.518624, -2.071304]], [[54.518624, -2.071304], [54.518536, -2.071219]], [[54.518536, -2.071219], [54.518457, -2.071133]], [[54.518029, -2.070855], [54.517949, -2.070747]], [[54.517787, -2.070585], [54.517711, -2.070465]], [[54.517711, -2.070465], [54.517631, -2.070387]], [[54.517631, -2.070387], [54.51756, -2.07029]], [[54.517012, -2.070037], [54.516928, -2.069947]], [[54.516928, -2.069947], [54.51685, -2.06987]], [[54.516594, -2.069661], [54.516517, -2.069747]], [[54.516335, -2.069633], [54.516242, -2.069658]], [[54.516242, -2.069658], [54.516148, -2.06968]], [[54.516148, -2.06968], [54.516054, -2.069658]], [[54.516054, -2.069658], [54.51596, -2.069635]], [[54.51596, -2.069635], [54.515868, -2.06956]], [[54.515868, -2.06956], [54.515778, -2.069509]], [[54.515602, -2.069413], [54.515514, -2.069375]], [[54.515514, -2.069375], [54.515425, -2.06935]], [[54.515425, -2.06935], [54.515334, -2.069352]], [[54.515063, -2.069201], [54.514975, -2.069159]], [[54.514877, -2.069118], [54.514783, -2.069125]], [[54.514783, -2.069125], [54.51472, -2.069]], [[54.51472, -2.069], [54.514625, -2.068943]], [[54.514625, -2.068943], [54.514555, -2.06883]], [[54.51435, -2.069328], [54.514269, -2.069395]], [[54.514203, -2.069527], [54.514132, -2.069624]], [[54.514132, -2.069624], [54.514063, -2.069742]], [[54.514063, -2.069742], [54.514002, -2.069861]], [[54.514002, -2.069861], [54.513915, -2.069923]], [[54.513915, -2.069923], [54.513829, -2.069975]], [[54.513829, -2.069975], [54.513753, -2.07007]], [[54.513753, -2.07007], [54.513678, -2.070177]], [[54.513678, -2.070177], [54.513612, -2.070283]], [[54.513265, -2.070528], [54.513182, -2.070592]], [[54.513182, -2.070592], [54.513085, -2.070627]], [[54.513085, -2.070627], [54.512994, -2.070673]], [[54.512994, -2.070673], [54.512902, -2.070606]], [[54.512902, -2.070606], [54.512812, -2.070563]], [[54.512812, -2.070563], [54.512724, -2.070623]], [[54.512724, -2.070623], [54.512631, -2.070655]], [[54.512476, -2.070581], [54.512378, -2.070568]], [[54.512195, -2.070478], [54.512108, -2.070412]], [[54.512108, -2.070412], [54.512019, -2.070368]], [[54.512019, -2.070368], [54.511939, -2.070279]], [[54.511939, -2.070279], [54.511852, -2.070221]], [[54.511852, -2.070221], [54.511763, -2.070165]], [[54.511763, -2.070165], [54.511681, -2.070091]], [[54.511591, -2.070055], [54.511496, -2.070008]], [[54.511496, -2.070008], [54.5114, -2.069986]], [[54.5114, -2.069986], [54.51133, -2.070094]], [[54.51133, -2.070094], [54.511291, -2.070234]], [[54.511291, -2.070234], [54.511276, -2.070389]], [[54.511279, -2.070903], [54.511257, -2.07106]], [[54.511231, -2.071393], [54.511226, -2.071556]], [[54.511226, -2.071556], [54.511225, -2.071721]], [[54.511271, -2.07206], [54.511268, -2.07223]], [[54.511268, -2.07223], [54.51126, -2.072386]], [[54.511237, -2.072554], [54.511151, -2.072631]], [[54.510774, -2.072268], [54.51079, -2.072105]], [[54.51081, -2.071648], [54.510838, -2.071486]], [[54.510838, -2.071486], [54.510843, -2.071328]], [[54.51085, -2.071172], [54.510878, -2.071012]], [[54.510893, -2.070855], [54.510892, -2.070695]], [[54.510892, -2.070695], [54.5109, -2.070526]], [[54.5109, -2.070526], [54.510913, -2.070365]], [[54.510913, -2.070365], [54.510923, -2.070204]], [[54.510495, -2.069752], [54.51041, -2.069699]], [[54.510319, -2.069655], [54.51022, -2.069639]], [[54.51022, -2.069639], [54.510129, -2.069644]], [[54.50995, -2.069267], [54.509854, -2.069245]], [[54.509854, -2.069245], [54.509761, -2.069181]], [[54.509291, -2.068936], [54.509214, -2.068849]], [[54.509214, -2.068849], [54.509205, -2.068689]], [[54.509201, -2.068388], [54.509153, -2.068245]], [[54.509153, -2.068245], [54.509068, -2.068165]], [[54.509068, -2.068165], [54.508991, -2.068085]], [[54.508804, -2.068097], [54.508712, -2.068137]], [[54.508712, -2.068137], [54.508619, -2.068085]], [[54.508619, -2.068085], [54.508547, -2.067974]], [[54.508547, -2.067974], [54.508463, -2.067919]], [[54.507889, -2.067823], [54.507788, -2.067824]], [[54.507788, -2.067824], [54.507695, -2.06784]], [[54.506859, -2.067673], [54.506768, -2.067644]], [[54.506768, -2.067644], [54.506671, -2.067653]], [[54.506671, -2.067653], [54.506569, -2.06767]], [[54.506374, -2.067629], [54.506277, -2.067671]], [[54.506277, -2.067671], [54.506176, -2.067656]], [[54.506176, -2.067656], [54.506076, -2.067639]], [[54.505892, -2.0676], [54.505797, -2.067665]], [[54.505797, -2.067665], [54.505705, -2.067737]], [[54.505705, -2.067737], [54.505612, -2.067752]], [[54.505612, -2.067752], [54.505519, -2.067793]], [[54.505519, -2.067793], [54.505429, -2.067813]], [[54.505429, -2.067813], [54.505342, -2.067765]], [[54.505342, -2.067765], [54.505245, -2.067725]], [[54.505245, -2.067725], [54.505152, -2.067693]], [[54.505152, -2.067693], [54.505061, -2.067628]], [[54.505061, -2.067628], [54.504968, -2.067566]], [[54.504968, -2.067566], [54.504875, -2.067539]], [[54.504875, -2.067539], [54.504784, -2.067561]], [[54.504784, -2.067561], [54.504692, -2.067525]], [[54.504501, -2.067471], [54.50441, -2.067497]], [[54.50441, -2.067497], [54.504314, -2.067535]], [[54.504314, -2.067535], [54.504234, -2.067463]], [[54.50405, -2.067373], [54.503956, -2.067365]], [[54.5037, -2.067152], [54.503603, -2.067151]], [[54.503516, -2.067091], [54.503422, -2.067055]], [[54.503422, -2.067055], [54.503333, -2.067001]], [[54.503333, -2.067001], [54.503246, -2.066963]], [[54.503246, -2.066963], [54.503149, -2.066932]], [[54.503149, -2.066932], [54.503053, -2.066872]], [[54.503066, -2.066214], [54.503088, -2.066058]], [[54.503135, -2.065727], [54.503166, -2.065566]], [[54.503192, -2.065395], [54.5032, -2.065239]], [[54.5032, -2.065239], [54.503181, -2.065087]], [[54.503181, -2.065087], [54.503153, -2.064918]], [[54.503164, -2.064756], [54.503123, -2.064606]], [[54.503123, -2.064606], [54.503105, -2.064436]], [[54.503105, -2.064436], [54.503124, -2.064272]], [[54.503124, -2.064272], [54.503144, -2.064098]], [[54.503144, -2.064098], [54.503158, -2.063931]], [[54.503158, -2.063931], [54.503155, -2.063773]], [[54.503155, -2.063773], [54.503159, -2.063616]], [[54.503159, -2.063616], [54.503156, -2.063447]], [[54.503156, -2.063447], [54.503177, -2.063292]], [[54.503177, -2.063292], [54.50319, -2.063122]], [[54.503051, -2.0629], [54.502976, -2.062815]], [[54.502976, -2.062815], [54.50289, -2.062748]], [[54.50289, -2.062748], [54.502807, -2.06267]], [[54.502807, -2.06267], [54.502707, -2.062638]], [[54.502707, -2.062638], [54.502616, -2.062632]], [[54.502616, -2.062632], [54.502533, -2.062572]], [[54.502533, -2.062572], [54.502437, -2.062528]], [[54.502437, -2.062528], [54.502339, -2.062521]], [[54.502339, -2.062521], [54.502242, -2.062482]], [[54.502242, -2.062482], [54.502144, -2.062488]], [[54.502144, -2.062488], [54.502048, -2.06247]], [[54.502048, -2.06247], [54.501959, -2.062433]], [[54.501959, -2.062433], [54.501859, -2.062434]], [[54.501859, -2.062434], [54.501767, -2.062485]], [[54.501767, -2.062485], [54.501671, -2.062529]], [[54.501671, -2.062529], [54.501586, -2.062606]], [[54.501586, -2.062606], [54.501503, -2.062685]], [[54.501503, -2.062685], [54.501409, -2.062709]], [[54.501409, -2.062709], [54.501321, -2.062646]], [[54.501321, -2.062646], [54.501222, -2.062636]], [[54.501222, -2.062636], [54.501129, -2.06265]], [[54.501129, -2.06265], [54.501038, -2.062619]], [[54.501038, -2.062619], [54.50094, -2.062589]], [[54.50094, -2.062589], [54.500849, -2.062551]], [[54.500849, -2.062551], [54.500755, -2.062507]], [[54.500755, -2.062507], [54.500665, -2.062473]], [[54.500665, -2.062473], [54.500571, -2.062412]], [[54.500571, -2.062412], [54.500476, -2.062357]], [[54.500476, -2.062357], [54.500387, -2.062291]], [[54.500387, -2.062291], [54.500306, -2.062221]], [[54.500306, -2.062221], [54.500213, -2.062165]], [[54.500213, -2.062165], [54.500123, -2.062106]], [[54.500123, -2.062106], [54.500037, -2.062015]], [[54.500037, -2.062015], [54.499957, -2.061912]], [[54.499957, -2.061912], [54.499876, -2.061827]], [[54.499876, -2.061827], [54.499789, -2.061759]], [[54.499789, -2.061759], [54.499699, -2.061683]], [[54.499699, -2.061683], [54.499617, -2.061587]], [[54.499617, -2.061587], [54.499535, -2.061516]], [[54.499535, -2.061516], [54.499441, -2.061485]], [[54.499441, -2.061485], [54.499347, -2.061474]], [[54.499347, -2.061474], [54.499265, -2.061406]], [[54.499265, -2.061406], [54.499185, -2.06131]], [[54.499185, -2.06131], [54.499116, -2.06121]], [[54.499116, -2.06121], [54.49903, -2.061137]], [[54.49903, -2.061137], [54.498939, -2.061071]], [[54.498939, -2.061071], [54.498847, -2.061002]], [[54.498847, -2.061002], [54.498772, -2.060912]], [[54.498604, -2.060753], [54.498521, -2.06066]], [[54.498521, -2.06066], [54.498436, -2.060609]], [[54.498436, -2.060609], [54.498337, -2.060579]], [[54.498337, -2.060579], [54.498244, -2.060537]], [[54.498244, -2.060537], [54.498166, -2.060457]], [[54.497983, -2.060555], [54.497911, -2.060671]], [[54.497911, -2.060671], [54.497833, -2.060765]], [[54.497833, -2.060765], [54.497742, -2.06083]], [[54.497742, -2.06083], [54.497652, -2.060893]], [[54.497652, -2.060893], [54.497565, -2.060961]], [[54.497565, -2.060961], [54.497479, -2.061044]], [[54.497479, -2.061044], [54.4974, -2.061122]], [[54.4974, -2.061122], [54.497313, -2.061211]], [[54.497313, -2.061211], [54.497235, -2.061305]], [[54.497235, -2.061305], [54.49717, -2.061424]], [[54.49704, -2.061659], [54.496969, -2.061771]], [[54.496969, -2.061771], [54.496883, -2.061848]], [[54.496883, -2.061848], [54.496801, -2.061931]], [[54.496801, -2.061931], [54.49673, -2.062042]], [[54.49673, -2.062042], [54.49665, -2.062129]], [[54.49665, -2.062129], [54.496555, -2.062194]], [[54.4962, -2.062438], [54.496114, -2.062492]], [[54.496114, -2.062492], [54.496025, -2.062576]], [[54.495935, -2.062634], [54.495845, -2.062709]], [[54.495845, -2.062709], [54.495755, -2.062724]], [[54.495755, -2.062724], [54.495663, -2.062719]], [[54.495529, -2.062772], [54.495456, -2.062883]], [[54.495456, -2.062883], [54.495378, -2.062975]], [[54.495378, -2.062975], [54.495292, -2.063054]], [[54.495292, -2.063054], [54.495211, -2.063142]], [[54.495211, -2.063142], [54.495133, -2.063248]], [[54.495133, -2.063248], [54.495048, -2.063347]], [[54.495048, -2.063347], [54.494955, -2.063409]], [[54.494955, -2.063409], [54.494869, -2.063493]], [[54.494869, -2.063493], [54.494792, -2.0636]], [[54.494792, -2.0636], [54.494715, -2.063684]], [[54.494715, -2.063684], [54.494629, -2.063764]], [[54.494629, -2.063764], [54.494554, -2.063863]], [[54.494554, -2.063863], [54.494478, -2.06395]], [[54.494398, -2.064035], [54.494315, -2.064103]], [[54.494315, -2.064103], [54.49424, -2.064191]], [[54.49424, -2.064191], [54.494163, -2.064291]], [[54.494163, -2.064291], [54.494096, -2.06442]], [[54.494096, -2.06442], [54.494014, -2.064515]], [[54.494014, -2.064515], [54.493927, -2.064602]], [[54.493927, -2.064602], [54.493846, -2.064698]], [[54.493846, -2.064698], [54.493787, -2.064824]], [[54.493787, -2.064824], [54.493729, -2.06495]], [[54.493729, -2.06495], [54.493667, -2.065087]], [[54.493667, -2.065087], [54.493601, -2.065204]], [[54.493554, -2.065339], [54.493504, -2.065486]], [[54.493504, -2.065486], [54.49345, -2.065616]], [[54.49345, -2.065616], [54.493376, -2.06574]], [[54.493376, -2.06574], [54.493297, -2.065823]], [[54.493297, -2.065823], [54.493228, -2.065924]], [[54.493228, -2.065924], [54.493167, -2.066043]], [[54.493167, -2.066043], [54.493099, -2.066166]], [[54.493099, -2.066166], [54.49303, -2.066273]], [[54.49303, -2.066273], [54.492974, -2.0664]], [[54.492974, -2.0664], [54.4929, -2.066495]], [[54.4929, -2.066495], [54.49282, -2.066598]], [[54.49282, -2.066598], [54.492748, -2.06672]], [[54.492748, -2.06672], [54.492669, -2.06683]], [[54.492669, -2.06683], [54.492598, -2.066944]], [[54.492413, -2.066963], [54.49232, -2.066984]], [[54.492047, -2.067117], [54.491967, -2.067191]], [[54.491967, -2.067191], [54.491884, -2.067285]], [[54.491553, -2.067297], [54.49146, -2.067291]], [[54.491374, -2.067368], [54.491345, -2.067519]], [[54.491214, -2.067923], [54.4912, -2.068064]], [[54.491027, -2.068227], [54.490959, -2.06833]], [[54.490959, -2.06833], [54.490877, -2.068424]], [[54.490877, -2.068424], [54.49082, -2.068562]], [[54.490687, -2.068796], [54.490629, -2.068919]], [[54.490629, -2.068919], [54.490564, -2.069051]], [[54.490564, -2.069051], [54.490493, -2.069167]], [[54.490493, -2.069167], [54.490415, -2.069244]], [[54.490415, -2.069244], [54.490321, -2.069289]], [[54.490321, -2.069289], [54.490222, -2.069292]], [[54.490222, -2.069292], [54.49013, -2.069315]], [[54.49013, -2.069315], [54.490039, -2.069305]], [[54.490039, -2.069305], [54.489947, -2.069277]], [[54.489947, -2.069277], [54.489847, -2.069251]], [[54.489847, -2.069251], [54.489751, -2.06923]], [[54.489751, -2.06923], [54.489655, -2.069198]], [[54.489655, -2.069198], [54.489563, -2.069144]], [[54.489563, -2.069144], [54.489471, -2.06911]], [[54.48922, -2.06908], [54.489126, -2.069051]], [[54.488883, -2.068988], [54.488783, -2.068981]], [[54.488783, -2.068981], [54.488686, -2.068961]], [[54.488452, -2.068989], [54.488361, -2.069061]], [[54.488361, -2.069061], [54.488273, -2.06912]], [[54.488273, -2.06912], [54.488181, -2.069182]], [[54.488181, -2.069182], [54.488103, -2.069267]], [[54.488103, -2.069267], [54.488017, -2.06936]], [[54.488017, -2.06936], [54.487927, -2.069413]], [[54.487927, -2.069413], [54.487838, -2.069487]], [[54.487838, -2.069487], [54.487746, -2.069562]], [[54.487341, -2.070014], [54.487248, -2.070076]], [[54.487248, -2.070076], [54.487159, -2.070105]], [[54.487159, -2.070105], [54.487057, -2.070108]], [[54.487057, -2.070108], [54.486959, -2.070116]], [[54.486959, -2.070116], [54.486863, -2.070116]], [[54.486863, -2.070116], [54.486766, -2.070133]], [[54.486766, -2.070133], [54.486665, -2.070152]], [[54.486665, -2.070152], [54.48657, -2.070195]], [[54.486375, -2.070235], [54.486286, -2.070296]], [[54.486146, -2.070504], [54.486065, -2.070576]], [[54.486065, -2.070576], [54.485994, -2.070678]], [[54.485994, -2.070678], [54.485926, -2.070799]], [[54.485808, -2.071075], [54.485754, -2.071202]], [[54.485754, -2.071202], [54.485693, -2.071325]], [[54.485412, -2.071811], [54.485349, -2.071922]], [[54.485082, -2.072517], [54.484989, -2.072551]], [[54.484989, -2.072551], [54.484889, -2.072561]], [[54.484889, -2.072561], [54.484792, -2.072573]], [[54.484792, -2.072573], [54.484698, -2.072623]], [[54.484698, -2.072623], [54.484619, -2.072713]], [[54.484619, -2.072713], [54.484538, -2.072807]], [[54.484538, -2.072807], [54.48447, -2.072927]], [[54.48447, -2.072927], [54.4844, -2.073025]], [[54.484269, -2.073239], [54.4842, -2.07335]], [[54.4842, -2.07335], [54.484141, -2.073487]], [[54.484141, -2.073487], [54.48409, -2.073623]], [[54.48409, -2.073623], [54.484049, -2.073776]], [[54.484049, -2.073776], [54.484001, -2.073922]], [[54.483881, -2.074361], [54.483847, -2.074505]], [[54.483847, -2.074505], [54.483824, -2.074658]], [[54.483824, -2.074658], [54.48379, -2.074812]], [[54.48379, -2.074812], [54.48376, -2.074975]], [[54.483669, -2.07526], [54.483622, -2.075405]], [[54.483682, -2.076591], [54.483715, -2.076734]], [[54.483715, -2.076734], [54.483738, -2.076886]], [[54.483738, -2.076886], [54.483728, -2.07704]], [[54.483728, -2.07704], [54.483693, -2.0772]], [[54.483693, -2.0772], [54.483626, -2.077326]], [[54.483626, -2.077326], [54.483554, -2.077443]], [[54.483355, -2.077991], [54.483307, -2.078131]], [[54.483282, -2.078283], [54.483264, -2.078453]], [[54.483236, -2.078613], [54.483208, -2.078764]], [[54.483208, -2.078764], [54.483221, -2.078917]], [[54.483221, -2.078917], [54.483208, -2.079087]], [[54.483208, -2.079087], [54.483231, -2.079249]], [[54.483231, -2.079249], [54.483278, -2.079387]], [[54.483278, -2.079387], [54.483307, -2.079534]], [[54.483307, -2.079534], [54.483314, -2.079702]], [[54.483314, -2.079702], [54.483311, -2.079856]], [[54.483311, -2.079856], [54.483293, -2.08002]], [[54.483293, -2.08002], [54.483264, -2.080178]], [[54.48319, -2.080666], [54.483163, -2.080818]], [[54.483093, -2.081309], [54.483101, -2.081465]], [[54.483101, -2.081465], [54.483082, -2.081634]], [[54.483082, -2.081634], [54.483049, -2.081778]], [[54.482988, -2.082091], [54.482954, -2.082234]], [[54.482954, -2.082234], [54.48294, -2.082406]], [[54.482733, -2.083317], [54.482679, -2.083448]], [[54.482414, -2.084113], [54.482357, -2.084245]], [[54.482357, -2.084245], [54.48231, -2.08439]], [[54.48231, -2.08439], [54.482268, -2.084533]], [[54.482268, -2.084533], [54.482216, -2.084664]], [[54.482216, -2.084664], [54.482174, -2.084803]], [[54.482174, -2.084803], [54.482118, -2.084945]], [[54.482118, -2.084945], [54.482059, -2.08507]], [[54.482059, -2.08507], [54.482005, -2.085195]], [[54.482005, -2.085195], [54.481952, -2.08533]], [[54.481952, -2.08533], [54.481891, -2.085459]], [[54.481891, -2.085459], [54.481828, -2.085592]], [[54.481828, -2.085592], [54.481768, -2.085713]], [[54.481768, -2.085713], [54.4817, -2.085833]], [[54.4817, -2.085833], [54.481631, -2.085937]], [[54.481502, -2.086158], [54.481434, -2.086261]], [[54.481434, -2.086261], [54.481366, -2.086392]], [[54.481366, -2.086392], [54.481299, -2.086497]], [[54.481299, -2.086497], [54.481246, -2.086635]], [[54.481246, -2.086635], [54.481193, -2.086775]], [[54.481193, -2.086775], [54.481149, -2.086922]], [[54.481149, -2.086922], [54.481083, -2.087054]], [[54.480792, -2.087724], [54.48073, -2.087862]], [[54.48073, -2.087862], [54.48069, -2.088015]], [[54.48069, -2.088015], [54.480663, -2.08818]], [[54.480663, -2.08818], [54.480608, -2.088324]], [[54.480608, -2.088324], [54.480569, -2.088482]], [[54.480569, -2.088482], [54.480539, -2.088647]], [[54.480539, -2.088647], [54.480509, -2.088801]], [[54.480509, -2.088801], [54.480449, -2.088941]], [[54.480449, -2.088941], [54.480401, -2.089079]], [[54.480401, -2.089079], [54.480362, -2.089237]], [[54.480362, -2.089237], [54.480313, -2.089385]], [[54.480313, -2.089385], [54.480264, -2.089516]], [[54.480264, -2.089516], [54.480206, -2.089638]], [[54.480206, -2.089638], [54.480143, -2.089776]], [[54.480143, -2.089776], [54.480081, -2.089898]], [[54.480081, -2.089898], [54.480015, -2.090016]], [[54.480015, -2.090016], [54.479955, -2.090151]], [[54.479955, -2.090151], [54.479892, -2.090262]], [[54.479683, -2.090597], [54.47962, -2.090725]], [[54.47962, -2.090725], [54.479557, -2.09085]], [[54.479557, -2.09085], [54.479493, -2.09097]], [[54.479493, -2.09097], [54.479431, -2.091091]], [[54.479431, -2.091091], [54.47936, -2.091217]], [[54.47936, -2.091217], [54.4793, -2.091334]], [[54.4793, -2.091334], [54.479231, -2.09146]], [[54.479231, -2.09146], [54.479168, -2.091592]], [[54.479168, -2.091592], [54.479102, -2.091714]], [[54.479102, -2.091714], [54.479037, -2.091841]], [[54.479037, -2.091841], [54.478985, -2.091988]], [[54.478974, -2.092534], [54.478986, -2.092708]], [[54.478978, -2.092936], [54.478969, -2.093091]], [[54.478969, -2.093091], [54.478947, -2.093242]], [[54.478947, -2.093242], [54.478932, -2.093394]], [[54.478932, -2.093394], [54.47891, -2.093552]], [[54.47891, -2.093552], [54.47888, -2.093709]], [[54.47888, -2.093709], [54.478842, -2.093858]], [[54.478842, -2.093858], [54.478806, -2.094007]], [[54.478806, -2.094007], [54.478786, -2.094174]], [[54.478786, -2.094174], [54.478774, -2.094328]], [[54.478774, -2.094328], [54.478745, -2.0945]], [[54.478703, -2.094818], [54.478687, -2.09497]], [[54.478687, -2.09497], [54.478659, -2.095119]], [[54.478558, -2.095746], [54.478519, -2.095895]], [[54.478519, -2.095895], [54.478477, -2.096037]], [[54.478477, -2.096037], [54.478417, -2.09616]], [[54.478417, -2.09616], [54.47837, -2.096299]], [[54.478287, -2.096607], [54.478246, -2.096765]], [[54.478246, -2.096765], [54.478211, -2.096924]], [[54.478211, -2.096924], [54.478168, -2.097077]], [[54.478168, -2.097077], [54.478115, -2.097212]], [[54.478115, -2.097212], [54.47806, -2.097349]], [[54.47806, -2.097349], [54.478006, -2.097482]], [[54.478006, -2.097482], [54.477961, -2.097628]], [[54.477961, -2.097628], [54.477917, -2.097772]], [[54.477917, -2.097772], [54.477876, -2.097917]], [[54.477787, -2.098218], [54.47773, -2.098342]], [[54.47773, -2.098342], [54.47771, -2.09852]], [[54.477609, -2.099031], [54.477523, -2.099121]], [[54.477375, -2.099284], [54.477294, -2.099364]], [[54.477294, -2.099364], [54.47723, -2.099484]], [[54.47723, -2.099484], [54.477172, -2.099605]], [[54.477172, -2.099605], [54.477118, -2.09973]], [[54.477118, -2.09973], [54.477053, -2.09986]], [[54.47679, -2.100313], [54.476731, -2.100447]], [[54.476731, -2.100447], [54.476706, -2.100611]], [[54.47661, -2.100885], [54.476546, -2.100999]], [[54.476546, -2.100999], [54.476548, -2.101167]], [[54.476548, -2.101167], [54.476471, -2.101274]], [[54.476404, -2.101773], [54.476425, -2.101927]], [[54.47645, -2.102084], [54.476491, -2.102239]], [[54.476491, -2.102239], [54.476493, -2.102407]], [[54.476454, -2.102864], [54.476463, -2.103029]], [[54.476463, -2.103029], [54.476431, -2.103189]], [[54.476431, -2.103189], [54.476388, -2.103329]], [[54.476388, -2.103329], [54.476397, -2.103486]], [[54.476397, -2.103651], [54.476381, -2.103811]], [[54.476381, -2.103811], [54.476326, -2.103953]], [[54.476326, -2.103953], [54.476293, -2.104108]], [[54.476293, -2.104108], [54.476271, -2.104257]], [[54.476271, -2.104257], [54.476235, -2.104411]], [[54.476235, -2.104411], [54.476216, -2.104571]], [[54.476216, -2.104571], [54.476195, -2.104726]], [[54.476195, -2.104726], [54.476172, -2.104887]], [[54.476122, -2.105015], [54.476083, -2.105175]], [[54.475975, -2.105411], [54.475926, -2.105557]], [[54.475926, -2.105557], [54.475885, -2.105711]], [[54.475885, -2.105711], [54.475834, -2.105863]], [[54.475834, -2.105863], [54.475779, -2.105995]], [[54.475779, -2.105995], [54.475688, -2.106056]], [[54.475688, -2.106056], [54.475618, -2.106161]], [[54.475618, -2.106161], [54.475542, -2.106267]], [[54.475542, -2.106267], [54.475466, -2.106374]], [[54.475466, -2.106374], [54.475384, -2.106475]], [[54.475384, -2.106475], [54.475303, -2.106561]], [[54.475303, -2.106561], [54.475236, -2.106683]], [[54.475236, -2.106683], [54.475179, -2.106818]], [[54.475179, -2.106818], [54.475096, -2.106904]], [[54.475096, -2.106904], [54.475049, -2.107036]], [[54.475049, -2.107036], [54.475, -2.107183]], [[54.475, -2.107183], [54.474958, -2.107339]], [[54.474958, -2.107339], [54.474919, -2.107503]], [[54.474919, -2.107503], [54.474863, -2.107641]], [[54.474863, -2.107641], [54.474826, -2.107802]], [[54.474826, -2.107802], [54.474788, -2.107959]], [[54.474788, -2.107959], [54.474747, -2.108106]], [[54.474747, -2.108106], [54.474724, -2.108267]], [[54.474724, -2.108267], [54.474732, -2.108436]], [[54.474736, -2.108598], [54.474704, -2.108746]], [[54.474704, -2.108746], [54.474685, -2.108901]], [[54.474612, -2.109195], [54.474619, -2.109349]], [[54.474619, -2.109349], [54.474609, -2.109507]], [[54.474545, -2.109804], [54.474519, -2.109956]], [[54.474519, -2.109956], [54.474478, -2.110109]], [[54.474478, -2.110109], [54.474424, -2.110252]], [[54.474424, -2.110252], [54.474387, -2.110405]], [[54.474387, -2.110405], [54.474345, -2.110544]], [[54.474345, -2.110544], [54.47431, -2.110687]], [[54.47431, -2.110687], [54.474266, -2.110835]], [[54.474266, -2.110835], [54.474222, -2.110974]], [[54.474222, -2.110974], [54.474203, -2.111134]], [[54.474203, -2.111134], [54.474177, -2.111283]], [[54.474177, -2.111283], [54.47414, -2.111424]], [[54.47414, -2.111424], [54.474109, -2.111581]], [[54.474109, -2.111581], [54.47405, -2.111722]], [[54.47405, -2.111722], [54.473994, -2.111857]], [[54.473994, -2.111857], [54.473923, -2.111968]], [[54.473923, -2.111968], [54.473834, -2.112]], [[54.473834, -2.112], [54.473753, -2.112083]], [[54.473753, -2.112083], [54.47371, -2.112241]], [[54.47371, -2.112241], [54.473644, -2.112372]], [[54.473644, -2.112372], [54.47361, -2.112523]], [[54.47361, -2.112523], [54.473569, -2.112662]], [[54.473569, -2.112662], [54.473529, -2.112819]], [[54.473529, -2.112819], [54.47348, -2.112965]], [[54.47348, -2.112965], [54.473446, -2.11311]], [[54.473446, -2.11311], [54.473413, -2.113261]], [[54.473348, -2.113558], [54.473324, -2.113716]], [[54.473324, -2.113716], [54.473304, -2.113885]], [[54.473304, -2.113885], [54.473277, -2.114042]], [[54.473277, -2.114042], [54.473234, -2.114198]], [[54.473234, -2.114198], [54.473194, -2.114347]], [[54.473194, -2.114347], [54.473146, -2.114497]], [[54.473146, -2.114497], [54.473102, -2.114632]], [[54.473102, -2.114632], [54.473075, -2.114801]], [[54.473075, -2.114801], [54.473024, -2.114936]], [[54.473024, -2.114936], [54.472994, -2.115092]], [[54.472994, -2.115092], [54.472958, -2.115247]], [[54.472958, -2.115247], [54.472932, -2.11541]], [[54.472932, -2.11541], [54.472901, -2.115556]], [[54.472901, -2.115556], [54.472866, -2.115721]], [[54.472866, -2.115721], [54.47284, -2.115882]], [[54.472753, -2.116209], [54.472712, -2.116349]], [[54.472712, -2.116349], [54.472665, -2.116495]], [[54.472665, -2.116495], [54.472629, -2.116652]], [[54.472629, -2.116652], [54.472601, -2.1168]], [[54.472601, -2.1168], [54.472592, -2.116957]], [[54.472592, -2.116957], [54.472592, -2.11712]], [[54.472592, -2.11712], [54.472571, -2.117288]], [[54.472531, -2.11743], [54.472505, -2.117586]], [[54.472505, -2.117586], [54.472485, -2.117751]], [[54.472485, -2.117751], [54.472441, -2.117888]], [[54.472441, -2.117888], [54.472399, -2.118025]], [[54.472399, -2.118025], [54.472378, -2.118184]], [[54.472271, -2.118508], [54.4722, -2.118625]], [[54.4722, -2.118625], [54.472138, -2.118755]], [[54.472138, -2.118755], [54.472088, -2.118897]], [[54.472088, -2.118897], [54.472076, -2.119068]], [[54.472021, -2.11938], [54.472008, -2.119535]], [[54.472008, -2.119535], [54.471999, -2.119696]], [[54.471999, -2.119696], [54.471989, -2.119854]], [[54.471989, -2.119854], [54.471974, -2.120022]], [[54.471974, -2.120022], [54.471957, -2.12018]], [[54.471957, -2.12018], [54.471941, -2.120332]], [[54.471941, -2.120332], [54.471919, -2.120496]], [[54.471919, -2.120496], [54.471917, -2.120658]], [[54.471883, -2.120988], [54.471866, -2.121148]], [[54.471866, -2.121148], [54.4718, -2.121284]], [[54.4718, -2.121284], [54.471747, -2.121422]], [[54.471747, -2.121422], [54.471727, -2.121589]], [[54.471727, -2.121589], [54.471667, -2.121707]], [[54.471667, -2.121707], [54.471606, -2.121829]], [[54.471606, -2.121829], [54.471566, -2.121977]], [[54.471566, -2.121977], [54.47154, -2.122128]], [[54.47154, -2.122128], [54.47149, -2.12228]], [[54.47149, -2.12228], [54.47144, -2.122425]], [[54.471381, -2.122542], [54.471322, -2.122679]], [[54.471322, -2.122679], [54.471298, -2.122831]], [[54.471298, -2.122831], [54.471272, -2.122992]], [[54.471272, -2.122992], [54.471235, -2.123143]], [[54.471235, -2.123143], [54.471177, -2.123273]], [[54.471122, -2.123406], [54.471098, -2.123571]], [[54.471098, -2.123571], [54.47109, -2.123745]], [[54.47109, -2.123745], [54.471097, -2.123905]], [[54.471097, -2.123905], [54.471027, -2.124023]], [[54.471027, -2.124023], [54.470958, -2.124147]], [[54.470958, -2.124147], [54.470907, -2.124287]], [[54.470907, -2.124287], [54.47085, -2.124421]], [[54.47085, -2.124421], [54.470787, -2.124551]], [[54.470787, -2.124551], [54.470756, -2.124702]], [[54.470756, -2.124702], [54.470719, -2.124851]], [[54.470719, -2.124851], [54.470665, -2.124984]], [[54.470601, -2.125117], [54.470542, -2.125244]], [[54.470542, -2.125244], [54.470476, -2.125366]], [[54.470476, -2.125366], [54.470424, -2.125495]], [[54.470424, -2.125495], [54.470349, -2.125588]], [[54.470349, -2.125588], [54.470303, -2.125731]], [[54.470303, -2.125731], [54.470232, -2.125835]], [[54.470119, -2.126088], [54.470128, -2.126248]], [[54.470128, -2.126248], [54.470137, -2.126406]], [[54.470137, -2.126406], [54.470138, -2.126567]], [[54.470138, -2.126567], [54.470099, -2.126713]], [[54.47006, -2.12686], [54.469982, -2.126965]], [[54.469837, -2.127166], [54.469784, -2.127305]], [[54.469784, -2.127305], [54.469722, -2.127426]], [[54.469722, -2.127426], [54.469658, -2.127554]], [[54.469658, -2.127554], [54.469611, -2.127687]], [[54.469582, -2.128007], [54.46959, -2.128178]], [[54.469611, -2.128337], [54.469616, -2.128506]], [[54.469616, -2.128506], [54.469599, -2.12866]], [[54.469599, -2.12866], [54.469572, -2.128807]], [[54.469572, -2.128807], [54.469537, -2.128972]], [[54.469537, -2.128972], [54.469485, -2.129102]], [[54.469485, -2.129102], [54.469424, -2.129235]], [[54.469351, -2.129339], [54.469278, -2.129435]], [[54.469278, -2.129435], [54.4692, -2.129538]], [[54.4692, -2.129538], [54.469142, -2.129659]], [[54.469025, -2.129908], [54.468932, -2.12996]], [[54.468932, -2.12996], [54.468855, -2.130049]], [[54.468855, -2.130049], [54.468787, -2.13015]], [[54.468716, -2.13027], [54.468641, -2.130361]], [[54.468641, -2.130361], [54.468567, -2.13046]], [[54.468567, -2.13046], [54.468514, -2.130598]], [[54.468514, -2.130598], [54.468462, -2.130733]], [[54.468377, -2.131027], [54.468378, -2.131181]], [[54.468378, -2.131181], [54.468297, -2.131252]], [[54.468233, -2.131366], [54.468182, -2.131513]], [[54.468087, -2.131895], [54.468053, -2.13204]], [[54.468043, -2.132204], [54.468023, -2.132369]], [[54.46789, -2.132602], [54.467818, -2.132703]], [[54.467746, -2.132812], [54.467706, -2.132955]], [[54.467706, -2.132955], [54.467699, -2.133122]], [[54.467699, -2.133122], [54.46769, -2.13328]], [[54.46769, -2.13328], [54.46765, -2.133443]], [[54.46765, -2.133443], [54.467647, -2.133609]], [[54.467537, -2.133873], [54.467493, -2.134015]], [[54.467493, -2.134015], [54.467432, -2.134138]], [[54.467381, -2.134291], [54.467349, -2.134435]], [[54.467349, -2.134435], [54.467299, -2.134578]], [[54.467299, -2.134578], [54.467234, -2.134686]], [[54.467234, -2.134686], [54.467168, -2.134803]], [[54.467168, -2.134803], [54.467099, -2.134924]], [[54.467099, -2.134924], [54.46704, -2.135066]], [[54.46704, -2.135066], [54.466984, -2.135189]], [[54.466984, -2.135189], [54.466925, -2.135327]], [[54.466925, -2.135327], [54.466874, -2.135478]], [[54.466874, -2.135478], [54.466837, -2.135624]], [[54.466837, -2.135624], [54.466776, -2.135749]], [[54.466776, -2.135749], [54.466746, -2.135911]], [[54.466613, -2.13635], [54.466568, -2.13649]], [[54.466568, -2.13649], [54.466496, -2.136583]], [[54.46639, -2.136875], [54.466325, -2.137013]], [[54.466325, -2.137013], [54.466304, -2.13717]], [[54.466304, -2.13717], [54.466267, -2.137342]], [[54.466177, -2.137385], [54.466122, -2.137508]], [[54.466122, -2.137508], [54.466061, -2.137627]], [[54.466061, -2.137627], [54.466049, -2.137786]], [[54.466049, -2.137786], [54.466019, -2.137948]], [[54.465899, -2.138379], [54.465879, -2.138545]], [[54.465879, -2.138545], [54.465849, -2.138708]], [[54.465849, -2.138708], [54.465778, -2.138823]], [[54.465708, -2.138933], [54.465696, -2.13909]], [[54.465696, -2.13909], [54.465716, -2.139242]], [[54.465716, -2.139242], [54.465685, -2.139389]], [[54.465512, -2.139682], [54.465452, -2.139809]], [[54.465452, -2.139809], [54.465395, -2.139945]], [[54.465391, -2.140102], [54.465424, -2.14025]], [[54.465311, -2.140544], [54.465255, -2.140675]], [[54.465255, -2.140675], [54.465212, -2.140843]], [[54.464775, -2.142206], [54.464728, -2.142341]], [[54.464728, -2.142341], [54.464734, -2.142504]], [[54.464734, -2.142504], [54.46469, -2.14264]], [[54.4646, -2.143254], [54.464583, -2.143409]], [[54.464583, -2.143409], [54.464545, -2.143563]], [[54.464327, -2.144241], [54.464304, -2.144403]], [[54.464304, -2.144403], [54.464228, -2.144503]], [[54.464228, -2.144503], [54.464181, -2.144641]], [[54.464181, -2.144641], [54.464181, -2.144801]], [[54.464181, -2.144801], [54.464178, -2.144962]], [[54.464178, -2.144962], [54.464122, -2.14509]], [[54.464122, -2.14509], [54.464053, -2.145203]], [[54.464053, -2.145203], [54.464027, -2.145359]], [[54.464027, -2.145359], [54.463998, -2.145509]], [[54.463998, -2.145509], [54.46394, -2.14565]], [[54.46394, -2.14565], [54.463907, -2.14581]], [[54.463895, -2.145973], [54.463856, -2.146118]], [[54.463856, -2.146118], [54.463861, -2.146274]], [[54.463735, -2.146725], [54.463725, -2.146891]], [[54.463725, -2.146891], [54.463692, -2.147035]], [[54.463692, -2.147035], [54.463607, -2.147132]], [[54.463607, -2.147132], [54.463536, -2.14724]], [[54.463536, -2.14724], [54.463454, -2.147329]], [[54.463399, -2.147453], [54.463318, -2.147523]], [[54.463318, -2.147523], [54.463235, -2.147599]], [[54.463235, -2.147599], [54.463197, -2.147756]], [[54.463197, -2.147756], [54.463172, -2.14792]], [[54.463118, -2.148061], [54.463068, -2.148199]], [[54.463068, -2.148199], [54.463006, -2.148319]], [[54.463006, -2.148319], [54.462959, -2.148473]], [[54.462959, -2.148473], [54.462922, -2.14863]], [[54.462892, -2.148788], [54.462862, -2.148944]], [[54.462862, -2.148944], [54.462831, -2.149092]], [[54.462831, -2.149092], [54.46278, -2.149237]], [[54.46278, -2.149237], [54.462739, -2.149382]], [[54.462739, -2.149382], [54.462675, -2.149499]], [[54.462675, -2.149499], [54.462621, -2.149635]], [[54.462621, -2.149635], [54.462554, -2.149747]], [[54.462323, -2.150123], [54.462251, -2.150238]], [[54.462251, -2.150238], [54.462184, -2.150354]], [[54.462184, -2.150354], [54.462109, -2.15045]], [[54.462109, -2.15045], [54.462039, -2.150548]], [[54.460468, -2.152552], [54.460386, -2.15264]], [[54.459609, -2.153815], [54.459548, -2.153946]], [[54.459047, -2.154683], [54.459001, -2.154818]], [[54.459001, -2.154818], [54.45893, -2.154919]], [[54.45893, -2.154919], [54.458844, -2.154997]], [[54.458844, -2.154997], [54.458755, -2.155065]], [[54.458755, -2.155065], [54.458659, -2.155067]], [[54.458533, -2.155294], [54.458441, -2.155357]], [[54.458212, -2.155453], [54.45812, -2.155521]], [[54.45812, -2.155521], [54.458036, -2.155585]], [[54.458036, -2.155585], [54.457942, -2.155647]], [[54.457942, -2.155647], [54.457856, -2.155694]], [[54.457769, -2.155765], [54.45769, -2.155846]], [[54.45769, -2.155846], [54.457606, -2.155936]], [[54.457539, -2.15604], [54.457463, -2.156129]], [[54.457463, -2.156129], [54.457419, -2.156274]], [[54.457419, -2.156274], [54.457374, -2.156409]], [[54.457374, -2.156409], [54.457319, -2.15655]], [[54.457319, -2.15655], [54.457266, -2.156693]], [[54.457266, -2.156693], [54.457197, -2.156824]], [[54.457197, -2.156824], [54.45713, -2.156928]], [[54.45713, -2.156928], [54.457064, -2.157046]], [[54.457064, -2.157046], [54.457006, -2.157186]], [[54.457006, -2.157186], [54.456962, -2.157323]], [[54.456962, -2.157323], [54.456917, -2.157463]], [[54.456917, -2.157463], [54.456859, -2.157598]], [[54.456859, -2.157598], [54.456795, -2.157718]], [[54.456795, -2.157718], [54.456736, -2.157854]], [[54.456736, -2.157854], [54.456677, -2.157994]], [[54.456524, -2.158187], [54.456436, -2.158271]], [[54.456436, -2.158271], [54.456336, -2.158249]], [[54.456336, -2.158249], [54.456238, -2.158262]], [[54.456238, -2.158262], [54.456148, -2.15828]], [[54.456148, -2.15828], [54.456067, -2.158363]], [[54.456067, -2.158363], [54.455989, -2.158467]], [[54.455989, -2.158467], [54.45592, -2.158568]], [[54.45592, -2.158568], [54.455839, -2.158668]], [[54.455839, -2.158668], [54.455778, -2.158789]], [[54.455778, -2.158789], [54.455704, -2.158892]], [[54.455704, -2.158892], [54.455636, -2.159017]], [[54.455636, -2.159017], [54.455566, -2.159142]], [[54.455421, -2.159707], [54.455433, -2.159873]], [[54.455433, -2.159873], [54.455493, -2.159993]], [[54.455671, -2.160092], [54.455767, -2.160151]], [[54.455767, -2.160151], [54.455857, -2.160177]], [[54.455911, -2.160168], [54.455815, -2.160136]], [[54.455815, -2.160136], [54.455722, -2.160093]], [[54.455722, -2.160093], [54.455629, -2.160076]], [[54.455629, -2.160076], [54.455545, -2.160135]], [[54.455545, -2.160135], [54.455504, -2.160286]], [[54.456019, -2.160189], [54.455922, -2.160122]], [[54.45583, -2.160081], [54.455738, -2.16007]], [[54.455555, -2.160007], [54.455457, -2.16004]], [[54.455404, -2.160175], [54.455305, -2.160186]], [[54.455305, -2.160186], [54.45521, -2.160156]], [[54.455114, -2.160118], [54.455015, -2.160081]], [[54.455015, -2.160081], [54.454921, -2.160037]], [[54.454633, -2.159987], [54.454535, -2.15999]], [[54.454535, -2.15999], [54.454441, -2.159971]], [[54.45425, -2.159892], [54.454156, -2.159878]], [[54.454156, -2.159878], [54.454057, -2.15985]], [[54.454057, -2.15985], [54.453964, -2.159824]], [[54.453964, -2.159824], [54.453874, -2.159797]], [[54.453874, -2.159797], [54.45378, -2.159759]], [[54.45378, -2.159759], [54.453686, -2.159711]], [[54.453686, -2.159711], [54.453594, -2.15969]], [[54.453594, -2.15969], [54.453505, -2.159665]], [[54.453505, -2.159665], [54.453415, -2.159657]], [[54.45322, -2.159602], [54.453128, -2.159593]], [[54.453128, -2.159593], [54.45303, -2.159584]], [[54.45303, -2.159584], [54.452934, -2.159598]], [[54.452934, -2.159598], [54.452842, -2.159599]], [[54.452842, -2.159599], [54.452737, -2.159573]], [[54.452259, -2.159689], [54.45216, -2.159733]], [[54.45216, -2.159733], [54.45207, -2.159748]], [[54.45207, -2.159748], [54.451979, -2.159752]], [[54.451979, -2.159752], [54.451889, -2.159792]], [[54.451889, -2.159792], [54.451802, -2.159839]], [[54.451802, -2.159839], [54.451709, -2.159849]], [[54.451522, -2.159881], [54.45143, -2.159894]], [[54.45134, -2.159923], [54.451246, -2.159948]], [[54.451246, -2.159948], [54.451155, -2.16001]], [[54.450872, -2.160108], [54.450774, -2.160145]], [[54.45068, -2.160171], [54.450586, -2.160201]], [[54.450586, -2.160201], [54.450486, -2.160212]], [[54.450486, -2.160212], [54.450385, -2.160212]], [[54.450385, -2.160212], [54.450286, -2.160199]], [[54.450286, -2.160199], [54.450191, -2.160165]], [[54.450191, -2.160165], [54.450108, -2.160101]], [[54.450108, -2.160101], [54.450038, -2.159986]], [[54.450038, -2.159986], [54.44997, -2.159864]], [[54.44988, -2.159795], [54.449789, -2.159836]], [[54.449789, -2.159836], [54.449703, -2.159907]], [[54.449703, -2.159907], [54.44962, -2.159996]], [[54.44962, -2.159996], [54.449525, -2.160045]], [[54.449525, -2.160045], [54.449433, -2.160062]], [[54.44895, -2.160067], [54.44885, -2.160083]], [[54.44885, -2.160083], [54.448759, -2.160065]], [[54.448759, -2.160065], [54.448668, -2.160023]], [[54.448668, -2.160023], [54.448639, -2.16018]], [[54.448639, -2.16018], [54.448621, -2.16034]], [[54.448599, -2.160501], [54.448583, -2.160659]], [[54.448583, -2.160659], [54.448561, -2.160811]], [[54.448561, -2.160811], [54.448518, -2.160966]], [[54.448518, -2.160966], [54.448482, -2.161116]], [[54.448482, -2.161116], [54.448438, -2.161256]], [[54.448277, -2.16167], [54.448223, -2.161811]], [[54.448223, -2.161811], [54.448175, -2.161945]], [[54.447061, -2.16219], [54.446985, -2.162281]], [[54.446985, -2.162281], [54.446889, -2.162339]], [[54.446889, -2.162339], [54.446807, -2.162422]], [[54.446807, -2.162422], [54.446718, -2.16251]], [[54.446718, -2.16251], [54.446636, -2.162615]], [[54.44647, -2.162761], [54.446386, -2.162853]], [[54.446386, -2.162853], [54.446314, -2.162965]], [[54.446314, -2.162965], [54.446235, -2.163073]], [[54.445992, -2.163297], [54.445911, -2.163403]], [[54.445911, -2.163403], [54.445829, -2.163467]], [[54.445829, -2.163467], [54.445735, -2.163532]], [[54.445478, -2.163781], [54.445397, -2.163879]], [[54.445397, -2.163879], [54.445319, -2.163978]], [[54.445319, -2.163978], [54.445236, -2.164059]], [[54.445068, -2.16421], [54.444971, -2.164238]], [[54.444971, -2.164238], [54.444878, -2.16429]], [[54.444878, -2.16429], [54.444791, -2.164377]], [[54.444791, -2.164377], [54.444709, -2.164461]], [[54.444709, -2.164461], [54.444617, -2.164509]], [[54.444314, -2.164931], [54.444244, -2.165051]], [[54.444244, -2.165051], [54.444179, -2.16516]], [[54.444179, -2.16516], [54.444122, -2.165294]], [[54.444122, -2.165294], [54.444058, -2.165405]], [[54.443861, -2.16579], [54.443775, -2.165878]], [[54.443775, -2.165878], [54.443716, -2.165997]], [[54.44349, -2.166299], [54.443418, -2.166413]], [[54.443418, -2.166413], [54.443358, -2.166539]], [[54.443358, -2.166539], [54.443289, -2.166649]], [[54.443289, -2.166649], [54.443236, -2.166777]], [[54.442917, -2.167571], [54.442844, -2.167665]], [[54.442844, -2.167665], [54.442788, -2.167786]], [[54.442418, -2.168046], [54.442323, -2.168084]], [[54.442323, -2.168084], [54.442229, -2.168095]], [[54.442138, -2.168108], [54.44204, -2.168104]], [[54.44204, -2.168104], [54.441947, -2.168107]], [[54.441947, -2.168107], [54.441852, -2.168132]], [[54.441852, -2.168132], [54.441761, -2.168124]], [[54.441761, -2.168124], [54.441663, -2.168104]], [[54.441374, -2.168067], [54.441273, -2.168065]], [[54.441273, -2.168065], [54.441178, -2.168061]], [[54.441178, -2.168061], [54.441079, -2.168082]], [[54.440501, -2.168065], [54.440407, -2.168014]], [[54.440407, -2.168014], [54.440311, -2.167956]], [[54.440011, -2.168352], [54.439957, -2.168485]], [[54.439957, -2.168485], [54.439887, -2.168589]], [[54.439746, -2.168813], [54.439657, -2.168904]], [[54.439442, -2.16925], [54.439373, -2.169374]], [[54.439373, -2.169374], [54.439302, -2.169491]], [[54.439302, -2.169491], [54.439237, -2.169602]], [[54.439113, -2.169852], [54.439065, -2.169987]], [[54.439065, -2.169987], [54.439026, -2.170133]], [[54.439026, -2.170133], [54.438966, -2.170257]], [[54.438896, -2.170363], [54.438806, -2.17042]], [[54.438646, -2.170627], [54.438582, -2.170736]], [[54.438582, -2.170736], [54.438513, -2.170839]], [[54.438513, -2.170839], [54.438463, -2.170975]], [[54.438323, -2.171216], [54.438248, -2.171318]], [[54.438248, -2.171318], [54.4382, -2.171461]], [[54.4382, -2.171461], [54.438134, -2.171588]], [[54.438134, -2.171588], [54.438066, -2.17169]], [[54.43799, -2.171782], [54.437917, -2.171886]], [[54.437917, -2.171886], [54.437835, -2.171963]], [[54.437835, -2.171963], [54.437754, -2.172031]], [[54.437754, -2.172031], [54.437667, -2.172115]], [[54.437667, -2.172115], [54.437584, -2.172192]], [[54.437584, -2.172192], [54.437517, -2.172303]], [[54.43744, -2.172415], [54.437404, -2.172576]], [[54.437404, -2.172576], [54.437337, -2.172692]], [[54.437337, -2.172692], [54.437281, -2.172813]], [[54.437225, -2.172942], [54.437168, -2.173083]], [[54.437168, -2.173083], [54.437106, -2.173201]], [[54.437025, -2.17331], [54.436951, -2.173404]], [[54.436951, -2.173404], [54.436924, -2.173568]], [[54.436924, -2.173568], [54.436908, -2.173726]], [[54.436866, -2.173865], [54.436774, -2.173934]], [[54.436599, -2.174066], [54.436513, -2.174164]], [[54.436372, -2.174592], [54.436287, -2.174656]], [[54.436287, -2.174656], [54.436211, -2.17476]], [[54.436211, -2.17476], [54.436115, -2.174793]], [[54.436115, -2.174793], [54.436058, -2.174928]], [[54.436058, -2.174928], [54.435981, -2.175007]], [[54.435742, -2.175432], [54.435652, -2.175515]], [[54.435652, -2.175515], [54.435554, -2.175536]], [[54.435378, -2.175633], [54.435294, -2.17572]], [[54.435294, -2.17572], [54.435203, -2.175779]], [[54.435024, -2.175912], [54.434937, -2.175979]], [[54.434937, -2.175979], [54.434845, -2.176055]], [[54.434845, -2.176055], [54.434747, -2.176068]], [[54.434747, -2.176068], [54.434664, -2.176159]], [[54.434664, -2.176159], [54.434594, -2.176256]], [[54.434594, -2.176256], [54.434519, -2.176343]], [[54.434519, -2.176343], [54.434433, -2.176401]], [[54.433927, -2.17679], [54.433845, -2.176711]], [[54.433608, -2.1766], [54.433523, -2.176532]], [[54.433523, -2.176532], [54.433437, -2.176485]], [[54.433437, -2.176485], [54.433349, -2.176418]], [[54.433349, -2.176418], [54.433296, -2.176292]], [[54.433296, -2.176292], [54.433268, -2.17614]], [[54.433125, -2.176256], [54.433046, -2.176348]], [[54.432772, -2.176387], [54.432682, -2.176375]], [[54.432682, -2.176375], [54.432584, -2.176356]], [[54.432584, -2.176356], [54.432486, -2.176316]], [[54.432486, -2.176316], [54.432391, -2.176286]], [[54.432391, -2.176286], [54.432297, -2.176312]], [[54.43221, -2.176365], [54.432119, -2.176363]], [[54.431494, -2.175933], [54.43142, -2.175839]], [[54.43142, -2.175839], [54.431342, -2.175761]], [[54.431342, -2.175761], [54.431242, -2.175741]], [[54.431242, -2.175741], [54.43115, -2.175683]], [[54.43098, -2.175519], [54.430883, -2.175494]], [[54.430883, -2.175494], [54.430785, -2.175471]], [[54.430785, -2.175471], [54.430704, -2.175397]], [[54.430704, -2.175397], [54.430612, -2.175337]], [[54.430612, -2.175337], [54.430522, -2.17531]], [[54.430522, -2.17531], [54.430431, -2.175251]], [[54.430431, -2.175251], [54.430342, -2.175218]], [[54.43016, -2.175079], [54.430071, -2.175025]], [[54.429989, -2.174947], [54.429897, -2.174903]], [[54.429897, -2.174903], [54.429806, -2.174878]], [[54.429806, -2.174878], [54.429712, -2.174839]], [[54.429712, -2.174839], [54.429616, -2.174822]], [[54.429616, -2.174822], [54.429528, -2.174788]], [[54.429528, -2.174788], [54.429433, -2.174742]], [[54.429433, -2.174742], [54.429345, -2.174686]], [[54.429018, -2.174366], [54.428941, -2.174259]], [[54.428941, -2.174259], [54.428857, -2.174175]], [[54.428857, -2.174175], [54.428759, -2.17415]], [[54.428759, -2.17415], [54.428681, -2.174059]], [[54.428477, -2.17375], [54.428396, -2.173648]], [[54.428396, -2.173648], [54.428353, -2.173511]], [[54.428353, -2.173511], [54.428308, -2.173367]], [[54.428308, -2.173367], [54.428236, -2.173263]], [[54.427785, -2.173044], [54.427687, -2.173024]], [[54.427687, -2.173024], [54.427596, -2.173018]], [[54.427596, -2.173018], [54.427499, -2.172994]], [[54.427499, -2.172994], [54.427402, -2.172966]], [[54.427402, -2.172966], [54.427304, -2.172934]], [[54.427304, -2.172934], [54.427216, -2.172882]], [[54.427216, -2.172882], [54.427116, -2.172846]], [[54.42655, -2.172733], [54.42645, -2.172703]], [[54.42627, -2.172606], [54.426171, -2.172619]], [[54.425992, -2.172732], [54.425903, -2.172709]], [[54.425808, -2.172704], [54.42571, -2.172668]], [[54.42571, -2.172668], [54.425615, -2.172666]], [[54.42444, -2.172161], [54.424342, -2.172121]], [[54.424342, -2.172121], [54.42425, -2.172071]], [[54.42416, -2.172027], [54.42407, -2.171994]], [[54.42407, -2.171994], [54.423984, -2.171945]], [[54.423984, -2.171945], [54.423884, -2.17192]], [[54.423884, -2.17192], [54.423785, -2.171877]], [[54.423324, -2.171589], [54.423234, -2.171556]], [[54.422933, -2.171405], [54.422847, -2.171347]], [[54.422847, -2.171347], [54.422766, -2.171272]], [[54.42223, -2.171101], [54.422133, -2.171064]], [[54.422133, -2.171064], [54.422031, -2.171047]], [[54.422031, -2.171047], [54.421942, -2.170984]], [[54.421942, -2.170984], [54.421854, -2.170928]], [[54.421673, -2.170806], [54.421579, -2.170749]], [[54.421396, -2.170636], [54.421294, -2.170648]], [[54.421294, -2.170648], [54.421199, -2.170599]], [[54.421199, -2.170599], [54.421114, -2.170525]], [[54.420961, -2.170321], [54.42087, -2.170361]], [[54.42087, -2.170361], [54.420775, -2.170343]], [[54.420681, -2.170284], [54.420593, -2.170221]], [[54.420593, -2.170221], [54.420494, -2.170226]], [[54.420494, -2.170226], [54.420399, -2.170182]], [[54.420399, -2.170182], [54.420317, -2.170119]], [[54.420153, -2.169945], [54.420068, -2.16985]], [[54.420068, -2.16985], [54.419986, -2.169761]], [[54.419986, -2.169761], [54.419889, -2.169769]], [[54.419889, -2.169769], [54.419799, -2.169756]], [[54.419799, -2.169756], [54.419701, -2.169735]], [[54.419701, -2.169735], [54.419606, -2.169704]], [[54.419606, -2.169704], [54.41951, -2.169677]], [[54.419408, -2.169668], [54.419312, -2.169661]], [[54.419312, -2.169661], [54.419219, -2.169673]], [[54.419219, -2.169673], [54.419121, -2.169664]], [[54.419121, -2.169664], [54.419028, -2.169638]], [[54.419028, -2.169638], [54.418929, -2.169628]], [[54.418929, -2.169628], [54.418826, -2.169609]], [[54.418454, -2.169451], [54.418363, -2.169375]], [[54.418363, -2.169375], [54.418272, -2.169325]], [[54.418272, -2.169325], [54.418182, -2.169284]], [[54.418182, -2.169284], [54.418087, -2.169247]], [[54.418087, -2.169247], [54.417994, -2.169221]], [[54.417994, -2.169221], [54.417901, -2.169201]], [[54.417901, -2.169201], [54.417803, -2.16916]], [[54.417803, -2.16916], [54.417712, -2.169118]], [[54.417535, -2.169009], [54.417445, -2.168942]], [[54.417445, -2.168942], [54.417352, -2.168956]], [[54.417352, -2.168956], [54.417252, -2.168927]], [[54.417161, -2.168876], [54.417069, -2.168825]], [[54.417069, -2.168825], [54.416978, -2.168795]], [[54.416885, -2.168775], [54.41679, -2.168719]], [[54.41679, -2.168719], [54.4167, -2.168656]], [[54.4167, -2.168656], [54.41661, -2.168636]], [[54.41661, -2.168636], [54.41652, -2.16858]], [[54.41652, -2.16858], [54.416435, -2.168509]], [[54.416435, -2.168509], [54.416339, -2.168486]], [[54.416339, -2.168486], [54.416252, -2.168423]], [[54.416252, -2.168423], [54.416155, -2.168385]], [[54.416155, -2.168385], [54.416057, -2.168342]], [[54.416057, -2.168342], [54.415961, -2.168308]], [[54.415961, -2.168308], [54.41587, -2.168249]], [[54.41587, -2.168249], [54.415777, -2.168201]], [[54.415777, -2.168201], [54.415682, -2.168199]], [[54.415682, -2.168199], [54.415591, -2.168141]], [[54.415591, -2.168141], [54.415502, -2.168089]], [[54.41532, -2.168076], [54.415228, -2.168074]], [[54.415228, -2.168074], [54.415141, -2.168023]], [[54.415141, -2.168023], [54.415052, -2.167972]], [[54.415052, -2.167972], [54.414959, -2.16795]], [[54.414959, -2.16795], [54.414863, -2.167957]], [[54.414583, -2.167989], [54.414485, -2.167966]], [[54.414485, -2.167966], [54.414389, -2.167966]], [[54.414389, -2.167966], [54.414292, -2.167925]], [[54.414292, -2.167925], [54.414202, -2.16788]], [[54.414202, -2.16788], [54.414112, -2.167861]], [[54.414022, -2.167878], [54.413923, -2.167871]], [[54.413821, -2.167868], [54.41373, -2.167834]], [[54.413431, -2.167775], [54.413337, -2.167779]], [[54.413337, -2.167779], [54.413243, -2.167777]], [[54.413243, -2.167777], [54.413146, -2.1678]], [[54.413146, -2.1678], [54.413046, -2.16782]], [[54.412673, -2.167795], [54.412583, -2.167758]], [[54.412404, -2.167705], [54.412311, -2.167638]], [[54.412311, -2.167638], [54.412219, -2.167636]], [[54.412219, -2.167636], [54.412125, -2.167653]], [[54.41203, -2.167629], [54.411951, -2.167553]], [[54.411659, -2.167457], [54.411573, -2.167392]], [[54.411479, -2.167413], [54.411383, -2.167416]], [[54.411383, -2.167416], [54.411291, -2.16743]], [[54.411291, -2.16743], [54.411201, -2.167378]], [[54.411201, -2.167378], [54.411104, -2.167318]], [[54.410783, -2.16708], [54.410692, -2.167088]], [[54.410511, -2.16702], [54.410417, -2.167039]], [[54.410417, -2.167039], [54.410318, -2.167012]], [[54.41014, -2.166878], [54.410081, -2.166761]], [[54.410081, -2.166761], [54.409994, -2.166655]], [[54.409994, -2.166655], [54.409906, -2.166595]], [[54.409807, -2.166556], [54.409719, -2.16651]], [[54.409719, -2.16651], [54.409636, -2.166415]], [[54.409487, -2.166221], [54.409404, -2.166153]], [[54.409323, -2.166064], [54.409254, -2.165942]], [[54.409169, -2.165858], [54.409095, -2.165768]], [[54.409095, -2.165768], [54.409027, -2.165648]], [[54.409027, -2.165648], [54.408982, -2.165501]], [[54.408982, -2.165501], [54.408942, -2.165351]], [[54.408942, -2.165351], [54.408898, -2.165197]], [[54.408898, -2.165197], [54.408862, -2.165055]], [[54.408772, -2.16478], [54.408708, -2.164668]], [[54.408431, -2.164462], [54.408351, -2.164372]], [[54.408351, -2.164372], [54.40827, -2.1643]], [[54.40827, -2.1643], [54.408196, -2.16419]], [[54.408196, -2.16419], [54.40812, -2.164105]], [[54.40812, -2.164105], [54.408026, -2.164055]], [[54.408026, -2.164055], [54.407941, -2.164006]], [[54.407941, -2.164006], [54.407857, -2.163946]], [[54.407857, -2.163946], [54.407777, -2.16386]], [[54.407777, -2.16386], [54.407693, -2.163804]], [[54.407693, -2.163804], [54.407602, -2.163755]], [[54.407602, -2.163755], [54.407523, -2.163679]], [[54.407153, -2.163421], [54.407063, -2.163359]], [[54.406484, -2.163018], [54.406394, -2.162976]], [[54.406018, -2.162829], [54.405934, -2.162768]], [[54.405934, -2.162768], [54.40587, -2.162658]], [[54.40587, -2.162658], [54.405791, -2.16258]], [[54.405791, -2.16258], [54.405733, -2.162436]], [[54.405733, -2.162436], [54.405704, -2.162289]], [[54.405704, -2.162289], [54.405655, -2.162139]], [[54.405655, -2.162139], [54.405604, -2.161995]], [[54.405604, -2.161995], [54.405614, -2.161832]], [[54.405622, -2.161677], [54.40562, -2.161519]], [[54.405147, -2.161669], [54.405184, -2.161508]], [[54.405184, -2.161508], [54.405221, -2.161363]], [[54.405118, -2.161501], [54.405018, -2.16148]], [[54.404635, -2.162747], [54.404547, -2.162699]], [[54.404547, -2.162699], [54.404475, -2.162571]], [[54.404334, -2.162349], [54.404275, -2.162232]], [[54.40419, -2.162145], [54.404101, -2.162085]], [[54.404101, -2.162085], [54.404013, -2.162034]], [[54.404013, -2.162034], [54.403918, -2.162019]], [[54.403918, -2.162019], [54.40382, -2.161992]], [[54.403676, -2.16164], [54.403598, -2.161516]], [[54.403552, -2.161381], [54.403522, -2.161236]], [[54.403522, -2.161236], [54.403505, -2.16107]], [[54.403505, -2.16107], [54.403453, -2.160912]], [[54.403387, -2.160604], [54.403324, -2.160479]], [[54.403324, -2.160479], [54.40326, -2.160369]], [[54.403205, -2.160216], [54.40317, -2.160068]], [[54.403236, -2.158916], [54.403222, -2.158761]], [[54.403013, -2.158471], [54.402954, -2.158341]], [[54.401907, -2.156391], [54.401879, -2.156241]], [[54.401879, -2.156241], [54.401827, -2.156109]], [[54.401606, -2.155425], [54.401562, -2.155288]], [[54.401562, -2.155288], [54.40147, -2.155238]], [[54.40147, -2.155238], [54.401465, -2.155083]], [[54.401465, -2.155083], [54.401437, -2.154926]], [[54.401104, -2.154427], [54.401041, -2.154309]], [[54.398041, -2.148961], [54.397969, -2.148843]], [[54.397969, -2.148843], [54.397896, -2.148737]], [[54.397647, -2.148506], [54.397581, -2.148397]], [[54.397581, -2.148397], [54.397509, -2.14829]], [[54.394968, -2.146965], [54.394877, -2.146995]], [[54.394877, -2.146995], [54.394784, -2.147044]], [[54.394048, -2.147403], [54.39396, -2.147476]], [[54.39396, -2.147476], [54.39386, -2.147498]], [[54.39386, -2.147498], [54.39377, -2.147503]], [[54.39377, -2.147503], [54.393677, -2.147537]], [[54.393677, -2.147537], [54.39358, -2.147547]], [[54.39358, -2.147547], [54.393489, -2.147585]], [[54.393489, -2.147585], [54.393395, -2.147622]], [[54.393395, -2.147622], [54.393306, -2.147658]], [[54.393121, -2.147686], [54.393028, -2.14767]], [[54.392928, -2.147673], [54.392829, -2.147685]], [[54.392829, -2.147685], [54.392733, -2.147706]], [[54.392733, -2.147706], [54.392642, -2.147738]], [[54.392358, -2.147874], [54.392258, -2.147873]], [[54.392064, -2.147922], [54.391966, -2.147953]], [[54.391966, -2.147953], [54.391876, -2.14801]], [[54.391876, -2.14801], [54.391787, -2.148041]], [[54.39169, -2.148077], [54.391597, -2.14807]], [[54.391597, -2.14807], [54.391501, -2.1481]], [[54.391321, -2.148183], [54.391231, -2.148218]], [[54.391231, -2.148218], [54.39114, -2.148223]], [[54.39114, -2.148223], [54.391044, -2.148233]], [[54.39062, -2.148466], [54.39053, -2.148499]], [[54.39053, -2.148499], [54.390431, -2.148542]], [[54.390431, -2.148542], [54.390341, -2.148545]], [[54.390341, -2.148545], [54.39025, -2.148544]], [[54.39025, -2.148544], [54.390161, -2.148577]], [[54.390161, -2.148577], [54.390068, -2.148621]], [[54.390068, -2.148621], [54.389978, -2.148668]], [[54.389978, -2.148668], [54.389881, -2.148701]], [[54.389789, -2.148728], [54.389697, -2.148766]], [[54.389697, -2.148766], [54.389606, -2.148825]], [[54.389606, -2.148825], [54.389512, -2.148865]], [[54.389512, -2.148865], [54.389424, -2.148918]], [[54.389424, -2.148918], [54.389326, -2.148961]], [[54.389326, -2.148961], [54.389233, -2.149007]], [[54.389233, -2.149007], [54.389145, -2.14905]], [[54.389145, -2.14905], [54.389045, -2.149088]], [[54.389045, -2.149088], [54.388953, -2.149157]], [[54.388953, -2.149157], [54.388868, -2.149247]], [[54.388868, -2.149247], [54.388776, -2.149316]], [[54.388776, -2.149316], [54.38868, -2.14934]], [[54.38868, -2.14934], [54.388586, -2.149387]], [[54.388586, -2.149387], [54.388498, -2.149465]], [[54.388498, -2.149465], [54.388432, -2.149572]], [[54.388432, -2.149572], [54.38835, -2.149661]], [[54.388166, -2.149744], [54.388072, -2.149728]], [[54.387716, -2.149884], [54.387623, -2.149959]], [[54.387623, -2.149959], [54.387537, -2.150007]], [[54.387537, -2.150007], [54.38745, -2.15006]], [[54.38745, -2.15006], [54.387355, -2.1501]], [[54.387355, -2.1501], [54.387256, -2.150106]], [[54.38664, -2.150095], [54.386536, -2.150117]], [[54.386339, -2.150119], [54.386245, -2.150135]], [[54.386245, -2.150135], [54.386152, -2.150159]], [[54.386152, -2.150159], [54.386061, -2.150172]], [[54.386061, -2.150172], [54.385968, -2.150213]], [[54.385968, -2.150213], [54.385874, -2.150249]], [[54.385599, -2.150316], [54.385505, -2.15035]], [[54.385146, -2.150539], [54.385047, -2.150539]], [[54.385047, -2.150539], [54.38495, -2.150533]], [[54.38495, -2.150533], [54.38486, -2.15055]], [[54.38486, -2.15055], [54.384769, -2.150588]], [[54.384769, -2.150588], [54.384678, -2.150557]], [[54.384678, -2.150557], [54.384585, -2.15051]], [[54.384455, -2.150482], [54.384359, -2.150405]], [[54.384217, -2.150175], [54.384137, -2.150079]], [[54.384137, -2.150079], [54.384065, -2.149958]], [[54.384065, -2.149958], [54.383979, -2.149884]], [[54.383979, -2.149884], [54.383886, -2.149862]], [[54.383886, -2.149862], [54.383793, -2.149866]], [[54.383793, -2.149866], [54.383695, -2.149877]], [[54.383314, -2.149848], [54.383224, -2.149834]], [[54.383224, -2.149834], [54.383133, -2.149812]], [[54.383133, -2.149812], [54.38304, -2.149815]], [[54.38304, -2.149815], [54.382948, -2.149848]], [[54.382948, -2.149848], [54.382854, -2.149853]], [[54.382765, -2.149876], [54.382673, -2.149926]], [[54.382673, -2.149926], [54.382678, -2.150081]], [[54.382678, -2.150081], [54.382715, -2.150224]], [[54.382715, -2.150224], [54.382761, -2.150365]], [[54.382761, -2.150365], [54.382774, -2.150528]], [[54.382727, -2.150668], [54.382664, -2.150796]], [[54.382664, -2.150796], [54.382618, -2.150937]], [[54.382428, -2.151322], [54.382355, -2.15142]], [[54.382305, -2.151826], [54.382293, -2.151982]], [[54.382293, -2.151982], [54.382252, -2.152138]], [[54.382207, -2.152457], [54.382204, -2.152622]], [[54.382204, -2.152622], [54.382209, -2.152783]], [[54.382209, -2.152783], [54.382209, -2.152938]], [[54.382159, -2.153746], [54.38213, -2.153895]], [[54.38213, -2.153895], [54.382034, -2.153958]], [[54.382034, -2.153958], [54.381942, -2.153957]], [[54.381942, -2.153957], [54.381845, -2.153928]], [[54.381845, -2.153928], [54.381748, -2.153927]], [[54.381506, -2.153767], [54.381423, -2.153697]], [[54.381423, -2.153697], [54.381329, -2.153703]], [[54.381329, -2.153703], [54.381241, -2.153646]], [[54.381241, -2.153646], [54.381144, -2.153674]], [[54.381144, -2.153674], [54.38106, -2.153755]], [[54.38106, -2.153755], [54.381033, -2.153923]], [[54.381033, -2.153923], [54.380953, -2.153998]], [[54.380953, -2.153998], [54.380919, -2.15416]], [[54.380919, -2.15416], [54.380871, -2.154301]], [[54.380648, -2.154875], [54.380606, -2.155022]], [[54.380606, -2.155022], [54.380558, -2.155159]], [[54.380558, -2.155159], [54.380503, -2.155286]], [[54.380503, -2.155286], [54.380485, -2.155444]], [[54.380645, -2.156524], [54.380636, -2.156687]], [[54.380636, -2.156687], [54.380643, -2.15684]], [[54.380683, -2.157308], [54.380665, -2.15746]], [[54.380665, -2.15746], [54.380698, -2.157612]], [[54.380698, -2.157612], [54.380736, -2.157769]], [[54.380736, -2.157769], [54.380768, -2.157923]], [[54.380768, -2.157923], [54.380791, -2.158089]], [[54.380791, -2.158089], [54.38082, -2.158249]], [[54.380972, -2.16142], [54.380927, -2.161564]], [[54.380927, -2.161564], [54.380879, -2.161714]], [[54.380879, -2.161714], [54.380813, -2.161832]], [[54.380813, -2.161832], [54.380742, -2.161953]], [[54.380742, -2.161953], [54.380681, -2.162085]], [[54.380681, -2.162085], [54.380634, -2.162222]], [[54.380634, -2.162222], [54.380602, -2.162369]], [[54.380602, -2.162369], [54.38059, -2.162537]], [[54.38059, -2.162537], [54.380574, -2.162696]], [[54.380574, -2.162696], [54.380562, -2.162867]], [[54.380562, -2.162867], [54.380557, -2.163024]], [[54.380557, -2.163024], [54.380579, -2.163191]], [[54.380438, -2.163483], [54.380353, -2.163564]], [[54.380353, -2.163564], [54.380259, -2.163632]], [[54.380259, -2.163632], [54.380176, -2.163705]], [[54.380176, -2.163705], [54.380089, -2.163762]], [[54.380089, -2.163762], [54.379993, -2.163805]], [[54.379993, -2.163805], [54.379903, -2.163849]], [[54.379903, -2.163849], [54.379825, -2.163937]], [[54.379825, -2.163937], [54.379764, -2.16405]], [[54.379764, -2.16405], [54.379703, -2.164181]], [[54.379703, -2.164181], [54.37964, -2.164308]], [[54.37964, -2.164308], [54.379575, -2.164428]], [[54.379363, -2.164978], [54.379288, -2.165094]], [[54.379288, -2.165094], [54.379216, -2.165193]], [[54.379216, -2.165193], [54.379146, -2.165296]], [[54.379146, -2.165296], [54.37912, -2.165459]], [[54.379197, -2.166264], [54.379217, -2.166418]], [[54.379217, -2.166418], [54.379193, -2.166578]], [[54.379103, -2.166808], [54.379154, -2.166944]], [[54.379225, -2.167415], [54.379243, -2.167571]], [[54.379243, -2.167571], [54.379255, -2.167739]], [[54.379255, -2.167739], [54.379273, -2.1679]], [[54.378995, -2.167946], [54.378897, -2.167969]], [[54.378897, -2.167969], [54.378799, -2.168001]], [[54.378799, -2.168001], [54.378702, -2.168024]], [[54.378702, -2.168024], [54.378622, -2.167934]], [[54.378622, -2.167934], [54.378552, -2.167823]], [[54.378552, -2.167823], [54.378476, -2.167723]], [[54.378398, -2.167616], [54.378327, -2.16752]], [[54.378327, -2.16752], [54.378242, -2.16747]], [[54.378242, -2.16747], [54.378183, -2.167337]], [[54.378183, -2.167337], [54.378103, -2.167229]], [[54.378103, -2.167229], [54.378026, -2.167133]], [[54.378026, -2.167133], [54.37794, -2.167039]], [[54.37794, -2.167039], [54.377858, -2.166957]], [[54.377858, -2.166957], [54.377775, -2.166865]], [[54.377775, -2.166865], [54.377692, -2.166773]], [[54.377692, -2.166773], [54.377604, -2.166688]], [[54.377388, -2.166355], [54.377316, -2.166246]], [[54.377316, -2.166246], [54.377237, -2.166155]], [[54.377237, -2.166155], [54.377166, -2.166027]], [[54.376781, -2.164108], [54.376798, -2.163946]], [[54.376798, -2.163946], [54.376814, -2.163775]], [[54.376814, -2.163775], [54.376842, -2.163623]], [[54.376842, -2.163623], [54.376866, -2.163455]], [[54.376866, -2.163455], [54.376883, -2.163288]], [[54.376883, -2.163288], [54.376906, -2.163126]], [[54.376906, -2.163126], [54.376934, -2.162976]], [[54.376963, -2.162502], [54.376964, -2.162332]], [[54.376964, -2.162332], [54.376988, -2.162174]], [[54.376988, -2.162174], [54.376994, -2.162008]], [[54.376994, -2.162008], [54.377007, -2.161847]], [[54.377093, -2.1614], [54.377128, -2.161257]], [[54.377128, -2.161257], [54.377143, -2.161105]], [[54.377143, -2.161105], [54.377142, -2.160935]], [[54.377142, -2.160935], [54.377145, -2.160776]], [[54.377145, -2.160776], [54.377135, -2.160621]], [[54.377135, -2.160621], [54.377112, -2.16046]], [[54.37713, -2.159853], [54.377198, -2.159727]], [[54.377198, -2.159727], [54.377256, -2.15959]], [[54.377256, -2.15959], [54.377298, -2.159435]], [[54.377298, -2.159435], [54.377316, -2.159276]], [[54.377316, -2.159276], [54.37738, -2.159131]], [[54.377554, -2.158555], [54.377573, -2.158396]], [[54.377573, -2.158396], [54.377579, -2.158229]], [[54.377579, -2.158229], [54.377597, -2.158063]], [[54.377597, -2.158063], [54.377602, -2.157885]], [[54.377603, -2.157546], [54.377608, -2.15739]], [[54.377611, -2.157064], [54.377587, -2.156904]], [[54.377587, -2.156904], [54.377537, -2.156753]], [[54.377537, -2.156753], [54.377479, -2.156626]], [[54.377479, -2.156626], [54.377423, -2.156489]], [[54.377194, -2.155944], [54.377131, -2.155812]], [[54.377131, -2.155812], [54.377062, -2.155696]], [[54.37696, -2.154254], [54.376942, -2.154096]], [[54.376933, -2.153935], [54.37692, -2.153763]], [[54.37692, -2.153763], [54.376915, -2.153602]], [[54.376894, -2.153283], [54.376886, -2.153111]], [[54.376886, -2.153111], [54.37687, -2.152951]], [[54.37687, -2.152951], [54.376891, -2.152795]], [[54.377082, -2.15237], [54.37711, -2.152212]], [[54.37711, -2.152212], [54.377138, -2.152054]], [[54.377138, -2.152054], [54.377196, -2.151908]], [[54.377369, -2.151771], [54.377452, -2.151711]], [[54.377452, -2.151711], [54.377491, -2.151569]], [[54.377491, -2.151569], [54.377489, -2.15141]], [[54.377489, -2.15141], [54.37742, -2.151297]], [[54.37742, -2.151297], [54.377327, -2.151353]], [[54.377486, -2.151357], [54.377514, -2.151514]], [[54.377514, -2.151514], [54.377478, -2.151677]], [[54.377478, -2.151677], [54.377398, -2.151789]], [[54.377304, -2.151823], [54.377223, -2.151921]], [[54.377223, -2.151921], [54.377155, -2.152022]], [[54.377155, -2.152022], [54.377107, -2.152168]], [[54.377107, -2.152168], [54.377084, -2.152333]], [[54.377084, -2.152333], [54.377024, -2.152467]], [[54.376977, -2.152744], [54.37691, -2.152624]], [[54.376913, -2.152865], [54.376988, -2.152763]], [[54.377307, -2.151812], [54.377397, -2.151772]], [[54.377397, -2.151772], [54.377492, -2.15171]], [[54.377538, -2.151564], [54.377514, -2.151407]], [[54.377514, -2.151407], [54.377434, -2.151325]], [[54.377434, -2.151325], [54.377343, -2.151399]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_3fbb77d0a9badd430838515446e859b3 = L.polyline(
                [[[54.623689, -2.080747], [54.623424, -2.080842]], [[54.623451, -2.080855], [54.623519, -2.08065]], [[54.623824, -2.082831], [54.623803, -2.082996]], [[54.618723, -2.084116], [54.618665, -2.08376]], [[54.618734, -2.084039], [54.618778, -2.084203]], [[54.618727, -2.085519], [54.618644, -2.085444]], [[54.613706, -2.093149], [54.613718, -2.093303]], [[54.605097, -2.117267], [54.605059, -2.117357]], [[54.60317, -2.119612], [54.603172, -2.119619]], [[54.601518, -2.121341], [54.601437, -2.12144]], [[54.59726, -2.118986], [54.597182, -2.118884]], [[54.597126, -2.118877], [54.597067, -2.118756]], [[54.594776, -2.117128], [54.594698, -2.117042]], [[54.589593, -2.115922], [54.589525, -2.115807]], [[54.58948, -2.113675], [54.589475, -2.113504]], [[54.585933, -2.110187], [54.58584, -2.11018]], [[54.581307, -2.111634], [54.581209, -2.111625]], [[54.566078, -2.104365], [54.565983, -2.104397]], [[54.565059, -2.103653], [54.564994, -2.103532]], [[54.55768, -2.103621], [54.557593, -2.103569]], [[54.539563, -2.090477], [54.539469, -2.090419]], [[54.534769, -2.086891], [54.534717, -2.086864]], [[54.527975, -2.081432], [54.527971, -2.081261]], [[54.527107, -2.079771], [54.527054, -2.079631]], [[54.525989, -2.078161], [54.525893, -2.078153]], [[54.514465, -2.068838], [54.51446, -2.068886]], [[54.512655, -2.070703], [54.512564, -2.070623]], [[54.510794, -2.071971], [54.510782, -2.071815]], [[54.50839, -2.068023], [54.508391, -2.06804]], [[54.508391, -2.06804], [54.508428, -2.067891]], [[54.508132, -2.0678], [54.508087, -2.067789]], [[54.508087, -2.067789], [54.507989, -2.067803]], [[54.50299, -2.06686], [54.503014, -2.066693]], [[54.491791, -2.067317], [54.491743, -2.067304]], [[54.48907, -2.069012], [54.488976, -2.068988]], [[54.488635, -2.068918], [54.488542, -2.068938]], [[54.485625, -2.07144], [54.485621, -2.071443]], [[54.485621, -2.071443], [54.485555, -2.071575]], [[54.485289, -2.072055], [54.485292, -2.072054]], [[54.485292, -2.072054], [54.485217, -2.072143]], [[54.48395, -2.074045], [54.483915, -2.074195]], [[54.478979, -2.092087], [54.478929, -2.092228]], [[54.476507, -2.102566], [54.476535, -2.102578]], [[54.472832, -2.1159], [54.472791, -2.116053]], [[54.472337, -2.118199], [54.47229, -2.118341]], [[54.468152, -2.131597], [54.468108, -2.131736]], [[54.462464, -2.149962], [54.462368, -2.14997]], [[54.461517, -2.151219], [54.461476, -2.151222]], [[54.461397, -2.151311], [54.461321, -2.151403]], [[54.455512, -2.160412], [54.456107, -2.160295]], [[54.443047, -2.167317], [54.443005, -2.167476]], [[54.428189, -2.173227], [54.428112, -2.173129]], [[54.428112, -2.173129], [54.428065, -2.173137]], [[54.428065, -2.173137], [54.427969, -2.173107]], [[54.422607, -2.170981], [54.422513, -2.171025]], [[54.408621, -2.164625], [54.408597, -2.164615]], [[54.408597, -2.164615], [54.408504, -2.164561]], [[54.407012, -2.163326], [54.406921, -2.163295]], [[54.404864, -2.161854], [54.404871, -2.161853]], [[54.404871, -2.161853], [54.404797, -2.161953]], [[54.404723, -2.163025], [54.404653, -2.162911]], [[54.398151, -2.149213], [54.398086, -2.149101]], [[54.394602, -2.147114], [54.394584, -2.147136]], [[54.394584, -2.147136], [54.394509, -2.147222]], [[54.388026, -2.149729], [54.387931, -2.149724]], [[54.387931, -2.149724], [54.387879, -2.149739]], [[54.387879, -2.149739], [54.387792, -2.149796]], [[54.387183, -2.150081], [54.387107, -2.15017]], [[54.384556, -2.150502], [54.384455, -2.150482]], [[54.381571, -2.153884], [54.381575, -2.15388]], [[54.381065, -2.161124], [54.381009, -2.16126]], [[54.380576, -2.163265], [54.380522, -2.163407]], [[54.379487, -2.164725], [54.379429, -2.164851]], [[54.377053, -2.152695], [54.377064, -2.152539]], [[54.377312, -2.151492], [54.377314, -2.151468]], [[54.376813, -2.152863], [54.376913, -2.152865]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_4fbeaec9ea186e1e15e2be81046d4629 = L.polyline(
                [[[54.623424, -2.080842], [54.623451, -2.080855]], [[54.623519, -2.08065], [54.62361, -2.080673]], [[54.623689, -2.080593], [54.623678, -2.080603]], [[54.623623, -2.080823], [54.623551, -2.080918]], [[54.623614, -2.081029], [54.623616, -2.081061]], [[54.618644, -2.085444], [54.618556, -2.085396]], [[54.61569, -2.088076], [54.615654, -2.088126]], [[54.615654, -2.088126], [54.615595, -2.088245]], [[54.613767, -2.092355], [54.613729, -2.092488]], [[54.613729, -2.092488], [54.613736, -2.092662]], [[54.613711, -2.093151], [54.613706, -2.093149]], [[54.61183, -2.102757], [54.611767, -2.102856]], [[54.611767, -2.102856], [54.611672, -2.102851]], [[54.610011, -2.106345], [54.60995, -2.106423]], [[54.60995, -2.106423], [54.609861, -2.106501]], [[54.606075, -2.110165], [54.606046, -2.110169]], [[54.605964, -2.110236], [54.605882, -2.110338]], [[54.605275, -2.113005], [54.605229, -2.113162]], [[54.605059, -2.117357], [54.605079, -2.117514]], [[54.604526, -2.118541], [54.604592, -2.118536]], [[54.603097, -2.119716], [54.603036, -2.119836]], [[54.602561, -2.120618], [54.602498, -2.120701]], [[54.601526, -2.121327], [54.601518, -2.121341]], [[54.601437, -2.12144], [54.601341, -2.121477]], [[54.601056, -2.121971], [54.600968, -2.122051]], [[54.600654, -2.122066], [54.600557, -2.122072]], [[54.600125, -2.121769], [54.600108, -2.121748]], [[54.600108, -2.121748], [54.600035, -2.121655]], [[54.597182, -2.118884], [54.597126, -2.118877]], [[54.597028, -2.118752], [54.596953, -2.11885]], [[54.596765, -2.118883], [54.596702, -2.11887]], [[54.596702, -2.11887], [54.596612, -2.118789]], [[54.589776, -2.115884], [54.589753, -2.115907]], [[54.589753, -2.115907], [54.589663, -2.11587]], [[54.589512, -2.111148], [54.589527, -2.111144]], [[54.589534, -2.111314], [54.589535, -2.111474]], [[54.588845, -2.108996], [54.588811, -2.109064]], [[54.588811, -2.109064], [54.588724, -2.109113]], [[54.588137, -2.109755], [54.588106, -2.109749]], [[54.588106, -2.109749], [54.588009, -2.109741]], [[54.58053, -2.111396], [54.580483, -2.111379]], [[54.580483, -2.111379], [54.580385, -2.111375]], [[54.575505, -2.109448], [54.575486, -2.109495]], [[54.575486, -2.109495], [54.5754, -2.109549]], [[54.575023, -2.109686], [54.57498, -2.109721]], [[54.57498, -2.109721], [54.57488, -2.10972]], [[54.566116, -2.105116], [54.566089, -2.104956]], [[54.565983, -2.104397], [54.565895, -2.104345]], [[54.56506, -2.103661], [54.565059, -2.103653]], [[54.5604, -2.101449], [54.560406, -2.101441]], [[54.558685, -2.105848], [54.558629, -2.105717]], [[54.555228, -2.101479], [54.555137, -2.101456]], [[54.554591, -2.101554], [54.554551, -2.101588]], [[54.554551, -2.101588], [54.554455, -2.101621]], [[54.548222, -2.098691], [54.548229, -2.098593]], [[54.548229, -2.098593], [54.548228, -2.098426]], [[54.548228, -2.098426], [54.548229, -2.098353]], [[54.548229, -2.098179], [54.548258, -2.098019]], [[54.545122, -2.093156], [54.54511, -2.093134]], [[54.545014, -2.093131], [54.544929, -2.093071]], [[54.540194, -2.090915], [54.540103, -2.090863]], [[54.539571, -2.090469], [54.539563, -2.090477]], [[54.52845, -2.082145], [54.528514, -2.08226]], [[54.528514, -2.08226], [54.528485, -2.082345]], [[54.528485, -2.082345], [54.528441, -2.082202]], [[54.528057, -2.081593], [54.527985, -2.08148]], [[54.527985, -2.08148], [54.527975, -2.081432]], [[54.527134, -2.079821], [54.527107, -2.079771]], [[54.526357, -2.078116], [54.526303, -2.078107]], [[54.526303, -2.078107], [54.526206, -2.07812]], [[54.526016, -2.078154], [54.525989, -2.078161]], [[54.51446, -2.068886], [54.514424, -2.069036]], [[54.512631, -2.070655], [54.512655, -2.070703]], [[54.511225, -2.071721], [54.511211, -2.071762]], [[54.511151, -2.072631], [54.51116, -2.072595]], [[54.510713, -2.072542], [54.510712, -2.072554]], [[54.510726, -2.072399], [54.510774, -2.072268]], [[54.510782, -2.071815], [54.51081, -2.071648]], [[54.510923, -2.070204], [54.510924, -2.070189]], [[54.510923, -2.070026], [54.510856, -2.069913]], [[54.508991, -2.068085], [54.5089, -2.068064]], [[54.508428, -2.067891], [54.50848, -2.067748]], [[54.508291, -2.067803], [54.508223, -2.067808]], [[54.508223, -2.067808], [54.508132, -2.0678]], [[54.507605, -2.067856], [54.507616, -2.067881]], [[54.507521, -2.067923], [54.507425, -2.067923]], [[54.498166, -2.060457], [54.498157, -2.060456]], [[54.498061, -2.060471], [54.497983, -2.060555]], [[54.495614, -2.062678], [54.495529, -2.062772]], [[54.491743, -2.067304], [54.491646, -2.067289]], [[54.4912, -2.068064], [54.491105, -2.068137]], [[54.488686, -2.068961], [54.488635, -2.068918]], [[54.478986, -2.092708], [54.47901, -2.092774]], [[54.47901, -2.092774], [54.478978, -2.092936]], [[54.477684, -2.098933], [54.477609, -2.099031]], [[54.476485, -2.102715], [54.476454, -2.102864]], [[54.47284, -2.115882], [54.472832, -2.1159]], [[54.472378, -2.118184], [54.472337, -2.118199]], [[54.47229, -2.118341], [54.472271, -2.118508]], [[54.468108, -2.131736], [54.468087, -2.131895]], [[54.462504, -2.149877], [54.462464, -2.149962]], [[54.462368, -2.14997], [54.462323, -2.150123]], [[54.461971, -2.150665], [54.461894, -2.150728]], [[54.461894, -2.150728], [54.461816, -2.15081]], [[54.461816, -2.15081], [54.461738, -2.150911]], [[54.458441, -2.155357], [54.458398, -2.155413]], [[54.458309, -2.155437], [54.458212, -2.155453]], [[54.45556, -2.160046], [54.455508, -2.160177]], [[54.455508, -2.160177], [54.455513, -2.160253]], [[54.455575, -2.160136], [54.455671, -2.160092]], [[54.456003, -2.160194], [54.455911, -2.160168]], [[54.456107, -2.160295], [54.456019, -2.160189]], [[54.435879, -2.175227], [54.43585, -2.175219]], [[54.43583, -2.175372], [54.435742, -2.175432]], [[54.428236, -2.173263], [54.428189, -2.173227]], [[54.427969, -2.173107], [54.427882, -2.173054]], [[54.423234, -2.171556], [54.423222, -2.171544]], [[54.423119, -2.171521], [54.423026, -2.171463]], [[54.411033, -2.167244], [54.410963, -2.167143]], [[54.410963, -2.167143], [54.410875, -2.167084]], [[54.406394, -2.162976], [54.406382, -2.163041]], [[54.406382, -2.163041], [54.406288, -2.163007]], [[54.406288, -2.163007], [54.406266, -2.163056]], [[54.405221, -2.161363], [54.405189, -2.161404]], [[54.405189, -2.161404], [54.405118, -2.161501]], [[54.404797, -2.161953], [54.404785, -2.162064]], [[54.404785, -2.162064], [54.404789, -2.162222]], [[54.404735, -2.162462], [54.404766, -2.16261]], [[54.404766, -2.16261], [54.404766, -2.16275]], [[54.404766, -2.16275], [54.404734, -2.162897]], [[54.404734, -2.162897], [54.404723, -2.163025]], [[54.404653, -2.162911], [54.404635, -2.162747]], [[54.403759, -2.161726], [54.403676, -2.16164]], [[54.403139, -2.159943], [54.403089, -2.159807]], [[54.403089, -2.159807], [54.403079, -2.159644]], [[54.403079, -2.159644], [54.40311, -2.159498]], [[54.403169, -2.159357], [54.403228, -2.159237]], [[54.403228, -2.159237], [54.403218, -2.159078]], [[54.402192, -2.156737], [54.402109, -2.156648]], [[54.402109, -2.156648], [54.402027, -2.156624]], [[54.402027, -2.156624], [54.401952, -2.156528]], [[54.401218, -2.154624], [54.401184, -2.154518]], [[54.401184, -2.154518], [54.401104, -2.154427]], [[54.400981, -2.15419], [54.400928, -2.154058]], [[54.400928, -2.154058], [54.400847, -2.153993]], [[54.400847, -2.153993], [54.400775, -2.153888]], [[54.400775, -2.153888], [54.400739, -2.153735]], [[54.400739, -2.153735], [54.400685, -2.153611]], [[54.400685, -2.153611], [54.400627, -2.153502]], [[54.400627, -2.153502], [54.400536, -2.15343]], [[54.400407, -2.153205], [54.400351, -2.153075]], [[54.400351, -2.153075], [54.40029, -2.152947]], [[54.400135, -2.152769], [54.400058, -2.152829]], [[54.400058, -2.152829], [54.399992, -2.152715]], [[54.399992, -2.152715], [54.399931, -2.152601]], [[54.399931, -2.152601], [54.399887, -2.152465]], [[54.399313, -2.151469], [54.399248, -2.151357]], [[54.398938, -2.150796], [54.398878, -2.150675]], [[54.398189, -2.149231], [54.398151, -2.149213]], [[54.397811, -2.148668], [54.397722, -2.148595]], [[54.396824, -2.147797], [54.396732, -2.147831]], [[54.396732, -2.147831], [54.396645, -2.147768]], [[54.396645, -2.147768], [54.396554, -2.147721]], [[54.395242, -2.146975], [54.395149, -2.146997]], [[54.394689, -2.147053], [54.394602, -2.147114]], [[54.394416, -2.147215], [54.394319, -2.14724]], [[54.394319, -2.14724], [54.394228, -2.147298]], [[54.394139, -2.147326], [54.394123, -2.147296]], [[54.394123, -2.147296], [54.394048, -2.147403]], [[54.390876, -2.148345], [54.390808, -2.148369]], [[54.390808, -2.148369], [54.390717, -2.148418]], [[54.388072, -2.149728], [54.388026, -2.149729]], [[54.387107, -2.15017], [54.387017, -2.150181]], [[54.387017, -2.150181], [54.386921, -2.150132]], [[54.384585, -2.15051], [54.384556, -2.150502]], [[54.382355, -2.15142], [54.382303, -2.151504]], [[54.382303, -2.151504], [54.382326, -2.151668]], [[54.381575, -2.15388], [54.381506, -2.153767]], [[54.380871, -2.154301], [54.380867, -2.154334]], [[54.380817, -2.154478], [54.380765, -2.154618]], [[54.380502, -2.155607], [54.380527, -2.155761]], [[54.380527, -2.155761], [54.380532, -2.155923]], [[54.380532, -2.155923], [54.380531, -2.15608]], [[54.380872, -2.159371], [54.380857, -2.159539]], [[54.380902, -2.159811], [54.380913, -2.159973]], [[54.380994, -2.160253], [54.381016, -2.160403]], [[54.381016, -2.160403], [54.381017, -2.160518]], [[54.381017, -2.160518], [54.381019, -2.160684]], [[54.381014, -2.161004], [54.381065, -2.161124]], [[54.381009, -2.16126], [54.380972, -2.16142]], [[54.380579, -2.163191], [54.380576, -2.163265]], [[54.380522, -2.163407], [54.380438, -2.163483]], [[54.379575, -2.164428], [54.379553, -2.164501]], [[54.379553, -2.164501], [54.379506, -2.164652]], [[54.379506, -2.164652], [54.379487, -2.164725]], [[54.37912, -2.165459], [54.379143, -2.165538]], [[54.379143, -2.165538], [54.379151, -2.1657]], [[54.379143, -2.166006], [54.37917, -2.166101]], [[54.37917, -2.166101], [54.379197, -2.166264]], [[54.379273, -2.1679], [54.379299, -2.167813]], [[54.379299, -2.167813], [54.379396, -2.167777]], [[54.379396, -2.167777], [54.379379, -2.16783]], [[54.376921, -2.152644], [54.376994, -2.152517]], [[54.376994, -2.152517], [54.376947, -2.152583]], [[54.377031, -2.152669], [54.377053, -2.152695]], [[54.377246, -2.151376], [54.377312, -2.151492]], [[54.377404, -2.151437], [54.377486, -2.151357]], [[54.37691, -2.152624], [54.3769, -2.152583]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            var poly_line_383f7aeefee0a0877483bd8c38f5d183 = L.polyline(
                [[[54.623678, -2.080603], [54.623634, -2.08074]], [[54.623634, -2.08074], [54.623623, -2.080823]], [[54.623616, -2.081061], [54.623589, -2.08122]], [[54.606046, -2.110169], [54.605964, -2.110236]], [[54.603172, -2.119619], [54.603097, -2.119716]], [[54.600742, -2.12201], [54.600654, -2.122066]], [[54.597303, -2.119129], [54.59726, -2.118986]], [[54.597067, -2.118756], [54.597028, -2.118752]], [[54.589527, -2.111144], [54.589534, -2.111314]], [[54.560406, -2.101441], [54.560346, -2.101581]], [[54.558668, -2.106001], [54.558685, -2.105848]], [[54.548229, -2.098353], [54.548229, -2.098179]], [[54.54511, -2.093134], [54.545014, -2.093131]], [[54.511211, -2.071762], [54.51124, -2.071911]], [[54.51116, -2.072595], [54.510995, -2.072604]], [[54.510712, -2.072554], [54.510726, -2.072399]], [[54.510924, -2.070189], [54.510923, -2.070026]], [[54.507616, -2.067881], [54.507521, -2.067923]], [[54.498157, -2.060456], [54.498061, -2.060471]], [[54.477678, -2.098776], [54.477684, -2.098933]], [[54.476535, -2.102578], [54.476485, -2.102715]], [[54.461476, -2.151222], [54.461397, -2.151311]], [[54.458398, -2.155413], [54.458309, -2.155437]], [[54.455513, -2.160253], [54.455575, -2.160136]], [[54.456083, -2.160267], [54.456003, -2.160194]], [[54.43585, -2.175219], [54.43583, -2.175372]], [[54.423222, -2.171544], [54.423119, -2.171521]], [[54.406266, -2.163056], [54.4062, -2.162931]], [[54.380867, -2.154334], [54.380817, -2.154478]], [[54.379379, -2.16783], [54.379294, -2.167915]], [[54.377314, -2.151468], [54.377404, -2.151437]], [[54.3769, -2.152583], [54.376778, -2.15296]], [[54.376778, -2.15296], [54.376813, -2.152863]], [[54.3773, -2.151475], [54.377321, -2.151525]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_658cc468865489efb4b91681967796d1);
        
    
            color_line_658cc468865489efb4b91681967796d1.addTo(map_71a7d122ffcfff6ebf8c4d49ebf5ef4e);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-8---thwaite-to-horton-in-ribblesdale" class="level3">
<h3 class="anchored" data-anchor-id="day-8---thwaite-to-horton-in-ribblesdale">Day 8 - Thwaite to Horton in Ribblesdale</h3>
<p>Up early (there is a theme here!) and packing the tent away I left before most of the Duke of Edinbrough hikers were up. Reception wasn’t open so I went to post my £10 through the letter box just as a lady was sorting reception for the day. She was very grateful and wished me luck on my days hiking.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53964500208_4add2bd5e8_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdEaPo" target="_blank">Sunrise from Usha Gap Campsite</a></figcaption>
</figure>
</div>
<p>I found a path along Muker Beck back to Thwaite which was a lot more pleasant the following the road I’d come down the previous evening and had soon passed through Thwaite and started heading up Dam Hill on a good compact farm track. This turned to flagstones as the path joined the open moorland and I had a good target to reach of a prominent cairn.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53964581849_1c6675de39_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qdEA5Z" target="_blank">Sunlit Swaledale</a></figcaption>
</figure>
</div>
<p>I find setting myself short targets of reaching feature X or the other side of the valley in a certain number of minutes a good motivational way to keep moving quickly. Within no time I found I’d reached the cairn and paused to snap some pictures looking back down <a href="https://www.yorkshiredales.org.uk/places/swaledale/" target="_blank">Swaledale</a> before continuing over Great Shunner Fell.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937962499_62ab462420_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbja5F" target="_blank">From Dam Hill Cairn</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/54002652842_d625748318_3k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qh2Hgq" target="_blank">Swaledale from Great Shunner Fell</a></figcaption>
</figure>
</div>
<p>There were great views to the North West but some ominous grey clouds were looming on the horizon so I didn’t hang around too long admiring the view, instead dropping down quickly to reach <a href="https://en.wikipedia.org/wiki/Hawes" target="_blank">Hawes</a> for lunch. This section was longer than I expected and only served to reassure me I’d made the right decision the previous night not to tackle it in the fading light.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53936726917_7a940e9efc_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbcPMx" target="_blank">Lots of Moorland</a></figcaption>
</figure>
</div>
<p>Passing through <a href="https://en.wikipedia.org/wiki/Hardraw" target="_blank">Hardraw</a> I was tempted to duck into The Green Dragon for a pint but mindful of the grey skies I kept on going to <a href="https://en.wikipedia.org/wiki/Hawes" target="_blank">Hawes</a> instead where there were more options for lunch. In hindsight I wish I had stopped as it is home to England’s highest waterfall, <a href="https://en.wikipedia.org/wiki/Hardraw_Force" target="_blank">Hardraw Force</a> which I didn’t know about, although you have to pay to access it which would likely have put me off.</p>
<p>A shower passed as I made my way to <a href="https://en.wikipedia.org/wiki/Hawes" target="_blank">Hawes</a> which is a lovely village in <a href="https://en.wikipedia.org/wiki/Wensleydale" target="_blank">Wensleydale</a>. None of the pubs opened until mid-day so instead I opted for lunch in <a href="https://www.tripadvisor.co.uk/Restaurant_Review-g504001-d2413205-Reviews-The_Wensleydale_Pantry-Hawes_Yorkshire_Dales_National_Park_North_Yorkshire_Englan.html" target="_blank">The Wensleydale Pantry</a> which turned out to be an excellent choice as I had a delicious Thai vegetable Penang curry.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53937962419_6549fcc92f_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbja4i" target="_blank">Hawes</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53936726702_de2a29b4b3_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbcPHQ" target="_blank">Spoilt for Choice</a></figcaption>
</figure>
</div>
<p>Replenished I grabbed some sweets and a can of beer and set off out the west of the village pausing outside of St Margaret’s Church to put on waterproof trousers as it had started to drizzle.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53939701562_6565b3ac51_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbt53w" target="_blank">St Margaret, Hawes</a></figcaption>
</figure>
</div>
<p>This was just a passing shower and I soon stopped to remove the trousers as I was sweating. Onwards and upwards passing near the summit of Ten End (584m) I joined the Cam Road with excellent views over the valley to the west. By now it had started drizzling again but the wall by the side of Cam Road provided some shelter (the rain was coming in from the side rather than above) and I didn’t think much of it as I passed by Dodd Fell Hill (668m). As I started dropping down into Ribblesdale though I realised I was quite wet now and the rain showed no signs of letting up. There was no point in putting waterproofs on now though so I plodded on downhill.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53940857278_2a435c2c4a_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbyZAE" target="_blank">I’m going uphill again</a></figcaption>
</figure>
</div>
<p>There was a random caravan just off of Cam High Road and as I continued a cyclist passed me coming up the road. We said hello but he looked like he was in a hurry and carried on. I noticed his cycling shorts had a big hole in them on the right thigh suggesting he’d come off earlier in the day. I left Cam High Road following Cam Road, crossing Cam Beck and Calf Holes, skirting farmland.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53940856098_af71036c16_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbyZfj" target="_blank">Here comes the rain</a></figcaption>
</figure>
</div>
<p>I was thoroughly soaked by now and finding it pretty miserable for the second time of the hike and resolved to find somewhere dry to stay for the night in <a href="https://en.wikipedia.org/wiki/Horton_in_Ribblesdale" target="_blank">Horton in Ribblesdale</a>. Eventually I arrived in town and immediately sort shelter in <a href="https://www.crown-hotel.co.uk/" target="_blank">The Crown</a> where there were a couple of guys who had just completed the <a href="https://www.yorkshiredales.org.uk/things-to-do/get-outdoors/yorkshire-three-peaks/" target="_blank">Yorkshire Three Peaks</a> and were waiting for the friends to join them. After finishing my pint I set about trying to find a B&amp;B to stay in and there appeared to be one on the far side of town so I trekked over in the rain. There weren’t many cars outside which made me hopeful they’d have space but after knocking on the door (twice) a lady answered and said they didn’t have a room that evening. I asked if she could recommend anywhere and was advised to try <a href="https://en.wikipedia.org/wiki/Settle,_North_Yorkshire" target="_blank">Settle</a> which I could get to by train so I walked back to the train station which was closed but found a small area out of the rain to check what was available online. The cheapest place was around £100-120 which was way outside my budget and didn’t include the cost of the train, nor the hassle of being so far off route the next morning so I resigned myself to a wet night in the tent and wandered back towards <a href="https://www.crown-hotel.co.uk/" target="_blank">The Crown</a> checking out the National Trust toilet block and grass as a possible place to pitch before returning to the pub and ordering a bowl of chips and another pint to console myself. I then did what I should have done in the first instance which was ask the barman if there was anywhere to stay in town and he advised me that there was another pub <a href="https://goldenlionhotel.co.uk/" target="_blank">The Golden Lion Hotel</a> just past the campsite (which I hadn’t actually located yet!) and that they had a bunkhouse and rooms but that they often shut early if they were quiet. My chips arrived and I couldn’t finish them quick enough before shouldering my pack and heading down the road to check out this lifeline. A Ukrainian woman was behind the bar but had only been working there five days so wasn’t sure about how the bunkhouse worked but they had space. With the assistance of what I presume was the landlord I was checked in and given the code to access the room. No one else was there so I draped my wet clothes and kit out over the beds in the hope they would dry a little overnight (there wasn’t any real heating and no dry room as far as I could tell).</p>
<p>After a quick shower I went back down to the bar where I got chatting to Roger who was heading North on The Way and had only found the pub and bunkhouse after he had pitched his tent next door at the campsite. He didn’t seem too phased by the wet weather and told me he’d walked The Pennine Way many years ago when he was 17, but that he couldn’t remember any of it. Whilst we were chatting a guy came into the bar decked out in cycling gear looking to stay in the bunkhouse, I thought he was cycle touring and, like me, needed a place to shelter for the night. Having just been checked in I helped show him where it was and entered the code to get in even though he had been chatting to the bar staff in what sounded like her native language.</p>
<p>Time was called at the bar relatively early, around 21:30 so I said farewell to Roger and wished him luck on the rest of his hike and retired to the bunkhouse where I got to know <a href="https://www.instagram.com/dani_goes_on_adventures/" target="_blank">Daniil Sadomskij</a> who wasn’t just cycle touring, he was competing in the <a href="https://www.theracingcollective.com/gbduro.html#results" target="_blank">GBDuro 2024</a> and was on his fifth day of cycling from Lands End to Cape Wrath via Wales, The Pennine Bridleway. It sounded brutal and would explain the cyclists I passed earlier in the day. Dani was currently placed fourth but it wasn’t about winning for him as his main motivation was to see the country as he’d been living in the UK for eight years working as a chef in a London restaurant. He had an excellent pair of Lidl shorts and was eating some cold, congealed chips he’d picked up earlier in the day. This didn’t look very appetising so I offered him one of my dehydrated meals which he gratefully accepted and after boiling the kettle and a short wait he had some warm pasta and salmon to help him recover from the days exertions and fuel him for the next days.</p>
<p>He was a really nice guy, engaged to be married to a Welsh lady and enthusiastic about cycling. We were both tired though and planned to get up early, although he said he was going to set his alarm for 04:00 and make an early start which didn’t bother me as I could doze a bit afterwards.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-9-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-9-1" aria-controls="tabset-9-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-9-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-9-2" aria-controls="tabset-9-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-9-1" class="tab-pane active" aria-labelledby="tabset-9-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb17-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-21"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-ca90e8dca130a7affc95" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-ca90e8dca130a7affc95">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.152814,-2.152875,-2.153031,-2.153198,-2.153369,-2.153536,-2.153706,-2.153877,-2.154039,-2.154194,-2.154361,-2.154529,-2.154681,-2.154767,-2.15489,-2.155019,-2.155133,-2.155257,-2.155387,-2.155512,-2.155628,-2.155745,-2.155829,-2.15592,-2.155961,-2.156107,-2.156271,-2.156417,-2.156582,-2.156737,-2.156878,-2.157018,-2.157142,-2.157266,-2.157373,-2.157474,-2.157564,-2.157679,-2.157784,-2.157887,-2.157988,-2.158122,-2.158249,-2.158407,-2.158561,-2.158727,-2.158893,-2.159041,-2.159203,-2.159271,-2.159424,-2.159589,-2.159755,-2.159916,-2.160072,-2.160222,-2.160395,-2.160548,-2.160716,-2.160884,-2.161057,-2.161219,-2.161382,-2.161544,-2.161712,-2.161874,-2.162011,-2.162172,-2.162343,-2.162514,-2.162673,-2.162845,-2.163013,-2.163139,-2.163302,-2.163458,-2.163633,-2.163802,-2.163962,-2.16412,-2.164276,-2.164434,-2.164601,-2.164765,-2.164929,-2.165103,-2.165269,-2.16543,-2.165546,-2.165706,-2.165859,-2.166026,-2.166164,-2.166334,-2.166493,-2.16663,-2.166787,-2.166937,-2.167086,-2.167245,-2.167411,-2.167581,-2.167746,-2.167902,-2.168065,-2.168221,-2.168378,-2.168529,-2.168678,-2.168829,-2.168994,-2.169144,-2.16928,-2.169382,-2.169548,-2.169617,-2.169722,-2.169853,-2.17,-2.170133,-2.170256,-2.170398,-2.170534,-2.170681,-2.17082,-2.170982,-2.171127,-2.171247,-2.171326,-2.171382,-2.171414,-2.171533,-2.171698,-2.171855,-2.172008,-2.172169,-2.172334,-2.172488,-2.172653,-2.172812,-2.17297,-2.17313,-2.173289,-2.173439,-2.173588,-2.173739,-2.173903,-2.174056,-2.174209,-2.174367,-2.174534,-2.174691,-2.174858,-2.175011,-2.175156,-2.175311,-2.175467,-2.175634,-2.175801,-2.175962,-2.176109,-2.176269,-2.176435,-2.176589,-2.176734,-2.176886,-2.177033,-2.177195,-2.177344,-2.177495,-2.177638,-2.177797,-2.177948,-2.178107,-2.178268,-2.178419,-2.178566,-2.178722,-2.178876,-2.17904,-2.179198,-2.179364,-2.179524,-2.179681,-2.179841,-2.180002,-2.180147,-2.180267,-2.180402,-2.180541,-2.180668,-2.180786,-2.180923,-2.181036,-2.181179,-2.181326,-2.181481,-2.18164,-2.181804,-2.181959,-2.182113,-2.182277,-2.182423,-2.18256,-2.182705,-2.182797,-2.18289,-2.182993,-2.183118,-2.18322,-2.183329,-2.183434,-2.183533,-2.183642,-2.183768,-2.183924,-2.184057,-2.184188,-2.184337,-2.184491,-2.184656,-2.184813,-2.184965,-2.185127,-2.185276,-2.185431,-2.185586,-2.185742,-2.185901,-2.186055,-2.186212,-2.186371,-2.186521,-2.186652,-2.1868,-2.186934,-2.187042,-2.187159,-2.187276,-2.187397,-2.187524,-2.187653,-2.187769,-2.187861,-2.187982,-2.188101,-2.188254,-2.188411,-2.188558,-2.188707,-2.188857,-2.189013,-2.18917,-2.189326,-2.189481,-2.189651,-2.189807,-2.189976,-2.190146,-2.190304,-2.190476,-2.190641,-2.190809,-2.190965,-2.191124,-2.191281,-2.191441,-2.191595,-2.191752,-2.191912,-2.192075,-2.192235,-2.192396,-2.19252,-2.192637,-2.192629,-2.192792,-2.192946,-2.193115,-2.193263,-2.193418,-2.193583,-2.193731,-2.193861,-2.194001,-2.194158,-2.194321,-2.194455,-2.19459,-2.194738,-2.194873,-2.19502,-2.195164,-2.195311,-2.195443,-2.195597,-2.195728,-2.19585,-2.195975,-2.196109,-2.196254,-2.196384,-2.196517,-2.196662,-2.196823,-2.196985,-2.197123,-2.197269,-2.197406,-2.197548,-2.1977,-2.19784,-2.197979,-2.198125,-2.198265,-2.198422,-2.198539,-2.198672,-2.198805,-2.198939,-2.199052,-2.199218,-2.199358,-2.199489,-2.19958,-2.199694,-2.199776,-2.199869,-2.200003,-2.200145,-2.200294,-2.200445,-2.200563,-2.200707,-2.200858,-2.201005,-2.20117,-2.201319,-2.201459,-2.201602,-2.201745,-2.201896,-2.20206,-2.202204,-2.202352,-2.202518,-2.202677,-2.202837,-2.20299,-2.203121,-2.20328,-2.203447,-2.203601,-2.203757,-2.203828,-2.20393,-2.204091,-2.204262,-2.204413,-2.204574,-2.204737,-2.204802,-2.204954,-2.205111,-2.205265,-2.205416,-2.205577,-2.205747,-2.205905,-2.206066,-2.206233,-2.206392,-2.206552,-2.206728,-2.206902,-2.207061,-2.20723,-2.20739,-2.207551,-2.207719,-2.207874,-2.208014,-2.208146,-2.208286,-2.208431,-2.208572,-2.208723,-2.208871,-2.209036,-2.209176,-2.209328,-2.209485,-2.209641,-2.209805,-2.209966,-2.210124,-2.210274,-2.210419,-2.210578,-2.210727,-2.210876,-2.210989,-2.211112,-2.211217,-2.211373,-2.211536,-2.21168,-2.211826,-2.211972,-2.212131,-2.212262,-2.212414,-2.212582,-2.212741,-2.212893,-2.213056,-2.213222,-2.21339,-2.21355,-2.213699,-2.213841,-2.213972,-2.214106,-2.214265,-2.214422,-2.214588,-2.214746,-2.214885,-2.215031,-2.215176,-2.215316,-2.215468,-2.215609,-2.215768,-2.215922,-2.216071,-2.216211,-2.216355,-2.216499,-2.216649,-2.216792,-2.216936,-2.217081,-2.217238,-2.217384,-2.21752,-2.217653,-2.217794,-2.21793,-2.21806,-2.218205,-2.218312,-2.21845,-2.218555,-2.218659,-2.218779,-2.218887,-2.219037,-2.219163,-2.219286,-2.219412,-2.219525,-2.219631,-2.21971,-2.219819,-2.219933,-2.220022,-2.220144,-2.220255,-2.22039,-2.220495,-2.220629,-2.220721,-2.220814,-2.220918,-2.221,-2.221124,-2.221213,-2.221317,-2.22142,-2.221513,-2.221621,-2.221655,-2.221807,-2.221965,-2.222102,-2.222246,-2.222388,-2.222513,-2.222633,-2.222784,-2.222908,-2.223069,-2.22321,-2.223362,-2.223446,-2.223513,-2.223541,-2.22354,-2.223672,-2.22376,-2.223847,-2.223938,-2.224043,-2.224111,-2.224197,-2.224284,-2.224369,-2.224469,-2.224543,-2.224649,-2.224773,-2.224874,-2.224973,-2.225028,-2.225116,-2.225183,-2.22527,-2.225353,-2.225474,-2.225542,-2.225645,-2.225742,-2.225838,-2.225929,-2.226023,-2.226118,-2.226177,-2.226247,-2.226355,-2.226458,-2.226559,-2.226639,-2.226658,-2.226705,-2.226811,-2.22692,-2.227027,-2.227116,-2.227237,-2.227315,-2.227415,-2.227505,-2.227595,-2.227723,-2.227821,-2.227904,-2.228024,-2.228112,-2.228242,-2.228353,-2.228468,-2.228581,-2.228673,-2.228733,-2.228776,-2.228709,-2.228822,-2.228981,-2.229138,-2.22925,-2.229368,-2.229362,-2.22935,-2.229292,-2.229219,-2.229207,-2.229246,-2.229315,-2.229372,-2.22932,-2.229281,-2.229428,-2.229539,-2.229668,-2.229779,-2.229908,-2.230038,-2.230141,-2.230228,-2.230317,-2.230427,-2.230516,-2.230629,-2.230776,-2.230857,-2.230956,-2.231022,-2.231101,-2.231176,-2.231336,-2.231483,-2.231634,-2.231757,-2.231826,-2.231902,-2.231981,-2.232034,-2.232084,-2.232117,-2.232198,-2.232231,-2.232373,-2.232478,-2.232526,-2.232634,-2.232707,-2.232726,-2.232766,-2.232813,-2.232863,-2.232961,-2.233085,-2.233162,-2.233237,-2.233366,-2.233507,-2.233586,-2.233688,-2.23375,-2.233843,-2.233953,-2.234087,-2.234175,-2.234264,-2.234376,-2.234486,-2.234505,-2.234587,-2.234705,-2.234833,-2.23496,-2.235099,-2.235211,-2.235323,-2.235436,-2.235573,-2.235723,-2.23587,-2.236013,-2.236158,-2.23627,-2.236398,-2.23654,-2.236668,-2.236784,-2.236924,-2.237057,-2.237191,-2.23734,-2.237484,-2.237614,-2.237709,-2.237846,-2.237965,-2.238095,-2.238214,-2.238363,-2.238489,-2.238596,-2.238696,-2.238814,-2.238924,-2.239033,-2.239158,-2.23925,-2.239385,-2.239465,-2.239621,-2.239724,-2.23979,-2.239821,-2.239858,-2.23992,-2.239969,-2.239974,-2.239995,-2.240072,-2.240075,-2.240162,-2.240316,-2.240306,-2.24033,-2.240296,-2.240274,-2.240297,-2.240307,-2.240299,-2.240266,-2.240295,-2.240372,-2.240454,-2.240534,-2.240594,-2.240612,-2.24064,-2.240624,-2.240622,-2.240638,-2.240677,-2.240743,-2.240813,-2.240844,-2.240894,-2.240898,-2.24089,-2.240869,-2.24086,-2.24091,-2.240893,-2.24089,-2.240874,-2.240887,-2.240882,-2.240886,-2.240862,-2.240907,-2.240903,-2.240882,-2.240855,-2.240749,-2.240687,-2.240693,-2.240669,-2.240626,-2.240604,-2.240595,-2.240584,-2.240578,-2.240616,-2.240632,-2.240671,-2.240695,-2.240711,-2.240703,-2.240746,-2.240758,-2.24078,-2.240767,-2.240802,-2.240859,-2.240872,-2.24085,-2.240933,-2.240973,-2.241014,-2.241082,-2.241117,-2.241118,-2.241154,-2.241191,-2.241189,-2.241198,-2.241248,-2.241326,-2.241423,-2.241521,-2.241625,-2.241691,-2.241804,-2.241885,-2.242002,-2.242075,-2.242107,-2.242131,-2.242104,-2.242001,-2.241891,-2.241857,-2.241907,-2.241957,-2.241927,-2.241869,-2.241866,-2.241851,-2.241844,-2.241818,-2.241749,-2.241715,-2.241755,-2.241736,-2.241736,-2.241771,-2.241809,-2.241822,-2.241871,-2.241959,-2.242016,-2.242064,-2.242114,-2.242144,-2.242232,-2.242288,-2.242322,-2.242366,-2.242396,-2.242416,-2.242469,-2.242498,-2.242507,-2.242511,-2.242498,-2.242474,-2.24248,-2.242462,-2.24249,-2.242524,-2.242546,-2.242528,-2.242448,-2.242394,-2.242342,-2.242329,-2.242327,-2.242305,-2.242326,-2.242354,-2.242387,-2.2424,-2.242368,-2.242376,-2.242365,-2.242364,-2.242356,-2.242351,-2.242339,-2.242317,-2.242323,-2.242338,-2.242331,-2.242334,-2.242343,-2.242337,-2.242341,-2.242362,-2.242362,-2.242393,-2.242409,-2.242424,-2.242411,-2.242418,-2.242419,-2.242418,-2.242433,-2.242422,-2.24241,-2.242408,-2.24239,-2.242387,-2.242375,-2.242359,-2.242339,-2.242315,-2.242327,-2.242304,-2.242278,-2.24223,-2.242214,-2.242229,-2.242225,-2.242228,-2.242226,-2.242209,-2.242235,-2.242241,-2.242224,-2.242245,-2.242313,-2.242342,-2.242364,-2.242402,-2.242372,-2.242335,-2.242339,-2.242338,-2.242355,-2.242351,-2.242333,-2.242333,-2.242328,-2.242289,-2.242296,-2.242268,-2.242298,-2.242312,-2.242307,-2.242356,-2.242384,-2.242375,-2.24242,-2.242463,-2.242491,-2.24251,-2.242524,-2.242544,-2.242574,-2.242559,-2.242622,-2.242716,-2.242832,-2.242911,-2.242935,-2.24299,-2.243067,-2.243161,-2.24329,-2.243388,-2.243479,-2.243564,-2.243528,-2.243495,-2.243422,-2.243387,-2.24339,-2.243391,-2.243363,-2.243308,-2.243278,-2.243232,-2.24319,-2.24314,-2.243142,-2.243223,-2.243319,-2.243371,-2.243426,-2.243398,-2.243382,-2.243363,-2.243365,-2.243328,-2.2433,-2.243271,-2.243242,-2.243163,-2.243075,-2.243001,-2.242912,-2.242858,-2.242793,-2.242706,-2.242589,-2.2425,-2.242357,-2.242227,-2.242148,-2.24206,-2.241972,-2.241881,-2.24179,-2.241691,-2.241573,-2.241463,-2.241364,-2.241299,-2.241288,-2.241321,-2.241388,-2.24139,-2.241353,-2.241393,-2.241417,-2.24146,-2.24148,-2.241488,-2.24145,-2.241412,-2.241368,-2.241342,-2.241281,-2.241195,-2.241137,-2.241082,-2.241015,-2.241008,-2.241023,-2.24101,-2.241042,-2.241069,-2.241056,-2.240996,-2.240932,-2.240941,-2.240969,-2.241,-2.240967,-2.240918,-2.240862,-2.240813,-2.240742,-2.240674,-2.240657,-2.24063,-2.240603,-2.240507,-2.24043,-2.240359,-2.240276,-2.240249,-2.240119,-2.240027,-2.239938,-2.239842,-2.239748,-2.239689,-2.239623,-2.239533,-2.239471,-2.239406,-2.239283,-2.239157,-2.239047,-2.238961,-2.238897,-2.238837,-2.238825,-2.238751,-2.238706,-2.238694,-2.23869,-2.238676,-2.23867,-2.238571,-2.238511,-2.238456,-2.238416,-2.23834,-2.238261,-2.23818,-2.238093,-2.23797,-2.237857,-2.237768,-2.237688,-2.237604,-2.237495,-2.237396,-2.237309,-2.237246,-2.237189,-2.237092,-2.237063,-2.23703,-2.237001,-2.236915,-2.236958,-2.236938,-2.236781,-2.236641,-2.236506,-2.236369,-2.236232,-2.236138,-2.236012,-2.2359,-2.235763,-2.235636,-2.235511,-2.235426,-2.235366,-2.235356,-2.23542,-2.235521,-2.235632,-2.23573,-2.235812,-2.23585,-2.235755,-2.235603,-2.235449,-2.235288,-2.235135,-2.235051,-2.235001,-2.234946,-2.234913,-2.234859,-2.234791,-2.234729,-2.234673,-2.234621,-2.234592,-2.23455,-2.234489,-2.234427,-2.234365,-2.234262,-2.234148,-2.234069,-2.23397,-2.233875,-2.233788,-2.233688,-2.233564,-2.23344,-2.2333,-2.233177,-2.233064,-2.232957,-2.232861,-2.23275,-2.232617,-2.232485,-2.232388,-2.232273,-2.23219,-2.2321,-2.231983,-2.231845,-2.231715,-2.2316,-2.231485,-2.231366,-2.231218,-2.231069,-2.230929,-2.230818,-2.230734,-2.230668,-2.230534,-2.230382,-2.230243,-2.230119,-2.230008,-2.229898,-2.229771,-2.229639,-2.229517,-2.229416,-2.229286,-2.229152,-2.229048,-2.228927,-2.228801,-2.228664,-2.228536,-2.228414,-2.228296,-2.228194,-2.22811,-2.228022,-2.227915,-2.227803,-2.227666,-2.22754,-2.227425,-2.227292,-2.227184,-2.227069,-2.226951,-2.226832,-2.226698,-2.226574,-2.226447,-2.226321,-2.226189,-2.226076,-2.225952,-2.225811,-2.225678,-2.225558,-2.225447,-2.225334,-2.225211,-2.225104,-2.224975,-2.224851,-2.224729,-2.224607,-2.224506,-2.224361,-2.224247,-2.224143,-2.224055,-2.223948,-2.223839,-2.223745,-2.223644,-2.223495,-2.223333,-2.223162,-2.222998,-2.22284,-2.222687,-2.22254,-2.222394,-2.222235,-2.22209,-2.221941,-2.221795,-2.221657,-2.221517,-2.221371,-2.221221,-2.221066,-2.220922,-2.22079,-2.220652,-2.220521,-2.220434,-2.220368,-2.220342,-2.220282,-2.220189,-2.220114,-2.220032,-2.21988,-2.219788,-2.219661,-2.219576,-2.219472,-2.219366,-2.219272,-2.219198,-2.219098,-2.219009,-2.218899,-2.218856,-2.218794,-2.218711,-2.218612,-2.218512,-2.218416,-2.218295,-2.218159,-2.218046,-2.217907,-2.217795,-2.21766,-2.217515,-2.217364,-2.217225,-2.217066,-2.216911,-2.216769,-2.216615,-2.216462,-2.216323,-2.21618,-2.216035,-2.215884,-2.215727,-2.215554,-2.215394,-2.215243,-2.215086,-2.214943,-2.214794,-2.214644,-2.214479,-2.214323,-2.214166,-2.214012,-2.213844,-2.213683,-2.213549,-2.213407,-2.213256,-2.21311,-2.212972,-2.21283,-2.212676,-2.212537,-2.212391,-2.212253,-2.212117,-2.211986,-2.211853,-2.211718,-2.211585,-2.211449,-2.211327,-2.211189,-2.211045,-2.210928,-2.210797,-2.210663,-2.210524,-2.210382,-2.210237,-2.210084,-2.209936,-2.209782,-2.209619,-2.209451,-2.209272,-2.209109,-2.208946,-2.208794,-2.208648,-2.208624,-2.208621,-2.208591,-2.208497,-2.208459,-2.208443,-2.208448,-2.208434,-2.208454,-2.208421,-2.208396,-2.208393,-2.208383,-2.20838,-2.208378,-2.208349,-2.208278,-2.208208,-2.208176,-2.208072,-2.208011,-2.207962,-2.207876,-2.20781,-2.207758,-2.207702,-2.207642,-2.207562,-2.207489,-2.207458,-2.207347,-2.207247,-2.207249,-2.207243,-2.207225,-2.207164,-2.207084,-2.207034,-2.206962,-2.206872,-2.206784,-2.206629,-2.206473,-2.206323,-2.206196,-2.206063,-2.205913,-2.20576,-2.205587,-2.20543,-2.205265,-2.205103,-2.204941,-2.204909,-2.205066,-2.20514,-2.20516,-2.205157,-2.205076,-2.204987,-2.204895,-2.20481,-2.204688,-2.204571,-2.204482,-2.204343,-2.204192,-2.204073,-2.204034,-2.203964,-2.203857,-2.203714,-2.203631,-2.203473,-2.203331,-2.203191,-2.203062,-2.202936,-2.202797,-2.202659,-2.202533,-2.202414,-2.202269,-2.202115,-2.201958,-2.201813,-2.201676,-2.201546,-2.201406,-2.20127,-2.201134,-2.200979,-2.200819,-2.200657,-2.200507,-2.200355,-2.200208,-2.200053,-2.199897,-2.199726,-2.199575,-2.199419,-2.199266,-2.199117,-2.199006,-2.198847,-2.198674,-2.198515,-2.198354,-2.198207,-2.198041,-2.197895,-2.197752,-2.197602,-2.19745,-2.197287,-2.19716,-2.197049,-2.196933,-2.196829,-2.196713,-2.196575,-2.196435,-2.196282,-2.196147,-2.196001,-2.195861,-2.195699,-2.195541,-2.19539,-2.19524,-2.1951,-2.19502,-2.19487,-2.194707,-2.194561,-2.194424,-2.194275,-2.194111,-2.193954,-2.193791,-2.193627,-2.193474,-2.193322,-2.193152,-2.192998,-2.19288,-2.192722,-2.19257,-2.192413,-2.192248,-2.192075,-2.191911,-2.191754,-2.191588,-2.191435,-2.191278,-2.191117,-2.190983,-2.190908,-2.190881,-2.190844,-2.190797,-2.190749,-2.190714,-2.190672,-2.190627,-2.190572,-2.190512,-2.190477,-2.190429,-2.190383,-2.190308,-2.190276,-2.190245,-2.190123,-2.189986,-2.189944,-2.189909,-2.189891,-2.189907,-2.189946,-2.189997,-2.190134,-2.190252,-2.190388,-2.190516,-2.190643,-2.190761,-2.190883,-2.190993,-2.191104,-2.191207,-2.191379,-2.191559,-2.19173,-2.191862,-2.191923,-2.192,-2.192074,-2.192172,-2.192208,-2.192243,-2.19227,-2.192303,-2.192291,-2.192232,-2.192148,-2.192177,-2.19231,-2.192279,-2.192274,-2.192282,-2.192289,-2.192289,-2.19231,-2.192321,-2.192326,-2.192337,-2.192351,-2.192362,-2.192365,-2.192365,-2.192383,-2.192377,-2.192376,-2.192386,-2.192424,-2.192426,-2.192421,-2.192407,-2.19239,-2.192386,-2.192433,-2.192447,-2.192503,-2.192609,-2.19269,-2.192813,-2.192925,-2.193055,-2.193121,-2.193223,-2.19332,-2.193391,-2.19349,-2.193577,-2.193672,-2.193749,-2.193832,-2.193908,-2.193995,-2.194053,-2.19414,-2.194283,-2.194317,-2.194382,-2.194465,-2.194606,-2.19476,-2.194931,-2.195035,-2.195182,-2.195305,-2.195389,-2.195503,-2.195656,-2.19581,-2.195979,-2.196133,-2.196281,-2.196297,-2.196434,-2.196596,-2.196761,-2.196914,-2.196928,-2.19709,-2.197245,-2.197391,-2.197543,-2.197691,-2.197857,-2.19802,-2.198177,-2.198336,-2.198424,-2.198579,-2.198735,-2.198793,-2.198741,-2.198669,-2.198581,-2.198639,-2.198593,-2.198427,-2.198269,-2.198242,-2.198075,-2.197922,-2.197765,-2.197592,-2.197436,-2.197279,-2.197116,-2.196958,-2.196931,-2.197102,-2.197274,-2.19742,-2.197567,-2.197725,-2.197898,-2.19803,-2.198198,-2.198216,-2.198177,-2.198245,-2.198385,-2.198537,-2.198704,-2.198865,-2.19902,-2.199173,-2.19931,-2.19942,-2.199258,-2.199195,-2.199351,-2.19937,-2.199213,-2.199053,-2.199032,-2.198878,-2.198754,-2.198612,-2.198587,-2.198695,-2.198662,-2.198815,-2.198975,-2.199133,-2.199286,-2.199434,-2.199467,-2.199312,-2.199141,-2.198967,-2.198809,-2.198714,-2.198656,-2.198811,-2.19881,-2.198727,-2.198719,-2.198713,-2.19885,-2.198669,-2.198634,-2.198506,-2.19835,-2.198356,-2.198196,-2.198039,-2.197872,-2.197709,-2.19755,-2.197451,-2.197379,-2.197369,-2.197367,-2.197377,-2.197376,-2.197362,-2.197363,-2.197255,-2.197199,-2.19732,-2.197407,-2.197502,-2.197391,-2.197527,-2.197561,-2.19753,-2.197477,-2.197474,-2.197502,-2.197558,-2.197618,-2.197688,-2.197769,-2.197886,-2.19795,-2.198025,-2.198122,-2.198218,-2.198336,-2.198445,-2.198542,-2.198592,-2.198752,-2.198767,-2.198602,-2.198581,-2.198716,-2.198714,-2.198722,-2.198763,-2.198844,-2.198991,-2.19914,-2.19926,-2.19939,-2.199536,-2.199692,-2.199834,-2.19997,-2.200102,-2.200245,-2.200375,-2.200506,-2.200593,-2.200705,-2.200805,-2.200741,-2.200674,-2.200593,-2.200528,-2.200467,-2.200397,-2.200345,-2.200273,-2.20019,-2.200123,-2.200081,-2.200068,-2.200005,-2.199931,-2.199872,-2.19987,-2.199833,-2.199815,-2.199838,-2.199871,-2.200031,-2.200198,-2.200351,-2.2005,-2.200657,-2.200814,-2.200963,-2.201115,-2.201258,-2.201422,-2.201582,-2.20173,-2.201895,-2.202059,-2.202233,-2.202389,-2.20255,-2.202688,-2.202838,-2.202999,-2.203164,-2.20332,-2.203406,-2.203566,-2.203677,-2.20378,-2.203893,-2.204025,-2.204076,-2.204055,-2.204023,-2.204175,-2.204271,-2.204344,-2.204448,-2.204455,-2.204486,-2.204484,-2.204533,-2.204649,-2.204786,-2.204748,-2.204675,-2.204631,-2.204567,-2.2045,-2.204449,-2.204405,-2.204329,-2.204275,-2.204211,-2.204146,-2.204112,-2.204066,-2.204101,-2.204166,-2.204214,-2.204297,-2.204359,-2.204396,-2.204476,-2.204543,-2.204637,-2.204737,-2.20483,-2.204933,-2.205022,-2.205106,-2.205091,-2.205187,-2.205281,-2.205347,-2.205455,-2.205494,-2.205577,-2.20564,-2.205709,-2.205815,-2.205967,-2.206125,-2.206281,-2.206305,-2.206449,-2.206596,-2.20675,-2.206912,-2.20707,-2.20722,-2.207369,-2.207532,-2.207701,-2.20785,-2.208009,-2.208129,-2.208219,-2.208316,-2.208475,-2.208609,-2.208749,-2.208888,-2.209035,-2.209167,-2.209298,-2.209436,-2.209579,-2.209718,-2.209851,-2.209998,-2.210142,-2.210256,-2.210397,-2.210446,-2.210596,-2.210746,-2.210901,-2.211052,-2.211214,-2.211359,-2.211512,-2.211662,-2.211809,-2.211954,-2.212109,-2.212268,-2.212414,-2.212556,-2.212691,-2.212828,-2.212987,-2.213148,-2.213284,-2.213435,-2.213584,-2.213728,-2.213893,-2.214053,-2.2142,-2.21435,-2.214512,-2.214664,-2.214792,-2.214945,-2.215099,-2.215249,-2.215375,-2.215515,-2.215644,-2.215781,-2.215906,-2.216029,-2.216155,-2.21628,-2.21643,-2.216546,-2.216652,-2.216682,-2.216758,-2.216867,-2.216972,-2.217103,-2.217256,-2.217362,-2.217488,-2.217616,-2.217742,-2.217904,-2.218051,-2.218198,-2.218348,-2.218482,-2.218617,-2.218746,-2.218878,-2.219035,-2.219174,-2.219321,-2.219458,-2.219596,-2.219753,-2.219905,-2.220058,-2.220196,-2.220321,-2.220469,-2.220609,-2.220758,-2.220903,-2.221054,-2.221203,-2.221329,-2.221479,-2.221626,-2.221778,-2.221933,-2.222092,-2.22225,-2.222398,-2.222522,-2.222671,-2.22282,-2.222983,-2.223143,-2.223167,-2.223313,-2.223441,-2.223546,-2.223688,-2.223843,-2.223998,-2.224066,-2.224222,-2.224376,-2.224527,-2.224697,-2.22485,-2.224988,-2.225139,-2.225281,-2.225446,-2.225593,-2.225745,-2.225915,-2.226059,-2.226205,-2.226314,-2.226472,-2.226628,-2.226782,-2.22685,-2.226961,-2.227083,-2.227213,-2.227368,-2.227529,-2.227667,-2.227799,-2.227913,-2.228049,-2.228161,-2.228257,-2.228343,-2.228445,-2.228488,-2.228511,-2.228464,-2.22855,-2.228561,-2.228619,-2.22868,-2.228751,-2.22876,-2.228807,-2.228838,-2.228894,-2.22901,-2.229121,-2.229263,-2.229372,-2.229466,-2.229494,-2.229525,-2.229623,-2.229708,-2.229828,-2.229878,-2.230008,-2.230054,-2.230135,-2.230242,-2.230324,-2.230409,-2.230513,-2.230566,-2.23065,-2.230743,-2.230783,-2.230834,-2.230946,-2.231021,-2.231139,-2.231255,-2.231351,-2.231481,-2.231602,-2.231688,-2.231769,-2.231811,-2.231944,-2.232062,-2.232174,-2.232311,-2.232362,-2.232392,-2.232458,-2.23251,-2.232593,-2.232659,-2.232669,-2.23274,-2.23277,-2.232835,-2.232854,-2.232866,-2.232852,-2.232829,-2.23284,-2.232885,-2.232874,-2.232835,-2.232835,-2.232856,-2.232907,-2.233016,-2.233085,-2.233126,-2.233161,-2.23328,-2.233196,-2.233243,-2.233283,-2.233345,-2.233392,-2.233477,-2.233556,-2.233569,-2.233632,-2.233759,-2.23389,-2.234034,-2.234197,-2.234361,-2.234503,-2.234651,-2.23477,-2.234916,-2.235041,-2.235138,-2.235269,-2.235416,-2.235568,-2.235723,-2.23578,-2.23587,-2.236005,-2.236171,-2.236319,-2.236442,-2.236606,-2.236752,-2.236849,-2.236969,-2.237107,-2.237254,-2.237398,-2.237522,-2.23763,-2.237743,-2.237859,-2.238012,-2.238088,-2.238069,-2.238031,-2.238042,-2.238071,-2.238161,-2.238216,-2.238285,-2.238328,-2.238329,-2.238344,-2.238455,-2.238576,-2.238694,-2.238817,-2.238926,-2.239026,-2.239122,-2.239266,-2.239379,-2.239487,-2.239602,-2.239707,-2.239822,-2.239837,-2.239923,-2.240016,-2.240017,-2.240028,-2.240138,-2.240213,-2.240207,-2.240203,-2.240197,-2.240226,-2.240261,-2.240352,-2.240497,-2.240634,-2.240715,-2.240816,-2.240914,-2.241006,-2.241035,-2.241135,-2.241293,-2.241435,-2.241575,-2.24169,-2.2418,-2.241917,-2.242017,-2.242136,-2.242278,-2.242405,-2.242497,-2.242526,-2.242584,-2.242583,-2.24256,-2.242573,-2.242621,-2.242665,-2.242742,-2.242808,-2.242843,-2.242896,-2.242925,-2.242985,-2.24304,-2.243092,-2.243143,-2.243194,-2.243243,-2.243281,-2.243338,-2.243411,-2.243474,-2.243499,-2.243546,-2.243583,-2.243619,-2.243665,-2.243722,-2.243794,-2.243852,-2.243892,-2.243937,-2.243985,-2.244051,-2.244124,-2.244195,-2.244275,-2.244357,-2.244463,-2.244535,-2.24461,-2.244639,-2.244669,-2.244711,-2.24473,-2.244775,-2.244799,-2.24483,-2.244855,-2.244886,-2.244913,-2.244941,-2.244992,-2.24506,-2.245144,-2.245188,-2.245222,-2.245252,-2.245276,-2.245269,-2.245271,-2.245275,-2.245263,-2.245294,-2.245299,-2.245304,-2.245324,-2.245336,-2.245351,-2.245364,-2.245381,-2.245392,-2.245405,-2.245411,-2.245425,-2.245452,-2.245473,-2.24548,-2.245507,-2.245518,-2.245525,-2.245548,-2.245551,-2.245577,-2.245536,-2.245579,-2.245626,-2.245655,-2.245677,-2.245722,-2.24579,-2.245839,-2.245869,-2.245898,-2.245921,-2.245917,-2.245924,-2.245928,-2.245971,-2.246044,-2.246112,-2.246145,-2.24618,-2.246214,-2.246262,-2.246327,-2.246401,-2.246464,-2.24654,-2.246608,-2.246701,-2.246781,-2.246873,-2.246949,-2.247001,-2.247046,-2.247086,-2.247123,-2.247211,-2.247281,-2.247337,-2.247397,-2.247406,-2.247423,-2.247452,-2.247543,-2.24758,-2.247637,-2.247706,-2.247766,-2.247823,-2.247887,-2.247948,-2.247998,-2.248069,-2.24813,-2.248184,-2.248225,-2.248266,-2.248314,-2.248365,-2.248418,-2.248463,-2.248512,-2.248579,-2.248616,-2.248627,-2.248629,-2.248606,-2.248596,-2.248578,-2.248585,-2.248642,-2.248679,-2.248742,-2.248787,-2.248824,-2.248878,-2.248917,-2.248981,-2.249065,-2.24914,-2.24922,-2.249273,-2.249315,-2.249383,-2.24947,-2.249596,-2.249736,-2.249857,-2.249944,-2.250035,-2.25014,-2.250246,-2.250323,-2.250375,-2.250432,-2.250499,-2.250602,-2.250715,-2.25082,-2.250941,-2.251072,-2.251184,-2.25127,-2.251341,-2.251438,-2.251531,-2.251654,-2.251779,-2.251901,-2.252012,-2.252033,-2.252167,-2.252282,-2.252354,-2.252446,-2.252537,-2.252606,-2.252699,-2.252789,-2.252872,-2.252969,-2.253068,-2.253103,-2.253173,-2.25323,-2.253297,-2.253336,-2.253386,-2.25344,-2.253497,-2.253537,-2.253585,-2.253639,-2.253686,-2.253742,-2.253814,-2.253867,-2.253927,-2.253977,-2.254023,-2.254089,-2.254137,-2.254167,-2.254195,-2.254238,-2.254265,-2.25429,-2.254306,-2.254343,-2.254383,-2.254437,-2.254501,-2.254528,-2.254543,-2.25458,-2.254572,-2.25463,-2.25471,-2.254772,-2.254853,-2.254945,-2.255025,-2.255117,-2.255193,-2.255275,-2.255366,-2.255459,-2.255533,-2.255613,-2.25567,-2.255739,-2.255808,-2.255852,-2.255955,-2.25607,-2.256149,-2.256258,-2.256369,-2.256499,-2.256581,-2.25669,-2.256785,-2.256868,-2.256968,-2.257053,-2.257157,-2.257253,-2.257344,-2.25741,-2.25752,-2.257627,-2.257725,-2.257837,-2.257936,-2.258059,-2.258155,-2.258258,-2.25837,-2.258451,-2.258518,-2.258617,-2.258726,-2.258822,-2.258904,-2.259024,-2.259137,-2.259235,-2.259321,-2.259418,-2.259512,-2.259593,-2.259683,-2.259761,-2.25982,-2.25987,-2.259922,-2.260008,-2.260082,-2.260157,-2.260202,-2.260217,-2.260254,-2.260316,-2.260365,-2.260427,-2.260497,-2.26057,-2.260613,-2.260667,-2.26074,-2.26078,-2.26084,-2.260915,-2.260977,-2.26105,-2.261109,-2.261147,-2.261199,-2.261247,-2.261297,-2.261377,-2.261438,-2.261453,-2.261502,-2.261548,-2.261569,-2.26163,-2.261675,-2.261718,-2.26175,-2.261811,-2.261873,-2.261912,-2.261937,-2.261962,-2.261994,-2.262031,-2.262052,-2.262085,-2.262119,-2.262153,-2.262187,-2.262237,-2.262317,-2.262352,-2.262401,-2.262442,-2.262456,-2.262505,-2.262547,-2.262602,-2.26265,-2.262682,-2.26272,-2.262755,-2.262772,-2.262747,-2.262818,-2.262966,-2.263121,-2.26328,-2.263424,-2.26357,-2.263728,-2.263888,-2.264041,-2.264191,-2.264347,-2.264487,-2.264628,-2.264772,-2.264927,-2.265091,-2.265256,-2.265411,-2.26556,-2.265712,-2.265864,-2.26602,-2.266176,-2.266337,-2.266493,-2.266657,-2.266774,-2.266918,-2.267069,-2.267132,-2.267311,-2.267469,-2.267619,-2.267726,-2.267814,-2.267942,-2.268079,-2.2682,-2.26831,-2.268416,-2.268535,-2.268659,-2.268779,-2.26889,-2.269006,-2.269125,-2.269241,-2.269347,-2.269449,-2.269575,-2.26973,-2.269867,-2.270007,-2.270149,-2.27028,-2.270392,-2.270506,-2.270612,-2.270732,-2.27083,-2.27092,-2.271,-2.271125,-2.271231,-2.271352,-2.271464,-2.271588,-2.271708,-2.271817,-2.271922,-2.272026,-2.272133,-2.272241,-2.272353,-2.272465,-2.272555,-2.272673,-2.272793,-2.272901,-2.273015,-2.273119,-2.27323,-2.273318,-2.27344,-2.273567,-2.273687,-2.273798,-2.273908,-2.274032,-2.274137,-2.274241,-2.274333,-2.274449,-2.274559,-2.27467,-2.274787,-2.274925,-2.275038,-2.275154,-2.275266,-2.275358,-2.275458,-2.27558,-2.275684,-2.275807,-2.275931,-2.276051,-2.276164,-2.276268,-2.276378,-2.276499,-2.276619,-2.276751,-2.27687,-2.276978,-2.2771,-2.277222,-2.277315,-2.277407,-2.277493,-2.277576,-2.277688,-2.277817,-2.277959,-2.278096,-2.278213,-2.27833,-2.278445,-2.278557,-2.278658,-2.278762,-2.278873,-2.278991,-2.279108,-2.279224,-2.279328,-2.279452,-2.279579,-2.27971,-2.279819,-2.279917,-2.28004,-2.280155,-2.280271,-2.280387,-2.280482,-2.280612,-2.280726,-2.280821,-2.280929,-2.281041,-2.281139,-2.281221,-2.281319,-2.281426,-2.281548,-2.281666,-2.281787,-2.281882,-2.281999,-2.282018,-2.282122,-2.282221,-2.282326,-2.282466,-2.282545,-2.282632,-2.282738,-2.282835,-2.282951,-2.28304,-2.283129,-2.28324,-2.283356,-2.283412,-2.283508,-2.283591,-2.283705,-2.283798,-2.283923,-2.284043,-2.284161,-2.284252,-2.284333,-2.284394,-2.284478,-2.284579,-2.284663,-2.284754,-2.284839,-2.284916,-2.284997,-2.285088,-2.285201,-2.28531,-2.285405,-2.285516,-2.285609,-2.285682,-2.285755,-2.285844,-2.285935,-2.286026,-2.286128,-2.286209,-2.286281,-2.286351,-2.286431,-2.286506,-2.286599,-2.286694,-2.28676,-2.286817,-2.286911,-2.287023,-2.287116,-2.28719,-2.28724,-2.287321,-2.287394,-2.287447,-2.287502,-2.287599,-2.287699,-2.287783,-2.287854,-2.287955,-2.288078,-2.288162,-2.288265,-2.288373,-2.288467,-2.288564,-2.288672,-2.288768,-2.28888,-2.288971,-2.289061,-2.289156,-2.289226,-2.289298,-2.289386,-2.289454,-2.289553,-2.289642,-2.289736,-2.289837,-2.289927,-2.29004,-2.290149,-2.290251,-2.290369,-2.290457,-2.290582,-2.290707,-2.290808,-2.290903,-2.291011,-2.291132,-2.291249,-2.291371,-2.29149,-2.291588,-2.29168,-2.29177,-2.291856,-2.291946,-2.292029,-2.292129,-2.292221,-2.292289,-2.292404,-2.292507,-2.292609,-2.292679,-2.29276,-2.292873,-2.292981,-2.293088,-2.293182,-2.293278,-2.293385,-2.293503,-2.293588,-2.293676,-2.293793,-2.293908,-2.293996,-2.294097,-2.294193,-2.294298,-2.294422,-2.294531,-2.294659,-2.294772,-2.294888,-2.294993,-2.295094,-2.295204,-2.2953,-2.295397,-2.295511,-2.295616,-2.29572,-2.295825,-2.295914,-2.296027,-2.29613,-2.296234,-2.296328,-2.296422,-2.296525,-2.296627,-2.296741,-2.296851,-2.296946,-2.297033,-2.297135,-2.297253,-2.297378,-2.297507,-2.29761,-2.29771,-2.297827,-2.297928,-2.298023,-2.298133,-2.298245,-2.298369,-2.298485,-2.29861,-2.29873,-2.298839,-2.298929,-2.299032,-2.299143,-2.299252,-2.29936,-2.299475,-2.299594,-2.299703,-2.299797,-2.299893,-2.299994,-2.300103,-2.300212,-2.300317,-2.300422,-2.300528,-2.300634,-2.300738,-2.300834,-2.30094,-2.301045,-2.301146,-2.301223,-2.301328,-2.301448,-2.301562,-2.301684,-2.301811,-2.301949,-2.302066,-2.302188,-2.302302,-2.302427,-2.302562,-2.302676,-2.302802,-2.302923,-2.303046,-2.30316,-2.303296,-2.303404,-2.303529,-2.303655,-2.303784,-2.30391,-2.304055,-2.304205,-2.30437,-2.304534,-2.304702,-2.304865,-2.305013,-2.305173,-2.30533,-2.305481,-2.305641,-2.305707,-2.305694,-2.305755,-2.305802,-2.305816,-2.305859,-2.305896,-2.305927,-2.30599,-2.306017,-2.306066,-2.306096,-2.306125,-2.306163,-2.306207,-2.306255,-2.306289,-2.306325,-2.306379,-2.306416,-2.306447,-2.306495,-2.306542,-2.306591,-2.306636,-2.306661,-2.306714,-2.306752,-2.306786,-2.306769,-2.306783,-2.306804,-2.306813,-2.306821,-2.306831,-2.306849,-2.306878,-2.306915,-2.306957,-2.306967,-2.306983,-2.306989,-2.306991,-2.306975,-2.306959,-2.306888,-2.306799,-2.306727,-2.306668,-2.306602,-2.306527,-2.306438,-2.306349,-2.306275,-2.306206,-2.306142,-2.306076,-2.306011,-2.30594,-2.305862,-2.305778,-2.305686,-2.305575,-2.305467,-2.305368,-2.305292,-2.305234,-2.305201,-2.305176,-2.305144,-2.305127,-2.3051,-2.305088,-2.305055,-2.305032,-2.304996,-2.304998,-2.30503,-2.305066,-2.305122,-2.305202,-2.305279,-2.305351,-2.305426,-2.3055,-2.305561,-2.305623,-2.305688,-2.305757,-2.305817,-2.305892,-2.30597,-2.306038,-2.306106,-2.306155,-2.306204,-2.306262,-2.306298,-2.306327,-2.30634,-2.306303,-2.306227,-2.306127,-2.306026,-2.305905,-2.305792,-2.305672,-2.305544,-2.30545,-2.30534,-2.30524,-2.305121,-2.304978,-2.304856,-2.30473,-2.304615,-2.304509,-2.304402,-2.304301,-2.304201,-2.304079,-2.303962,-2.303859,-2.303743,-2.303617,-2.303494,-2.303393,-2.303317,-2.303243,-2.303189,-2.30315,-2.303108,-2.303066,-2.303015,-2.302976,-2.30292,-2.302884,-2.302853,-2.302773,-2.302736,-2.302728,-2.302754,-2.302809,-2.302855,-2.302927,-2.302992,-2.303026,-2.303062,-2.303127,-2.303194,-2.303248,-2.303322,-2.303397,-2.303502,-2.303582,-2.303614,-2.303581,-2.303519,-2.303579,-2.303623,-2.303606,-2.303565,-2.303523,-2.303489,-2.303488,-2.303479,-2.303402,-2.303331,-2.303348,-2.303409,-2.303477,-2.30355,-2.303619,-2.303687,-2.30375,-2.303797,-2.303871,-2.30395,-2.304042,-2.304123,-2.304174,-2.304243,-2.304288,-2.304361,-2.304426,-2.3045,-2.304574,-2.304652,-2.304721,-2.304787,-2.304851,-2.304901,-2.304954,-2.305014,-2.305057,-2.30507,-2.305071,-2.305062,-2.305054,-2.305047,-2.305039,-2.305024,-2.304976,-2.304935,-2.304914,-2.304895,-2.304869,-2.30484,-2.304822,-2.304804,-2.30479,-2.304788,-2.304765,-2.304745,-2.304735,-2.304713,-2.304708,-2.304726,-2.304775,-2.304848,-2.304929,-2.304982,-2.305042,-2.305139,-2.305245,-2.305366,-2.30549,-2.3056,-2.3057,-2.305788,-2.305901,-2.305963,-2.306032,-2.306086,-2.306147,-2.306195,-2.306228,-2.306263,-2.306319,-2.306369,-2.306379,-2.306366,-2.306365,-2.306369,-2.30636,-2.306348,-2.306341,-2.306317,-2.306291,-2.30627,-2.306257,-2.306181,-2.306082,-2.306008,-2.305934,-2.305844,-2.305744,-2.305636,-2.305541,-2.305434,-2.305289,-2.305149,-2.305066,-2.30503,-2.304945,-2.304891,-2.304849,-2.304824,-2.304799,-2.304794,-2.304771,-2.304748,-2.304725,-2.304708,-2.304703,-2.304699,-2.304695,-2.304683,-2.304656,-2.304623,-2.304565,-2.304476,-2.304368,-2.304263,-2.304151,-2.304038,-2.303928,-2.303831,-2.30374,-2.303627,-2.303494,-2.303385,-2.303269,-2.303131,-2.302992,-2.302841,-2.302668,-2.302503,-2.302352,-2.302204,-2.302067,-2.301979,-2.301887,-2.301804,-2.301769,-2.301719,-2.3017,-2.301684,-2.301655,-2.301638,-2.301636,-2.301638,-2.301612,-2.301597,-2.301586,-2.301573,-2.301587,-2.301582,-2.301583,-2.301553,-2.301493,-2.301358,-2.301181,-2.301028,-2.300863,-2.300709,-2.300557,-2.300386,-2.300231,-2.300069,-2.299915,-2.299747,-2.299585,-2.299432,-2.299268,-2.299099,-2.298941,-2.29878,-2.29862,-2.298466,-2.298308,-2.298147,-2.29799,-2.297829,-2.297675,-2.297522,-2.297402,-2.297267,-2.297133,-2.297022,-2.296906,-2.29678,-2.296637,-2.296533,-2.29642,-2.296311,-2.296191,-2.29607,-2.29594,-2.295802,-2.295801,-2.295695,-2.295582,-2.295467,-2.295334,-2.295209,-2.295086,-2.294937,-2.29482,-2.294725,-2.294601,-2.29448,-2.294362,-2.294254,-2.294156,-2.294075,-2.293979,-2.293836,-2.293683,-2.293527,-2.293382,-2.29322,-2.293057,-2.292918,-2.292772,-2.292616,-2.292457,-2.292302,-2.292138,-2.291985,-2.291831,-2.291669,-2.291505,-2.291352,-2.291183,-2.291016,-2.290846,-2.290682,-2.290521,-2.290363,-2.290199,-2.290033,-2.289879,-2.289719,-2.289565,-2.289399,-2.289242,-2.28909,-2.288931,-2.288777,-2.288623,-2.288468,-2.28832,-2.288201,-2.288126,-2.288051,-2.288111,-2.288176,-2.288244,-2.288319,-2.288394,-2.288449,-2.28852,-2.288593,-2.288672,-2.288735,-2.288737,-2.288722,-2.288823,-2.288904,-2.288971,-2.289031,-2.289106,-2.289186,-2.289245,-2.289304,-2.289349,-2.289399,-2.289462,-2.289537,-2.289598,-2.289703,-2.28972,-2.28978,-2.289856,-2.289861,-2.28989,-2.289901,-2.289904,-2.289926,-2.289978,-2.290033,-2.290097,-2.290155,-2.290218,-2.290284,-2.290332,-2.290397,-2.290477,-2.290562,-2.290625,-2.290702,-2.290783,-2.290879,-2.290971,-2.291049,-2.291124,-2.291212,-2.291309,-2.291388,-2.291438,-2.291487,-2.291455,-2.291409,-2.291433,-2.291574,-2.291669,-2.291612,-2.29154,-2.291466,-2.291444,-2.291424,-2.291421,-2.291404,-2.291406,-2.291419,-2.291415,-2.291397,-2.291367,-2.291321,-2.291295,-2.291285,-2.29125,-2.291213,-2.29118,-2.291165,-2.291153,-2.291137,-2.291125,-2.291115,-2.291099,-2.291068,-2.291065,-2.291075,-2.2911,-2.291142,-2.291195,-2.291275,-2.291355,-2.291417,-2.291477,-2.291547,-2.2916,-2.291656,-2.291725,-2.291787,-2.291862,-2.291959,-2.292055,-2.292151,-2.292214,-2.29226,-2.292319,-2.292381,-2.292461,-2.292499,-2.292564,-2.292581,-2.292571,-2.292579,-2.292573,-2.292601,-2.292606,-2.292621,-2.29262,-2.292636,-2.292653,-2.292663,-2.292669,-2.292704,-2.292741,-2.292781,-2.292811,-2.292817,-2.292848,-2.29286,-2.292892,-2.292919,-2.29296,-2.292999,-2.293042,-2.293062,-2.293044,-2.293056,-2.293045,-2.293047,-2.293051,-2.293031,-2.293011,-2.292972,-2.292953,-2.292924,-2.292886,-2.29285,-2.292864,-2.292886,-2.292868,-2.292821,-2.292812,-2.292824,-2.292842,-2.292857,-2.292855,-2.292861,-2.292845,-2.292824,-2.292845,-2.292863,-2.292861,-2.292863,-2.292863,-2.292841,-2.292815,-2.292803,-2.292799,-2.292797,-2.292776,-2.292769,-2.292769,-2.292768,-2.292778,-2.292759,-2.292736,-2.292712,-2.292691,-2.29266,-2.29262,-2.292638,-2.292619,-2.292585,-2.292549,-2.292549,-2.29253,-2.29249,-2.292455,-2.292424,-2.292454,-2.292519,-2.292553,-2.29257,-2.292603,-2.292639,-2.292654,-2.29266,-2.292674,-2.2927,-2.292718,-2.292743,-2.292774,-2.292784,-2.292808,-2.292842,-2.292853,-2.292854,-2.292879,-2.292865,-2.292848,-2.29283,-2.292793,-2.292783,-2.292776,-2.292747,-2.292717,-2.29267,-2.292619,-2.292568,-2.292524,-2.292475,-2.29242,-2.292389,-2.292405,-2.292381,-2.292379,-2.292342,-2.292297,-2.292233,-2.292149,-2.292052,-2.291947,-2.291841,-2.291708,-2.291576,-2.291483,-2.291416,-2.291359,-2.291305,-2.291263,-2.291193,-2.291126,-2.291074,-2.291071,-2.291065,-2.291071,-2.291062,-2.291028,-2.290997,-2.29097,-2.290952,-2.290906,-2.290832,-2.290775,-2.290721,-2.290688,-2.29068,-2.29068,-2.290681,-2.290694,-2.290672,-2.29065,-2.290623,-2.290587,-2.290547,-2.290547,-2.290527,-2.290486,-2.290427,-2.290371,-2.290284,-2.290143,-2.290001,-2.28985,-2.289747,-2.289597,-2.289484,-2.289544,-2.289605,-2.289613,-2.289655,-2.289613,-2.289577,-2.289528,-2.289465,-2.289443,-2.289447,-2.289447,-2.28947,-2.289476,-2.289491,-2.289505,-2.28949,-2.289512,-2.289575,-2.289635,-2.289622,-2.289628,-2.289646,-2.289631,-2.289575,-2.28951,-2.289449,-2.289378,-2.289319,-2.289311,-2.289319,-2.289296,-2.289299,-2.289305,-2.289294,-2.289269,-2.289263,-2.289276,-2.289267,-2.289286,-2.289271,-2.289254,-2.289253,-2.289252,-2.289327,-2.28937,-2.289439,-2.289432,-2.289439,-2.289474,-2.289502,-2.289498,-2.289447,-2.289434,-2.289384,-2.289365,-2.289336,-2.289297,-2.289262,-2.289243,-2.289165,-2.289197,-2.28925,-2.289313,-2.289328,-2.289348,-2.289393,-2.289404,-2.289404,-2.289384,-2.289373,-2.289364,-2.289362,-2.289377,-2.289364,-2.289351,-2.289334,-2.289327,-2.289304,-2.289304,-2.289314,-2.289351,-2.289361,-2.289386,-2.289406,-2.28944,-2.28947,-2.289506,-2.289541,-2.289569,-2.289599,-2.289623,-2.289657,-2.289684,-2.289711,-2.28976,-2.289808,-2.289856,-2.289898,-2.289943,-2.289979,-2.29002,-2.29006,-2.290094,-2.290141,-2.290181,-2.290213,-2.290256,-2.290296,-2.290328,-2.290374,-2.290408,-2.290457,-2.290507,-2.290549,-2.290588,-2.290624,-2.290668,-2.290702,-2.290791,-2.290918,-2.291031,-2.291126,-2.291228,-2.291337,-2.291439,-2.291538,-2.291639,-2.29174,-2.291851,-2.291951,-2.292065,-2.292169,-2.292277,-2.292384,-2.292498,-2.292597,-2.292704,-2.292811,-2.292914,-2.293017,-2.293127,-2.293232,-2.293357,-2.293447,-2.293553,-2.293663,-2.293768,-2.293878,-2.293995,-2.294083,-2.294174,-2.294247,-2.294322,-2.294369,-2.294432,-2.294493,-2.29456,-2.294621,-2.294673,-2.294719,-2.294775,-2.294858,-2.294945,-2.295025,-2.295106,-2.295185,-2.295246,-2.295395,-2.295559,-2.29572,-2.295707,-2.295795,-2.295362,-2.295339,-2.295296,-2.295179,-2.295124,-2.29505,-2.294975,-2.294888,-2.294805,-2.294707,-2.294621,-2.294528,-2.294413,-2.294315,-2.294226,-2.294162,-2.294139,-2.294072,-2.293991,-2.293918,-2.293856,-2.293829,-2.293786,-2.29372,-2.29364,-2.293595,-2.293523,-2.293472,-2.293433,-2.293398,-2.29333,-2.293296,-2.29325,-2.293212,-2.293135,-2.29307,-2.29305,-2.293008,-2.293011,-2.293004,-2.292961,-2.292937,-2.29292,-2.292874,-2.292837,-2.292884,-2.292913,-2.293062,-2.293155,-2.293143,-2.29299,-2.293024,-2.293134,-2.293131,-2.293017,-2.292914,-2.293035,-2.293036],"lat":[54.376904,54.376867,54.37688,54.376884,54.376903,54.376925,54.376941,54.37695,54.37696,54.376983,54.377001,54.377,54.377015,54.377068,54.377128,54.377191,54.377255,54.37731,54.377372,54.377434,54.377505,54.377586,54.377664,54.377742,54.377824,54.377867,54.37789,54.377922,54.377948,54.377976,54.37802,54.378074,54.378131,54.378201,54.378268,54.378347,54.378431,54.378508,54.378577,54.378652,54.378731,54.378777,54.378831,54.378863,54.378883,54.3789,54.378914,54.378962,54.378955,54.378981,54.379024,54.379007,54.379005,54.379013,54.379013,54.379035,54.379056,54.379072,54.379082,54.379095,54.379097,54.379107,54.379115,54.379129,54.379132,54.379132,54.379188,54.379185,54.379187,54.379186,54.379188,54.379181,54.379181,54.379192,54.379183,54.379182,54.379178,54.379174,54.379151,54.379151,54.379142,54.379122,54.379122,54.379111,54.379111,54.379111,54.379102,54.379107,54.379132,54.379147,54.379172,54.379193,54.3792,54.379218,54.379235,54.37919,54.379145,54.379173,54.37921,54.379228,54.379254,54.379284,54.379285,54.379268,54.379277,54.379305,54.379343,54.379393,54.379422,54.37944,54.379449,54.379493,54.379541,54.379616,54.379625,54.379673,54.379747,54.379812,54.379856,54.379903,54.379967,54.380022,54.380067,54.380107,54.380147,54.38018,54.380218,54.380283,54.380372,54.380463,54.380564,54.380631,54.380626,54.380592,54.380568,54.380557,54.380536,54.38052,54.380495,54.380474,54.380447,54.380411,54.380393,54.380365,54.380327,54.380294,54.380269,54.380244,54.380226,54.380207,54.380185,54.380168,54.380146,54.380114,54.38007,54.38004,54.380002,54.379976,54.379953,54.379927,54.379895,54.379869,54.379842,54.379814,54.379777,54.379749,54.379714,54.379684,54.37965,54.379605,54.379562,54.379529,54.379486,54.379448,54.379417,54.379385,54.379347,54.379346,54.379337,54.379319,54.379316,54.379317,54.379336,54.379322,54.379328,54.379343,54.379391,54.379453,54.379507,54.379553,54.379617,54.379679,54.379733,54.379765,54.379809,54.379836,54.379855,54.379866,54.379857,54.37985,54.379848,54.379863,54.379895,54.379938,54.379986,54.380062,54.380135,54.380212,54.380275,54.380331,54.380403,54.380472,54.380542,54.380606,54.380666,54.380652,54.380606,54.380556,54.380528,54.38052,54.380523,54.380507,54.380478,54.380477,54.380503,54.380505,54.380517,54.380516,54.380545,54.380556,54.380572,54.380588,54.38062,54.38067,54.38071,54.380761,54.380826,54.380888,54.380949,54.381015,54.381067,54.381118,54.381188,54.38127,54.38133,54.381394,54.381416,54.381392,54.38136,54.381335,54.38131,54.381287,54.381276,54.381254,54.381231,54.381215,54.381219,54.381228,54.381226,54.381233,54.381233,54.381218,54.381207,54.381219,54.381219,54.381212,54.38121,54.381221,54.381228,54.381228,54.381218,54.381212,54.381217,54.381235,54.381175,54.381146,54.381148,54.381168,54.381188,54.381214,54.381249,54.381276,54.38131,54.381369,54.381414,54.381443,54.381462,54.381524,54.381584,54.381619,54.381669,54.381697,54.381738,54.381786,54.381836,54.381877,54.381925,54.381989,54.382051,54.382102,54.382141,54.382192,54.382245,54.382277,54.3823,54.382321,54.382361,54.38241,54.382463,54.38251,54.382555,54.382606,54.382657,54.382699,54.382744,54.382757,54.382826,54.382884,54.382944,54.382994,54.382966,54.382966,54.383017,54.383079,54.383155,54.383221,54.383299,54.383371,54.383431,54.383472,54.383495,54.383514,54.383573,54.383615,54.38366,54.383712,54.383744,54.383789,54.383836,54.383882,54.383932,54.383974,54.383995,54.384035,54.384084,54.384094,54.384099,54.384095,54.384083,54.384141,54.38415,54.384152,54.384165,54.384169,54.384225,54.384293,54.384314,54.384338,54.384357,54.38438,54.38437,54.384363,54.38432,54.38435,54.384372,54.384392,54.384375,54.384377,54.384385,54.384359,54.384371,54.38437,54.384378,54.384382,54.384388,54.384394,54.384398,54.384424,54.384457,54.384485,54.384522,54.384578,54.384643,54.384698,54.384744,54.384785,54.384807,54.384838,54.384849,54.384893,54.384935,54.384939,54.384937,54.384932,54.384929,54.384902,54.384879,54.384847,54.384819,54.384792,54.384748,54.384676,54.384619,54.38455,54.384544,54.384516,54.384469,54.384421,54.384389,54.384346,54.384296,54.384275,54.384258,54.384225,54.384191,54.384173,54.384152,54.384133,54.384115,54.384092,54.384055,54.384,54.383946,54.383915,54.383889,54.383868,54.383835,54.383792,54.383761,54.383722,54.383675,54.383633,54.383592,54.38356,54.383531,54.383483,54.383427,54.383378,54.383335,54.38329,54.383244,54.383192,54.38314,54.38309,54.383042,54.382983,54.38293,54.382881,54.382838,54.382768,54.382738,54.382666,54.382614,54.382541,54.382467,54.382398,54.382319,54.382285,54.382213,54.382147,54.382093,54.382026,54.381948,54.381869,54.381794,54.381722,54.381639,54.381573,54.381502,54.381443,54.381366,54.381306,54.381225,54.381153,54.381083,54.381007,54.380952,54.380874,54.380795,54.38072,54.380639,54.380573,54.380477,54.380455,54.380438,54.380394,54.380359,54.380305,54.38024,54.38018,54.380136,54.380079,54.380081,54.380133,54.380169,54.38009,54.38,54.379911,54.379816,54.379761,54.379677,54.379597,54.379515,54.37944,54.379356,54.379277,54.379197,54.379119,54.379049,54.37896,54.378892,54.378829,54.378748,54.378672,54.378581,54.378504,54.378412,54.378335,54.378259,54.378196,54.378116,54.378046,54.377966,54.377885,54.377802,54.377721,54.37765,54.377604,54.377513,54.377439,54.37736,54.377287,54.377204,54.377189,54.3771,54.377034,54.376966,54.376914,54.376835,54.376764,54.376685,54.376611,54.376536,54.376459,54.376399,54.37632,54.376238,54.376166,54.37609,54.376027,54.375963,54.375894,54.375822,54.375747,54.375663,54.375618,54.375707,54.375769,54.375779,54.375748,54.375685,54.375622,54.375532,54.375435,54.375348,54.375261,54.375165,54.37507,54.374981,54.374895,54.374801,54.374711,54.374676,54.374603,54.374537,54.374457,54.374403,54.374355,54.374276,54.374192,54.374106,54.374036,54.373959,54.373889,54.37386,54.373773,54.373703,54.373621,54.373536,54.373451,54.373444,54.373411,54.37338,54.373322,54.373239,54.373151,54.373069,54.372984,54.372898,54.372807,54.372729,54.372637,54.372585,54.372515,54.372421,54.372351,54.372268,54.372176,54.372088,54.37202,54.371932,54.371883,54.37183,54.371748,54.371665,54.371608,54.37157,54.371513,54.371445,54.371358,54.371283,54.371211,54.37116,54.371082,54.371041,54.370972,54.370899,54.370876,54.370798,54.37074,54.370673,54.370616,54.370569,54.370504,54.370441,54.370378,54.370313,54.370265,54.370216,54.370162,54.370129,54.370062,54.369996,54.369954,54.369895,54.369834,54.369782,54.369728,54.36967,54.369628,54.369575,54.369524,54.369445,54.369396,54.369335,54.369275,54.369216,54.369164,54.369095,54.369015,54.368944,54.368868,54.368798,54.36873,54.368671,54.368598,54.368554,54.368467,54.368424,54.368351,54.368263,54.368165,54.368077,54.367994,54.367901,54.367801,54.367707,54.367627,54.367535,54.367454,54.367415,54.367321,54.367232,54.36714,54.367044,54.366945,54.366846,54.366755,54.366678,54.366586,54.366499,54.366419,54.36634,54.366252,54.366163,54.366074,54.365984,54.365889,54.365794,54.3657,54.365619,54.36553,54.365438,54.365352,54.365261,54.365163,54.365074,54.364979,54.364887,54.364792,54.364699,54.364604,54.364504,54.364405,54.364314,54.364223,54.364128,54.364028,54.363938,54.363849,54.36377,54.363684,54.363584,54.363484,54.36339,54.36329,54.363199,54.363109,54.363013,54.362926,54.362828,54.362741,54.362651,54.362556,54.362456,54.362359,54.362262,54.36217,54.362073,54.36198,54.361895,54.361803,54.361711,54.361625,54.361534,54.361443,54.36136,54.361265,54.36117,54.361078,54.360988,54.360889,54.360792,54.360701,54.360616,54.360534,54.360454,54.360377,54.360288,54.360212,54.360124,54.360049,54.359967,54.359869,54.35978,54.35969,54.359608,54.359529,54.359437,54.359342,54.359246,54.359151,54.359055,54.358961,54.35886,54.358767,54.358667,54.35858,54.358488,54.358395,54.358304,54.358211,54.358123,54.358028,54.357934,54.357845,54.357761,54.357678,54.35759,54.357503,54.357409,54.357324,54.35724,54.35715,54.357057,54.35696,54.356869,54.356778,54.356687,54.356589,54.356491,54.356391,54.356286,54.356184,54.356094,54.355999,54.355901,54.355799,54.355706,54.355628,54.355538,54.355444,54.355341,54.355243,54.355143,54.355042,54.354945,54.354854,54.354757,54.354658,54.354563,54.35447,54.354373,54.354274,54.354182,54.354086,54.353995,54.353894,54.353799,54.353699,54.353604,54.3535,54.353402,54.353309,54.353215,54.353124,54.353029,54.352939,54.352845,54.352755,54.352654,54.352564,54.352473,54.352384,54.352285,54.352186,54.352087,54.351987,54.351894,54.351798,54.351705,54.351612,54.351513,54.351417,54.351323,54.351231,54.351137,54.35104,54.350949,54.350848,54.350752,54.350657,54.350568,54.350478,54.350376,54.350286,54.350196,54.350106,54.350016,54.349917,54.349822,54.349732,54.349634,54.349533,54.349432,54.349332,54.349239,54.349145,54.349054,54.348955,54.34886,54.348762,54.348671,54.348578,54.348486,54.348389,54.348291,54.348194,54.348093,54.347995,54.347904,54.347803,54.347708,54.347614,54.347522,54.347429,54.347336,54.347244,54.347164,54.347095,54.347014,54.346915,54.346828,54.346745,54.346673,54.346613,54.34654,54.346461,54.346374,54.34628,54.346185,54.346089,54.345995,54.345903,54.345809,54.345715,54.345624,54.345535,54.345445,54.345352,54.345263,54.345169,54.345089,54.345018,54.344925,54.344837,54.344744,54.344652,54.344556,54.344458,54.344363,54.344264,54.344176,54.344086,54.344,54.343925,54.343843,54.343764,54.343669,54.343587,54.343506,54.34343,54.343348,54.343294,54.343241,54.343163,54.34308,54.343005,54.342927,54.342849,54.342778,54.342704,54.342632,54.34257,54.342484,54.342388,54.342293,54.34221,54.342111,54.342017,54.34192,54.341831,54.341733,54.341668,54.341578,54.341482,54.341392,54.341296,54.341197,54.341112,54.341027,54.340938,54.340853,54.340751,54.340645,54.340551,54.34046,54.340368,54.340275,54.340178,54.340083,54.339989,54.339898,54.339807,54.339718,54.339626,54.339531,54.339436,54.339347,54.339262,54.339178,54.339081,54.338985,54.338895,54.338822,54.338738,54.338648,54.338566,54.338467,54.338403,54.338328,54.338241,54.338162,54.338076,54.337992,54.337904,54.337817,54.337729,54.337634,54.337563,54.337502,54.337429,54.337353,54.337265,54.337182,54.33709,54.336996,54.336909,54.336805,54.336715,54.336615,54.336514,54.336443,54.336354,54.336261,54.336164,54.336078,54.335996,54.33591,54.335832,54.335761,54.335688,54.335602,54.335513,54.335436,54.335359,54.335282,54.335196,54.335103,54.335017,54.334942,54.334854,54.334763,54.334664,54.334582,54.334493,54.334487,54.334463,54.334425,54.334372,54.334318,54.334271,54.334191,54.334134,54.334068,54.334008,54.333949,54.333889,54.333813,54.333723,54.333623,54.333529,54.333448,54.333368,54.333291,54.333199,54.333101,54.333018,54.332986,54.332987,54.333023,54.332984,54.3329,54.332805,54.332711,54.332613,54.332517,54.332424,54.332339,54.332243,54.332149,54.332058,54.331966,54.331873,54.331789,54.331707,54.331632,54.331564,54.33148,54.331395,54.331318,54.33124,54.331171,54.331106,54.331047,54.331007,54.330939,54.330869,54.330798,54.330723,54.330645,54.330585,54.330517,54.33044,54.330373,54.330288,54.330208,54.330139,54.330083,54.330012,54.329943,54.329866,54.329791,54.329742,54.329683,54.329627,54.329563,54.329484,54.329402,54.329344,54.329312,54.329255,54.329182,54.329116,54.329053,54.328998,54.328939,54.328865,54.328793,54.328734,54.328669,54.328595,54.328537,54.328471,54.328407,54.32834,54.328276,54.328199,54.328121,54.328036,54.327958,54.327887,54.327815,54.327754,54.327691,54.327621,54.327559,54.327492,54.327429,54.327365,54.327307,54.327243,54.327182,54.327123,54.327054,54.326988,54.326918,54.32685,54.32679,54.326726,54.326662,54.326598,54.326531,54.326456,54.326383,54.326315,54.326249,54.326172,54.326106,54.326036,54.325988,54.325919,54.325839,54.32576,54.32568,54.325602,54.32553,54.325452,54.325408,54.325368,54.325338,54.325296,54.325262,54.325225,54.325184,54.325149,54.325115,54.325074,54.325027,54.32497,54.324913,54.324861,54.324812,54.324761,54.324722,54.324667,54.324614,54.324566,54.324512,54.324427,54.324373,54.324284,54.324192,54.324132,54.32405,54.323965,54.323912,54.323835,54.323767,54.323682,54.323605,54.323522,54.323444,54.323354,54.323282,54.323198,54.323126,54.323034,54.322941,54.322863,54.322793,54.322723,54.322642,54.322571,54.322509,54.322438,54.322381,54.322308,54.322247,54.322199,54.322163,54.322115,54.322076,54.322045,54.322004,54.321958,54.321912,54.321866,54.321826,54.321793,54.321764,54.321739,54.321719,54.321705,54.321671,54.321642,54.3216,54.321562,54.321532,54.321493,54.321447,54.321404,54.321372,54.321358,54.321359,54.321297,54.321258,54.321223,54.321187,54.321144,54.321103,54.321062,54.321009,54.320951,54.32091,54.320855,54.320791,54.320728,54.320676,54.320617,54.320555,54.320492,54.32043,54.320376,54.320312,54.320246,54.320188,54.32013,54.320074,54.320029,54.319981,54.319937,54.319928,54.319916,54.319915,54.319913,54.319904,54.319887,54.319848,54.319815,54.319715,54.319624,54.319532,54.319445,54.319355,54.31926,54.319164,54.319072,54.318978,54.318885,54.31879,54.3187,54.318607,54.318507,54.318417,54.318319,54.318227,54.318143,54.318048,54.317972,54.31788,54.317792,54.317702,54.317617,54.317525,54.317432,54.317343,54.317264,54.317178,54.31708,54.316998,54.316917,54.316827,54.316731,54.316635,54.31655,54.316459,54.316372,54.316281,54.316198,54.316123,54.316113,54.316154,54.316212,54.316278,54.316327,54.31638,54.316404,54.31641,54.316419,54.316429,54.316405,54.316377,54.316368,54.316378,54.316296,54.316201,54.31611,54.316018,54.315932,54.315849,54.315767,54.315708,54.315647,54.315599,54.315547,54.315517,54.315459,54.315392,54.31531,54.315238,54.31518,54.315148,54.315099,54.315059,54.314997,54.314944,54.314888,54.314839,54.314776,54.314715,54.314658,54.314601,54.314565,54.314525,54.314484,54.314428,54.314379,54.314342,54.314293,54.31425,54.314212,54.314203,54.314162,54.314123,54.314074,54.314039,54.314001,54.313973,54.313946,54.313923,54.31389,54.313848,54.313821,54.313798,54.313769,54.313746,54.313724,54.313699,54.31367,54.313641,54.313606,54.313567,54.313528,54.313502,54.313489,54.313422,54.313357,54.313291,54.313223,54.313149,54.313101,54.313058,54.31302,54.312956,54.312909,54.312866,54.312828,54.312792,54.312758,54.31272,54.312673,54.312603,54.312568,54.312534,54.312485,54.312439,54.312392,54.312356,54.312312,54.312272,54.312234,54.312198,54.312156,54.312142,54.31215,54.31208,54.312034,54.312005,54.311979,54.311972,54.311958,54.311942,54.311919,54.311895,54.311873,54.311853,54.311844,54.311815,54.311728,54.311638,54.311544,54.311451,54.311354,54.311265,54.311171,54.311083,54.310997,54.310906,54.310806,54.31072,54.310619,54.310535,54.310433,54.310342,54.310276,54.310225,54.310128,54.310037,54.309944,54.309848,54.30975,54.309656,54.309603,54.309545,54.309484,54.309422,54.30936,54.309293,54.309226,54.30915,54.309081,54.309009,54.309013,54.309011,54.309008,54.308961,54.308876,54.308782,54.308693,54.308605,54.308511,54.308414,54.308311,54.308208,54.308111,54.308018,54.307932,54.30786,54.307815,54.307778,54.307682,54.307582,54.307483,54.307381,54.307287,54.307186,54.307096,54.306999,54.306907,54.306814,54.306718,54.306617,54.306524,54.306433,54.306338,54.306241,54.306152,54.306053,54.305961,54.305869,54.305776,54.305685,54.305671,54.305573,54.305486,54.305404,54.305316,54.305258,54.305184,54.305116,54.305034,54.304949,54.304872,54.304782,54.304698,54.304612,54.304523,54.304441,54.304355,54.304275,54.304198,54.304107,54.304027,54.303987,54.303899,54.303815,54.303732,54.303686,54.303653,54.303638,54.303662,54.303697,54.303653,54.303733,54.303809,54.30383,54.303839,54.303845,54.303824,54.303795,54.303795,54.303748,54.303755,54.303781,54.303823,54.303831,54.30382,54.30384,54.303869,54.3039,54.303936,54.303943,54.303955,54.303977,54.304007,54.304066,54.304067,54.304082,54.304098,54.304012,54.303981,54.304055,54.304123,54.30403,54.30401,54.304009,54.303918,54.303908,54.303894,54.303891,54.303879,54.303847,54.303808,54.303817,54.303821,54.303886,54.303885,54.30389,54.303862,54.303832,54.303804,54.303825,54.303879,54.303915,54.303927,54.304014,54.304082,54.30404,54.304075,54.304093,54.304105,54.304111,54.304117,54.304073,54.304086,54.304076,54.304083,54.304104,54.304104,54.304095,54.304101,54.304071,54.304071,54.304017,54.303979,54.303947,54.304071,54.304139,54.304094,54.304078,54.304086,54.304118,54.304089,54.304083,54.304078,54.304064,54.30406,54.304064,54.303993,54.303947,54.303944,54.304004,54.303927,54.303874,54.303908,54.303894,54.304067,54.303975,54.303958,54.303935,54.303925,54.303891,54.303873,54.303853,54.303826,54.303823,54.303827,54.303741,54.303645,54.303546,54.30345,54.303397,54.303306,54.303309,54.303231,54.303171,54.303232,54.303271,54.303182,54.303268,54.303313,54.303222,54.303132,54.303037,54.302946,54.302856,54.302768,54.30268,54.302582,54.30249,54.302414,54.302319,54.302236,54.302163,54.302092,54.302015,54.301942,54.301861,54.30183,54.301849,54.301831,54.30183,54.301818,54.301776,54.301774,54.30168,54.301626,54.301548,54.301513,54.301472,54.301413,54.301349,54.301295,54.301249,54.301204,54.301149,54.301095,54.301035,54.300983,54.300918,54.300841,54.300781,54.300704,54.300606,54.300512,54.300425,54.300331,54.300241,54.300161,54.300071,54.299977,54.2999,54.299809,54.299715,54.299624,54.299537,54.299454,54.299368,54.299277,54.299184,54.299085,54.298994,54.298944,54.298979,54.298983,54.298958,54.298918,54.29892,54.298927,54.298972,54.299015,54.299059,54.299068,54.299098,54.299129,54.299143,54.299149,54.299148,54.299151,54.29911,54.299064,54.299038,54.299017,54.299007,54.298982,54.298898,54.298891,54.298821,54.298748,54.298683,54.298624,54.298536,54.29844,54.29835,54.298322,54.298246,54.298167,54.298097,54.298004,54.297911,54.297816,54.297728,54.297657,54.297612,54.297542,54.297459,54.297368,54.297291,54.297197,54.297148,54.29706,54.296975,54.296882,54.296797,54.296701,54.296609,54.296522,54.2965,54.296412,54.296321,54.296236,54.296153,54.296064,54.295986,54.295902,54.295826,54.295748,54.295666,54.295587,54.295513,54.295451,54.295543,54.295613,54.295695,54.295777,54.295855,54.295952,54.296031,54.296121,54.29621,54.296154,54.296134,54.296102,54.296122,54.29613,54.296088,54.296049,54.29601,54.295987,54.295959,54.295933,54.295892,54.295861,54.29584,54.295803,54.295779,54.295822,54.295899,54.295976,54.295986,54.295935,54.295886,54.29583,54.295789,54.295731,54.295679,54.295617,54.295575,54.295513,54.295462,54.295419,54.295375,54.295314,54.295266,54.295222,54.295188,54.295166,54.295127,54.2951,54.295069,54.295029,54.294985,54.294948,54.294923,54.294877,54.294833,54.294809,54.294776,54.294734,54.294686,54.294643,54.294618,54.294594,54.294552,54.294526,54.294499,54.294453,54.294439,54.294411,54.294374,54.294344,54.294327,54.294299,54.294243,54.29419,54.294144,54.294102,54.294049,54.293995,54.29394,54.2939,54.293838,54.293767,54.293707,54.293652,54.293604,54.293542,54.293465,54.293403,54.293311,54.293247,54.293178,54.293116,54.293086,54.293012,54.292949,54.292896,54.292841,54.292822,54.292793,54.292765,54.292733,54.292674,54.292628,54.292567,54.292514,54.292492,54.292448,54.29242,54.292379,54.292328,54.292303,54.29227,54.292233,54.292193,54.292139,54.2921,54.292056,54.292032,54.292002,54.291972,54.291937,54.291884,54.291865,54.291824,54.291799,54.291785,54.291758,54.29175,54.291708,54.291654,54.291632,54.291609,54.291627,54.291635,54.291624,54.291592,54.291532,54.291461,54.291415,54.291381,54.291345,54.291312,54.291277,54.291238,54.291218,54.291213,54.291173,54.29113,54.291098,54.291051,54.291026,54.290989,54.290964,54.29094,54.290909,54.29086,54.290796,54.29076,54.290763,54.290722,54.29066,54.290587,54.290517,54.290467,54.290427,54.290412,54.290368,54.290322,54.290251,54.290203,54.290138,54.290061,54.289987,54.289915,54.289824,54.289733,54.289702,54.289623,54.28953,54.289439,54.289353,54.289268,54.289169,54.289077,54.288983,54.288894,54.288835,54.288766,54.288723,54.288657,54.288575,54.288486,54.288397,54.288321,54.288246,54.288185,54.288117,54.28806,54.287967,54.287882,54.287811,54.287728,54.287652,54.287586,54.287501,54.287419,54.287338,54.28725,54.287164,54.287097,54.287018,54.286957,54.28689,54.286812,54.286763,54.286705,54.286624,54.28654,54.286452,54.286404,54.286341,54.286269,54.286216,54.286131,54.286042,54.285958,54.285865,54.285784,54.285694,54.285615,54.28553,54.285441,54.285352,54.285262,54.28517,54.285067,54.28497,54.28488,54.284787,54.284697,54.284607,54.284506,54.284409,54.28432,54.284245,54.284164,54.284071,54.283978,54.283911,54.283828,54.283734,54.283643,54.283553,54.283465,54.283381,54.283301,54.283209,54.283119,54.283062,54.283012,54.282966,54.282939,54.282922,54.282882,54.282853,54.282791,54.282746,54.282679,54.282603,54.282535,54.282492,54.282451,54.28243,54.282341,54.28226,54.282213,54.282187,54.282157,54.282097,54.282088,54.282049,54.281978,54.281919,54.281867,54.281818,54.281782,54.281723,54.281657,54.281592,54.281532,54.281503,54.281422,54.281329,54.281239,54.281147,54.281055,54.280978,54.280891,54.280803,54.280715,54.280621,54.280596,54.280527,54.28046,54.280399,54.280331,54.280266,54.280185,54.280114,54.280062,54.279992,54.279922,54.279852,54.279779,54.279718,54.279625,54.27954,54.279465,54.279369,54.279275,54.279206,54.279124,54.279031,54.278934,54.278843,54.278746,54.278657,54.278574,54.278531,54.278479,54.278399,54.27832,54.278242,54.278167,54.278069,54.277993,54.277961,54.277923,54.277867,54.277806,54.277741,54.277677,54.277603,54.277545,54.277489,54.277427,54.27735,54.277303,54.277213,54.277119,54.277024,54.276927,54.276835,54.276744,54.276658,54.27657,54.276472,54.276383,54.276294,54.276209,54.276116,54.276024,54.275927,54.27583,54.27574,54.275648,54.275556,54.275472,54.275378,54.275282,54.27519,54.275097,54.274999,54.274908,54.274819,54.27473,54.274635,54.274547,54.274453,54.274365,54.274279,54.274194,54.274111,54.274031,54.273951,54.273878,54.273793,54.273713,54.273623,54.273529,54.273442,54.27335,54.273257,54.273156,54.273063,54.272972,54.272874,54.272782,54.272688,54.272598,54.272506,54.272428,54.272338,54.272244,54.272146,54.272057,54.271963,54.271861,54.271767,54.271666,54.271566,54.271473,54.271383,54.271292,54.271196,54.271095,54.270992,54.270897,54.270802,54.27071,54.270612,54.270522,54.270429,54.270337,54.270247,54.270154,54.270058,54.269957,54.269858,54.269767,54.269678,54.269582,54.269487,54.269399,54.269297,54.269205,54.269119,54.269031,54.268938,54.268838,54.26874,54.268647,54.268547,54.268454,54.268362,54.268269,54.268178,54.268085,54.267995,54.2679,54.267801,54.267713,54.26763,54.267539,54.267449,54.267371,54.267285,54.2672,54.26711,54.267037,54.266949,54.266853,54.266758,54.266665,54.266571,54.266489,54.266401,54.266315,54.266225,54.266127,54.266031,54.265939,54.265855,54.265763,54.265677,54.265591,54.265494,54.265406,54.265313,54.265228,54.265134,54.265041,54.264947,54.264851,54.264764,54.264665,54.264574,54.264483,54.264389,54.2643,54.264213,54.26413,54.26404,54.263949,54.263852,54.26376,54.263667,54.263569,54.263466,54.263371,54.263275,54.263183,54.263093,54.263002,54.262907,54.262814,54.262722,54.262644,54.262558,54.262479,54.262385,54.262293,54.262207,54.262127,54.26206,54.262001,54.261934,54.261847,54.26177,54.261695,54.261622,54.261533,54.261444,54.261355,54.261262,54.261195,54.261133,54.261058,54.260989,54.260924,54.260847,54.260768,54.260677,54.2606,54.26052,54.260464,54.260419,54.260359,54.260296,54.260283,54.26023,54.260155,54.260068,54.25999,54.259906,54.259822,54.259737,54.259659,54.259573,54.259494,54.259421,54.259324,54.259243,54.25915,54.259068,54.258974,54.258878,54.258792,54.258709,54.25861,54.258511,54.258423,54.258328,54.258228,54.258143,54.258055,54.257967,54.25787,54.257778,54.257691,54.257599,54.257499,54.257401,54.257305,54.257215,54.257122,54.25703,54.256931,54.256838,54.256745,54.256651,54.256555,54.25646,54.256366,54.256274,54.25619,54.256105,54.256017,54.25593,54.255852,54.255771,54.255689,54.255609,54.255524,54.255446,54.255369,54.255279,54.255196,54.255102,54.255017,54.254925,54.254836,54.254761,54.254695,54.254611,54.254534,54.254468,54.254402,54.25432,54.254245,54.254172,54.254094,54.254014,54.253931,54.253853,54.253777,54.253701,54.253616,54.253547,54.253477,54.253402,54.253331,54.253255,54.253182,54.253106,54.253034,54.252963,54.252885,54.252798,54.252726,54.252651,54.25257,54.25248,54.252409,54.252345,54.25227,54.252188,54.252107,54.252024,54.251937,54.251852,54.251767,54.251678,54.251584,54.251492,54.25141,54.25132,54.25124,54.251151,54.251058,54.250966,54.250876,54.250789,54.250704,54.250613,54.250532,54.250445,54.250355,54.250265,54.250167,54.250078,54.249995,54.249904,54.249814,54.249719,54.249621,54.249529,54.249437,54.249348,54.249266,54.249171,54.249076,54.248989,54.248903,54.248813,54.248729,54.24864,54.248548,54.248457,54.248363,54.248273,54.248174,54.248076,54.24798,54.247885,54.247794,54.247702,54.24761,54.247511,54.247415,54.247324,54.24723,54.247142,54.247043,54.246951,54.246864,54.246763,54.246673,54.246578,54.246482,54.246391,54.246299,54.246209,54.246117,54.246023,54.245964,54.24588,54.245831,54.245805,54.245785,54.245753,54.245716,54.245674,54.24564,54.245621,54.245587,54.245552,54.245507,54.245466,54.245415,54.24537,54.245344,54.245318,54.245292,54.245253,54.245217,54.245184,54.245143,54.245103,54.245064,54.245024,54.244995,54.244971,54.244925,54.244876,54.244846,54.244841,54.244826,54.244783,54.244713,54.244695,54.244636,54.244572,54.244501,54.244427,54.244352,54.24428,54.244222,54.244148,54.244083,54.244006,54.243931,54.243864,54.243795,54.243727,54.243675,54.243646,54.24359,54.243534,54.243483,54.243416,54.243352,54.243284,54.243218,54.243155,54.243086,54.243008,54.242931,54.242861,54.242785,54.242712,54.242633,54.242562,54.242487,54.242415,54.24235,54.242274,54.242205,54.24214,54.242071,54.242005,54.241928,54.241862,54.241796,54.241726,54.241651,54.241579,54.241516,54.241438,54.241373,54.2413,54.241226,54.241152,54.241072,54.241005,54.240932,54.240856,54.240778,54.240711,54.240637,54.240566,54.240499,54.240438,54.240377,54.240311,54.240244,54.240156,54.240078,54.240008,54.239937,54.239871,54.239815,54.239746,54.239682,54.239612,54.239542,54.239477,54.239409,54.239354,54.239285,54.239208,54.239154,54.239093,54.239016,54.238929,54.238844,54.238767,54.238695,54.238635,54.238573,54.238511,54.238446,54.238371,54.2383,54.238222,54.238142,54.238069,54.238004,54.237934,54.23786,54.237786,54.237711,54.23764,54.237584,54.237515,54.237438,54.237363,54.237302,54.237234,54.237156,54.237081,54.236995,54.236929,54.236863,54.23679,54.236715,54.236648,54.236575,54.236497,54.236419,54.236346,54.236278,54.236214,54.236146,54.236074,54.236008,54.235995,54.235922,54.235851,54.235783,54.235724,54.235643,54.235556,54.235486,54.235412,54.235336,54.23526,54.235184,54.235113,54.235051,54.234956,54.234872,54.234789,54.234713,54.234642,54.234571,54.2345,54.234437,54.234359,54.234271,54.234179,54.234098,54.234019,54.23394,54.233868,54.233787,54.233703,54.233623,54.233544,54.233472,54.2334,54.233327,54.233252,54.233177,54.233084,54.232997,54.232917,54.232837,54.23275,54.232672,54.232582,54.232495,54.232407,54.232325,54.232243,54.23216,54.232083,54.23199,54.231905,54.231825,54.231755,54.231675,54.231586,54.231497,54.231417,54.231333,54.231241,54.231149,54.231068,54.230986,54.230896,54.230807,54.230727,54.230673,54.230593,54.230516,54.230437,54.230357,54.230283,54.230208,54.230133,54.230062,54.229983,54.229902,54.229823,54.229739,54.229651,54.229572,54.229488,54.229412,54.229328,54.229254,54.229186,54.229104,54.229032,54.228965,54.228892,54.228821,54.228747,54.228681,54.228627,54.228542,54.22846,54.228382,54.22832,54.228248,54.228173,54.228104,54.22803,54.227946,54.22786,54.227783,54.227705,54.227628,54.227553,54.227471,54.227376,54.227299,54.227217,54.227133,54.227051,54.226971,54.226899,54.226831,54.226763,54.226685,54.226598,54.226529,54.226457,54.226374,54.226297,54.226234,54.226166,54.226084,54.226011,54.225929,54.225855,54.225786,54.225722,54.225661,54.22559,54.225518,54.225449,54.225376,54.225308,54.225237,54.225167,54.225095,54.225028,54.224958,54.224886,54.224809,54.224746,54.224672,54.224598,54.224525,54.224453,54.224384,54.224315,54.224244,54.224167,54.224094,54.224019,54.223942,54.223877,54.22381,54.223749,54.223673,54.223594,54.223528,54.223452,54.22338,54.223308,54.223229,54.223162,54.223095,54.223031,54.222974,54.222905,54.222831,54.222752,54.222685,54.222614,54.22254,54.222474,54.222411,54.222332,54.222255,54.222177,54.222102,54.222032,54.221961,54.221883,54.221815,54.22175,54.221669,54.221589,54.221518,54.221438,54.221364,54.221287,54.221208,54.221127,54.221057,54.220989,54.220927,54.220865,54.220807,54.220743,54.220672,54.220596,54.220525,54.220468,54.220407,54.220336,54.220268,54.220196,54.220122,54.220076,54.220006,54.219942,54.219876,54.219802,54.219733,54.219678,54.219644,54.219614,54.219586,54.219563,54.219537,54.219509,54.219493,54.219465,54.219421,54.219424,54.219419,54.219329,54.219237,54.219147,54.219054,54.218964,54.218873,54.218778,54.218684,54.218589,54.21849,54.218396,54.218295,54.218195,54.218105,54.218015,54.217921,54.217833,54.217739,54.217651,54.217561,54.217472,54.217386,54.217288,54.2172,54.217108,54.217018,54.216923,54.216825,54.216727,54.216629,54.216535,54.216441,54.216339,54.216244,54.216146,54.216054,54.215954,54.215855,54.215764,54.215667,54.215565,54.215469,54.215372,54.215282,54.21519,54.215103,54.215014,54.214921,54.214837,54.214747,54.214665,54.214583,54.214495,54.214406,54.214319,54.214227,54.21414,54.214052,54.213965,54.213887,54.213803,54.213729,54.213653,54.21358,54.213497,54.213411,54.213321,54.213232,54.213136,54.213038,54.212995,54.212898,54.2128,54.212702,54.212606,54.212507,54.212411,54.212314,54.212216,54.212124,54.212039,54.211956,54.211863,54.211779,54.21169,54.211593,54.211506,54.211415,54.211325,54.211237,54.211154,54.211063,54.210981,54.21089,54.210797,54.210707,54.210617,54.210523,54.210426,54.210332,54.210248,54.210171,54.210101,54.210027,54.209963,54.209904,54.209831,54.209757,54.209689,54.209619,54.209553,54.209506,54.20944,54.209378,54.209315,54.209239,54.209166,54.209084,54.209009,54.208933,54.208861,54.208791,54.208726,54.208674,54.208606,54.208535,54.208453,54.208365,54.208277,54.20818,54.208091,54.207998,54.207912,54.207823,54.207736,54.207644,54.20755,54.207461,54.207367,54.20727,54.20718,54.207094,54.206994,54.206912,54.206819,54.206725,54.206627,54.206535,54.206449,54.206352,54.206263,54.206173,54.206096,54.206006,54.205914,54.205819,54.205724,54.205629,54.20554,54.205445,54.205358,54.2053,54.205202,54.205101,54.205002,54.204918,54.204838,54.204747,54.204662,54.204581,54.204489,54.204409,54.204319,54.204231,54.204136,54.204049,54.20396,54.203886,54.203795,54.203705,54.203613,54.203525,54.203436,54.20335,54.203261,54.203177,54.203086,54.202993,54.202898,54.202803,54.202718,54.202629,54.202534,54.202435,54.20234,54.202243,54.202153,54.202056,54.201965,54.201865,54.201771,54.201682,54.201592,54.201499,54.201403,54.201308,54.201212,54.201113,54.201012,54.20091,54.200809,54.200709,54.200607,54.200505,54.200409,54.200318,54.200221,54.200129,54.200044,54.199954,54.199861,54.199777,54.199706,54.199629,54.199556,54.1995,54.19943,54.199348,54.199265,54.199186,54.199103,54.199018,54.198932,54.198843,54.198757,54.19866,54.198565,54.198469,54.198384,54.198285,54.198192,54.198094,54.197998,54.197905,54.197808,54.197718,54.197624,54.197527,54.197436,54.197335,54.197243,54.197173,54.197084,54.197002,54.196915,54.19683,54.196755,54.196678,54.19661,54.196556,54.196497,54.196411,54.196318,54.196235,54.196146,54.196051,54.195955,54.195864,54.195763,54.195671,54.19557,54.195477,54.195384,54.195288,54.195196,54.1951,54.195001,54.194904,54.194808,54.194718,54.19463,54.194548,54.19448,54.194404,54.194334,54.194261,54.194192,54.194109,54.194036,54.193971,54.193904,54.193842,54.19378,54.193735,54.193714,54.193691,54.193662,54.193644,54.193616,54.19356,54.193476,54.193401,54.193313,54.193215,54.193119,54.193019,54.192924,54.192829,54.192735,54.192642,54.192543,54.192453,54.192352,54.192258,54.192164,54.192067,54.191965,54.191868,54.191772,54.191678,54.191628,54.191634,54.191621,54.19162,54.191625,54.191654,54.191661,54.191675,54.191695,54.191709,54.191717,54.191731,54.191747,54.191764,54.191784,54.191801,54.191814,54.191823,54.191815,54.191827,54.191841,54.191864,54.191877,54.191851,54.191822,54.191765,54.191712,54.191645,54.191576,54.191502,54.19145,54.191401,54.191332,54.191255,54.19119,54.191116,54.191049,54.190985,54.190936,54.190932,54.190867,54.190798,54.190732,54.19067,54.190612,54.190547,54.190518,54.190456,54.190386,54.190315,54.190248,54.190188,54.190123,54.190049,54.189966,54.189891,54.189842,54.18983,54.189863,54.189897,54.189916,54.189936,54.189977,54.19002,54.190061,54.190084,54.190114,54.190149,54.190177,54.190181,54.190186,54.190205,54.190207,54.190212,54.190222,54.190215,54.190212,54.190203,54.19021,54.190222,54.190227,54.190232,54.190242,54.190243,54.190259,54.190249,54.19023,54.190206,54.19017,54.190138,54.19013,54.190104,54.190035,54.190015,54.189931,54.189843,54.189749,54.189667,54.189578,54.189495,54.1894,54.18931,54.189229,54.189137,54.189048,54.188955,54.188878,54.188801,54.188723,54.188636,54.188543,54.188456,54.188374,54.188288,54.188202,54.188111,54.188021,54.187927,54.187836,54.187749,54.187682,54.187582,54.187496,54.187414,54.187313,54.187223,54.187126,54.187028,54.186931,54.186837,54.186747,54.186661,54.186573,54.186479,54.186395,54.186303,54.186216,54.186126,54.186046,54.18597,54.185886,54.185809,54.185728,54.18565,54.185558,54.185477,54.185402,54.18532,54.185235,54.185143,54.185057,54.184977,54.184888,54.184795,54.184751,54.184669,54.184576,54.184491,54.18441,54.184317,54.184222,54.184118,54.184018,54.183928,54.183829,54.18373,54.183635,54.183544,54.183455,54.183364,54.183266,54.183172,54.183085,54.182993,54.182896,54.182804,54.182704,54.182607,54.182516,54.182416,54.18232,54.182227,54.18213,54.182031,54.181937,54.18185,54.181767,54.181679,54.181588,54.181505,54.181415,54.181328,54.181241,54.181159,54.181073,54.180982,54.180901,54.180823,54.180751,54.180662,54.180572,54.180486,54.180396,54.180313,54.180216,54.180128,54.180032,54.179933,54.179837,54.179746,54.17965,54.179559,54.179457,54.179363,54.17927,54.179175,54.179074,54.178977,54.178878,54.178783,54.178696,54.178607,54.178511,54.178411,54.178314,54.178226,54.178128,54.178033,54.177938,54.177842,54.177742,54.17765,54.177559,54.177463,54.177368,54.177269,54.177167,54.177077,54.176984,54.176891,54.176799,54.176698,54.176605,54.176511,54.176421,54.176329,54.176241,54.176149,54.176046,54.175943,54.175844,54.175739,54.175639,54.175539,54.175444,54.175355,54.175254,54.175154,54.175056,54.174959,54.17486,54.174762,54.174662,54.174568,54.174478,54.174378,54.174278,54.174178,54.17408,54.173977,54.173878,54.173776,54.173677,54.173581,54.173492,54.173403,54.173306,54.173216,54.173121,54.173029,54.172931,54.172828,54.172737,54.172634,54.172542,54.172451,54.172353,54.172252,54.172161,54.17207,54.171974,54.171871,54.171766,54.171672,54.171569,54.171474,54.171374,54.171276,54.171186,54.171088,54.170997,54.1709,54.170799,54.170695,54.170593,54.170494,54.170398,54.170301,54.170211,54.170117,54.170024,54.169927,54.16983,54.169732,54.169646,54.169558,54.169472,54.169379,54.169282,54.169188,54.16909,54.16899,54.168891,54.168793,54.168706,54.168616,54.16854,54.168451,54.168383,54.168315,54.168268,54.16818,54.168091,54.167999,54.167911,54.167823,54.167725,54.167636,54.167547,54.167447,54.167347,54.16725,54.167145,54.167057,54.16696,54.166866,54.166765,54.166666,54.166579,54.166487,54.166384,54.166285,54.166186,54.166089,54.165989,54.165886,54.165794,54.165699,54.165609,54.16552,54.165429,54.165338,54.165243,54.165147,54.165051,54.164966,54.164889,54.164833,54.164781,54.164751,54.164739,54.164716,54.164649,54.164559,54.164473,54.164452,54.164365,54.164276,54.164182,54.164082,54.163988,54.163893,54.163795,54.163695,54.163597,54.163497,54.163404,54.163304,54.163208,54.16311,54.163014,54.162918,54.162821,54.16272,54.16262,54.162521,54.162425,54.162335,54.162251,54.162171,54.162084,54.161982,54.161882,54.161787,54.161696,54.161596,54.161502,54.161411,54.161317,54.161223,54.161125,54.161035,54.160937,54.16084,54.160749,54.160652,54.160568,54.160472,54.160381,54.16028,54.16018,54.160084,54.159984,54.159893,54.159803,54.159711,54.159622,54.159526,54.159437,54.159342,54.159253,54.159162,54.159071,54.158974,54.158883,54.15879,54.158695,54.158596,54.158501,54.158411,54.158317,54.158217,54.158123,54.158028,54.157925,54.157824,54.157729,54.157632,54.157532,54.157436,54.157338,54.157239,54.157137,54.157045,54.156952,54.15686,54.15677,54.156677,54.156582,54.156481,54.156375,54.156282,54.156186,54.156092,54.156,54.155906,54.15581,54.155718,54.155631,54.155543,54.15545,54.155354,54.155258,54.155163,54.155072,54.15498,54.154885,54.154798,54.15471,54.154617,54.154522,54.154426,54.154338,54.154242,54.154149,54.154062,54.15397,54.153882,54.153787,54.153685,54.153596,54.153522,54.153445,54.153371,54.15329,54.153216,54.153143,54.153067,54.152986,54.15291,54.152831,54.152758,54.15269,54.152612,54.152539,54.152465,54.152395,54.152325,54.152255,54.152187,54.152121,54.15205,54.15198,54.151899,54.151825,54.151757,54.151676,54.151603,54.151531,54.151458,54.151387,54.15131,54.151233,54.151154,54.151073,54.150989,54.150901,54.150818,54.150734,54.150641,54.150556,54.150465,54.150378,54.150289,54.1502,54.150114,54.150032,54.149948,54.149863,54.14978,54.14973,54.149715,54.149712,54.149736,54.14978,54.14848,54.148389,54.148298,54.14822,54.148132,54.148049,54.147967,54.147884,54.147806,54.147732,54.147656,54.14758,54.147514,54.147445,54.14737,54.147284,54.147193,54.147106,54.147026,54.146945,54.146856,54.146767,54.146679,54.146584,54.146493,54.146398,54.146317,54.146223,54.146123,54.146022,54.145931,54.145831,54.145743,54.145644,54.145557,54.145462,54.145367,54.145274,54.145181,54.145085,54.144997,54.144901,54.144804,54.144709,54.144621,54.144529,54.144437,54.144429,54.144508,54.144421,54.144414,54.144427,54.144493,54.144523,54.144588,54.144519,54.144479,54.144479]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[54.144414,54.384939],"lng":[-2.306991,-2.152814]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-9-2" class="tab-pane" aria-labelledby="tabset-9-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb18-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-21"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_cb044617458355258be66397df318406 {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_cb044617458355258be66397df318406&quot; ></div>
        
</body>
<script>
    
    
            var map_cb044617458355258be66397df318406 = L.map(
                &quot;map_cb044617458355258be66397df318406&quot;,
                {
                    center: [54.28169063177179, -2.2445548966239204],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_14f13d56312e85fc5ffc55b764075631 = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_14f13d56312e85fc5ffc55b764075631.addTo(map_cb044617458355258be66397df318406);
        
    
            var tile_layer_81f75d6696998dbe2bb8e756ed3a7c77 = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_81f75d6696998dbe2bb8e756ed3a7c77.addTo(map_cb044617458355258be66397df318406);
        
    
            var color_line_bd1972a4a263b21d1db08b5061640005 = L.featureGroup(
                {
}
            );
        
    
            var poly_line_9c2630337da5bc9da4787493c177540e = L.polyline(
                [[[54.376904, -2.152814], [54.376867, -2.152875]], [[54.377015, -2.154681], [54.377068, -2.154767]], [[54.377068, -2.154767], [54.377128, -2.15489]], [[54.378955, -2.159203], [54.378981, -2.159271]], [[54.378981, -2.159271], [54.379024, -2.159424]], [[54.379625, -2.169548], [54.379673, -2.169617]], [[54.379673, -2.169617], [54.379747, -2.169722]], [[54.379733, -2.180923], [54.379765, -2.181036]], [[54.379809, -2.181179], [54.379836, -2.181326]], [[54.380212, -2.182993], [54.380275, -2.183118]], [[54.380275, -2.183118], [54.380331, -2.18322]], [[54.380331, -2.18322], [54.380403, -2.183329]], [[54.380403, -2.183329], [54.380472, -2.183434]], [[54.38136, -2.188558], [54.381335, -2.188707]], [[54.381217, -2.192396], [54.381235, -2.19252]], [[54.381235, -2.19252], [54.381175, -2.192637]], [[54.381148, -2.192792], [54.381168, -2.192946]], [[54.382994, -2.198939], [54.382966, -2.199052]], [[54.382966, -2.199052], [54.382966, -2.199218]], [[54.383221, -2.199694], [54.383299, -2.199776]], [[54.383431, -2.200003], [54.383472, -2.200145]], [[54.383882, -2.201602], [54.383932, -2.201745]], [[54.384225, -2.203828], [54.384293, -2.20393]], [[54.380081, -2.223069], [54.380133, -2.22321]], [[54.37765, -2.226118], [54.377604, -2.226177]], [[54.377513, -2.226247], [54.377439, -2.226355]], [[54.377287, -2.226559], [54.377204, -2.226639]], [[54.3771, -2.226705], [54.377034, -2.226811]], [[54.377034, -2.226811], [54.376966, -2.22692]], [[54.376966, -2.22692], [54.376914, -2.227027]], [[54.376835, -2.227116], [54.376764, -2.227237]], [[54.375663, -2.228733], [54.375618, -2.228776]], [[54.375618, -2.228776], [54.375707, -2.228709]], [[54.372268, -2.232707], [54.372176, -2.232726]], [[54.372176, -2.232726], [54.372088, -2.232766]], [[54.372088, -2.232766], [54.37202, -2.232813]], [[54.37202, -2.232813], [54.371932, -2.232863]], [[54.371932, -2.232863], [54.371883, -2.232961]], [[54.371883, -2.232961], [54.37183, -2.233085]], [[54.37157, -2.233507], [54.371513, -2.233586]], [[54.371513, -2.233586], [54.371445, -2.233688]], [[54.371082, -2.234175], [54.371041, -2.234264]], [[54.370798, -2.234587], [54.37074, -2.234705]], [[54.366678, -2.240266], [54.366586, -2.240295]], [[54.341578, -2.241488], [54.341482, -2.24145]], [[54.334487, -2.236938], [54.334463, -2.236781]], [[54.334134, -2.236012], [54.334068, -2.2359]], [[54.324284, -2.220342], [54.324192, -2.220282]], [[54.316377, -2.204941], [54.316368, -2.204909]], [[54.316378, -2.205066], [54.316296, -2.20514]], [[54.315599, -2.204482], [54.315547, -2.204343]], [[54.315392, -2.204034], [54.31531, -2.203964]], [[54.312603, -2.19502], [54.312568, -2.19487]], [[54.311815, -2.190983], [54.311728, -2.190908]], [[54.307815, -2.19231], [54.307778, -2.192279]], [[54.305685, -2.192386], [54.305671, -2.192433]], [[54.305573, -2.192447], [54.305486, -2.192503]], [[54.303662, -2.195035], [54.303697, -2.195182]], [[54.303653, -2.195305], [54.303733, -2.195389]], [[54.303795, -2.196281], [54.303795, -2.196297]], [[54.303795, -2.196297], [54.303748, -2.196434]], [[54.303823, -2.196914], [54.303831, -2.196928]], [[54.304066, -2.198424], [54.304067, -2.198579]], [[54.304082, -2.198735], [54.304098, -2.198793]], [[54.304012, -2.198741], [54.303981, -2.198669]], [[54.30403, -2.198593], [54.30401, -2.198427]], [[54.303821, -2.196958], [54.303886, -2.196931]], [[54.303886, -2.196931], [54.303885, -2.197102]], [[54.303915, -2.198198], [54.303927, -2.198216]], [[54.304014, -2.198177], [54.304082, -2.198245]], [[54.304082, -2.198245], [54.30404, -2.198385]], [[54.30404, -2.198385], [54.304075, -2.198537]], [[54.304073, -2.19931], [54.304086, -2.19942]], [[54.304104, -2.19937], [54.304095, -2.199213]], [[54.304101, -2.199053], [54.304071, -2.199032]], [[54.304071, -2.199032], [54.304071, -2.198878]], [[54.303975, -2.198634], [54.303958, -2.198506]], [[54.303935, -2.19835], [54.303925, -2.198356]], [[54.303823, -2.19755], [54.303827, -2.197451]], [[54.30345, -2.197377], [54.303397, -2.197376]], [[54.303231, -2.197255], [54.303171, -2.197199]], [[54.303313, -2.197527], [54.303222, -2.197561]], [[54.303222, -2.197561], [54.303132, -2.19753]], [[54.30168, -2.198722], [54.301626, -2.198763]], [[54.301626, -2.198763], [54.301548, -2.198844]], [[54.298994, -2.199838], [54.298944, -2.199871]], [[54.298979, -2.200031], [54.298983, -2.200198]], [[54.297459, -2.204675], [54.297368, -2.204631]], [[54.297368, -2.204631], [54.297291, -2.204567]], [[54.297148, -2.204449], [54.29706, -2.204405]], [[54.29706, -2.204405], [54.296975, -2.204329]], [[54.296975, -2.204329], [54.296882, -2.204275]], [[54.296522, -2.204066], [54.2965, -2.204101]], [[54.295543, -2.205091], [54.295613, -2.205187]], [[54.296088, -2.206449], [54.296049, -2.206596]], [[54.295822, -2.208129], [54.295899, -2.208219]], [[54.295266, -2.210397], [54.295222, -2.210446]], [[54.295188, -2.210596], [54.295166, -2.210746]], [[54.293403, -2.216682], [54.293311, -2.216758]], [[54.292841, -2.217742], [54.292822, -2.217904]], [[54.292567, -2.218746], [54.292514, -2.218878]], [[54.292514, -2.218878], [54.292492, -2.219035]], [[54.292492, -2.219035], [54.292448, -2.219174]], [[54.291884, -2.221329], [54.291865, -2.221479]], [[54.291865, -2.221479], [54.291824, -2.221626]], [[54.291785, -2.221933], [54.291758, -2.222092]], [[54.291532, -2.223441], [54.291461, -2.223546]], [[54.291345, -2.223998], [54.291312, -2.224066]], [[54.291277, -2.224222], [54.291238, -2.224376]], [[54.290722, -2.226782], [54.29066, -2.22685]], [[54.290587, -2.226961], [54.290517, -2.227083]], [[54.289824, -2.228488], [54.289733, -2.228511]], [[54.289702, -2.228464], [54.289623, -2.22855]], [[54.288723, -2.229263], [54.288657, -2.229372]], [[54.288657, -2.229372], [54.288575, -2.229466]], [[54.288397, -2.229525], [54.288321, -2.229623]], [[54.288321, -2.229623], [54.288246, -2.229708]], [[54.288246, -2.229708], [54.288185, -2.229828]], [[54.288185, -2.229828], [54.288117, -2.229878]], [[54.288117, -2.229878], [54.28806, -2.230008]], [[54.287652, -2.230409], [54.287586, -2.230513]], [[54.287586, -2.230513], [54.287501, -2.230566]], [[54.287097, -2.230946], [54.287018, -2.231021]], [[54.287018, -2.231021], [54.286957, -2.231139]], [[54.285694, -2.232659], [54.285615, -2.232669]], [[54.28553, -2.23274], [54.285441, -2.23277]], [[54.283911, -2.23328], [54.283828, -2.233196]], [[54.283301, -2.233556], [54.283209, -2.233569]], [[54.281919, -2.236969], [54.281867, -2.237107]], [[54.280621, -2.238329], [54.280596, -2.238344]], [[54.280596, -2.238344], [54.280527, -2.238455]], [[54.27735, -2.242497], [54.277303, -2.242526]], [[54.277213, -2.242584], [54.277119, -2.242583]], [[54.260296, -2.252012], [54.260283, -2.252033]], [[54.26023, -2.252167], [54.260155, -2.252282]], [[54.244876, -2.267069], [54.244846, -2.267132]], [[54.244846, -2.267132], [54.244841, -2.267311]], [[54.244713, -2.267726], [54.244695, -2.267814]], [[54.244695, -2.267814], [54.244636, -2.267942]], [[54.236008, -2.281999], [54.235995, -2.282018]], [[54.219424, -2.305641], [54.219419, -2.305707]], [[54.212898, -2.305088], [54.2128, -2.305055]], [[54.205358, -2.303565], [54.2053, -2.303523]], [[54.205202, -2.303489], [54.205101, -2.303488]], [[54.190936, -2.295802], [54.190932, -2.295801]], [[54.190932, -2.295801], [54.190867, -2.295695]], [[54.190212, -2.290682], [54.190203, -2.290521]], [[54.190203, -2.290521], [54.19021, -2.290363]], [[54.19021, -2.290363], [54.190222, -2.290199]], [[54.190035, -2.288201], [54.190015, -2.288126]], [[54.188955, -2.288737], [54.188878, -2.288722]], [[54.164473, -2.289605], [54.164452, -2.289613]], [[54.164365, -2.289655], [54.164276, -2.289613]], [[54.149712, -2.29572], [54.149736, -2.295707]], [[54.144414, -2.29299], [54.144427, -2.293024]], [[54.144519, -2.292914], [54.144479, -2.293035]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            var poly_line_2db2c8febf0ed9ef5c7b973abe75cc61 = L.polyline(
                [[[54.376867, -2.152875], [54.37688, -2.153031]], [[54.377, -2.154529], [54.377015, -2.154681]], [[54.377128, -2.15489], [54.377191, -2.155019]], [[54.377191, -2.155019], [54.377255, -2.155133]], [[54.377742, -2.15592], [54.377824, -2.155961]], [[54.377824, -2.155961], [54.377867, -2.156107]], [[54.378652, -2.157887], [54.378731, -2.157988]], [[54.378962, -2.159041], [54.378955, -2.159203]], [[54.379082, -2.160716], [54.379095, -2.160884]], [[54.379095, -2.160884], [54.379097, -2.161057]], [[54.379181, -2.163013], [54.379192, -2.163139]], [[54.379192, -2.163139], [54.379183, -2.163302]], [[54.379174, -2.163802], [54.379151, -2.163962]], [[54.379151, -2.163962], [54.379151, -2.16412]], [[54.379142, -2.164276], [54.379122, -2.164434]], [[54.379107, -2.16543], [54.379132, -2.165546]], [[54.379132, -2.165546], [54.379147, -2.165706]], [[54.379147, -2.165706], [54.379172, -2.165859]], [[54.379172, -2.165859], [54.379193, -2.166026]], [[54.379193, -2.166026], [54.3792, -2.166164]], [[54.3792, -2.166164], [54.379218, -2.166334]], [[54.379235, -2.166493], [54.37919, -2.16663]], [[54.37919, -2.16663], [54.379145, -2.166787]], [[54.379616, -2.169382], [54.379625, -2.169548]], [[54.379747, -2.169722], [54.379812, -2.169853]], [[54.379856, -2.17], [54.379903, -2.170133]], [[54.379903, -2.170133], [54.379967, -2.170256]], [[54.380283, -2.171247], [54.380372, -2.171326]], [[54.380536, -2.172334], [54.38052, -2.172488]], [[54.379448, -2.178107], [54.379417, -2.178268]], [[54.379417, -2.178268], [54.379385, -2.178419]], [[54.379385, -2.178419], [54.379347, -2.178566]], [[54.379347, -2.178566], [54.379346, -2.178722]], [[54.379322, -2.179681], [54.379328, -2.179841]], [[54.379328, -2.179841], [54.379343, -2.180002]], [[54.379343, -2.180002], [54.379391, -2.180147]], [[54.379391, -2.180147], [54.379453, -2.180267]], [[54.379453, -2.180267], [54.379507, -2.180402]], [[54.379507, -2.180402], [54.379553, -2.180541]], [[54.379553, -2.180541], [54.379617, -2.180668]], [[54.379617, -2.180668], [54.379679, -2.180786]], [[54.379679, -2.180786], [54.379733, -2.180923]], [[54.379836, -2.181326], [54.379855, -2.181481]], [[54.379855, -2.181481], [54.379866, -2.18164]], [[54.379866, -2.18164], [54.379857, -2.181804]], [[54.379857, -2.181804], [54.37985, -2.181959]], [[54.37985, -2.181959], [54.379848, -2.182113]], [[54.379848, -2.182113], [54.379863, -2.182277]], [[54.379863, -2.182277], [54.379895, -2.182423]], [[54.379895, -2.182423], [54.379938, -2.18256]], [[54.379938, -2.18256], [54.379986, -2.182705]], [[54.379986, -2.182705], [54.380062, -2.182797]], [[54.380062, -2.182797], [54.380135, -2.18289]], [[54.380135, -2.18289], [54.380212, -2.182993]], [[54.380472, -2.183434], [54.380542, -2.183533]], [[54.380542, -2.183533], [54.380606, -2.183642]], [[54.380606, -2.183642], [54.380666, -2.183768]], [[54.380666, -2.183768], [54.380652, -2.183924]], [[54.380652, -2.183924], [54.380606, -2.184057]], [[54.380606, -2.184057], [54.380556, -2.184188]], [[54.380556, -2.184188], [54.380528, -2.184337]], [[54.380528, -2.184337], [54.38052, -2.184491]], [[54.38052, -2.184491], [54.380523, -2.184656]], [[54.380523, -2.184656], [54.380507, -2.184813]], [[54.380507, -2.184813], [54.380478, -2.184965]], [[54.380478, -2.184965], [54.380477, -2.185127]], [[54.380477, -2.185127], [54.380503, -2.185276]], [[54.380503, -2.185276], [54.380505, -2.185431]], [[54.380505, -2.185431], [54.380517, -2.185586]], [[54.380517, -2.185586], [54.380516, -2.185742]], [[54.380516, -2.185742], [54.380545, -2.185901]], [[54.380545, -2.185901], [54.380556, -2.186055]], [[54.380556, -2.186055], [54.380572, -2.186212]], [[54.380572, -2.186212], [54.380588, -2.186371]], [[54.380588, -2.186371], [54.38062, -2.186521]], [[54.38062, -2.186521], [54.38067, -2.186652]], [[54.38067, -2.186652], [54.38071, -2.1868]], [[54.38071, -2.1868], [54.380761, -2.186934]], [[54.380761, -2.186934], [54.380826, -2.187042]], [[54.380826, -2.187042], [54.380888, -2.187159]], [[54.380888, -2.187159], [54.380949, -2.187276]], [[54.380949, -2.187276], [54.381015, -2.187397]], [[54.381015, -2.187397], [54.381067, -2.187524]], [[54.381067, -2.187524], [54.381118, -2.187653]], [[54.381118, -2.187653], [54.381188, -2.187769]], [[54.381188, -2.187769], [54.38127, -2.187861]], [[54.381335, -2.188707], [54.38131, -2.188857]], [[54.38131, -2.188857], [54.381287, -2.189013]], [[54.381219, -2.189807], [54.381228, -2.189976]], [[54.381221, -2.191595], [54.381228, -2.191752]], [[54.381228, -2.191752], [54.381228, -2.191912]], [[54.381228, -2.191912], [54.381218, -2.192075]], [[54.381218, -2.192075], [54.381212, -2.192235]], [[54.381212, -2.192235], [54.381217, -2.192396]], [[54.381188, -2.193115], [54.381214, -2.193263]], [[54.381214, -2.193263], [54.381249, -2.193418]], [[54.381249, -2.193418], [54.381276, -2.193583]], [[54.381276, -2.193583], [54.38131, -2.193731]], [[54.38131, -2.193731], [54.381369, -2.193861]], [[54.381369, -2.193861], [54.381414, -2.194001]], [[54.381414, -2.194001], [54.381443, -2.194158]], [[54.381443, -2.194158], [54.381462, -2.194321]], [[54.381462, -2.194321], [54.381524, -2.194455]], [[54.381524, -2.194455], [54.381584, -2.19459]], [[54.381584, -2.19459], [54.381619, -2.194738]], [[54.381619, -2.194738], [54.381669, -2.194873]], [[54.381669, -2.194873], [54.381697, -2.19502]], [[54.381697, -2.19502], [54.381738, -2.195164]], [[54.381738, -2.195164], [54.381786, -2.195311]], [[54.381786, -2.195311], [54.381836, -2.195443]], [[54.381836, -2.195443], [54.381877, -2.195597]], [[54.381877, -2.195597], [54.381925, -2.195728]], [[54.381925, -2.195728], [54.381989, -2.19585]], [[54.381989, -2.19585], [54.382051, -2.195975]], [[54.382051, -2.195975], [54.382102, -2.196109]], [[54.382102, -2.196109], [54.382141, -2.196254]], [[54.382141, -2.196254], [54.382192, -2.196384]], [[54.382192, -2.196384], [54.382245, -2.196517]], [[54.382245, -2.196517], [54.382277, -2.196662]], [[54.382277, -2.196662], [54.3823, -2.196823]], [[54.3823, -2.196823], [54.382321, -2.196985]], [[54.382321, -2.196985], [54.382361, -2.197123]], [[54.382361, -2.197123], [54.38241, -2.197269]], [[54.38241, -2.197269], [54.382463, -2.197406]], [[54.382463, -2.197406], [54.38251, -2.197548]], [[54.38251, -2.197548], [54.382555, -2.1977]], [[54.382555, -2.1977], [54.382606, -2.19784]], [[54.382606, -2.19784], [54.382657, -2.197979]], [[54.382657, -2.197979], [54.382699, -2.198125]], [[54.382699, -2.198125], [54.382744, -2.198265]], [[54.382744, -2.198265], [54.382757, -2.198422]], [[54.382757, -2.198422], [54.382826, -2.198539]], [[54.382826, -2.198539], [54.382884, -2.198672]], [[54.382884, -2.198672], [54.382944, -2.198805]], [[54.382944, -2.198805], [54.382994, -2.198939]], [[54.382966, -2.199218], [54.383017, -2.199358]], [[54.383017, -2.199358], [54.383079, -2.199489]], [[54.383079, -2.199489], [54.383155, -2.19958]], [[54.383155, -2.19958], [54.383221, -2.199694]], [[54.383299, -2.199776], [54.383371, -2.199869]], [[54.383371, -2.199869], [54.383431, -2.200003]], [[54.383472, -2.200145], [54.383495, -2.200294]], [[54.383495, -2.200294], [54.383514, -2.200445]], [[54.383514, -2.200445], [54.383573, -2.200563]], [[54.383573, -2.200563], [54.383615, -2.200707]], [[54.383615, -2.200707], [54.38366, -2.200858]], [[54.38366, -2.200858], [54.383712, -2.201005]], [[54.383712, -2.201005], [54.383744, -2.20117]], [[54.383744, -2.20117], [54.383789, -2.201319]], [[54.383789, -2.201319], [54.383836, -2.201459]], [[54.383836, -2.201459], [54.383882, -2.201602]], [[54.383932, -2.201745], [54.383974, -2.201896]], [[54.383974, -2.201896], [54.383995, -2.20206]], [[54.384141, -2.203121], [54.38415, -2.20328]], [[54.38415, -2.20328], [54.384152, -2.203447]], [[54.384169, -2.203757], [54.384225, -2.203828]], [[54.384293, -2.20393], [54.384314, -2.204091]], [[54.384314, -2.204091], [54.384338, -2.204262]], [[54.384357, -2.204413], [54.38438, -2.204574]], [[54.38438, -2.204574], [54.38437, -2.204737]], [[54.38432, -2.204954], [54.38435, -2.205111]], [[54.38435, -2.205111], [54.384372, -2.205265]], [[54.384372, -2.205265], [54.384392, -2.205416]], [[54.384392, -2.205416], [54.384375, -2.205577]], [[54.384385, -2.205905], [54.384359, -2.206066]], [[54.384359, -2.206066], [54.384371, -2.206233]], [[54.384371, -2.206233], [54.38437, -2.206392]], [[54.38437, -2.206392], [54.384378, -2.206552]], [[54.384394, -2.207061], [54.384398, -2.20723]], [[54.384838, -2.208871], [54.384849, -2.209036]], [[54.384792, -2.210727], [54.384748, -2.210876]], [[54.384748, -2.210876], [54.384676, -2.210989]], [[54.384619, -2.211112], [54.38455, -2.211217]], [[54.38455, -2.211217], [54.384544, -2.211373]], [[54.384544, -2.211373], [54.384516, -2.211536]], [[54.384516, -2.211536], [54.384469, -2.21168]], [[54.384469, -2.21168], [54.384421, -2.211826]], [[54.384421, -2.211826], [54.384389, -2.211972]], [[54.384389, -2.211972], [54.384346, -2.212131]], [[54.384115, -2.21355], [54.384092, -2.213699]], [[54.384092, -2.213699], [54.384055, -2.213841]], [[54.381794, -2.219819], [54.381722, -2.219933]], [[54.381722, -2.219933], [54.381639, -2.220022]], [[54.381639, -2.220022], [54.381573, -2.220144]], [[54.381153, -2.220814], [54.381083, -2.220918]], [[54.381007, -2.221], [54.380952, -2.221124]], [[54.380952, -2.221124], [54.380874, -2.221213]], [[54.380639, -2.221513], [54.380573, -2.221621]], [[54.380573, -2.221621], [54.380477, -2.221655]], [[54.380477, -2.221655], [54.380455, -2.221807]], [[54.380455, -2.221807], [54.380438, -2.221965]], [[54.380438, -2.221965], [54.380394, -2.222102]], [[54.380394, -2.222102], [54.380359, -2.222246]], [[54.380305, -2.222388], [54.38024, -2.222513]], [[54.38024, -2.222513], [54.38018, -2.222633]], [[54.380079, -2.222908], [54.380081, -2.223069]], [[54.380133, -2.22321], [54.380169, -2.223362]], [[54.380169, -2.223362], [54.38009, -2.223446]], [[54.38009, -2.223446], [54.38, -2.223513]], [[54.379911, -2.223541], [54.379816, -2.22354]], [[54.379816, -2.22354], [54.379761, -2.223672]], [[54.379761, -2.223672], [54.379677, -2.22376]], [[54.379515, -2.223938], [54.37944, -2.224043]], [[54.37944, -2.224043], [54.379356, -2.224111]], [[54.379356, -2.224111], [54.379277, -2.224197]], [[54.379277, -2.224197], [54.379197, -2.224284]], [[54.379197, -2.224284], [54.379119, -2.224369]], [[54.379119, -2.224369], [54.379049, -2.224469]], [[54.379049, -2.224469], [54.37896, -2.224543]], [[54.37896, -2.224543], [54.378892, -2.224649]], [[54.378892, -2.224649], [54.378829, -2.224773]], [[54.378829, -2.224773], [54.378748, -2.224874]], [[54.378412, -2.225183], [54.378335, -2.22527]], [[54.378335, -2.22527], [54.378259, -2.225353]], [[54.378259, -2.225353], [54.378196, -2.225474]], [[54.378196, -2.225474], [54.378116, -2.225542]], [[54.378116, -2.225542], [54.378046, -2.225645]], [[54.378046, -2.225645], [54.377966, -2.225742]], [[54.377966, -2.225742], [54.377885, -2.225838]], [[54.377802, -2.225929], [54.377721, -2.226023]], [[54.377721, -2.226023], [54.37765, -2.226118]], [[54.377439, -2.226355], [54.37736, -2.226458]], [[54.37736, -2.226458], [54.377287, -2.226559]], [[54.376399, -2.227723], [54.37632, -2.227821]], [[54.376027, -2.228242], [54.375963, -2.228353]], [[54.375963, -2.228353], [54.375894, -2.228468]], [[54.375894, -2.228468], [54.375822, -2.228581]], [[54.375707, -2.228709], [54.375769, -2.228822]], [[54.375769, -2.228822], [54.375779, -2.228981]], [[54.375779, -2.228981], [54.375748, -2.229138]], [[54.375748, -2.229138], [54.375685, -2.22925]], [[54.375532, -2.229362], [54.375435, -2.22935]], [[54.375435, -2.22935], [54.375348, -2.229292]], [[54.375348, -2.229292], [54.375261, -2.229219]], [[54.375261, -2.229219], [54.375165, -2.229207]], [[54.375165, -2.229207], [54.37507, -2.229246]], [[54.37507, -2.229246], [54.374981, -2.229315]], [[54.374981, -2.229315], [54.374895, -2.229372]], [[54.374895, -2.229372], [54.374801, -2.22932]], [[54.374711, -2.229281], [54.374676, -2.229428]], [[54.374676, -2.229428], [54.374603, -2.229539]], [[54.374603, -2.229539], [54.374537, -2.229668]], [[54.374457, -2.229779], [54.374403, -2.229908]], [[54.374403, -2.229908], [54.374355, -2.230038]], [[54.374355, -2.230038], [54.374276, -2.230141]], [[54.374036, -2.230427], [54.373959, -2.230516]], [[54.373959, -2.230516], [54.373889, -2.230629]], [[54.373889, -2.230629], [54.37386, -2.230776]], [[54.37386, -2.230776], [54.373773, -2.230857]], [[54.373773, -2.230857], [54.373703, -2.230956]], [[54.373703, -2.230956], [54.373621, -2.231022]], [[54.373621, -2.231022], [54.373536, -2.231101]], [[54.373536, -2.231101], [54.373451, -2.231176]], [[54.373451, -2.231176], [54.373444, -2.231336]], [[54.37338, -2.231634], [54.373322, -2.231757]], [[54.373322, -2.231757], [54.373239, -2.231826]], [[54.373239, -2.231826], [54.373151, -2.231902]], [[54.373151, -2.231902], [54.373069, -2.231981]], [[54.373069, -2.231981], [54.372984, -2.232034]], [[54.372729, -2.232198], [54.372637, -2.232231]], [[54.372637, -2.232231], [54.372585, -2.232373]], [[54.372585, -2.232373], [54.372515, -2.232478]], [[54.372515, -2.232478], [54.372421, -2.232526]], [[54.372421, -2.232526], [54.372351, -2.232634]], [[54.372351, -2.232634], [54.372268, -2.232707]], [[54.37183, -2.233085], [54.371748, -2.233162]], [[54.371748, -2.233162], [54.371665, -2.233237]], [[54.371665, -2.233237], [54.371608, -2.233366]], [[54.371608, -2.233366], [54.37157, -2.233507]], [[54.371445, -2.233688], [54.371358, -2.23375]], [[54.37116, -2.234087], [54.371082, -2.234175]], [[54.371041, -2.234264], [54.370972, -2.234376]], [[54.370972, -2.234376], [54.370899, -2.234486]], [[54.366755, -2.240299], [54.366678, -2.240266]], [[54.366586, -2.240295], [54.366499, -2.240372]], [[54.366499, -2.240372], [54.366419, -2.240454]], [[54.366419, -2.240454], [54.36634, -2.240534]], [[54.36634, -2.240534], [54.366252, -2.240594]], [[54.366252, -2.240594], [54.366163, -2.240612]], [[54.366163, -2.240612], [54.366074, -2.24064]], [[54.363849, -2.240855], [54.36377, -2.240749]], [[54.36377, -2.240749], [54.363684, -2.240687]], [[54.36198, -2.240802], [54.361895, -2.240859]], [[54.361803, -2.240872], [54.361711, -2.24085]], [[54.361711, -2.24085], [54.361625, -2.240933]], [[54.360792, -2.241198], [54.360701, -2.241248]], [[54.360701, -2.241248], [54.360616, -2.241326]], [[54.360616, -2.241326], [54.360534, -2.241423]], [[54.342632, -2.241463], [54.34257, -2.241364]], [[54.34257, -2.241364], [54.342484, -2.241299]], [[54.341733, -2.24146], [54.341668, -2.24148]], [[54.338822, -2.240507], [54.338738, -2.24043]], [[54.334582, -2.236915], [54.334493, -2.236958]], [[54.333723, -2.235366], [54.333623, -2.235356]], [[54.333623, -2.235356], [54.333529, -2.23542]], [[54.327054, -2.226321], [54.326988, -2.226189]], [[54.326988, -2.226189], [54.326918, -2.226076]], [[54.324427, -2.220434], [54.324373, -2.220368]], [[54.324192, -2.220282], [54.324132, -2.220189]], [[54.324132, -2.220189], [54.32405, -2.220114]], [[54.318978, -2.208454], [54.318885, -2.208421]], [[54.317972, -2.208072], [54.31788, -2.208011]], [[54.31611, -2.205157], [54.316018, -2.205076]], [[54.315647, -2.204571], [54.315599, -2.204482]], [[54.315459, -2.204073], [54.315392, -2.204034]], [[54.31518, -2.203714], [54.315148, -2.203631]], [[54.315148, -2.203631], [54.315099, -2.203473]], [[54.314658, -2.202414], [54.314601, -2.202269]], [[54.313821, -2.199117], [54.313798, -2.199006]], [[54.313798, -2.199006], [54.313769, -2.198847]], [[54.313291, -2.196933], [54.313223, -2.196829]], [[54.313223, -2.196829], [54.313149, -2.196713]], [[54.313149, -2.196713], [54.313101, -2.196575]], [[54.312673, -2.1951], [54.312603, -2.19502]], [[54.311844, -2.191117], [54.311815, -2.190983]], [[54.307932, -2.192148], [54.30786, -2.192177]], [[54.30786, -2.192177], [54.307815, -2.19231]], [[54.307682, -2.192274], [54.307582, -2.192282]], [[54.304107, -2.194053], [54.304027, -2.19414]], [[54.304027, -2.19414], [54.303987, -2.194283]], [[54.303987, -2.194283], [54.303899, -2.194317]], [[54.303899, -2.194317], [54.303815, -2.194382]], [[54.303815, -2.194382], [54.303732, -2.194465]], [[54.303638, -2.194931], [54.303662, -2.195035]], [[54.303697, -2.195182], [54.303653, -2.195305]], [[54.303733, -2.195389], [54.303809, -2.195503]], [[54.30382, -2.19709], [54.30384, -2.197245]], [[54.304007, -2.198336], [54.304066, -2.198424]], [[54.30401, -2.198427], [54.304009, -2.198269]], [[54.304009, -2.198269], [54.303918, -2.198242]], [[54.303908, -2.198075], [54.303894, -2.197922]], [[54.303894, -2.197922], [54.303891, -2.197765]], [[54.303885, -2.197102], [54.30389, -2.197274]], [[54.304117, -2.199173], [54.304073, -2.19931]], [[54.304095, -2.199213], [54.304101, -2.199053]], [[54.304017, -2.198754], [54.303979, -2.198612]], [[54.304094, -2.198815], [54.304078, -2.198975]], [[54.304118, -2.199286], [54.304089, -2.199434]], [[54.304078, -2.199312], [54.304064, -2.199141]], [[54.304064, -2.198809], [54.303993, -2.198714]], [[54.303993, -2.198714], [54.303947, -2.198656]], [[54.303958, -2.198506], [54.303935, -2.19835]], [[54.303891, -2.198196], [54.303873, -2.198039]], [[54.303741, -2.197379], [54.303645, -2.197369]], [[54.303645, -2.197369], [54.303546, -2.197367]], [[54.303546, -2.197367], [54.30345, -2.197377]], [[54.303271, -2.197407], [54.303182, -2.197502]], [[54.303132, -2.19753], [54.303037, -2.197477]], [[54.303037, -2.197477], [54.302946, -2.197474]], [[54.302946, -2.197474], [54.302856, -2.197502]], [[54.301861, -2.198542], [54.30183, -2.198592]], [[54.301548, -2.198844], [54.301513, -2.198991]], [[54.301513, -2.198991], [54.301472, -2.19914]], [[54.300841, -2.200593], [54.300781, -2.200705]], [[54.300781, -2.200705], [54.300704, -2.200805]], [[54.299085, -2.199815], [54.298994, -2.199838]], [[54.298536, -2.204076], [54.29844, -2.204055]], [[54.29844, -2.204055], [54.29835, -2.204023]], [[54.29835, -2.204023], [54.298322, -2.204175]], [[54.298322, -2.204175], [54.298246, -2.204271]], [[54.298246, -2.204271], [54.298167, -2.204344]], [[54.298167, -2.204344], [54.298097, -2.204448]], [[54.298097, -2.204448], [54.298004, -2.204455]], [[54.298004, -2.204455], [54.297911, -2.204486]], [[54.297911, -2.204486], [54.297816, -2.204484]], [[54.297816, -2.204484], [54.297728, -2.204533]], [[54.297612, -2.204786], [54.297542, -2.204748]], [[54.297291, -2.204567], [54.297197, -2.2045]], [[54.297197, -2.2045], [54.297148, -2.204449]], [[54.296882, -2.204275], [54.296797, -2.204211]], [[54.296412, -2.204166], [54.296321, -2.204214]], [[54.295748, -2.204737], [54.295666, -2.20483]], [[54.295666, -2.20483], [54.295587, -2.204933]], [[54.295513, -2.205022], [54.295451, -2.205106]], [[54.295613, -2.205187], [54.295695, -2.205281]], [[54.295695, -2.205281], [54.295777, -2.205347]], [[54.29621, -2.205709], [54.296154, -2.205815]], [[54.296154, -2.205815], [54.296134, -2.205967]], [[54.296102, -2.206125], [54.296122, -2.206281]], [[54.295987, -2.206912], [54.295959, -2.20707]], [[54.295959, -2.20707], [54.295933, -2.20722]], [[54.295933, -2.20722], [54.295892, -2.207369]], [[54.295779, -2.208009], [54.295822, -2.208129]], [[54.295899, -2.208219], [54.295976, -2.208316]], [[54.295976, -2.208316], [54.295986, -2.208475]], [[54.295419, -2.209998], [54.295375, -2.210142]], [[54.295375, -2.210142], [54.295314, -2.210256]], [[54.295166, -2.210746], [54.295127, -2.210901]], [[54.2951, -2.211052], [54.295069, -2.211214]], [[54.295069, -2.211214], [54.295029, -2.211359]], [[54.295029, -2.211359], [54.294985, -2.211512]], [[54.294985, -2.211512], [54.294948, -2.211662]], [[54.294948, -2.211662], [54.294923, -2.211809]], [[54.294923, -2.211809], [54.294877, -2.211954]], [[54.294877, -2.211954], [54.294833, -2.212109]], [[54.294833, -2.212109], [54.294809, -2.212268]], [[54.294809, -2.212268], [54.294776, -2.212414]], [[54.294776, -2.212414], [54.294734, -2.212556]], [[54.294618, -2.212987], [54.294594, -2.213148]], [[54.294594, -2.213148], [54.294552, -2.213284]], [[54.294552, -2.213284], [54.294526, -2.213435]], [[54.294526, -2.213435], [54.294499, -2.213584]], [[54.294499, -2.213584], [54.294453, -2.213728]], [[54.294344, -2.21435], [54.294327, -2.214512]], [[54.293465, -2.216652], [54.293403, -2.216682]], [[54.293178, -2.216972], [54.293116, -2.217103]], [[54.293116, -2.217103], [54.293086, -2.217256]], [[54.293086, -2.217256], [54.293012, -2.217362]], [[54.293012, -2.217362], [54.292949, -2.217488]], [[54.292949, -2.217488], [54.292896, -2.217616]], [[54.292896, -2.217616], [54.292841, -2.217742]], [[54.292822, -2.217904], [54.292793, -2.218051]], [[54.292793, -2.218051], [54.292765, -2.218198]], [[54.292765, -2.218198], [54.292733, -2.218348]], [[54.292733, -2.218348], [54.292674, -2.218482]], [[54.292674, -2.218482], [54.292628, -2.218617]], [[54.292628, -2.218617], [54.292567, -2.218746]], [[54.292448, -2.219174], [54.29242, -2.219321]], [[54.29242, -2.219321], [54.292379, -2.219458]], [[54.292379, -2.219458], [54.292328, -2.219596]], [[54.292328, -2.219596], [54.292303, -2.219753]], [[54.292303, -2.219753], [54.29227, -2.219905]], [[54.29227, -2.219905], [54.292233, -2.220058]], [[54.292233, -2.220058], [54.292193, -2.220196]], [[54.292193, -2.220196], [54.292139, -2.220321]], [[54.292139, -2.220321], [54.2921, -2.220469]], [[54.2921, -2.220469], [54.292056, -2.220609]], [[54.292056, -2.220609], [54.292032, -2.220758]], [[54.292032, -2.220758], [54.292002, -2.220903]], [[54.292002, -2.220903], [54.291972, -2.221054]], [[54.291972, -2.221054], [54.291937, -2.221203]], [[54.291937, -2.221203], [54.291884, -2.221329]], [[54.291824, -2.221626], [54.291799, -2.221778]], [[54.291799, -2.221778], [54.291785, -2.221933]], [[54.291758, -2.222092], [54.29175, -2.22225]], [[54.29175, -2.22225], [54.291708, -2.222398]], [[54.291708, -2.222398], [54.291654, -2.222522]], [[54.291654, -2.222522], [54.291632, -2.222671]], [[54.291632, -2.222671], [54.291609, -2.22282]], [[54.291609, -2.22282], [54.291627, -2.222983]], [[54.291627, -2.222983], [54.291635, -2.223143]], [[54.291592, -2.223313], [54.291532, -2.223441]], [[54.291461, -2.223546], [54.291415, -2.223688]], [[54.291415, -2.223688], [54.291381, -2.223843]], [[54.291381, -2.223843], [54.291345, -2.223998]], [[54.291238, -2.224376], [54.291218, -2.224527]], [[54.291218, -2.224527], [54.291213, -2.224697]], [[54.291213, -2.224697], [54.291173, -2.22485]], [[54.291173, -2.22485], [54.29113, -2.224988]], [[54.29113, -2.224988], [54.291098, -2.225139]], [[54.291098, -2.225139], [54.291051, -2.225281]], [[54.291051, -2.225281], [54.291026, -2.225446]], [[54.291026, -2.225446], [54.290989, -2.225593]], [[54.290989, -2.225593], [54.290964, -2.225745]], [[54.29076, -2.226472], [54.290763, -2.226628]], [[54.290763, -2.226628], [54.290722, -2.226782]], [[54.290517, -2.227083], [54.290467, -2.227213]], [[54.290467, -2.227213], [54.290427, -2.227368]], [[54.290427, -2.227368], [54.290412, -2.227529]], [[54.290138, -2.228161], [54.290061, -2.228257]], [[54.290061, -2.228257], [54.289987, -2.228343]], [[54.289987, -2.228343], [54.289915, -2.228445]], [[54.289915, -2.228445], [54.289824, -2.228488]], [[54.289623, -2.22855], [54.28953, -2.228561]], [[54.28953, -2.228561], [54.289439, -2.228619]], [[54.289439, -2.228619], [54.289353, -2.22868]], [[54.289353, -2.22868], [54.289268, -2.228751]], [[54.289268, -2.228751], [54.289169, -2.22876]], [[54.289169, -2.22876], [54.289077, -2.228807]], [[54.289077, -2.228807], [54.288983, -2.228838]], [[54.288983, -2.228838], [54.288894, -2.228894]], [[54.288894, -2.228894], [54.288835, -2.22901]], [[54.288835, -2.22901], [54.288766, -2.229121]], [[54.288766, -2.229121], [54.288723, -2.229263]], [[54.288575, -2.229466], [54.288486, -2.229494]], [[54.288486, -2.229494], [54.288397, -2.229525]], [[54.28806, -2.230008], [54.287967, -2.230054]], [[54.287967, -2.230054], [54.287882, -2.230135]], [[54.287882, -2.230135], [54.287811, -2.230242]], [[54.287811, -2.230242], [54.287728, -2.230324]], [[54.287728, -2.230324], [54.287652, -2.230409]], [[54.287501, -2.230566], [54.287419, -2.23065]], [[54.287419, -2.23065], [54.287338, -2.230743]], [[54.287338, -2.230743], [54.28725, -2.230783]], [[54.28725, -2.230783], [54.287164, -2.230834]], [[54.287164, -2.230834], [54.287097, -2.230946]], [[54.286957, -2.231139], [54.28689, -2.231255]], [[54.28689, -2.231255], [54.286812, -2.231351]], [[54.286812, -2.231351], [54.286763, -2.231481]], [[54.286763, -2.231481], [54.286705, -2.231602]], [[54.286705, -2.231602], [54.286624, -2.231688]], [[54.286624, -2.231688], [54.28654, -2.231769]], [[54.28654, -2.231769], [54.286452, -2.231811]], [[54.286452, -2.231811], [54.286404, -2.231944]], [[54.286404, -2.231944], [54.286341, -2.232062]], [[54.286269, -2.232174], [54.286216, -2.232311]], [[54.286216, -2.232311], [54.286131, -2.232362]], [[54.286131, -2.232362], [54.286042, -2.232392]], [[54.286042, -2.232392], [54.285958, -2.232458]], [[54.285958, -2.232458], [54.285865, -2.23251]], [[54.285865, -2.23251], [54.285784, -2.232593]], [[54.285784, -2.232593], [54.285694, -2.232659]], [[54.285441, -2.23277], [54.285352, -2.232835]], [[54.28488, -2.23284], [54.284787, -2.232885]], [[54.284787, -2.232885], [54.284697, -2.232874]], [[54.28432, -2.232907], [54.284245, -2.233016]], [[54.284245, -2.233016], [54.284164, -2.233085]], [[54.283978, -2.233161], [54.283911, -2.23328]], [[54.283828, -2.233196], [54.283734, -2.233243]], [[54.283734, -2.233243], [54.283643, -2.233283]], [[54.283643, -2.233283], [54.283553, -2.233345]], [[54.283553, -2.233345], [54.283465, -2.233392]], [[54.283465, -2.233392], [54.283381, -2.233477]], [[54.283381, -2.233477], [54.283301, -2.233556]], [[54.283209, -2.233569], [54.283119, -2.233632]], [[54.282492, -2.235416], [54.282451, -2.235568]], [[54.282451, -2.235568], [54.28243, -2.235723]], [[54.282088, -2.236606], [54.282049, -2.236752]], [[54.282049, -2.236752], [54.281978, -2.236849]], [[54.281978, -2.236849], [54.281919, -2.236969]], [[54.281867, -2.237107], [54.281818, -2.237254]], [[54.281818, -2.237254], [54.281782, -2.237398]], [[54.281782, -2.237398], [54.281723, -2.237522]], [[54.281723, -2.237522], [54.281657, -2.23763]], [[54.281657, -2.23763], [54.281592, -2.237743]], [[54.281592, -2.237743], [54.281532, -2.237859]], [[54.281532, -2.237859], [54.281503, -2.238012]], [[54.281422, -2.238088], [54.281329, -2.238069]], [[54.281329, -2.238069], [54.281239, -2.238031]], [[54.281239, -2.238031], [54.281147, -2.238042]], [[54.281147, -2.238042], [54.281055, -2.238071]], [[54.281055, -2.238071], [54.280978, -2.238161]], [[54.280978, -2.238161], [54.280891, -2.238216]], [[54.280891, -2.238216], [54.280803, -2.238285]], [[54.280803, -2.238285], [54.280715, -2.238328]], [[54.280715, -2.238328], [54.280621, -2.238329]], [[54.27954, -2.239923], [54.279465, -2.240016]], [[54.279465, -2.240016], [54.279369, -2.240017]], [[54.279275, -2.240028], [54.279206, -2.240138]], [[54.279206, -2.240138], [54.279124, -2.240213]], [[54.279124, -2.240213], [54.279031, -2.240207]], [[54.279031, -2.240207], [54.278934, -2.240203]], [[54.278934, -2.240203], [54.278843, -2.240197]], [[54.278843, -2.240197], [54.278746, -2.240226]], [[54.278746, -2.240226], [54.278657, -2.240261]], [[54.278657, -2.240261], [54.278574, -2.240352]], [[54.278574, -2.240352], [54.278531, -2.240497]], [[54.278479, -2.240634], [54.278399, -2.240715]], [[54.272146, -2.245252], [54.272057, -2.245276]], [[54.272057, -2.245276], [54.271963, -2.245269]], [[54.260464, -2.251654], [54.260419, -2.251779]], [[54.260359, -2.251901], [54.260296, -2.252012]], [[54.257967, -2.253927], [54.25787, -2.253977]], [[54.257691, -2.254089], [54.257599, -2.254137]], [[54.257599, -2.254137], [54.257499, -2.254167]], [[54.257122, -2.25429], [54.25703, -2.254306]], [[54.25703, -2.254306], [54.256931, -2.254343]], [[54.256838, -2.254383], [54.256745, -2.254437]], [[54.254836, -2.255852], [54.254761, -2.255955]], [[54.254761, -2.255955], [54.254695, -2.25607]], [[54.252409, -2.259024], [54.252345, -2.259137]], [[54.252345, -2.259137], [54.25227, -2.259235]], [[54.246864, -2.262442], [54.246763, -2.262456]], [[54.246023, -2.262772], [54.245964, -2.262747]], [[54.245964, -2.262747], [54.24588, -2.262818]], [[54.244995, -2.266657], [54.244971, -2.266774]], [[54.244971, -2.266774], [54.244925, -2.266918]], [[54.244636, -2.267942], [54.244572, -2.268079]], [[54.235922, -2.282122], [54.235851, -2.282221]], [[54.235051, -2.283356], [54.234956, -2.283412]], [[54.227628, -2.292029], [54.227553, -2.292129]], [[54.219329, -2.305694], [54.219237, -2.305755]], [[54.213038, -2.305127], [54.212995, -2.3051]], [[54.20718, -2.302754], [54.207094, -2.302809]], [[54.207094, -2.302809], [54.206994, -2.302855]], [[54.19356, -2.302067], [54.193476, -2.301979]], [[54.193476, -2.301979], [54.193401, -2.301887]], [[54.190547, -2.295086], [54.190518, -2.294937]], [[54.190518, -2.294937], [54.190456, -2.29482]], [[54.190456, -2.29482], [54.190386, -2.294725]], [[54.189916, -2.29322], [54.189936, -2.293057]], [[54.189936, -2.293057], [54.189977, -2.292918]], [[54.190215, -2.290846], [54.190212, -2.290682]], [[54.190222, -2.290199], [54.190227, -2.290033]], [[54.190227, -2.290033], [54.190232, -2.289879]], [[54.190232, -2.289879], [54.190242, -2.289719]], [[54.190242, -2.289719], [54.190243, -2.289565]], [[54.190243, -2.289565], [54.190259, -2.289399]], [[54.190259, -2.289399], [54.190249, -2.289242]], [[54.190104, -2.28832], [54.190035, -2.288201]], [[54.189931, -2.288051], [54.189843, -2.288111]], [[54.188878, -2.288722], [54.188801, -2.288823]], [[54.188636, -2.288971], [54.188543, -2.289031]], [[54.188543, -2.289031], [54.188456, -2.289106]], [[54.188456, -2.289106], [54.188374, -2.289186]], [[54.188374, -2.289186], [54.188288, -2.289245]], [[54.188288, -2.289245], [54.188202, -2.289304]], [[54.188202, -2.289304], [54.188111, -2.289349]], [[54.187749, -2.289598], [54.187682, -2.289703]], [[54.187682, -2.289703], [54.187582, -2.28972]], [[54.187496, -2.28978], [54.187414, -2.289856]], [[54.186046, -2.290562], [54.18597, -2.290625]], [[54.18597, -2.290625], [54.185886, -2.290702]], [[54.185057, -2.291487], [54.184977, -2.291455]], [[54.184888, -2.291409], [54.184795, -2.291433]], [[54.181767, -2.291275], [54.181679, -2.291355]], [[54.181679, -2.291355], [54.181588, -2.291417]], [[54.164751, -2.28985], [54.164739, -2.289747]], [[54.164739, -2.289747], [54.164716, -2.289597]], [[54.161787, -2.289296], [54.161696, -2.289299]], [[54.161502, -2.289294], [54.161411, -2.289269]], [[54.161411, -2.289269], [54.161317, -2.289263]], [[54.161317, -2.289263], [54.161223, -2.289276]], [[54.160652, -2.289252], [54.160568, -2.289327]], [[54.160568, -2.289327], [54.160472, -2.28937]], [[54.160472, -2.28937], [54.160381, -2.289439]], [[54.144621, -2.292837], [54.144529, -2.292884]], [[54.144529, -2.292884], [54.144437, -2.292913]], [[54.144437, -2.292913], [54.144429, -2.293062]], [[54.144421, -2.293143], [54.144414, -2.29299]], [[54.144588, -2.293017], [54.144519, -2.292914]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            var poly_line_bcab359139fb6d2f3271f582ccdd815f = L.polyline(
                [[[54.37688, -2.153031], [54.376884, -2.153198]], [[54.376884, -2.153198], [54.376903, -2.153369]], [[54.376903, -2.153369], [54.376925, -2.153536]], [[54.376983, -2.154194], [54.377001, -2.154361]], [[54.377001, -2.154361], [54.377, -2.154529]], [[54.377255, -2.155133], [54.37731, -2.155257]], [[54.377434, -2.155512], [54.377505, -2.155628]], [[54.377505, -2.155628], [54.377586, -2.155745]], [[54.377867, -2.156107], [54.37789, -2.156271]], [[54.37789, -2.156271], [54.377922, -2.156417]], [[54.377922, -2.156417], [54.377948, -2.156582]], [[54.377948, -2.156582], [54.377976, -2.156737]], [[54.378131, -2.157142], [54.378201, -2.157266]], [[54.378201, -2.157266], [54.378268, -2.157373]], [[54.378268, -2.157373], [54.378347, -2.157474]], [[54.378347, -2.157474], [54.378431, -2.157564]], [[54.378431, -2.157564], [54.378508, -2.157679]], [[54.378508, -2.157679], [54.378577, -2.157784]], [[54.378577, -2.157784], [54.378652, -2.157887]], [[54.378731, -2.157988], [54.378777, -2.158122]], [[54.378777, -2.158122], [54.378831, -2.158249]], [[54.378883, -2.158561], [54.3789, -2.158727]], [[54.3789, -2.158727], [54.378914, -2.158893]], [[54.378914, -2.158893], [54.378962, -2.159041]], [[54.379024, -2.159424], [54.379007, -2.159589]], [[54.379005, -2.159755], [54.379013, -2.159916]], [[54.379013, -2.159916], [54.379013, -2.160072]], [[54.379013, -2.160072], [54.379035, -2.160222]], [[54.379035, -2.160222], [54.379056, -2.160395]], [[54.379056, -2.160395], [54.379072, -2.160548]], [[54.379072, -2.160548], [54.379082, -2.160716]], [[54.379097, -2.161057], [54.379107, -2.161219]], [[54.379107, -2.161219], [54.379115, -2.161382]], [[54.379115, -2.161382], [54.379129, -2.161544]], [[54.379129, -2.161544], [54.379132, -2.161712]], [[54.379132, -2.161712], [54.379132, -2.161874]], [[54.379132, -2.161874], [54.379188, -2.162011]], [[54.379188, -2.162011], [54.379185, -2.162172]], [[54.379185, -2.162172], [54.379187, -2.162343]], [[54.379187, -2.162343], [54.379186, -2.162514]], [[54.379186, -2.162514], [54.379188, -2.162673]], [[54.379188, -2.162673], [54.379181, -2.162845]], [[54.379181, -2.162845], [54.379181, -2.163013]], [[54.379183, -2.163302], [54.379182, -2.163458]], [[54.379182, -2.163458], [54.379178, -2.163633]], [[54.379178, -2.163633], [54.379174, -2.163802]], [[54.379151, -2.16412], [54.379142, -2.164276]], [[54.379122, -2.164434], [54.379122, -2.164601]], [[54.379122, -2.164601], [54.379111, -2.164765]], [[54.379111, -2.164765], [54.379111, -2.164929]], [[54.379218, -2.166334], [54.379235, -2.166493]], [[54.379145, -2.166787], [54.379173, -2.166937]], [[54.37921, -2.167086], [54.379228, -2.167245]], [[54.379228, -2.167245], [54.379254, -2.167411]], [[54.379254, -2.167411], [54.379284, -2.167581]], [[54.379284, -2.167581], [54.379285, -2.167746]], [[54.379285, -2.167746], [54.379268, -2.167902]], [[54.379268, -2.167902], [54.379277, -2.168065]], [[54.379305, -2.168221], [54.379343, -2.168378]], [[54.379343, -2.168378], [54.379393, -2.168529]], [[54.379393, -2.168529], [54.379422, -2.168678]], [[54.379422, -2.168678], [54.37944, -2.168829]], [[54.37944, -2.168829], [54.379449, -2.168994]], [[54.379449, -2.168994], [54.379493, -2.169144]], [[54.379493, -2.169144], [54.379541, -2.16928]], [[54.379541, -2.16928], [54.379616, -2.169382]], [[54.379812, -2.169853], [54.379856, -2.17]], [[54.379967, -2.170256], [54.380022, -2.170398]], [[54.380022, -2.170398], [54.380067, -2.170534]], [[54.380067, -2.170534], [54.380107, -2.170681]], [[54.380107, -2.170681], [54.380147, -2.17082]], [[54.380147, -2.17082], [54.38018, -2.170982]], [[54.38018, -2.170982], [54.380218, -2.171127]], [[54.380218, -2.171127], [54.380283, -2.171247]], [[54.380372, -2.171326], [54.380463, -2.171382]], [[54.380463, -2.171382], [54.380564, -2.171414]], [[54.380564, -2.171414], [54.380631, -2.171533]], [[54.380631, -2.171533], [54.380626, -2.171698]], [[54.380626, -2.171698], [54.380592, -2.171855]], [[54.380592, -2.171855], [54.380568, -2.172008]], [[54.380568, -2.172008], [54.380557, -2.172169]], [[54.380557, -2.172169], [54.380536, -2.172334]], [[54.38052, -2.172488], [54.380495, -2.172653]], [[54.380495, -2.172653], [54.380474, -2.172812]], [[54.380474, -2.172812], [54.380447, -2.17297]], [[54.380447, -2.17297], [54.380411, -2.17313]], [[54.380327, -2.173588], [54.380294, -2.173739]], [[54.380294, -2.173739], [54.380269, -2.173903]], [[54.380269, -2.173903], [54.380244, -2.174056]], [[54.380244, -2.174056], [54.380226, -2.174209]], [[54.380226, -2.174209], [54.380207, -2.174367]], [[54.380207, -2.174367], [54.380185, -2.174534]], [[54.380185, -2.174534], [54.380168, -2.174691]], [[54.380168, -2.174691], [54.380146, -2.174858]], [[54.380146, -2.174858], [54.380114, -2.175011]], [[54.380114, -2.175011], [54.38007, -2.175156]], [[54.38007, -2.175156], [54.38004, -2.175311]], [[54.38004, -2.175311], [54.380002, -2.175467]], [[54.380002, -2.175467], [54.379976, -2.175634]], [[54.379976, -2.175634], [54.379953, -2.175801]], [[54.379953, -2.175801], [54.379927, -2.175962]], [[54.379927, -2.175962], [54.379895, -2.176109]], [[54.379814, -2.176589], [54.379777, -2.176734]], [[54.379777, -2.176734], [54.379749, -2.176886]], [[54.379749, -2.176886], [54.379714, -2.177033]], [[54.379714, -2.177033], [54.379684, -2.177195]], [[54.379684, -2.177195], [54.37965, -2.177344]], [[54.379605, -2.177495], [54.379562, -2.177638]], [[54.379562, -2.177638], [54.379529, -2.177797]], [[54.379529, -2.177797], [54.379486, -2.177948]], [[54.379486, -2.177948], [54.379448, -2.178107]], [[54.379346, -2.178722], [54.379337, -2.178876]], [[54.379337, -2.178876], [54.379319, -2.17904]], [[54.379319, -2.17904], [54.379316, -2.179198]], [[54.379316, -2.179198], [54.379317, -2.179364]], [[54.379317, -2.179364], [54.379336, -2.179524]], [[54.379336, -2.179524], [54.379322, -2.179681]], [[54.38127, -2.187861], [54.38133, -2.187982]], [[54.38133, -2.187982], [54.381394, -2.188101]], [[54.381394, -2.188101], [54.381416, -2.188254]], [[54.381416, -2.188254], [54.381392, -2.188411]], [[54.381392, -2.188411], [54.38136, -2.188558]], [[54.381287, -2.189013], [54.381276, -2.18917]], [[54.381276, -2.18917], [54.381254, -2.189326]], [[54.381254, -2.189326], [54.381231, -2.189481]], [[54.381231, -2.189481], [54.381215, -2.189651]], [[54.381215, -2.189651], [54.381219, -2.189807]], [[54.381228, -2.189976], [54.381226, -2.190146]], [[54.381226, -2.190146], [54.381233, -2.190304]], [[54.381233, -2.190304], [54.381233, -2.190476]], [[54.381233, -2.190476], [54.381218, -2.190641]], [[54.381218, -2.190641], [54.381207, -2.190809]], [[54.381207, -2.190809], [54.381219, -2.190965]], [[54.381219, -2.190965], [54.381219, -2.191124]], [[54.381219, -2.191124], [54.381212, -2.191281]], [[54.38121, -2.191441], [54.381221, -2.191595]], [[54.381168, -2.192946], [54.381188, -2.193115]], [[54.383995, -2.20206], [54.384035, -2.202204]], [[54.384035, -2.202204], [54.384084, -2.202352]], [[54.384084, -2.202352], [54.384094, -2.202518]], [[54.384094, -2.202518], [54.384099, -2.202677]], [[54.384099, -2.202677], [54.384095, -2.202837]], [[54.384095, -2.202837], [54.384083, -2.20299]], [[54.384083, -2.20299], [54.384141, -2.203121]], [[54.384152, -2.203447], [54.384165, -2.203601]], [[54.384165, -2.203601], [54.384169, -2.203757]], [[54.384338, -2.204262], [54.384357, -2.204413]], [[54.384375, -2.205577], [54.384377, -2.205747]], [[54.384377, -2.205747], [54.384385, -2.205905]], [[54.384378, -2.206552], [54.384382, -2.206728]], [[54.384382, -2.206728], [54.384388, -2.206902]], [[54.384388, -2.206902], [54.384394, -2.207061]], [[54.384398, -2.20723], [54.384424, -2.20739]], [[54.384424, -2.20739], [54.384457, -2.207551]], [[54.384457, -2.207551], [54.384485, -2.207719]], [[54.384485, -2.207719], [54.384522, -2.207874]], [[54.384522, -2.207874], [54.384578, -2.208014]], [[54.384578, -2.208014], [54.384643, -2.208146]], [[54.384643, -2.208146], [54.384698, -2.208286]], [[54.384698, -2.208286], [54.384744, -2.208431]], [[54.384744, -2.208431], [54.384785, -2.208572]], [[54.384785, -2.208572], [54.384807, -2.208723]], [[54.384807, -2.208723], [54.384838, -2.208871]], [[54.384849, -2.209036], [54.384893, -2.209176]], [[54.384893, -2.209176], [54.384935, -2.209328]], [[54.384935, -2.209328], [54.384939, -2.209485]], [[54.384939, -2.209485], [54.384937, -2.209641]], [[54.384937, -2.209641], [54.384932, -2.209805]], [[54.384932, -2.209805], [54.384929, -2.209966]], [[54.384929, -2.209966], [54.384902, -2.210124]], [[54.384902, -2.210124], [54.384879, -2.210274]], [[54.384879, -2.210274], [54.384847, -2.210419]], [[54.384847, -2.210419], [54.384819, -2.210578]], [[54.384819, -2.210578], [54.384792, -2.210727]], [[54.384676, -2.210989], [54.384619, -2.211112]], [[54.384346, -2.212131], [54.384296, -2.212262]], [[54.384296, -2.212262], [54.384275, -2.212414]], [[54.384275, -2.212414], [54.384258, -2.212582]], [[54.384258, -2.212582], [54.384225, -2.212741]], [[54.384225, -2.212741], [54.384191, -2.212893]], [[54.384191, -2.212893], [54.384173, -2.213056]], [[54.384173, -2.213056], [54.384152, -2.213222]], [[54.384152, -2.213222], [54.384133, -2.21339]], [[54.384133, -2.21339], [54.384115, -2.21355]], [[54.384055, -2.213841], [54.384, -2.213972]], [[54.384, -2.213972], [54.383946, -2.214106]], [[54.383946, -2.214106], [54.383915, -2.214265]], [[54.383915, -2.214265], [54.383889, -2.214422]], [[54.383889, -2.214422], [54.383868, -2.214588]], [[54.383868, -2.214588], [54.383835, -2.214746]], [[54.383835, -2.214746], [54.383792, -2.214885]], [[54.383792, -2.214885], [54.383761, -2.215031]], [[54.383761, -2.215031], [54.383722, -2.215176]], [[54.383722, -2.215176], [54.383675, -2.215316]], [[54.383675, -2.215316], [54.383633, -2.215468]], [[54.383633, -2.215468], [54.383592, -2.215609]], [[54.383592, -2.215609], [54.38356, -2.215768]], [[54.38356, -2.215768], [54.383531, -2.215922]], [[54.383531, -2.215922], [54.383483, -2.216071]], [[54.383483, -2.216071], [54.383427, -2.216211]], [[54.383427, -2.216211], [54.383378, -2.216355]], [[54.383378, -2.216355], [54.383335, -2.216499]], [[54.383335, -2.216499], [54.38329, -2.216649]], [[54.38329, -2.216649], [54.383244, -2.216792]], [[54.383244, -2.216792], [54.383192, -2.216936]], [[54.38293, -2.217653], [54.382881, -2.217794]], [[54.382881, -2.217794], [54.382838, -2.21793]], [[54.382838, -2.21793], [54.382768, -2.21806]], [[54.382666, -2.218312], [54.382614, -2.21845]], [[54.382614, -2.21845], [54.382541, -2.218555]], [[54.382541, -2.218555], [54.382467, -2.218659]], [[54.382467, -2.218659], [54.382398, -2.218779]], [[54.382398, -2.218779], [54.382319, -2.218887]], [[54.382319, -2.218887], [54.382285, -2.219037]], [[54.382147, -2.219286], [54.382093, -2.219412]], [[54.382093, -2.219412], [54.382026, -2.219525]], [[54.382026, -2.219525], [54.381948, -2.219631]], [[54.381948, -2.219631], [54.381869, -2.21971]], [[54.381869, -2.21971], [54.381794, -2.219819]], [[54.381573, -2.220144], [54.381502, -2.220255]], [[54.381502, -2.220255], [54.381443, -2.22039]], [[54.381443, -2.22039], [54.381366, -2.220495]], [[54.381366, -2.220495], [54.381306, -2.220629]], [[54.381306, -2.220629], [54.381225, -2.220721]], [[54.381225, -2.220721], [54.381153, -2.220814]], [[54.381083, -2.220918], [54.381007, -2.221]], [[54.380874, -2.221213], [54.380795, -2.221317]], [[54.380795, -2.221317], [54.38072, -2.22142]], [[54.38072, -2.22142], [54.380639, -2.221513]], [[54.380359, -2.222246], [54.380305, -2.222388]], [[54.38018, -2.222633], [54.380136, -2.222784]], [[54.380136, -2.222784], [54.380079, -2.222908]], [[54.38, -2.223513], [54.379911, -2.223541]], [[54.379677, -2.22376], [54.379597, -2.223847]], [[54.379597, -2.223847], [54.379515, -2.223938]], [[54.378748, -2.224874], [54.378672, -2.224973]], [[54.378672, -2.224973], [54.378581, -2.225028]], [[54.378581, -2.225028], [54.378504, -2.225116]], [[54.378504, -2.225116], [54.378412, -2.225183]], [[54.377885, -2.225838], [54.377802, -2.225929]], [[54.376764, -2.227237], [54.376685, -2.227315]], [[54.376685, -2.227315], [54.376611, -2.227415]], [[54.376611, -2.227415], [54.376536, -2.227505]], [[54.376536, -2.227505], [54.376459, -2.227595]], [[54.376459, -2.227595], [54.376399, -2.227723]], [[54.37632, -2.227821], [54.376238, -2.227904]], [[54.376238, -2.227904], [54.376166, -2.228024]], [[54.376166, -2.228024], [54.37609, -2.228112]], [[54.37609, -2.228112], [54.376027, -2.228242]], [[54.375822, -2.228581], [54.375747, -2.228673]], [[54.375747, -2.228673], [54.375663, -2.228733]], [[54.375685, -2.22925], [54.375622, -2.229368]], [[54.374801, -2.22932], [54.374711, -2.229281]], [[54.374537, -2.229668], [54.374457, -2.229779]], [[54.374276, -2.230141], [54.374192, -2.230228]], [[54.374192, -2.230228], [54.374106, -2.230317]], [[54.374106, -2.230317], [54.374036, -2.230427]], [[54.373444, -2.231336], [54.373411, -2.231483]], [[54.373411, -2.231483], [54.37338, -2.231634]], [[54.372984, -2.232034], [54.372898, -2.232084]], [[54.372898, -2.232084], [54.372807, -2.232117]], [[54.372807, -2.232117], [54.372729, -2.232198]], [[54.371358, -2.23375], [54.371283, -2.233843]], [[54.371283, -2.233843], [54.371211, -2.233953]], [[54.371211, -2.233953], [54.37116, -2.234087]], [[54.37074, -2.234705], [54.370673, -2.234833]], [[54.370673, -2.234833], [54.370616, -2.23496]], [[54.370616, -2.23496], [54.370569, -2.235099]], [[54.370569, -2.235099], [54.370504, -2.235211]], [[54.370441, -2.235323], [54.370378, -2.235436]], [[54.370378, -2.235436], [54.370313, -2.235573]], [[54.370313, -2.235573], [54.370265, -2.235723]], [[54.370265, -2.235723], [54.370216, -2.23587]], [[54.370216, -2.23587], [54.370162, -2.236013]], [[54.370162, -2.236013], [54.370129, -2.236158]], [[54.370129, -2.236158], [54.370062, -2.23627]], [[54.370062, -2.23627], [54.369996, -2.236398]], [[54.369996, -2.236398], [54.369954, -2.23654]], [[54.369954, -2.23654], [54.369895, -2.236668]], [[54.369895, -2.236668], [54.369834, -2.236784]], [[54.369834, -2.236784], [54.369782, -2.236924]], [[54.369782, -2.236924], [54.369728, -2.237057]], [[54.369728, -2.237057], [54.36967, -2.237191]], [[54.36967, -2.237191], [54.369628, -2.23734]], [[54.369628, -2.23734], [54.369575, -2.237484]], [[54.369575, -2.237484], [54.369524, -2.237614]], [[54.369524, -2.237614], [54.369445, -2.237709]], [[54.369445, -2.237709], [54.369396, -2.237846]], [[54.369396, -2.237846], [54.369335, -2.237965]], [[54.369335, -2.237965], [54.369275, -2.238095]], [[54.369275, -2.238095], [54.369216, -2.238214]], [[54.369216, -2.238214], [54.369164, -2.238363]], [[54.369164, -2.238363], [54.369095, -2.238489]], [[54.369095, -2.238489], [54.369015, -2.238596]], [[54.369015, -2.238596], [54.368944, -2.238696]], [[54.368944, -2.238696], [54.368868, -2.238814]], [[54.368798, -2.238924], [54.36873, -2.239033]], [[54.36873, -2.239033], [54.368671, -2.239158]], [[54.368671, -2.239158], [54.368598, -2.23925]], [[54.368598, -2.23925], [54.368554, -2.239385]], [[54.368554, -2.239385], [54.368467, -2.239465]], [[54.368467, -2.239465], [54.368424, -2.239621]], [[54.368424, -2.239621], [54.368351, -2.239724]], [[54.368351, -2.239724], [54.368263, -2.23979]], [[54.368263, -2.23979], [54.368165, -2.239821]], [[54.368165, -2.239821], [54.368077, -2.239858]], [[54.368077, -2.239858], [54.367994, -2.23992]], [[54.367801, -2.239974], [54.367707, -2.239995]], [[54.367707, -2.239995], [54.367627, -2.240072]], [[54.367627, -2.240072], [54.367535, -2.240075]], [[54.367535, -2.240075], [54.367454, -2.240162]], [[54.367454, -2.240162], [54.367415, -2.240316]], [[54.367415, -2.240316], [54.367321, -2.240306]], [[54.36714, -2.240296], [54.367044, -2.240274]], [[54.367044, -2.240274], [54.366945, -2.240297]], [[54.366945, -2.240297], [54.366846, -2.240307]], [[54.366846, -2.240307], [54.366755, -2.240299]], [[54.366074, -2.24064], [54.365984, -2.240624]], [[54.365984, -2.240624], [54.365889, -2.240622]], [[54.365889, -2.240622], [54.365794, -2.240638]], [[54.365794, -2.240638], [54.3657, -2.240677]], [[54.3657, -2.240677], [54.365619, -2.240743]], [[54.365438, -2.240844], [54.365352, -2.240894]], [[54.365352, -2.240894], [54.365261, -2.240898]], [[54.364979, -2.24086], [54.364887, -2.24091]], [[54.364887, -2.24091], [54.364792, -2.240893]], [[54.364792, -2.240893], [54.364699, -2.24089]], [[54.364699, -2.24089], [54.364604, -2.240874]], [[54.364604, -2.240874], [54.364504, -2.240887]], [[54.364314, -2.240886], [54.364223, -2.240862]], [[54.364223, -2.240862], [54.364128, -2.240907]], [[54.364128, -2.240907], [54.364028, -2.240903]], [[54.364028, -2.240903], [54.363938, -2.240882]], [[54.363938, -2.240882], [54.363849, -2.240855]], [[54.363684, -2.240687], [54.363584, -2.240693]], [[54.363584, -2.240693], [54.363484, -2.240669]], [[54.363484, -2.240669], [54.36339, -2.240626]], [[54.363199, -2.240595], [54.363109, -2.240584]], [[54.363013, -2.240578], [54.362926, -2.240616]], [[54.362926, -2.240616], [54.362828, -2.240632]], [[54.362828, -2.240632], [54.362741, -2.240671]], [[54.362741, -2.240671], [54.362651, -2.240695]], [[54.362651, -2.240695], [54.362556, -2.240711]], [[54.362556, -2.240711], [54.362456, -2.240703]], [[54.362456, -2.240703], [54.362359, -2.240746]], [[54.362359, -2.240746], [54.362262, -2.240758]], [[54.362262, -2.240758], [54.36217, -2.24078]], [[54.36217, -2.24078], [54.362073, -2.240767]], [[54.362073, -2.240767], [54.36198, -2.240802]], [[54.361895, -2.240859], [54.361803, -2.240872]], [[54.361625, -2.240933], [54.361534, -2.240973]], [[54.361534, -2.240973], [54.361443, -2.241014]], [[54.361443, -2.241014], [54.36136, -2.241082]], [[54.36136, -2.241082], [54.361265, -2.241117]], [[54.361265, -2.241117], [54.36117, -2.241118]], [[54.361078, -2.241154], [54.360988, -2.241191]], [[54.360988, -2.241191], [54.360889, -2.241189]], [[54.360889, -2.241189], [54.360792, -2.241198]], [[54.360534, -2.241423], [54.360454, -2.241521]], [[54.360454, -2.241521], [54.360377, -2.241625]], [[54.360377, -2.241625], [54.360288, -2.241691]], [[54.360288, -2.241691], [54.360212, -2.241804]], [[54.359967, -2.242075], [54.359869, -2.242107]], [[54.359869, -2.242107], [54.35978, -2.242131]], [[54.35978, -2.242131], [54.35969, -2.242104]], [[54.35969, -2.242104], [54.359608, -2.242001]], [[54.359608, -2.242001], [54.359529, -2.241891]], [[54.359529, -2.241891], [54.359437, -2.241857]], [[54.359437, -2.241857], [54.359342, -2.241907]], [[54.359342, -2.241907], [54.359246, -2.241957]], [[54.359246, -2.241957], [54.359151, -2.241927]], [[54.358961, -2.241866], [54.35886, -2.241851]], [[54.35886, -2.241851], [54.358767, -2.241844]], [[54.358767, -2.241844], [54.358667, -2.241818]], [[54.358667, -2.241818], [54.35858, -2.241749]], [[54.35858, -2.241749], [54.358488, -2.241715]], [[54.358488, -2.241715], [54.358395, -2.241755]], [[54.358395, -2.241755], [54.358304, -2.241736]], [[54.358304, -2.241736], [54.358211, -2.241736]], [[54.358211, -2.241736], [54.358123, -2.241771]], [[54.358123, -2.241771], [54.358028, -2.241809]], [[54.358028, -2.241809], [54.357934, -2.241822]], [[54.357934, -2.241822], [54.357845, -2.241871]], [[54.357845, -2.241871], [54.357761, -2.241959]], [[54.357761, -2.241959], [54.357678, -2.242016]], [[54.357678, -2.242016], [54.35759, -2.242064]], [[54.35759, -2.242064], [54.357503, -2.242114]], [[54.357503, -2.242114], [54.357409, -2.242144]], [[54.357409, -2.242144], [54.357324, -2.242232]], [[54.357324, -2.242232], [54.35724, -2.242288]], [[54.35724, -2.242288], [54.35715, -2.242322]], [[54.35715, -2.242322], [54.357057, -2.242366]], [[54.356869, -2.242416], [54.356778, -2.242469]], [[54.356778, -2.242469], [54.356687, -2.242498]], [[54.356687, -2.242498], [54.356589, -2.242507]], [[54.356094, -2.242462], [54.355999, -2.24249]], [[54.355999, -2.24249], [54.355901, -2.242524]], [[54.355901, -2.242524], [54.355799, -2.242546]], [[54.355799, -2.242546], [54.355706, -2.242528]], [[54.355706, -2.242528], [54.355628, -2.242448]], [[54.355628, -2.242448], [54.355538, -2.242394]], [[54.355538, -2.242394], [54.355444, -2.242342]], [[54.355444, -2.242342], [54.355341, -2.242329]], [[54.354658, -2.242368], [54.354563, -2.242376]], [[54.35447, -2.242365], [54.354373, -2.242364]], [[54.354373, -2.242364], [54.354274, -2.242356]], [[54.354274, -2.242356], [54.354182, -2.242351]], [[54.354182, -2.242351], [54.354086, -2.242339]], [[54.353995, -2.242317], [54.353894, -2.242323]], [[54.353894, -2.242323], [54.353799, -2.242338]], [[54.353799, -2.242338], [54.353699, -2.242331]], [[54.353699, -2.242331], [54.353604, -2.242334]], [[54.353604, -2.242334], [54.3535, -2.242343]], [[54.353124, -2.242362], [54.353029, -2.242393]], [[54.353029, -2.242393], [54.352939, -2.242409]], [[54.352755, -2.242411], [54.352654, -2.242418]], [[54.352654, -2.242418], [54.352564, -2.242419]], [[54.352564, -2.242419], [54.352473, -2.242418]], [[54.352473, -2.242418], [54.352384, -2.242433]], [[54.351612, -2.242339], [54.351513, -2.242315]], [[54.351513, -2.242315], [54.351417, -2.242327]], [[54.351417, -2.242327], [54.351323, -2.242304]], [[54.35104, -2.242214], [54.350949, -2.242229]], [[54.350949, -2.242229], [54.350848, -2.242225]], [[54.350848, -2.242225], [54.350752, -2.242228]], [[54.350752, -2.242228], [54.350657, -2.242226]], [[54.350657, -2.242226], [54.350568, -2.242209]], [[54.350568, -2.242209], [54.350478, -2.242235]], [[54.350478, -2.242235], [54.350376, -2.242241]], [[54.350376, -2.242241], [54.350286, -2.242224]], [[54.350286, -2.242224], [54.350196, -2.242245]], [[54.350196, -2.242245], [54.350106, -2.242313]], [[54.350106, -2.242313], [54.350016, -2.242342]], [[54.349822, -2.242402], [54.349732, -2.242372]], [[54.349732, -2.242372], [54.349634, -2.242335]], [[54.34886, -2.242289], [54.348762, -2.242296]], [[54.348762, -2.242296], [54.348671, -2.242268]], [[54.348291, -2.242356], [54.348194, -2.242384]], [[54.348194, -2.242384], [54.348093, -2.242375]], [[54.348093, -2.242375], [54.347995, -2.24242]], [[54.347995, -2.24242], [54.347904, -2.242463]], [[54.347904, -2.242463], [54.347803, -2.242491]], [[54.347336, -2.242559], [54.347244, -2.242622]], [[54.347244, -2.242622], [54.347164, -2.242716]], [[54.347164, -2.242716], [54.347095, -2.242832]], [[54.347095, -2.242832], [54.347014, -2.242911]], [[54.347014, -2.242911], [54.346915, -2.242935]], [[54.346828, -2.24299], [54.346745, -2.243067]], [[54.346745, -2.243067], [54.346673, -2.243161]], [[54.346673, -2.243161], [54.346613, -2.24329]], [[54.346613, -2.24329], [54.34654, -2.243388]], [[54.34654, -2.243388], [54.346461, -2.243479]], [[54.346461, -2.243479], [54.346374, -2.243564]], [[54.346374, -2.243564], [54.34628, -2.243528]], [[54.34628, -2.243528], [54.346185, -2.243495]], [[54.345995, -2.243387], [54.345903, -2.24339]], [[54.345903, -2.24339], [54.345809, -2.243391]], [[54.345715, -2.243363], [54.345624, -2.243308]], [[54.345624, -2.243308], [54.345535, -2.243278]], [[54.345445, -2.243232], [54.345352, -2.24319]], [[54.345352, -2.24319], [54.345263, -2.24314]], [[54.345089, -2.243223], [54.345018, -2.243319]], [[54.345018, -2.243319], [54.344925, -2.243371]], [[54.344925, -2.243371], [54.344837, -2.243426]], [[54.344652, -2.243382], [54.344556, -2.243363]], [[54.344556, -2.243363], [54.344458, -2.243365]], [[54.344458, -2.243365], [54.344363, -2.243328]], [[54.344264, -2.2433], [54.344176, -2.243271]], [[54.344176, -2.243271], [54.344086, -2.243242]], [[54.344, -2.243163], [54.343925, -2.243075]], [[54.343925, -2.243075], [54.343843, -2.243001]], [[54.343843, -2.243001], [54.343764, -2.242912]], [[54.343587, -2.242793], [54.343506, -2.242706]], [[54.343348, -2.2425], [54.343294, -2.242357]], [[54.343294, -2.242357], [54.343241, -2.242227]], [[54.343241, -2.242227], [54.343163, -2.242148]], [[54.343163, -2.242148], [54.34308, -2.24206]], [[54.342388, -2.241288], [54.342293, -2.241321]], [[54.342293, -2.241321], [54.34221, -2.241388]], [[54.34221, -2.241388], [54.342111, -2.24139]], [[54.342111, -2.24139], [54.342017, -2.241353]], [[54.342017, -2.241353], [54.34192, -2.241393]], [[54.34192, -2.241393], [54.341831, -2.241417]], [[54.341392, -2.241412], [54.341296, -2.241368]], [[54.340275, -2.241069], [54.340178, -2.241056]], [[54.340178, -2.241056], [54.340083, -2.240996]], [[54.340083, -2.240996], [54.339989, -2.240932]], [[54.339989, -2.240932], [54.339898, -2.240941]], [[54.339898, -2.240941], [54.339807, -2.240969]], [[54.339807, -2.240969], [54.339718, -2.241]], [[54.339718, -2.241], [54.339626, -2.240967]], [[54.339626, -2.240967], [54.339531, -2.240918]], [[54.339531, -2.240918], [54.339436, -2.240862]], [[54.339436, -2.240862], [54.339347, -2.240813]], [[54.339347, -2.240813], [54.339262, -2.240742]], [[54.339262, -2.240742], [54.339178, -2.240674]], [[54.339178, -2.240674], [54.339081, -2.240657]], [[54.339081, -2.240657], [54.338985, -2.24063]], [[54.338985, -2.24063], [54.338895, -2.240603]], [[54.338895, -2.240603], [54.338822, -2.240507]], [[54.338738, -2.24043], [54.338648, -2.240359]], [[54.338648, -2.240359], [54.338566, -2.240276]], [[54.338566, -2.240276], [54.338467, -2.240249]], [[54.338467, -2.240249], [54.338403, -2.240119]], [[54.338403, -2.240119], [54.338328, -2.240027]], [[54.338328, -2.240027], [54.338241, -2.239938]], [[54.338076, -2.239748], [54.337992, -2.239689]], [[54.337817, -2.239533], [54.337729, -2.239471]], [[54.337729, -2.239471], [54.337634, -2.239406]], [[54.337502, -2.239157], [54.337429, -2.239047]], [[54.337429, -2.239047], [54.337353, -2.238961]], [[54.336715, -2.23869], [54.336615, -2.238676]], [[54.336615, -2.238676], [54.336514, -2.23867]], [[54.336514, -2.23867], [54.336443, -2.238571]], [[54.336354, -2.238511], [54.336261, -2.238456]], [[54.336261, -2.238456], [54.336164, -2.238416]], [[54.336164, -2.238416], [54.336078, -2.23834]], [[54.336078, -2.23834], [54.335996, -2.238261]], [[54.33591, -2.23818], [54.335832, -2.238093]], [[54.335832, -2.238093], [54.335761, -2.23797]], [[54.335602, -2.237768], [54.335513, -2.237688]], [[54.335513, -2.237688], [54.335436, -2.237604]], [[54.335436, -2.237604], [54.335359, -2.237495]], [[54.335196, -2.237309], [54.335103, -2.237246]], [[54.335103, -2.237246], [54.335017, -2.237189]], [[54.334763, -2.23703], [54.334664, -2.237001]], [[54.334664, -2.237001], [54.334582, -2.236915]], [[54.334463, -2.236781], [54.334425, -2.236641]], [[54.334425, -2.236641], [54.334372, -2.236506]], [[54.334372, -2.236506], [54.334318, -2.236369]], [[54.334318, -2.236369], [54.334271, -2.236232]], [[54.334191, -2.236138], [54.334134, -2.236012]], [[54.334068, -2.2359], [54.334008, -2.235763]], [[54.333949, -2.235636], [54.333889, -2.235511]], [[54.333889, -2.235511], [54.333813, -2.235426]], [[54.332986, -2.235603], [54.332987, -2.235449]], [[54.332987, -2.235449], [54.333023, -2.235288]], [[54.333023, -2.235288], [54.332984, -2.235135]], [[54.332339, -2.234729], [54.332243, -2.234673]], [[54.332243, -2.234673], [54.332149, -2.234621]], [[54.332149, -2.234621], [54.332058, -2.234592]], [[54.331632, -2.234262], [54.331564, -2.234148]], [[54.331564, -2.234148], [54.33148, -2.234069]], [[54.33124, -2.233788], [54.331171, -2.233688]], [[54.331047, -2.23344], [54.331007, -2.2333]], [[54.331007, -2.2333], [54.330939, -2.233177]], [[54.329866, -2.231485], [54.329791, -2.231366]], [[54.329791, -2.231366], [54.329742, -2.231218]], [[54.329402, -2.230668], [54.329344, -2.230534]], [[54.329344, -2.230534], [54.329312, -2.230382]], [[54.329312, -2.230382], [54.329255, -2.230243]], [[54.329255, -2.230243], [54.329182, -2.230119]], [[54.328865, -2.229517], [54.328793, -2.229416]], [[54.328407, -2.228664], [54.32834, -2.228536]], [[54.32834, -2.228536], [54.328276, -2.228414]], [[54.327123, -2.226447], [54.327054, -2.226321]], [[54.326918, -2.226076], [54.32685, -2.225952]], [[54.32685, -2.225952], [54.32679, -2.225811]], [[54.32679, -2.225811], [54.326726, -2.225678]], [[54.326726, -2.225678], [54.326662, -2.225558]], [[54.32568, -2.223948], [54.325602, -2.223839]], [[54.325602, -2.223839], [54.32553, -2.223745]], [[54.32553, -2.223745], [54.325452, -2.223644]], [[54.325452, -2.223644], [54.325408, -2.223495]], [[54.324566, -2.220652], [54.324512, -2.220521]], [[54.324512, -2.220521], [54.324427, -2.220434]], [[54.32405, -2.220114], [54.323965, -2.220032]], [[54.323444, -2.219272], [54.323354, -2.219198]], [[54.323354, -2.219198], [54.323282, -2.219098]], [[54.322863, -2.218711], [54.322793, -2.218612]], [[54.322308, -2.217795], [54.322247, -2.21766]], [[54.322247, -2.21766], [54.322199, -2.217515]], [[54.322199, -2.217515], [54.322163, -2.217364]], [[54.321826, -2.21618], [54.321793, -2.216035]], [[54.321793, -2.216035], [54.321764, -2.215884]], [[54.321671, -2.215243], [54.321642, -2.215086]], [[54.321642, -2.215086], [54.3216, -2.214943]], [[54.3216, -2.214943], [54.321562, -2.214794]], [[54.321447, -2.214323], [54.321404, -2.214166]], [[54.321404, -2.214166], [54.321372, -2.214012]], [[54.321187, -2.21311], [54.321144, -2.212972]], [[54.321144, -2.212972], [54.321103, -2.21283]], [[54.320951, -2.212391], [54.32091, -2.212253]], [[54.320555, -2.211449], [54.320492, -2.211327]], [[54.320492, -2.211327], [54.32043, -2.211189]], [[54.32043, -2.211189], [54.320376, -2.211045]], [[54.320376, -2.211045], [54.320312, -2.210928]], [[54.320029, -2.210237], [54.319981, -2.210084]], [[54.319981, -2.210084], [54.319937, -2.209936]], [[54.319937, -2.209936], [54.319928, -2.209782]], [[54.319904, -2.209109], [54.319887, -2.208946]], [[54.319887, -2.208946], [54.319848, -2.208794]], [[54.319848, -2.208794], [54.319815, -2.208648]], [[54.319815, -2.208648], [54.319715, -2.208624]], [[54.319072, -2.208434], [54.318978, -2.208454]], [[54.318885, -2.208421], [54.31879, -2.208396]], [[54.31879, -2.208396], [54.3187, -2.208393]], [[54.3187, -2.208393], [54.318607, -2.208383]], [[54.318417, -2.208378], [54.318319, -2.208349]], [[54.318319, -2.208349], [54.318227, -2.208278]], [[54.318143, -2.208208], [54.318048, -2.208176]], [[54.318048, -2.208176], [54.317972, -2.208072]], [[54.31788, -2.208011], [54.317792, -2.207962]], [[54.317792, -2.207962], [54.317702, -2.207876]], [[54.317702, -2.207876], [54.317617, -2.20781]], [[54.317525, -2.207758], [54.317432, -2.207702]], [[54.317432, -2.207702], [54.317343, -2.207642]], [[54.317343, -2.207642], [54.317264, -2.207562]], [[54.317264, -2.207562], [54.317178, -2.207489]], [[54.317178, -2.207489], [54.31708, -2.207458]], [[54.316827, -2.207249], [54.316731, -2.207243]], [[54.316123, -2.206784], [54.316113, -2.206629]], [[54.316404, -2.20576], [54.31641, -2.205587]], [[54.31641, -2.205587], [54.316419, -2.20543]], [[54.316296, -2.20514], [54.316201, -2.20516]], [[54.316201, -2.20516], [54.31611, -2.205157]], [[54.316018, -2.205076], [54.315932, -2.204987]], [[54.315849, -2.204895], [54.315767, -2.20481]], [[54.315767, -2.20481], [54.315708, -2.204688]], [[54.315708, -2.204688], [54.315647, -2.204571]], [[54.315547, -2.204343], [54.315517, -2.204192]], [[54.315517, -2.204192], [54.315459, -2.204073]], [[54.31531, -2.203964], [54.315238, -2.203857]], [[54.315238, -2.203857], [54.31518, -2.203714]], [[54.314601, -2.202269], [54.314565, -2.202115]], [[54.314123, -2.200507], [54.314074, -2.200355]], [[54.314074, -2.200355], [54.314039, -2.200208]], [[54.31367, -2.198207], [54.313641, -2.198041]], [[54.313641, -2.198041], [54.313606, -2.197895]], [[54.313567, -2.197752], [54.313528, -2.197602]], [[54.313528, -2.197602], [54.313502, -2.19745]], [[54.313502, -2.19745], [54.313489, -2.197287]], [[54.313489, -2.197287], [54.313422, -2.19716]], [[54.313422, -2.19716], [54.313357, -2.197049]], [[54.313357, -2.197049], [54.313291, -2.196933]], [[54.313058, -2.196435], [54.31302, -2.196282]], [[54.31302, -2.196282], [54.312956, -2.196147]], [[54.312956, -2.196147], [54.312909, -2.196001]], [[54.312909, -2.196001], [54.312866, -2.195861]], [[54.312866, -2.195861], [54.312828, -2.195699]], [[54.312792, -2.195541], [54.312758, -2.19539]], [[54.312758, -2.19539], [54.31272, -2.19524]], [[54.31272, -2.19524], [54.312673, -2.1951]], [[54.312568, -2.19487], [54.312534, -2.194707]], [[54.312485, -2.194561], [54.312439, -2.194424]], [[54.312439, -2.194424], [54.312392, -2.194275]], [[54.312142, -2.193152], [54.31215, -2.192998]], [[54.31215, -2.192998], [54.31208, -2.19288]], [[54.31208, -2.19288], [54.312034, -2.192722]], [[54.312034, -2.192722], [54.312005, -2.19257]], [[54.311972, -2.192248], [54.311958, -2.192075]], [[54.311919, -2.191754], [54.311895, -2.191588]], [[54.311895, -2.191588], [54.311873, -2.191435]], [[54.311873, -2.191435], [54.311853, -2.191278]], [[54.311853, -2.191278], [54.311844, -2.191117]], [[54.311728, -2.190908], [54.311638, -2.190881]], [[54.311638, -2.190881], [54.311544, -2.190844]], [[54.311083, -2.190627], [54.310997, -2.190572]], [[54.308961, -2.191862], [54.308876, -2.191923]], [[54.308414, -2.192243], [54.308311, -2.19227]], [[54.306718, -2.192365], [54.306617, -2.192365]], [[54.306617, -2.192365], [54.306524, -2.192383]], [[54.306338, -2.192376], [54.306241, -2.192386]], [[54.306241, -2.192386], [54.306152, -2.192424]], [[54.305486, -2.192503], [54.305404, -2.192609]], [[54.305316, -2.19269], [54.305258, -2.192813]], [[54.305258, -2.192813], [54.305184, -2.192925]], [[54.305184, -2.192925], [54.305116, -2.193055]], [[54.305034, -2.193121], [54.304949, -2.193223]], [[54.304872, -2.19332], [54.304782, -2.193391]], [[54.304782, -2.193391], [54.304698, -2.19349]], [[54.304275, -2.193908], [54.304198, -2.193995]], [[54.304198, -2.193995], [54.304107, -2.194053]], [[54.303732, -2.194465], [54.303686, -2.194606]], [[54.303686, -2.194606], [54.303653, -2.19476]], [[54.303653, -2.19476], [54.303638, -2.194931]], [[54.303809, -2.195503], [54.30383, -2.195656]], [[54.303824, -2.196133], [54.303795, -2.196281]], [[54.303748, -2.196434], [54.303755, -2.196596]], [[54.303755, -2.196596], [54.303781, -2.196761]], [[54.303781, -2.196761], [54.303823, -2.196914]], [[54.30384, -2.197245], [54.303869, -2.197391]], [[54.303943, -2.197857], [54.303955, -2.19802]], [[54.303955, -2.19802], [54.303977, -2.198177]], [[54.303977, -2.198177], [54.304007, -2.198336]], [[54.304067, -2.198579], [54.304082, -2.198735]], [[54.303918, -2.198242], [54.303908, -2.198075]], [[54.303847, -2.197436], [54.303808, -2.197279]], [[54.303832, -2.197567], [54.303804, -2.197725]], [[54.303804, -2.197725], [54.303825, -2.197898]], [[54.304075, -2.198537], [54.304093, -2.198704]], [[54.304093, -2.198704], [54.304105, -2.198865]], [[54.304111, -2.19902], [54.304117, -2.199173]], [[54.304071, -2.198878], [54.304017, -2.198754]], [[54.304086, -2.199133], [54.304118, -2.199286]], [[54.304064, -2.199141], [54.30406, -2.198967]], [[54.30406, -2.198967], [54.304064, -2.198809]], [[54.303873, -2.198039], [54.303853, -2.197872]], [[54.303853, -2.197872], [54.303826, -2.197709]], [[54.303826, -2.197709], [54.303823, -2.19755]], [[54.302856, -2.197502], [54.302768, -2.197558]], [[54.302768, -2.197558], [54.30268, -2.197618]], [[54.301472, -2.19914], [54.301413, -2.19926]], [[54.301413, -2.19926], [54.301349, -2.19939]], [[54.301349, -2.19939], [54.301295, -2.199536]], [[54.301295, -2.199536], [54.301249, -2.199692]], [[54.301035, -2.200245], [54.300983, -2.200375]], [[54.300983, -2.200375], [54.300918, -2.200506]], [[54.300918, -2.200506], [54.300841, -2.200593]], [[54.300425, -2.200593], [54.300331, -2.200528]], [[54.300331, -2.200528], [54.300241, -2.200467]], [[54.300241, -2.200467], [54.300161, -2.200397]], [[54.299809, -2.200123], [54.299715, -2.200081]], [[54.299537, -2.200005], [54.299454, -2.199931]], [[54.299454, -2.199931], [54.299368, -2.199872]], [[54.299368, -2.199872], [54.299277, -2.19987]], [[54.299277, -2.19987], [54.299184, -2.199833]], [[54.298983, -2.200198], [54.298958, -2.200351]], [[54.298958, -2.200351], [54.298918, -2.2005]], [[54.298918, -2.2005], [54.29892, -2.200657]], [[54.29892, -2.200657], [54.298927, -2.200814]], [[54.298927, -2.200814], [54.298972, -2.200963]], [[54.299015, -2.201115], [54.299059, -2.201258]], [[54.299098, -2.201582], [54.299129, -2.20173]], [[54.299129, -2.20173], [54.299143, -2.201895]], [[54.299151, -2.202389], [54.29911, -2.20255]], [[54.29911, -2.20255], [54.299064, -2.202688]], [[54.298891, -2.203566], [54.298821, -2.203677]], [[54.298821, -2.203677], [54.298748, -2.20378]], [[54.298683, -2.203893], [54.298624, -2.204025]], [[54.298624, -2.204025], [54.298536, -2.204076]], [[54.297728, -2.204533], [54.297657, -2.204649]], [[54.297657, -2.204649], [54.297612, -2.204786]], [[54.296797, -2.204211], [54.296701, -2.204146]], [[54.296701, -2.204146], [54.296609, -2.204112]], [[54.296609, -2.204112], [54.296522, -2.204066]], [[54.296321, -2.204214], [54.296236, -2.204297]], [[54.296236, -2.204297], [54.296153, -2.204359]], [[54.296153, -2.204359], [54.296064, -2.204396]], [[54.296064, -2.204396], [54.295986, -2.204476]], [[54.295986, -2.204476], [54.295902, -2.204543]], [[54.295902, -2.204543], [54.295826, -2.204637]], [[54.295826, -2.204637], [54.295748, -2.204737]], [[54.295587, -2.204933], [54.295513, -2.205022]], [[54.295777, -2.205347], [54.295855, -2.205455]], [[54.295855, -2.205455], [54.295952, -2.205494]], [[54.295952, -2.205494], [54.296031, -2.205577]], [[54.296031, -2.205577], [54.296121, -2.20564]], [[54.296121, -2.20564], [54.29621, -2.205709]], [[54.296049, -2.206596], [54.29601, -2.20675]], [[54.29601, -2.20675], [54.295987, -2.206912]], [[54.295892, -2.207369], [54.295861, -2.207532]], [[54.295861, -2.207532], [54.29584, -2.207701]], [[54.29584, -2.207701], [54.295803, -2.20785]], [[54.295803, -2.20785], [54.295779, -2.208009]], [[54.295986, -2.208475], [54.295935, -2.208609]], [[54.29583, -2.208888], [54.295789, -2.209035]], [[54.295789, -2.209035], [54.295731, -2.209167]], [[54.295731, -2.209167], [54.295679, -2.209298]], [[54.295679, -2.209298], [54.295617, -2.209436]], [[54.295617, -2.209436], [54.295575, -2.209579]], [[54.295575, -2.209579], [54.295513, -2.209718]], [[54.295513, -2.209718], [54.295462, -2.209851]], [[54.295462, -2.209851], [54.295419, -2.209998]], [[54.295314, -2.210256], [54.295266, -2.210397]], [[54.295127, -2.210901], [54.2951, -2.211052]], [[54.294734, -2.212556], [54.294686, -2.212691]], [[54.294686, -2.212691], [54.294643, -2.212828]], [[54.294643, -2.212828], [54.294618, -2.212987]], [[54.294453, -2.213728], [54.294439, -2.213893]], [[54.294439, -2.213893], [54.294411, -2.214053]], [[54.294411, -2.214053], [54.294374, -2.2142]], [[54.294374, -2.2142], [54.294344, -2.21435]], [[54.294327, -2.214512], [54.294299, -2.214664]], [[54.294144, -2.215099], [54.294102, -2.215249]], [[54.294102, -2.215249], [54.294049, -2.215375]], [[54.293995, -2.215515], [54.29394, -2.215644]], [[54.29394, -2.215644], [54.2939, -2.215781]], [[54.2939, -2.215781], [54.293838, -2.215906]], [[54.293838, -2.215906], [54.293767, -2.216029]], [[54.293767, -2.216029], [54.293707, -2.216155]], [[54.293707, -2.216155], [54.293652, -2.21628]], [[54.293652, -2.21628], [54.293604, -2.21643]], [[54.293604, -2.21643], [54.293542, -2.216546]], [[54.293542, -2.216546], [54.293465, -2.216652]], [[54.293311, -2.216758], [54.293247, -2.216867]], [[54.293247, -2.216867], [54.293178, -2.216972]], [[54.290964, -2.225745], [54.29094, -2.225915]], [[54.29094, -2.225915], [54.290909, -2.226059]], [[54.290909, -2.226059], [54.29086, -2.226205]], [[54.29086, -2.226205], [54.290796, -2.226314]], [[54.290796, -2.226314], [54.29076, -2.226472]], [[54.290412, -2.227529], [54.290368, -2.227667]], [[54.290368, -2.227667], [54.290322, -2.227799]], [[54.290322, -2.227799], [54.290251, -2.227913]], [[54.290251, -2.227913], [54.290203, -2.228049]], [[54.290203, -2.228049], [54.290138, -2.228161]], [[54.286341, -2.232062], [54.286269, -2.232174]], [[54.285352, -2.232835], [54.285262, -2.232854]], [[54.285262, -2.232854], [54.28517, -2.232866]], [[54.28517, -2.232866], [54.285067, -2.232852]], [[54.285067, -2.232852], [54.28497, -2.232829]], [[54.28497, -2.232829], [54.28488, -2.23284]], [[54.284697, -2.232874], [54.284607, -2.232835]], [[54.284607, -2.232835], [54.284506, -2.232835]], [[54.284506, -2.232835], [54.284409, -2.232856]], [[54.284409, -2.232856], [54.28432, -2.232907]], [[54.284164, -2.233085], [54.284071, -2.233126]], [[54.284071, -2.233126], [54.283978, -2.233161]], [[54.283119, -2.233632], [54.283062, -2.233759]], [[54.283062, -2.233759], [54.283012, -2.23389]], [[54.283012, -2.23389], [54.282966, -2.234034]], [[54.282966, -2.234034], [54.282939, -2.234197]], [[54.282939, -2.234197], [54.282922, -2.234361]], [[54.282922, -2.234361], [54.282882, -2.234503]], [[54.282882, -2.234503], [54.282853, -2.234651]], [[54.282853, -2.234651], [54.282791, -2.23477]], [[54.282791, -2.23477], [54.282746, -2.234916]], [[54.282746, -2.234916], [54.282679, -2.235041]], [[54.282679, -2.235041], [54.282603, -2.235138]], [[54.282603, -2.235138], [54.282535, -2.235269]], [[54.282535, -2.235269], [54.282492, -2.235416]], [[54.28243, -2.235723], [54.282341, -2.23578]], [[54.282213, -2.236005], [54.282187, -2.236171]], [[54.282187, -2.236171], [54.282157, -2.236319]], [[54.282157, -2.236319], [54.282097, -2.236442]], [[54.282097, -2.236442], [54.282088, -2.236606]], [[54.281503, -2.238012], [54.281422, -2.238088]], [[54.280527, -2.238455], [54.28046, -2.238576]], [[54.28046, -2.238576], [54.280399, -2.238694]], [[54.280399, -2.238694], [54.280331, -2.238817]], [[54.280331, -2.238817], [54.280266, -2.238926]], [[54.280266, -2.238926], [54.280185, -2.239026]], [[54.280185, -2.239026], [54.280114, -2.239122]], [[54.280114, -2.239122], [54.280062, -2.239266]], [[54.280062, -2.239266], [54.279992, -2.239379]], [[54.279992, -2.239379], [54.279922, -2.239487]], [[54.279922, -2.239487], [54.279852, -2.239602]], [[54.279852, -2.239602], [54.279779, -2.239707]], [[54.279779, -2.239707], [54.279718, -2.239822]], [[54.279718, -2.239822], [54.279625, -2.239837]], [[54.279625, -2.239837], [54.27954, -2.239923]], [[54.279369, -2.240017], [54.279275, -2.240028]], [[54.278531, -2.240497], [54.278479, -2.240634]], [[54.278399, -2.240715], [54.27832, -2.240816]], [[54.27832, -2.240816], [54.278242, -2.240914]], [[54.278242, -2.240914], [54.278167, -2.241006]], [[54.278167, -2.241006], [54.278069, -2.241035]], [[54.278069, -2.241035], [54.277993, -2.241135]], [[54.277993, -2.241135], [54.277961, -2.241293]], [[54.277677, -2.241917], [54.277603, -2.242017]], [[54.277603, -2.242017], [54.277545, -2.242136]], [[54.277545, -2.242136], [54.277489, -2.242278]], [[54.277489, -2.242278], [54.277427, -2.242405]], [[54.277427, -2.242405], [54.27735, -2.242497]], [[54.277119, -2.242583], [54.277024, -2.24256]], [[54.277024, -2.24256], [54.276927, -2.242573]], [[54.276927, -2.242573], [54.276835, -2.242621]], [[54.276835, -2.242621], [54.276744, -2.242665]], [[54.276744, -2.242665], [54.276658, -2.242742]], [[54.276658, -2.242742], [54.27657, -2.242808]], [[54.27657, -2.242808], [54.276472, -2.242843]], [[54.276472, -2.242843], [54.276383, -2.242896]], [[54.276383, -2.242896], [54.276294, -2.242925]], [[54.276294, -2.242925], [54.276209, -2.242985]], [[54.276209, -2.242985], [54.276116, -2.24304]], [[54.276116, -2.24304], [54.276024, -2.243092]], [[54.276024, -2.243092], [54.275927, -2.243143]], [[54.275927, -2.243143], [54.27583, -2.243194]], [[54.27583, -2.243194], [54.27574, -2.243243]], [[54.275648, -2.243281], [54.275556, -2.243338]], [[54.275556, -2.243338], [54.275472, -2.243411]], [[54.275282, -2.243499], [54.27519, -2.243546]], [[54.27519, -2.243546], [54.275097, -2.243583]], [[54.275097, -2.243583], [54.274999, -2.243619]], [[54.274999, -2.243619], [54.274908, -2.243665]], [[54.274819, -2.243722], [54.27473, -2.243794]], [[54.27473, -2.243794], [54.274635, -2.243852]], [[54.274635, -2.243852], [54.274547, -2.243892]], [[54.274547, -2.243892], [54.274453, -2.243937]], [[54.274453, -2.243937], [54.274365, -2.243985]], [[54.274365, -2.243985], [54.274279, -2.244051]], [[54.274279, -2.244051], [54.274194, -2.244124]], [[54.274194, -2.244124], [54.274111, -2.244195]], [[54.273878, -2.244463], [54.273793, -2.244535]], [[54.273793, -2.244535], [54.273713, -2.24461]], [[54.273713, -2.24461], [54.273623, -2.244639]], [[54.273442, -2.244711], [54.27335, -2.24473]], [[54.273156, -2.244799], [54.273063, -2.24483]], [[54.272598, -2.244992], [54.272506, -2.24506]], [[54.272506, -2.24506], [54.272428, -2.245144]], [[54.272428, -2.245144], [54.272338, -2.245188]], [[54.272244, -2.245222], [54.272146, -2.245252]], [[54.271383, -2.245304], [54.271292, -2.245324]], [[54.271292, -2.245324], [54.271196, -2.245336]], [[54.271196, -2.245336], [54.271095, -2.245351]], [[54.271095, -2.245351], [54.270992, -2.245364]], [[54.270337, -2.245473], [54.270247, -2.24548]], [[54.270247, -2.24548], [54.270154, -2.245507]], [[54.269957, -2.245525], [54.269858, -2.245548]], [[54.269858, -2.245548], [54.269767, -2.245551]], [[54.269767, -2.245551], [54.269678, -2.245577]], [[54.269399, -2.245626], [54.269297, -2.245655]], [[54.269297, -2.245655], [54.269205, -2.245677]], [[54.269205, -2.245677], [54.269119, -2.245722]], [[54.269119, -2.245722], [54.269031, -2.24579]], [[54.269031, -2.24579], [54.268938, -2.245839]], [[54.268938, -2.245839], [54.268838, -2.245869]], [[54.268838, -2.245869], [54.26874, -2.245898]], [[54.268362, -2.245928], [54.268269, -2.245971]], [[54.268269, -2.245971], [54.268178, -2.246044]], [[54.267713, -2.246262], [54.26763, -2.246327]], [[54.26763, -2.246327], [54.267539, -2.246401]], [[54.267539, -2.246401], [54.267449, -2.246464]], [[54.267449, -2.246464], [54.267371, -2.24654]], [[54.267285, -2.246608], [54.2672, -2.246701]], [[54.2672, -2.246701], [54.26711, -2.246781]], [[54.26711, -2.246781], [54.267037, -2.246873]], [[54.267037, -2.246873], [54.266949, -2.246949]], [[54.266949, -2.246949], [54.266853, -2.247001]], [[54.266571, -2.247123], [54.266489, -2.247211]], [[54.266489, -2.247211], [54.266401, -2.247281]], [[54.266401, -2.247281], [54.266315, -2.247337]], [[54.266315, -2.247337], [54.266225, -2.247397]], [[54.266225, -2.247397], [54.266127, -2.247406]], [[54.266127, -2.247406], [54.266031, -2.247423]], [[54.265939, -2.247452], [54.265855, -2.247543]], [[54.265855, -2.247543], [54.265763, -2.24758]], [[54.265763, -2.24758], [54.265677, -2.247637]], [[54.265677, -2.247637], [54.265591, -2.247706]], [[54.265494, -2.247766], [54.265406, -2.247823]], [[54.265406, -2.247823], [54.265313, -2.247887]], [[54.265313, -2.247887], [54.265228, -2.247948]], [[54.265041, -2.248069], [54.264947, -2.24813]], [[54.264947, -2.24813], [54.264851, -2.248184]], [[54.264851, -2.248184], [54.264764, -2.248225]], [[54.264764, -2.248225], [54.264665, -2.248266]], [[54.264665, -2.248266], [54.264574, -2.248314]], [[54.2643, -2.248463], [54.264213, -2.248512]], [[54.264213, -2.248512], [54.26413, -2.248579]], [[54.26413, -2.248579], [54.26404, -2.248616]], [[54.263949, -2.248627], [54.263852, -2.248629]], [[54.263852, -2.248629], [54.26376, -2.248606]], [[54.26376, -2.248606], [54.263667, -2.248596]], [[54.263667, -2.248596], [54.263569, -2.248578]], [[54.263569, -2.248578], [54.263466, -2.248585]], [[54.263466, -2.248585], [54.263371, -2.248642]], [[54.263183, -2.248742], [54.263093, -2.248787]], [[54.263093, -2.248787], [54.263002, -2.248824]], [[54.263002, -2.248824], [54.262907, -2.248878]], [[54.262907, -2.248878], [54.262814, -2.248917]], [[54.262814, -2.248917], [54.262722, -2.248981]], [[54.262722, -2.248981], [54.262644, -2.249065]], [[54.262644, -2.249065], [54.262558, -2.24914]], [[54.262558, -2.24914], [54.262479, -2.24922]], [[54.262479, -2.24922], [54.262385, -2.249273]], [[54.262385, -2.249273], [54.262293, -2.249315]], [[54.262293, -2.249315], [54.262207, -2.249383]], [[54.261847, -2.249944], [54.26177, -2.250035]], [[54.261622, -2.250246], [54.261533, -2.250323]], [[54.261533, -2.250323], [54.261444, -2.250375]], [[54.261444, -2.250375], [54.261355, -2.250432]], [[54.261355, -2.250432], [54.261262, -2.250499]], [[54.261262, -2.250499], [54.261195, -2.250602]], [[54.261195, -2.250602], [54.261133, -2.250715]], [[54.260924, -2.251072], [54.260847, -2.251184]], [[54.260847, -2.251184], [54.260768, -2.25127]], [[54.260768, -2.25127], [54.260677, -2.251341]], [[54.260677, -2.251341], [54.2606, -2.251438]], [[54.2606, -2.251438], [54.26052, -2.251531]], [[54.26052, -2.251531], [54.260464, -2.251654]], [[54.25999, -2.252446], [54.259906, -2.252537]], [[54.259906, -2.252537], [54.259822, -2.252606]], [[54.259822, -2.252606], [54.259737, -2.252699]], [[54.259737, -2.252699], [54.259659, -2.252789]], [[54.25915, -2.25323], [54.259068, -2.253297]], [[54.259068, -2.253297], [54.258974, -2.253336]], [[54.258974, -2.253336], [54.258878, -2.253386]], [[54.258878, -2.253386], [54.258792, -2.25344]], [[54.258792, -2.25344], [54.258709, -2.253497]], [[54.258055, -2.253867], [54.257967, -2.253927]], [[54.25787, -2.253977], [54.257778, -2.254023]], [[54.257778, -2.254023], [54.257691, -2.254089]], [[54.257499, -2.254167], [54.257401, -2.254195]], [[54.257401, -2.254195], [54.257305, -2.254238]], [[54.257305, -2.254238], [54.257215, -2.254265]], [[54.257215, -2.254265], [54.257122, -2.25429]], [[54.256931, -2.254343], [54.256838, -2.254383]], [[54.256745, -2.254437], [54.256651, -2.254501]], [[54.256651, -2.254501], [54.256555, -2.254528]], [[54.256555, -2.254528], [54.25646, -2.254543]], [[54.25646, -2.254543], [54.256366, -2.25458]], [[54.256366, -2.25458], [54.256274, -2.254572]], [[54.256274, -2.254572], [54.25619, -2.25463]], [[54.25619, -2.25463], [54.256105, -2.25471]], [[54.256105, -2.25471], [54.256017, -2.254772]], [[54.255446, -2.255366], [54.255369, -2.255459]], [[54.255369, -2.255459], [54.255279, -2.255533]], [[54.255279, -2.255533], [54.255196, -2.255613]], [[54.255196, -2.255613], [54.255102, -2.25567]], [[54.255102, -2.25567], [54.255017, -2.255739]], [[54.255017, -2.255739], [54.254925, -2.255808]], [[54.254925, -2.255808], [54.254836, -2.255852]], [[54.254695, -2.25607], [54.254611, -2.256149]], [[54.254611, -2.256149], [54.254534, -2.256258]], [[54.254534, -2.256258], [54.254468, -2.256369]], [[54.254468, -2.256369], [54.254402, -2.256499]], [[54.254402, -2.256499], [54.25432, -2.256581]], [[54.25432, -2.256581], [54.254245, -2.25669]], [[54.254245, -2.25669], [54.254172, -2.256785]], [[54.254172, -2.256785], [54.254094, -2.256868]], [[54.253853, -2.257157], [54.253777, -2.257253]], [[54.253777, -2.257253], [54.253701, -2.257344]], [[54.253182, -2.258059], [54.253106, -2.258155]], [[54.25227, -2.259235], [54.252188, -2.259321]], [[54.252188, -2.259321], [54.252107, -2.259418]], [[54.252107, -2.259418], [54.252024, -2.259512]], [[54.252024, -2.259512], [54.251937, -2.259593]], [[54.250789, -2.260365], [54.250704, -2.260427]], [[54.250704, -2.260427], [54.250613, -2.260497]], [[54.250613, -2.260497], [54.250532, -2.26057]], [[54.250532, -2.26057], [54.250445, -2.260613]], [[54.250355, -2.260667], [54.250265, -2.26074]], [[54.250265, -2.26074], [54.250167, -2.26078]], [[54.250167, -2.26078], [54.250078, -2.26084]], [[54.250078, -2.26084], [54.249995, -2.260915]], [[54.249719, -2.261109], [54.249621, -2.261147]], [[54.249266, -2.261377], [54.249171, -2.261438]], [[54.249171, -2.261438], [54.249076, -2.261453]], [[54.248989, -2.261502], [54.248903, -2.261548]], [[54.248903, -2.261548], [54.248813, -2.261569]], [[54.248813, -2.261569], [54.248729, -2.26163]], [[54.248457, -2.26175], [54.248363, -2.261811]], [[54.248363, -2.261811], [54.248273, -2.261873]], [[54.247142, -2.262317], [54.247043, -2.262352]], [[54.246951, -2.262401], [54.246864, -2.262442]], [[54.246763, -2.262456], [54.246673, -2.262505]], [[54.246482, -2.262602], [54.246391, -2.26265]], [[54.245753, -2.263424], [54.245716, -2.26357]], [[54.245716, -2.26357], [54.245674, -2.263728]], [[54.245674, -2.263728], [54.24564, -2.263888]], [[54.245344, -2.265091], [54.245318, -2.265256]], [[54.245318, -2.265256], [54.245292, -2.265411]], [[54.244925, -2.266918], [54.244876, -2.267069]], [[54.244841, -2.267311], [54.244826, -2.267469]], [[54.244783, -2.267619], [54.244713, -2.267726]], [[54.244572, -2.268079], [54.244501, -2.2682]], [[54.244501, -2.2682], [54.244427, -2.26831]], [[54.244427, -2.26831], [54.244352, -2.268416]], [[54.244222, -2.268659], [54.244148, -2.268779]], [[54.244148, -2.268779], [54.244083, -2.26889]], [[54.244083, -2.26889], [54.244006, -2.269006]], [[54.243795, -2.269347], [54.243727, -2.269449]], [[54.243727, -2.269449], [54.243675, -2.269575]], [[54.243155, -2.270732], [54.243086, -2.27083]], [[54.243086, -2.27083], [54.243008, -2.27092]], [[54.24235, -2.271922], [54.242274, -2.272026]], [[54.242274, -2.272026], [54.242205, -2.272133]], [[54.241373, -2.27344], [54.2413, -2.273567]], [[54.240711, -2.274449], [54.240637, -2.274559]], [[54.240637, -2.274559], [54.240566, -2.27467]], [[54.240438, -2.274925], [54.240377, -2.275038]], [[54.240244, -2.275266], [54.240156, -2.275358]], [[54.239937, -2.275684], [54.239871, -2.275807]], [[54.239871, -2.275807], [54.239815, -2.275931]], [[54.239815, -2.275931], [54.239746, -2.276051]], [[54.239746, -2.276051], [54.239682, -2.276164]], [[54.239016, -2.277315], [54.238929, -2.277407]], [[54.238446, -2.278213], [54.238371, -2.27833]], [[54.238222, -2.278557], [54.238142, -2.278658]], [[54.238142, -2.278658], [54.238069, -2.278762]], [[54.238069, -2.278762], [54.238004, -2.278873]], [[54.237711, -2.279328], [54.23764, -2.279452]], [[54.23764, -2.279452], [54.237584, -2.279579]], [[54.237438, -2.279819], [54.237363, -2.279917]], [[54.237363, -2.279917], [54.237302, -2.28004]], [[54.237302, -2.28004], [54.237234, -2.280155]], [[54.237234, -2.280155], [54.237156, -2.280271]], [[54.236214, -2.281666], [54.236146, -2.281787]], [[54.236146, -2.281787], [54.236074, -2.281882]], [[54.236074, -2.281882], [54.236008, -2.281999]], [[54.235783, -2.282326], [54.235724, -2.282466]], [[54.235724, -2.282466], [54.235643, -2.282545]], [[54.23526, -2.28304], [54.235184, -2.283129]], [[54.235184, -2.283129], [54.235113, -2.28324]], [[54.235113, -2.28324], [54.235051, -2.283356]], [[54.234956, -2.283412], [54.234872, -2.283508]], [[54.234713, -2.283705], [54.234642, -2.283798]], [[54.234642, -2.283798], [54.234571, -2.283923]], [[54.23394, -2.284663], [54.233868, -2.284754]], [[54.233544, -2.285088], [54.233472, -2.285201]], [[54.233472, -2.285201], [54.2334, -2.28531]], [[54.2334, -2.28531], [54.233327, -2.285405]], [[54.233327, -2.285405], [54.233252, -2.285516]], [[54.233252, -2.285516], [54.233177, -2.285609]], [[54.233177, -2.285609], [54.233084, -2.285682]], [[54.232243, -2.286506], [54.23216, -2.286599]], [[54.23216, -2.286599], [54.232083, -2.286694]], [[54.232083, -2.286694], [54.23199, -2.28676]], [[54.231675, -2.287116], [54.231586, -2.28719]], [[54.231586, -2.28719], [54.231497, -2.28724]], [[54.230727, -2.287955], [54.230673, -2.288078]], [[54.230673, -2.288078], [54.230593, -2.288162]], [[54.229254, -2.289736], [54.229186, -2.289837]], [[54.229186, -2.289837], [54.229104, -2.289927]], [[54.229104, -2.289927], [54.229032, -2.29004]], [[54.228892, -2.290251], [54.228821, -2.290369]], [[54.228821, -2.290369], [54.228747, -2.290457]], [[54.228747, -2.290457], [54.228681, -2.290582]], [[54.22846, -2.290903], [54.228382, -2.291011]], [[54.228382, -2.291011], [54.22832, -2.291132]], [[54.22832, -2.291132], [54.228248, -2.291249]], [[54.228248, -2.291249], [54.228173, -2.291371]], [[54.22786, -2.29177], [54.227783, -2.291856]], [[54.227705, -2.291946], [54.227628, -2.292029]], [[54.227553, -2.292129], [54.227471, -2.292221]], [[54.227376, -2.292289], [54.227299, -2.292404]], [[54.227299, -2.292404], [54.227217, -2.292507]], [[54.226971, -2.29276], [54.226899, -2.292873]], [[54.226899, -2.292873], [54.226831, -2.292981]], [[54.225855, -2.294298], [54.225786, -2.294422]], [[54.225786, -2.294422], [54.225722, -2.294531]], [[54.225028, -2.295616], [54.224958, -2.29572]], [[54.224525, -2.296328], [54.224453, -2.296422]], [[54.224453, -2.296422], [54.224384, -2.296525]], [[54.224384, -2.296525], [54.224315, -2.296627]], [[54.224315, -2.296627], [54.224244, -2.296741]], [[54.224244, -2.296741], [54.224167, -2.296851]], [[54.224167, -2.296851], [54.224094, -2.296946]], [[54.223877, -2.297253], [54.22381, -2.297378]], [[54.22381, -2.297378], [54.223749, -2.297507]], [[54.222685, -2.299143], [54.222614, -2.299252]], [[54.222614, -2.299252], [54.22254, -2.29936]], [[54.22254, -2.29936], [54.222474, -2.299475]], [[54.221815, -2.300422], [54.22175, -2.300528]], [[54.22175, -2.300528], [54.221669, -2.300634]], [[54.221518, -2.300834], [54.221438, -2.30094]], [[54.221208, -2.301223], [54.221127, -2.301328]], [[54.221127, -2.301328], [54.221057, -2.301448]], [[54.221057, -2.301448], [54.220989, -2.301562]], [[54.220743, -2.302066], [54.220672, -2.302188]], [[54.220672, -2.302188], [54.220596, -2.302302]], [[54.220596, -2.302302], [54.220525, -2.302427]], [[54.220407, -2.302676], [54.220336, -2.302802]], [[54.220122, -2.30316], [54.220076, -2.303296]], [[54.219614, -2.30437], [54.219586, -2.304534]], [[54.219586, -2.304534], [54.219563, -2.304702]], [[54.219563, -2.304702], [54.219537, -2.304865]], [[54.219537, -2.304865], [54.219509, -2.305013]], [[54.219421, -2.305481], [54.219424, -2.305641]], [[54.218295, -2.306125], [54.218195, -2.306163]], [[54.217833, -2.306325], [54.217739, -2.306379]], [[54.217739, -2.306379], [54.217651, -2.306416]], [[54.217651, -2.306416], [54.217561, -2.306447]], [[54.217472, -2.306495], [54.217386, -2.306542]], [[54.217386, -2.306542], [54.217288, -2.306591]], [[54.216629, -2.306783], [54.216535, -2.306804]], [[54.216535, -2.306804], [54.216441, -2.306813]], [[54.216441, -2.306813], [54.216339, -2.306821]], [[54.216339, -2.306821], [54.216244, -2.306831]], [[54.215855, -2.306957], [54.215764, -2.306967]], [[54.215764, -2.306967], [54.215667, -2.306983]], [[54.215667, -2.306983], [54.215565, -2.306989]], [[54.214052, -2.30594], [54.213965, -2.305862]], [[54.213965, -2.305862], [54.213887, -2.305778]], [[54.213887, -2.305778], [54.213803, -2.305686]], [[54.213321, -2.305201], [54.213232, -2.305176]], [[54.213232, -2.305176], [54.213136, -2.305144]], [[54.213136, -2.305144], [54.213038, -2.305127]], [[54.2128, -2.305055], [54.212702, -2.305032]], [[54.212702, -2.305032], [54.212606, -2.304996]], [[54.212606, -2.304996], [54.212507, -2.304998]], [[54.212507, -2.304998], [54.212411, -2.30503]], [[54.212411, -2.30503], [54.212314, -2.305066]], [[54.212314, -2.305066], [54.212216, -2.305122]], [[54.211956, -2.305351], [54.211863, -2.305426]], [[54.211506, -2.305688], [54.211415, -2.305757]], [[54.211415, -2.305757], [54.211325, -2.305817]], [[54.21089, -2.306155], [54.210797, -2.306204]], [[54.210797, -2.306204], [54.210707, -2.306262]], [[54.210707, -2.306262], [54.210617, -2.306298]], [[54.210523, -2.306327], [54.210426, -2.30634]], [[54.210248, -2.306227], [54.210171, -2.306127]], [[54.210171, -2.306127], [54.210101, -2.306026]], [[54.210101, -2.306026], [54.210027, -2.305905]], [[54.209315, -2.304615], [54.209239, -2.304509]], [[54.209239, -2.304509], [54.209166, -2.304402]], [[54.209166, -2.304402], [54.209084, -2.304301]], [[54.209084, -2.304301], [54.209009, -2.304201]], [[54.209009, -2.304201], [54.208933, -2.304079]], [[54.208726, -2.303743], [54.208674, -2.303617]], [[54.208674, -2.303617], [54.208606, -2.303494]], [[54.208606, -2.303494], [54.208535, -2.303393]], [[54.208453, -2.303317], [54.208365, -2.303243]], [[54.208365, -2.303243], [54.208277, -2.303189]], [[54.208277, -2.303189], [54.20818, -2.30315]], [[54.20818, -2.30315], [54.208091, -2.303108]], [[54.207998, -2.303066], [54.207912, -2.303015]], [[54.207912, -2.303015], [54.207823, -2.302976]], [[54.207823, -2.302976], [54.207736, -2.30292]], [[54.207644, -2.302884], [54.20755, -2.302853]], [[54.207367, -2.302736], [54.20727, -2.302728]], [[54.20727, -2.302728], [54.20718, -2.302754]], [[54.206912, -2.302927], [54.206819, -2.302992]], [[54.206263, -2.303322], [54.206173, -2.303397]], [[54.206173, -2.303397], [54.206096, -2.303502]], [[54.206006, -2.303582], [54.205914, -2.303614]], [[54.205914, -2.303614], [54.205819, -2.303581]], [[54.205819, -2.303581], [54.205724, -2.303519]], [[54.205724, -2.303519], [54.205629, -2.303579]], [[54.205629, -2.303579], [54.20554, -2.303623]], [[54.20554, -2.303623], [54.205445, -2.303606]], [[54.205445, -2.303606], [54.205358, -2.303565]], [[54.205101, -2.303488], [54.205002, -2.303479]], [[54.205002, -2.303479], [54.204918, -2.303402]], [[54.204918, -2.303402], [54.204838, -2.303331]], [[54.204838, -2.303331], [54.204747, -2.303348]], [[54.204662, -2.303409], [54.204581, -2.303477]], [[54.204581, -2.303477], [54.204489, -2.30355]], [[54.204489, -2.30355], [54.204409, -2.303619]], [[54.204409, -2.303619], [54.204319, -2.303687]], [[54.204319, -2.303687], [54.204231, -2.30375]], [[54.203705, -2.304174], [54.203613, -2.304243]], [[54.203613, -2.304243], [54.203525, -2.304288]], [[54.203177, -2.304574], [54.203086, -2.304652]], [[54.202898, -2.304787], [54.202803, -2.304851]], [[54.202803, -2.304851], [54.202718, -2.304901]], [[54.202718, -2.304901], [54.202629, -2.304954]], [[54.202629, -2.304954], [54.202534, -2.305014]], [[54.202534, -2.305014], [54.202435, -2.305057]], [[54.201965, -2.305047], [54.201865, -2.305039]], [[54.201865, -2.305039], [54.201771, -2.305024]], [[54.201771, -2.305024], [54.201682, -2.304976]], [[54.201682, -2.304976], [54.201592, -2.304935]], [[54.201592, -2.304935], [54.201499, -2.304914]], [[54.201499, -2.304914], [54.201403, -2.304895]], [[54.201403, -2.304895], [54.201308, -2.304869]], [[54.201113, -2.304822], [54.201012, -2.304804]], [[54.201012, -2.304804], [54.20091, -2.30479]], [[54.20091, -2.30479], [54.200809, -2.304788]], [[54.200809, -2.304788], [54.200709, -2.304765]], [[54.200709, -2.304765], [54.200607, -2.304745]], [[54.200607, -2.304745], [54.200505, -2.304735]], [[54.200044, -2.304848], [54.199954, -2.304929]], [[54.199777, -2.305042], [54.199706, -2.305139]], [[54.199706, -2.305139], [54.199629, -2.305245]], [[54.199629, -2.305245], [54.199556, -2.305366]], [[54.199556, -2.305366], [54.1995, -2.30549]], [[54.199186, -2.305901], [54.199103, -2.305963]], [[54.198469, -2.306319], [54.198384, -2.306369]], [[54.198384, -2.306369], [54.198285, -2.306379]], [[54.198285, -2.306379], [54.198192, -2.306366]], [[54.198192, -2.306366], [54.198094, -2.306365]], [[54.198094, -2.306365], [54.197998, -2.306369]], [[54.197998, -2.306369], [54.197905, -2.30636]], [[54.197905, -2.30636], [54.197808, -2.306348]], [[54.197808, -2.306348], [54.197718, -2.306341]], [[54.197002, -2.305934], [54.196915, -2.305844]], [[54.196915, -2.305844], [54.19683, -2.305744]], [[54.19661, -2.305434], [54.196556, -2.305289]], [[54.196556, -2.305289], [54.196497, -2.305149]], [[54.196497, -2.305149], [54.196411, -2.305066]], [[54.196411, -2.305066], [54.196318, -2.30503]], [[54.195864, -2.304799], [54.195763, -2.304794]], [[54.195763, -2.304794], [54.195671, -2.304771]], [[54.195671, -2.304771], [54.19557, -2.304748]], [[54.19557, -2.304748], [54.195477, -2.304725]], [[54.195477, -2.304725], [54.195384, -2.304708]], [[54.195196, -2.304699], [54.1951, -2.304695]], [[54.1951, -2.304695], [54.195001, -2.304683]], [[54.19463, -2.304476], [54.194548, -2.304368]], [[54.194192, -2.303831], [54.194109, -2.30374]], [[54.194109, -2.30374], [54.194036, -2.303627]], [[54.194036, -2.303627], [54.193971, -2.303494]], [[54.193971, -2.303494], [54.193904, -2.303385]], [[54.193904, -2.303385], [54.193842, -2.303269]], [[54.193842, -2.303269], [54.19378, -2.303131]], [[54.19378, -2.303131], [54.193735, -2.302992]], [[54.193735, -2.302992], [54.193714, -2.302841]], [[54.193714, -2.302841], [54.193691, -2.302668]], [[54.193691, -2.302668], [54.193662, -2.302503]], [[54.193662, -2.302503], [54.193644, -2.302352]], [[54.193644, -2.302352], [54.193616, -2.302204]], [[54.193616, -2.302204], [54.19356, -2.302067]], [[54.193401, -2.301887], [54.193313, -2.301804]], [[54.193313, -2.301804], [54.193215, -2.301769]], [[54.193215, -2.301769], [54.193119, -2.301719]], [[54.193119, -2.301719], [54.193019, -2.3017]], [[54.193019, -2.3017], [54.192924, -2.301684]], [[54.192924, -2.301684], [54.192829, -2.301655]], [[54.192642, -2.301636], [54.192543, -2.301638]], [[54.192543, -2.301638], [54.192453, -2.301612]], [[54.192453, -2.301612], [54.192352, -2.301597]], [[54.192352, -2.301597], [54.192258, -2.301586]], [[54.191868, -2.301583], [54.191772, -2.301553]], [[54.191772, -2.301553], [54.191678, -2.301493]], [[54.191678, -2.301493], [54.191628, -2.301358]], [[54.191628, -2.301358], [54.191634, -2.301181]], [[54.19162, -2.300863], [54.191625, -2.300709]], [[54.191625, -2.300709], [54.191654, -2.300557]], [[54.191654, -2.300557], [54.191661, -2.300386]], [[54.191661, -2.300386], [54.191675, -2.300231]], [[54.191709, -2.299915], [54.191717, -2.299747]], [[54.191717, -2.299747], [54.191731, -2.299585]], [[54.191731, -2.299585], [54.191747, -2.299432]], [[54.191747, -2.299432], [54.191764, -2.299268]], [[54.191764, -2.299268], [54.191784, -2.299099]], [[54.191784, -2.299099], [54.191801, -2.298941]], [[54.191815, -2.298466], [54.191827, -2.298308]], [[54.191822, -2.297522], [54.191765, -2.297402]], [[54.191765, -2.297402], [54.191712, -2.297267]], [[54.191712, -2.297267], [54.191645, -2.297133]], [[54.191645, -2.297133], [54.191576, -2.297022]], [[54.191576, -2.297022], [54.191502, -2.296906]], [[54.191502, -2.296906], [54.19145, -2.29678]], [[54.19145, -2.29678], [54.191401, -2.296637]], [[54.191401, -2.296637], [54.191332, -2.296533]], [[54.191332, -2.296533], [54.191255, -2.29642]], [[54.191255, -2.29642], [54.19119, -2.296311]], [[54.19119, -2.296311], [54.191116, -2.296191]], [[54.190985, -2.29594], [54.190936, -2.295802]], [[54.190732, -2.295467], [54.19067, -2.295334]], [[54.19067, -2.295334], [54.190612, -2.295209]], [[54.190612, -2.295209], [54.190547, -2.295086]], [[54.190386, -2.294725], [54.190315, -2.294601]], [[54.190188, -2.294362], [54.190123, -2.294254]], [[54.190123, -2.294254], [54.190049, -2.294156]], [[54.190049, -2.294156], [54.189966, -2.294075]], [[54.189891, -2.293979], [54.189842, -2.293836]], [[54.189842, -2.293836], [54.18983, -2.293683]], [[54.18983, -2.293683], [54.189863, -2.293527]], [[54.189863, -2.293527], [54.189897, -2.293382]], [[54.189897, -2.293382], [54.189916, -2.29322]], [[54.189977, -2.292918], [54.19002, -2.292772]], [[54.19002, -2.292772], [54.190061, -2.292616]], [[54.190061, -2.292616], [54.190084, -2.292457]], [[54.190084, -2.292457], [54.190114, -2.292302]], [[54.190114, -2.292302], [54.190149, -2.292138]], [[54.190149, -2.292138], [54.190177, -2.291985]], [[54.190177, -2.291985], [54.190181, -2.291831]], [[54.190181, -2.291831], [54.190186, -2.291669]], [[54.190186, -2.291669], [54.190205, -2.291505]], [[54.190205, -2.291505], [54.190207, -2.291352]], [[54.190207, -2.291352], [54.190212, -2.291183]], [[54.190212, -2.291183], [54.190222, -2.291016]], [[54.190222, -2.291016], [54.190215, -2.290846]], [[54.190249, -2.289242], [54.19023, -2.28909]], [[54.19023, -2.28909], [54.190206, -2.288931]], [[54.190206, -2.288931], [54.19017, -2.288777]], [[54.19017, -2.288777], [54.190138, -2.288623]], [[54.190138, -2.288623], [54.19013, -2.288468]], [[54.19013, -2.288468], [54.190104, -2.28832]], [[54.189843, -2.288111], [54.189749, -2.288176]], [[54.189749, -2.288176], [54.189667, -2.288244]], [[54.189667, -2.288244], [54.189578, -2.288319]], [[54.189578, -2.288319], [54.189495, -2.288394]], [[54.189495, -2.288394], [54.1894, -2.288449]], [[54.1894, -2.288449], [54.18931, -2.28852]], [[54.18931, -2.28852], [54.189229, -2.288593]], [[54.189048, -2.288735], [54.188955, -2.288737]], [[54.188801, -2.288823], [54.188723, -2.288904]], [[54.188723, -2.288904], [54.188636, -2.288971]], [[54.188111, -2.289349], [54.188021, -2.289399]], [[54.188021, -2.289399], [54.187927, -2.289462]], [[54.187927, -2.289462], [54.187836, -2.289537]], [[54.187836, -2.289537], [54.187749, -2.289598]], [[54.187582, -2.28972], [54.187496, -2.28978]], [[54.187414, -2.289856], [54.187313, -2.289861]], [[54.187313, -2.289861], [54.187223, -2.28989]], [[54.187223, -2.28989], [54.187126, -2.289901]], [[54.187126, -2.289901], [54.187028, -2.289904]], [[54.187028, -2.289904], [54.186931, -2.289926]], [[54.186931, -2.289926], [54.186837, -2.289978]], [[54.186837, -2.289978], [54.186747, -2.290033]], [[54.186747, -2.290033], [54.186661, -2.290097]], [[54.186661, -2.290097], [54.186573, -2.290155]], [[54.186573, -2.290155], [54.186479, -2.290218]], [[54.186479, -2.290218], [54.186395, -2.290284]], [[54.186395, -2.290284], [54.186303, -2.290332]], [[54.186303, -2.290332], [54.186216, -2.290397]], [[54.186216, -2.290397], [54.186126, -2.290477]], [[54.186126, -2.290477], [54.186046, -2.290562]], [[54.185886, -2.290702], [54.185809, -2.290783]], [[54.185809, -2.290783], [54.185728, -2.290879]], [[54.185728, -2.290879], [54.18565, -2.290971]], [[54.185477, -2.291124], [54.185402, -2.291212]], [[54.184795, -2.291433], [54.184751, -2.291574]], [[54.184751, -2.291574], [54.184669, -2.291669]], [[54.184669, -2.291669], [54.184576, -2.291612]], [[54.184576, -2.291612], [54.184491, -2.29154]], [[54.184491, -2.29154], [54.18441, -2.291466]], [[54.18441, -2.291466], [54.184317, -2.291444]], [[54.184317, -2.291444], [54.184222, -2.291424]], [[54.183928, -2.291406], [54.183829, -2.291419]], [[54.183829, -2.291419], [54.18373, -2.291415]], [[54.18373, -2.291415], [54.183635, -2.291397]], [[54.183085, -2.291213], [54.182993, -2.29118]], [[54.182993, -2.29118], [54.182896, -2.291165]], [[54.182896, -2.291165], [54.182804, -2.291153]], [[54.182804, -2.291153], [54.182704, -2.291137]], [[54.182704, -2.291137], [54.182607, -2.291125]], [[54.182607, -2.291125], [54.182516, -2.291115]], [[54.182516, -2.291115], [54.182416, -2.291099]], [[54.182416, -2.291099], [54.18232, -2.291068]], [[54.18232, -2.291068], [54.182227, -2.291065]], [[54.182227, -2.291065], [54.18213, -2.291075]], [[54.18213, -2.291075], [54.182031, -2.2911]], [[54.182031, -2.2911], [54.181937, -2.291142]], [[54.181937, -2.291142], [54.18185, -2.291195]], [[54.18185, -2.291195], [54.181767, -2.291275]], [[54.181588, -2.291417], [54.181505, -2.291477]], [[54.181505, -2.291477], [54.181415, -2.291547]], [[54.181415, -2.291547], [54.181328, -2.2916]], [[54.181328, -2.2916], [54.181241, -2.291656]], [[54.181241, -2.291656], [54.181159, -2.291725]], [[54.181159, -2.291725], [54.181073, -2.291787]], [[54.181073, -2.291787], [54.180982, -2.291862]], [[54.180982, -2.291862], [54.180901, -2.291959]], [[54.180901, -2.291959], [54.180823, -2.292055]], [[54.180823, -2.292055], [54.180751, -2.292151]], [[54.180751, -2.292151], [54.180662, -2.292214]], [[54.180662, -2.292214], [54.180572, -2.29226]], [[54.180313, -2.292461], [54.180216, -2.292499]], [[54.180216, -2.292499], [54.180128, -2.292564]], [[54.178878, -2.292704], [54.178783, -2.292741]], [[54.178783, -2.292741], [54.178696, -2.292781]], [[54.178226, -2.292892], [54.178128, -2.292919]], [[54.178128, -2.292919], [54.178033, -2.29296]], [[54.178033, -2.29296], [54.177938, -2.292999]], [[54.177742, -2.293062], [54.17765, -2.293044]], [[54.17765, -2.293044], [54.177559, -2.293056]], [[54.174568, -2.292799], [54.174478, -2.292797]], [[54.169379, -2.29242], [54.169282, -2.292389]], [[54.169282, -2.292389], [54.169188, -2.292405]], [[54.164716, -2.289597], [54.164649, -2.289484]], [[54.164649, -2.289484], [54.164559, -2.289544]], [[54.164559, -2.289544], [54.164473, -2.289605]], [[54.164276, -2.289613], [54.164182, -2.289577]], [[54.164182, -2.289577], [54.164082, -2.289528]], [[54.163404, -2.289491], [54.163304, -2.289505]], [[54.163304, -2.289505], [54.163208, -2.28949]], [[54.162521, -2.289631], [54.162425, -2.289575]], [[54.162251, -2.289449], [54.162171, -2.289378]], [[54.162171, -2.289378], [54.162084, -2.289319]], [[54.161882, -2.289319], [54.161787, -2.289296]], [[54.161696, -2.289299], [54.161596, -2.289305]], [[54.161596, -2.289305], [54.161502, -2.289294]], [[54.161223, -2.289276], [54.161125, -2.289267]], [[54.161125, -2.289267], [54.161035, -2.289286]], [[54.161035, -2.289286], [54.160937, -2.289271]], [[54.160937, -2.289271], [54.16084, -2.289254]], [[54.16084, -2.289254], [54.160749, -2.289253]], [[54.160749, -2.289253], [54.160652, -2.289252]], [[54.160381, -2.289439], [54.16028, -2.289432]], [[54.159984, -2.289502], [54.159893, -2.289498]], [[54.159803, -2.289447], [54.159711, -2.289434]], [[54.159711, -2.289434], [54.159622, -2.289384]], [[54.159253, -2.289262], [54.159162, -2.289243]], [[54.159162, -2.289243], [54.159071, -2.289165]], [[54.159071, -2.289165], [54.158974, -2.289197]], [[54.158501, -2.289393], [54.158411, -2.289404]], [[54.157436, -2.289327], [54.157338, -2.289304]], [[54.15686, -2.289386], [54.15677, -2.289406]], [[54.154798, -2.290181], [54.15471, -2.290213]], [[54.153216, -2.291228], [54.153143, -2.291337]], [[54.153143, -2.291337], [54.153067, -2.291439]], [[54.153067, -2.291439], [54.152986, -2.291538]], [[54.152986, -2.291538], [54.15291, -2.291639]], [[54.15291, -2.291639], [54.152831, -2.29174]], [[54.152831, -2.29174], [54.152758, -2.291851]], [[54.152758, -2.291851], [54.15269, -2.291951]], [[54.15269, -2.291951], [54.152612, -2.292065]], [[54.152395, -2.292384], [54.152325, -2.292498]], [[54.152325, -2.292498], [54.152255, -2.292597]], [[54.152255, -2.292597], [54.152187, -2.292704]], [[54.151825, -2.293232], [54.151757, -2.293357]], [[54.151757, -2.293357], [54.151676, -2.293447]], [[54.151676, -2.293447], [54.151603, -2.293553]], [[54.151603, -2.293553], [54.151531, -2.293663]], [[54.151531, -2.293663], [54.151458, -2.293768]], [[54.151458, -2.293768], [54.151387, -2.293878]], [[54.151387, -2.293878], [54.15131, -2.293995]], [[54.15131, -2.293995], [54.151233, -2.294083]], [[54.151233, -2.294083], [54.151154, -2.294174]], [[54.151154, -2.294174], [54.151073, -2.294247]], [[54.150818, -2.294432], [54.150734, -2.294493]], [[54.150734, -2.294493], [54.150641, -2.29456]], [[54.150378, -2.294719], [54.150289, -2.294775]], [[54.150289, -2.294775], [54.1502, -2.294858]], [[54.1502, -2.294858], [54.150114, -2.294945]], [[54.150114, -2.294945], [54.150032, -2.295025]], [[54.150032, -2.295025], [54.149948, -2.295106]], [[54.149863, -2.295185], [54.14978, -2.295246]], [[54.14978, -2.295246], [54.14973, -2.295395]], [[54.14973, -2.295395], [54.149715, -2.295559]], [[54.149715, -2.295559], [54.149712, -2.29572]], [[54.148298, -2.295296], [54.14822, -2.295179]], [[54.148132, -2.295124], [54.148049, -2.29505]], [[54.148049, -2.29505], [54.147967, -2.294975]], [[54.14737, -2.294226], [54.147284, -2.294162]], [[54.147284, -2.294162], [54.147193, -2.294139]], [[54.147193, -2.294139], [54.147106, -2.294072]], [[54.146767, -2.293829], [54.146679, -2.293786]], [[54.145831, -2.293296], [54.145743, -2.29325]], [[54.145743, -2.29325], [54.145644, -2.293212]], [[54.145274, -2.293008], [54.145181, -2.293011]], [[54.145181, -2.293011], [54.145085, -2.293004]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            var poly_line_68c57f3dea92c84e9f8e722cddb6b94e = L.polyline(
                [[[54.376925, -2.153536], [54.376941, -2.153706]], [[54.376941, -2.153706], [54.37695, -2.153877]], [[54.37695, -2.153877], [54.37696, -2.154039]], [[54.37696, -2.154039], [54.376983, -2.154194]], [[54.37731, -2.155257], [54.377372, -2.155387]], [[54.377372, -2.155387], [54.377434, -2.155512]], [[54.377586, -2.155745], [54.377664, -2.155829]], [[54.377664, -2.155829], [54.377742, -2.15592]], [[54.377976, -2.156737], [54.37802, -2.156878]], [[54.37802, -2.156878], [54.378074, -2.157018]], [[54.378074, -2.157018], [54.378131, -2.157142]], [[54.378831, -2.158249], [54.378863, -2.158407]], [[54.378863, -2.158407], [54.378883, -2.158561]], [[54.379007, -2.159589], [54.379005, -2.159755]], [[54.379111, -2.164929], [54.379111, -2.165103]], [[54.379111, -2.165103], [54.379102, -2.165269]], [[54.379102, -2.165269], [54.379107, -2.16543]], [[54.379173, -2.166937], [54.37921, -2.167086]], [[54.379277, -2.168065], [54.379305, -2.168221]], [[54.380411, -2.17313], [54.380393, -2.173289]], [[54.380393, -2.173289], [54.380365, -2.173439]], [[54.380365, -2.173439], [54.380327, -2.173588]], [[54.379895, -2.176109], [54.379869, -2.176269]], [[54.379869, -2.176269], [54.379842, -2.176435]], [[54.379842, -2.176435], [54.379814, -2.176589]], [[54.37965, -2.177344], [54.379605, -2.177495]], [[54.381212, -2.191281], [54.38121, -2.191441]], [[54.383192, -2.216936], [54.38314, -2.217081]], [[54.38314, -2.217081], [54.38309, -2.217238]], [[54.38309, -2.217238], [54.383042, -2.217384]], [[54.383042, -2.217384], [54.382983, -2.21752]], [[54.382983, -2.21752], [54.38293, -2.217653]], [[54.382768, -2.21806], [54.382738, -2.218205]], [[54.382738, -2.218205], [54.382666, -2.218312]], [[54.382285, -2.219037], [54.382213, -2.219163]], [[54.382213, -2.219163], [54.382147, -2.219286]], [[54.375622, -2.229368], [54.375532, -2.229362]], [[54.370504, -2.235211], [54.370441, -2.235323]], [[54.368868, -2.238814], [54.368798, -2.238924]], [[54.367994, -2.23992], [54.367901, -2.239969]], [[54.367901, -2.239969], [54.367801, -2.239974]], [[54.367321, -2.240306], [54.367232, -2.24033]], [[54.367232, -2.24033], [54.36714, -2.240296]], [[54.365619, -2.240743], [54.36553, -2.240813]], [[54.36553, -2.240813], [54.365438, -2.240844]], [[54.365261, -2.240898], [54.365163, -2.24089]], [[54.365163, -2.24089], [54.365074, -2.240869]], [[54.365074, -2.240869], [54.364979, -2.24086]], [[54.364504, -2.240887], [54.364405, -2.240882]], [[54.364405, -2.240882], [54.364314, -2.240886]], [[54.36339, -2.240626], [54.36329, -2.240604]], [[54.36329, -2.240604], [54.363199, -2.240595]], [[54.363109, -2.240584], [54.363013, -2.240578]], [[54.36117, -2.241118], [54.361078, -2.241154]], [[54.360212, -2.241804], [54.360124, -2.241885]], [[54.360124, -2.241885], [54.360049, -2.242002]], [[54.360049, -2.242002], [54.359967, -2.242075]], [[54.359151, -2.241927], [54.359055, -2.241869]], [[54.359055, -2.241869], [54.358961, -2.241866]], [[54.357057, -2.242366], [54.35696, -2.242396]], [[54.35696, -2.242396], [54.356869, -2.242416]], [[54.356589, -2.242507], [54.356491, -2.242511]], [[54.356491, -2.242511], [54.356391, -2.242498]], [[54.356391, -2.242498], [54.356286, -2.242474]], [[54.356286, -2.242474], [54.356184, -2.24248]], [[54.356184, -2.24248], [54.356094, -2.242462]], [[54.355341, -2.242329], [54.355243, -2.242327]], [[54.355243, -2.242327], [54.355143, -2.242305]], [[54.355143, -2.242305], [54.355042, -2.242326]], [[54.355042, -2.242326], [54.354945, -2.242354]], [[54.354945, -2.242354], [54.354854, -2.242387]], [[54.354854, -2.242387], [54.354757, -2.2424]], [[54.354757, -2.2424], [54.354658, -2.242368]], [[54.354563, -2.242376], [54.35447, -2.242365]], [[54.354086, -2.242339], [54.353995, -2.242317]], [[54.3535, -2.242343], [54.353402, -2.242337]], [[54.353402, -2.242337], [54.353309, -2.242341]], [[54.353309, -2.242341], [54.353215, -2.242362]], [[54.353215, -2.242362], [54.353124, -2.242362]], [[54.352939, -2.242409], [54.352845, -2.242424]], [[54.352845, -2.242424], [54.352755, -2.242411]], [[54.352384, -2.242433], [54.352285, -2.242422]], [[54.352285, -2.242422], [54.352186, -2.24241]], [[54.352186, -2.24241], [54.352087, -2.242408]], [[54.352087, -2.242408], [54.351987, -2.24239]], [[54.351987, -2.24239], [54.351894, -2.242387]], [[54.351894, -2.242387], [54.351798, -2.242375]], [[54.351798, -2.242375], [54.351705, -2.242359]], [[54.351705, -2.242359], [54.351612, -2.242339]], [[54.351323, -2.242304], [54.351231, -2.242278]], [[54.351231, -2.242278], [54.351137, -2.24223]], [[54.351137, -2.24223], [54.35104, -2.242214]], [[54.350016, -2.242342], [54.349917, -2.242364]], [[54.349917, -2.242364], [54.349822, -2.242402]], [[54.349634, -2.242335], [54.349533, -2.242339]], [[54.349533, -2.242339], [54.349432, -2.242338]], [[54.349432, -2.242338], [54.349332, -2.242355]], [[54.349332, -2.242355], [54.349239, -2.242351]], [[54.349239, -2.242351], [54.349145, -2.242333]], [[54.349145, -2.242333], [54.349054, -2.242333]], [[54.349054, -2.242333], [54.348955, -2.242328]], [[54.348955, -2.242328], [54.34886, -2.242289]], [[54.348671, -2.242268], [54.348578, -2.242298]], [[54.348578, -2.242298], [54.348486, -2.242312]], [[54.348486, -2.242312], [54.348389, -2.242307]], [[54.348389, -2.242307], [54.348291, -2.242356]], [[54.347803, -2.242491], [54.347708, -2.24251]], [[54.347708, -2.24251], [54.347614, -2.242524]], [[54.347614, -2.242524], [54.347522, -2.242544]], [[54.347522, -2.242544], [54.347429, -2.242574]], [[54.347429, -2.242574], [54.347336, -2.242559]], [[54.346915, -2.242935], [54.346828, -2.24299]], [[54.346185, -2.243495], [54.346089, -2.243422]], [[54.346089, -2.243422], [54.345995, -2.243387]], [[54.345809, -2.243391], [54.345715, -2.243363]], [[54.345535, -2.243278], [54.345445, -2.243232]], [[54.345263, -2.24314], [54.345169, -2.243142]], [[54.345169, -2.243142], [54.345089, -2.243223]], [[54.344837, -2.243426], [54.344744, -2.243398]], [[54.344744, -2.243398], [54.344652, -2.243382]], [[54.344363, -2.243328], [54.344264, -2.2433]], [[54.344086, -2.243242], [54.344, -2.243163]], [[54.343764, -2.242912], [54.343669, -2.242858]], [[54.343669, -2.242858], [54.343587, -2.242793]], [[54.343506, -2.242706], [54.34343, -2.242589]], [[54.34343, -2.242589], [54.343348, -2.2425]], [[54.34308, -2.24206], [54.343005, -2.241972]], [[54.343005, -2.241972], [54.342927, -2.241881]], [[54.342927, -2.241881], [54.342849, -2.24179]], [[54.342849, -2.24179], [54.342778, -2.241691]], [[54.342778, -2.241691], [54.342704, -2.241573]], [[54.342704, -2.241573], [54.342632, -2.241463]], [[54.342484, -2.241299], [54.342388, -2.241288]], [[54.341831, -2.241417], [54.341733, -2.24146]], [[54.341482, -2.24145], [54.341392, -2.241412]], [[54.341296, -2.241368], [54.341197, -2.241342]], [[54.341197, -2.241342], [54.341112, -2.241281]], [[54.341112, -2.241281], [54.341027, -2.241195]], [[54.341027, -2.241195], [54.340938, -2.241137]], [[54.340938, -2.241137], [54.340853, -2.241082]], [[54.338241, -2.239938], [54.338162, -2.239842]], [[54.338162, -2.239842], [54.338076, -2.239748]], [[54.337992, -2.239689], [54.337904, -2.239623]], [[54.337904, -2.239623], [54.337817, -2.239533]], [[54.337634, -2.239406], [54.337563, -2.239283]], [[54.337563, -2.239283], [54.337502, -2.239157]], [[54.337353, -2.238961], [54.337265, -2.238897]], [[54.337265, -2.238897], [54.337182, -2.238837]], [[54.337182, -2.238837], [54.33709, -2.238825]], [[54.33709, -2.238825], [54.336996, -2.238751]], [[54.336996, -2.238751], [54.336909, -2.238706]], [[54.336909, -2.238706], [54.336805, -2.238694]], [[54.336805, -2.238694], [54.336715, -2.23869]], [[54.336443, -2.238571], [54.336354, -2.238511]], [[54.335996, -2.238261], [54.33591, -2.23818]], [[54.335761, -2.23797], [54.335688, -2.237857]], [[54.335688, -2.237857], [54.335602, -2.237768]], [[54.335359, -2.237495], [54.335282, -2.237396]], [[54.335282, -2.237396], [54.335196, -2.237309]], [[54.335017, -2.237189], [54.334942, -2.237092]], [[54.334942, -2.237092], [54.334854, -2.237063]], [[54.334854, -2.237063], [54.334763, -2.23703]], [[54.334271, -2.236232], [54.334191, -2.236138]], [[54.334008, -2.235763], [54.333949, -2.235636]], [[54.333813, -2.235426], [54.333723, -2.235366]], [[54.333529, -2.23542], [54.333448, -2.235521]], [[54.333448, -2.235521], [54.333368, -2.235632]], [[54.333368, -2.235632], [54.333291, -2.23573]], [[54.333291, -2.23573], [54.333199, -2.235812]], [[54.333199, -2.235812], [54.333101, -2.23585]], [[54.333101, -2.23585], [54.333018, -2.235755]], [[54.333018, -2.235755], [54.332986, -2.235603]], [[54.332984, -2.235135], [54.3329, -2.235051]], [[54.3329, -2.235051], [54.332805, -2.235001]], [[54.332805, -2.235001], [54.332711, -2.234946]], [[54.332711, -2.234946], [54.332613, -2.234913]], [[54.332613, -2.234913], [54.332517, -2.234859]], [[54.332517, -2.234859], [54.332424, -2.234791]], [[54.332424, -2.234791], [54.332339, -2.234729]], [[54.332058, -2.234592], [54.331966, -2.23455]], [[54.331966, -2.23455], [54.331873, -2.234489]], [[54.331873, -2.234489], [54.331789, -2.234427]], [[54.331789, -2.234427], [54.331707, -2.234365]], [[54.331707, -2.234365], [54.331632, -2.234262]], [[54.33148, -2.234069], [54.331395, -2.23397]], [[54.331395, -2.23397], [54.331318, -2.233875]], [[54.331318, -2.233875], [54.33124, -2.233788]], [[54.331171, -2.233688], [54.331106, -2.233564]], [[54.331106, -2.233564], [54.331047, -2.23344]], [[54.330939, -2.233177], [54.330869, -2.233064]], [[54.330869, -2.233064], [54.330798, -2.232957]], [[54.330798, -2.232957], [54.330723, -2.232861]], [[54.330723, -2.232861], [54.330645, -2.23275]], [[54.330645, -2.23275], [54.330585, -2.232617]], [[54.330585, -2.232617], [54.330517, -2.232485]], [[54.330517, -2.232485], [54.33044, -2.232388]], [[54.33044, -2.232388], [54.330373, -2.232273]], [[54.330373, -2.232273], [54.330288, -2.23219]], [[54.330288, -2.23219], [54.330208, -2.2321]], [[54.330208, -2.2321], [54.330139, -2.231983]], [[54.330139, -2.231983], [54.330083, -2.231845]], [[54.330083, -2.231845], [54.330012, -2.231715]], [[54.330012, -2.231715], [54.329943, -2.2316]], [[54.329943, -2.2316], [54.329866, -2.231485]], [[54.329742, -2.231218], [54.329683, -2.231069]], [[54.329683, -2.231069], [54.329627, -2.230929]], [[54.329627, -2.230929], [54.329563, -2.230818]], [[54.329563, -2.230818], [54.329484, -2.230734]], [[54.329484, -2.230734], [54.329402, -2.230668]], [[54.329182, -2.230119], [54.329116, -2.230008]], [[54.329116, -2.230008], [54.329053, -2.229898]], [[54.329053, -2.229898], [54.328998, -2.229771]], [[54.328998, -2.229771], [54.328939, -2.229639]], [[54.328939, -2.229639], [54.328865, -2.229517]], [[54.328793, -2.229416], [54.328734, -2.229286]], [[54.328734, -2.229286], [54.328669, -2.229152]], [[54.328669, -2.229152], [54.328595, -2.229048]], [[54.328595, -2.229048], [54.328537, -2.228927]], [[54.328537, -2.228927], [54.328471, -2.228801]], [[54.328471, -2.228801], [54.328407, -2.228664]], [[54.328276, -2.228414], [54.328199, -2.228296]], [[54.328199, -2.228296], [54.328121, -2.228194]], [[54.328121, -2.228194], [54.328036, -2.22811]], [[54.328036, -2.22811], [54.327958, -2.228022]], [[54.327958, -2.228022], [54.327887, -2.227915]], [[54.327887, -2.227915], [54.327815, -2.227803]], [[54.327815, -2.227803], [54.327754, -2.227666]], [[54.327754, -2.227666], [54.327691, -2.22754]], [[54.327691, -2.22754], [54.327621, -2.227425]], [[54.327621, -2.227425], [54.327559, -2.227292]], [[54.327559, -2.227292], [54.327492, -2.227184]], [[54.327492, -2.227184], [54.327429, -2.227069]], [[54.327429, -2.227069], [54.327365, -2.226951]], [[54.327365, -2.226951], [54.327307, -2.226832]], [[54.327307, -2.226832], [54.327243, -2.226698]], [[54.327243, -2.226698], [54.327182, -2.226574]], [[54.327182, -2.226574], [54.327123, -2.226447]], [[54.326662, -2.225558], [54.326598, -2.225447]], [[54.326598, -2.225447], [54.326531, -2.225334]], [[54.326531, -2.225334], [54.326456, -2.225211]], [[54.326456, -2.225211], [54.326383, -2.225104]], [[54.326383, -2.225104], [54.326315, -2.224975]], [[54.326315, -2.224975], [54.326249, -2.224851]], [[54.326249, -2.224851], [54.326172, -2.224729]], [[54.326172, -2.224729], [54.326106, -2.224607]], [[54.326106, -2.224607], [54.326036, -2.224506]], [[54.326036, -2.224506], [54.325988, -2.224361]], [[54.325988, -2.224361], [54.325919, -2.224247]], [[54.325919, -2.224247], [54.325839, -2.224143]], [[54.325839, -2.224143], [54.32576, -2.224055]], [[54.32576, -2.224055], [54.32568, -2.223948]], [[54.325408, -2.223495], [54.325368, -2.223333]], [[54.325368, -2.223333], [54.325338, -2.223162]], [[54.325338, -2.223162], [54.325296, -2.222998]], [[54.325296, -2.222998], [54.325262, -2.22284]], [[54.325262, -2.22284], [54.325225, -2.222687]], [[54.325225, -2.222687], [54.325184, -2.22254]], [[54.325184, -2.22254], [54.325149, -2.222394]], [[54.325149, -2.222394], [54.325115, -2.222235]], [[54.325115, -2.222235], [54.325074, -2.22209]], [[54.325074, -2.22209], [54.325027, -2.221941]], [[54.325027, -2.221941], [54.32497, -2.221795]], [[54.32497, -2.221795], [54.324913, -2.221657]], [[54.324913, -2.221657], [54.324861, -2.221517]], [[54.324861, -2.221517], [54.324812, -2.221371]], [[54.324812, -2.221371], [54.324761, -2.221221]], [[54.324761, -2.221221], [54.324722, -2.221066]], [[54.324722, -2.221066], [54.324667, -2.220922]], [[54.324667, -2.220922], [54.324614, -2.22079]], [[54.324614, -2.22079], [54.324566, -2.220652]], [[54.323965, -2.220032], [54.323912, -2.21988]], [[54.323912, -2.21988], [54.323835, -2.219788]], [[54.323835, -2.219788], [54.323767, -2.219661]], [[54.323767, -2.219661], [54.323682, -2.219576]], [[54.323682, -2.219576], [54.323605, -2.219472]], [[54.323605, -2.219472], [54.323522, -2.219366]], [[54.323522, -2.219366], [54.323444, -2.219272]], [[54.323282, -2.219098], [54.323198, -2.219009]], [[54.323198, -2.219009], [54.323126, -2.218899]], [[54.323126, -2.218899], [54.323034, -2.218856]], [[54.323034, -2.218856], [54.322941, -2.218794]], [[54.322941, -2.218794], [54.322863, -2.218711]], [[54.322793, -2.218612], [54.322723, -2.218512]], [[54.322723, -2.218512], [54.322642, -2.218416]], [[54.322642, -2.218416], [54.322571, -2.218295]], [[54.322571, -2.218295], [54.322509, -2.218159]], [[54.322509, -2.218159], [54.322438, -2.218046]], [[54.322438, -2.218046], [54.322381, -2.217907]], [[54.322381, -2.217907], [54.322308, -2.217795]], [[54.322163, -2.217364], [54.322115, -2.217225]], [[54.322115, -2.217225], [54.322076, -2.217066]], [[54.322076, -2.217066], [54.322045, -2.216911]], [[54.322045, -2.216911], [54.322004, -2.216769]], [[54.322004, -2.216769], [54.321958, -2.216615]], [[54.321958, -2.216615], [54.321912, -2.216462]], [[54.321912, -2.216462], [54.321866, -2.216323]], [[54.321866, -2.216323], [54.321826, -2.21618]], [[54.321764, -2.215884], [54.321739, -2.215727]], [[54.321739, -2.215727], [54.321719, -2.215554]], [[54.321705, -2.215394], [54.321671, -2.215243]], [[54.321562, -2.214794], [54.321532, -2.214644]], [[54.321532, -2.214644], [54.321493, -2.214479]], [[54.321493, -2.214479], [54.321447, -2.214323]], [[54.321372, -2.214012], [54.321358, -2.213844]], [[54.321358, -2.213844], [54.321359, -2.213683]], [[54.321359, -2.213683], [54.321297, -2.213549]], [[54.321297, -2.213549], [54.321258, -2.213407]], [[54.321258, -2.213407], [54.321223, -2.213256]], [[54.321223, -2.213256], [54.321187, -2.21311]], [[54.321103, -2.21283], [54.321062, -2.212676]], [[54.321062, -2.212676], [54.321009, -2.212537]], [[54.321009, -2.212537], [54.320951, -2.212391]], [[54.32091, -2.212253], [54.320855, -2.212117]], [[54.320855, -2.212117], [54.320791, -2.211986]], [[54.320791, -2.211986], [54.320728, -2.211853]], [[54.320728, -2.211853], [54.320676, -2.211718]], [[54.320676, -2.211718], [54.320617, -2.211585]], [[54.320617, -2.211585], [54.320555, -2.211449]], [[54.320312, -2.210928], [54.320246, -2.210797]], [[54.320246, -2.210797], [54.320188, -2.210663]], [[54.320188, -2.210663], [54.32013, -2.210524]], [[54.32013, -2.210524], [54.320074, -2.210382]], [[54.320074, -2.210382], [54.320029, -2.210237]], [[54.319928, -2.209782], [54.319916, -2.209619]], [[54.319915, -2.209451], [54.319913, -2.209272]], [[54.319913, -2.209272], [54.319904, -2.209109]], [[54.319715, -2.208624], [54.319624, -2.208621]], [[54.319624, -2.208621], [54.319532, -2.208591]], [[54.319532, -2.208591], [54.319445, -2.208497]], [[54.319445, -2.208497], [54.319355, -2.208459]], [[54.319355, -2.208459], [54.31926, -2.208443]], [[54.31926, -2.208443], [54.319164, -2.208448]], [[54.319164, -2.208448], [54.319072, -2.208434]], [[54.318607, -2.208383], [54.318507, -2.20838]], [[54.318507, -2.20838], [54.318417, -2.208378]], [[54.318227, -2.208278], [54.318143, -2.208208]], [[54.317617, -2.20781], [54.317525, -2.207758]], [[54.31708, -2.207458], [54.316998, -2.207347]], [[54.316917, -2.207247], [54.316827, -2.207249]], [[54.316731, -2.207243], [54.316635, -2.207225]], [[54.316635, -2.207225], [54.31655, -2.207164]], [[54.31655, -2.207164], [54.316459, -2.207084]], [[54.316459, -2.207084], [54.316372, -2.207034]], [[54.316372, -2.207034], [54.316281, -2.206962]], [[54.316281, -2.206962], [54.316198, -2.206872]], [[54.316198, -2.206872], [54.316123, -2.206784]], [[54.316113, -2.206629], [54.316154, -2.206473]], [[54.316154, -2.206473], [54.316212, -2.206323]], [[54.316327, -2.206063], [54.31638, -2.205913]], [[54.31638, -2.205913], [54.316404, -2.20576]], [[54.316419, -2.20543], [54.316429, -2.205265]], [[54.316429, -2.205265], [54.316405, -2.205103]], [[54.316405, -2.205103], [54.316377, -2.204941]], [[54.315932, -2.204987], [54.315849, -2.204895]], [[54.315099, -2.203473], [54.315059, -2.203331]], [[54.315059, -2.203331], [54.314997, -2.203191]], [[54.314997, -2.203191], [54.314944, -2.203062]], [[54.314944, -2.203062], [54.314888, -2.202936]], [[54.314888, -2.202936], [54.314839, -2.202797]], [[54.314839, -2.202797], [54.314776, -2.202659]], [[54.314776, -2.202659], [54.314715, -2.202533]], [[54.314715, -2.202533], [54.314658, -2.202414]], [[54.314565, -2.202115], [54.314525, -2.201958]], [[54.314525, -2.201958], [54.314484, -2.201813]], [[54.314484, -2.201813], [54.314428, -2.201676]], [[54.314428, -2.201676], [54.314379, -2.201546]], [[54.314379, -2.201546], [54.314342, -2.201406]], [[54.314342, -2.201406], [54.314293, -2.20127]], [[54.314293, -2.20127], [54.31425, -2.201134]], [[54.314212, -2.200979], [54.314203, -2.200819]], [[54.314203, -2.200819], [54.314162, -2.200657]], [[54.314162, -2.200657], [54.314123, -2.200507]], [[54.314039, -2.200208], [54.314001, -2.200053]], [[54.314001, -2.200053], [54.313973, -2.199897]], [[54.313973, -2.199897], [54.313946, -2.199726]], [[54.313946, -2.199726], [54.313923, -2.199575]], [[54.313923, -2.199575], [54.31389, -2.199419]], [[54.31389, -2.199419], [54.313848, -2.199266]], [[54.313848, -2.199266], [54.313821, -2.199117]], [[54.313769, -2.198847], [54.313746, -2.198674]], [[54.313746, -2.198674], [54.313724, -2.198515]], [[54.313724, -2.198515], [54.313699, -2.198354]], [[54.313699, -2.198354], [54.31367, -2.198207]], [[54.313606, -2.197895], [54.313567, -2.197752]], [[54.313101, -2.196575], [54.313058, -2.196435]], [[54.312828, -2.195699], [54.312792, -2.195541]], [[54.312534, -2.194707], [54.312485, -2.194561]], [[54.312392, -2.194275], [54.312356, -2.194111]], [[54.312356, -2.194111], [54.312312, -2.193954]], [[54.312312, -2.193954], [54.312272, -2.193791]], [[54.312272, -2.193791], [54.312234, -2.193627]], [[54.312234, -2.193627], [54.312198, -2.193474]], [[54.312198, -2.193474], [54.312156, -2.193322]], [[54.312156, -2.193322], [54.312142, -2.193152]], [[54.312005, -2.19257], [54.311979, -2.192413]], [[54.311979, -2.192413], [54.311972, -2.192248]], [[54.311958, -2.192075], [54.311942, -2.191911]], [[54.311942, -2.191911], [54.311919, -2.191754]], [[54.311544, -2.190844], [54.311451, -2.190797]], [[54.311451, -2.190797], [54.311354, -2.190749]], [[54.311354, -2.190749], [54.311265, -2.190714]], [[54.311265, -2.190714], [54.311171, -2.190672]], [[54.311171, -2.190672], [54.311083, -2.190627]], [[54.310997, -2.190572], [54.310906, -2.190512]], [[54.310906, -2.190512], [54.310806, -2.190477]], [[54.310806, -2.190477], [54.31072, -2.190429]], [[54.31072, -2.190429], [54.310619, -2.190383]], [[54.310619, -2.190383], [54.310535, -2.190308]], [[54.310535, -2.190308], [54.310433, -2.190276]], [[54.310433, -2.190276], [54.310342, -2.190245]], [[54.310342, -2.190245], [54.310276, -2.190123]], [[54.310276, -2.190123], [54.310225, -2.189986]], [[54.310225, -2.189986], [54.310128, -2.189944]], [[54.310037, -2.189909], [54.309944, -2.189891]], [[54.30975, -2.189946], [54.309656, -2.189997]], [[54.309656, -2.189997], [54.309603, -2.190134]], [[54.309603, -2.190134], [54.309545, -2.190252]], [[54.309545, -2.190252], [54.309484, -2.190388]], [[54.309484, -2.190388], [54.309422, -2.190516]], [[54.309422, -2.190516], [54.30936, -2.190643]], [[54.30936, -2.190643], [54.309293, -2.190761]], [[54.309293, -2.190761], [54.309226, -2.190883]], [[54.309226, -2.190883], [54.30915, -2.190993]], [[54.30915, -2.190993], [54.309081, -2.191104]], [[54.309009, -2.191207], [54.309013, -2.191379]], [[54.309013, -2.191379], [54.309011, -2.191559]], [[54.309008, -2.19173], [54.308961, -2.191862]], [[54.308876, -2.191923], [54.308782, -2.192]], [[54.308511, -2.192208], [54.308414, -2.192243]], [[54.308311, -2.19227], [54.308208, -2.192303]], [[54.308018, -2.192232], [54.307932, -2.192148]], [[54.307582, -2.192282], [54.307483, -2.192289]], [[54.307483, -2.192289], [54.307381, -2.192289]], [[54.307381, -2.192289], [54.307287, -2.19231]], [[54.307096, -2.192326], [54.306999, -2.192337]], [[54.306999, -2.192337], [54.306907, -2.192351]], [[54.306907, -2.192351], [54.306814, -2.192362]], [[54.306814, -2.192362], [54.306718, -2.192365]], [[54.306524, -2.192383], [54.306433, -2.192377]], [[54.306433, -2.192377], [54.306338, -2.192376]], [[54.306152, -2.192424], [54.306053, -2.192426]], [[54.306053, -2.192426], [54.305961, -2.192421]], [[54.305961, -2.192421], [54.305869, -2.192407]], [[54.305869, -2.192407], [54.305776, -2.19239]], [[54.305776, -2.19239], [54.305685, -2.192386]], [[54.305404, -2.192609], [54.305316, -2.19269]], [[54.305116, -2.193055], [54.305034, -2.193121]], [[54.304949, -2.193223], [54.304872, -2.19332]], [[54.304698, -2.19349], [54.304612, -2.193577]], [[54.304612, -2.193577], [54.304523, -2.193672]], [[54.304523, -2.193672], [54.304441, -2.193749]], [[54.304441, -2.193749], [54.304355, -2.193832]], [[54.304355, -2.193832], [54.304275, -2.193908]], [[54.30383, -2.195656], [54.303839, -2.19581]], [[54.303839, -2.19581], [54.303845, -2.195979]], [[54.303845, -2.195979], [54.303824, -2.196133]], [[54.303869, -2.197391], [54.3039, -2.197543]], [[54.3039, -2.197543], [54.303936, -2.197691]], [[54.303936, -2.197691], [54.303943, -2.197857]], [[54.303891, -2.197765], [54.303879, -2.197592]], [[54.303879, -2.197592], [54.303847, -2.197436]], [[54.303808, -2.197279], [54.303817, -2.197116]], [[54.303817, -2.197116], [54.303821, -2.196958]], [[54.30389, -2.197274], [54.303862, -2.19742]], [[54.303862, -2.19742], [54.303832, -2.197567]], [[54.303825, -2.197898], [54.303879, -2.19803]], [[54.303879, -2.19803], [54.303915, -2.198198]], [[54.304105, -2.198865], [54.304111, -2.19902]], [[54.304078, -2.198975], [54.304086, -2.199133]], [[54.30268, -2.197618], [54.302582, -2.197688]], [[54.302414, -2.197886], [54.302319, -2.19795]], [[54.302319, -2.19795], [54.302236, -2.198025]], [[54.302236, -2.198025], [54.302163, -2.198122]], [[54.302163, -2.198122], [54.302092, -2.198218]], [[54.302092, -2.198218], [54.302015, -2.198336]], [[54.302015, -2.198336], [54.301942, -2.198445]], [[54.301942, -2.198445], [54.301861, -2.198542]], [[54.301249, -2.199692], [54.301204, -2.199834]], [[54.301204, -2.199834], [54.301149, -2.19997]], [[54.301149, -2.19997], [54.301095, -2.200102]], [[54.301095, -2.200102], [54.301035, -2.200245]], [[54.300704, -2.200805], [54.300606, -2.200741]], [[54.300606, -2.200741], [54.300512, -2.200674]], [[54.300512, -2.200674], [54.300425, -2.200593]], [[54.300161, -2.200397], [54.300071, -2.200345]], [[54.2999, -2.20019], [54.299809, -2.200123]], [[54.299715, -2.200081], [54.299624, -2.200068]], [[54.299624, -2.200068], [54.299537, -2.200005]], [[54.299184, -2.199833], [54.299085, -2.199815]], [[54.298972, -2.200963], [54.299015, -2.201115]], [[54.299059, -2.201258], [54.299068, -2.201422]], [[54.299068, -2.201422], [54.299098, -2.201582]], [[54.299143, -2.201895], [54.299149, -2.202059]], [[54.299149, -2.202059], [54.299148, -2.202233]], [[54.299148, -2.202233], [54.299151, -2.202389]], [[54.299064, -2.202688], [54.299038, -2.202838]], [[54.299038, -2.202838], [54.299017, -2.202999]], [[54.299017, -2.202999], [54.299007, -2.203164]], [[54.299007, -2.203164], [54.298982, -2.20332]], [[54.298982, -2.20332], [54.298898, -2.203406]], [[54.298898, -2.203406], [54.298891, -2.203566]], [[54.298748, -2.20378], [54.298683, -2.203893]], [[54.296134, -2.205967], [54.296102, -2.206125]], [[54.295935, -2.208609], [54.295886, -2.208749]], [[54.295886, -2.208749], [54.29583, -2.208888]], [[54.294299, -2.214664], [54.294243, -2.214792]], [[54.294243, -2.214792], [54.29419, -2.214945]], [[54.29419, -2.214945], [54.294144, -2.215099]], [[54.294049, -2.215375], [54.293995, -2.215515]], [[54.282341, -2.23578], [54.28226, -2.23587]], [[54.28226, -2.23587], [54.282213, -2.236005]], [[54.277741, -2.2418], [54.277677, -2.241917]], [[54.27574, -2.243243], [54.275648, -2.243281]], [[54.275472, -2.243411], [54.275378, -2.243474]], [[54.275378, -2.243474], [54.275282, -2.243499]], [[54.274908, -2.243665], [54.274819, -2.243722]], [[54.274111, -2.244195], [54.274031, -2.244275]], [[54.274031, -2.244275], [54.273951, -2.244357]], [[54.273951, -2.244357], [54.273878, -2.244463]], [[54.273623, -2.244639], [54.273529, -2.244669]], [[54.273529, -2.244669], [54.273442, -2.244711]], [[54.27335, -2.24473], [54.273257, -2.244775]], [[54.273257, -2.244775], [54.273156, -2.244799]], [[54.273063, -2.24483], [54.272972, -2.244855]], [[54.272972, -2.244855], [54.272874, -2.244886]], [[54.272874, -2.244886], [54.272782, -2.244913]], [[54.272782, -2.244913], [54.272688, -2.244941]], [[54.272688, -2.244941], [54.272598, -2.244992]], [[54.272338, -2.245188], [54.272244, -2.245222]], [[54.271963, -2.245269], [54.271861, -2.245271]], [[54.271861, -2.245271], [54.271767, -2.245275]], [[54.271767, -2.245275], [54.271666, -2.245263]], [[54.271666, -2.245263], [54.271566, -2.245294]], [[54.271566, -2.245294], [54.271473, -2.245299]], [[54.271473, -2.245299], [54.271383, -2.245304]], [[54.270992, -2.245364], [54.270897, -2.245381]], [[54.270897, -2.245381], [54.270802, -2.245392]], [[54.270802, -2.245392], [54.27071, -2.245405]], [[54.27071, -2.245405], [54.270612, -2.245411]], [[54.270612, -2.245411], [54.270522, -2.245425]], [[54.270522, -2.245425], [54.270429, -2.245452]], [[54.270429, -2.245452], [54.270337, -2.245473]], [[54.270154, -2.245507], [54.270058, -2.245518]], [[54.270058, -2.245518], [54.269957, -2.245525]], [[54.269678, -2.245577], [54.269582, -2.245536]], [[54.269582, -2.245536], [54.269487, -2.245579]], [[54.269487, -2.245579], [54.269399, -2.245626]], [[54.26874, -2.245898], [54.268647, -2.245921]], [[54.268647, -2.245921], [54.268547, -2.245917]], [[54.268547, -2.245917], [54.268454, -2.245924]], [[54.268454, -2.245924], [54.268362, -2.245928]], [[54.268178, -2.246044], [54.268085, -2.246112]], [[54.268085, -2.246112], [54.267995, -2.246145]], [[54.267995, -2.246145], [54.2679, -2.24618]], [[54.2679, -2.24618], [54.267801, -2.246214]], [[54.267801, -2.246214], [54.267713, -2.246262]], [[54.267371, -2.24654], [54.267285, -2.246608]], [[54.266853, -2.247001], [54.266758, -2.247046]], [[54.266758, -2.247046], [54.266665, -2.247086]], [[54.266665, -2.247086], [54.266571, -2.247123]], [[54.266031, -2.247423], [54.265939, -2.247452]], [[54.265591, -2.247706], [54.265494, -2.247766]], [[54.265228, -2.247948], [54.265134, -2.247998]], [[54.265134, -2.247998], [54.265041, -2.248069]], [[54.264574, -2.248314], [54.264483, -2.248365]], [[54.264483, -2.248365], [54.264389, -2.248418]], [[54.264389, -2.248418], [54.2643, -2.248463]], [[54.26404, -2.248616], [54.263949, -2.248627]], [[54.263371, -2.248642], [54.263275, -2.248679]], [[54.263275, -2.248679], [54.263183, -2.248742]], [[54.262207, -2.249383], [54.262127, -2.24947]], [[54.262127, -2.24947], [54.26206, -2.249596]], [[54.26206, -2.249596], [54.262001, -2.249736]], [[54.262001, -2.249736], [54.261934, -2.249857]], [[54.261934, -2.249857], [54.261847, -2.249944]], [[54.26177, -2.250035], [54.261695, -2.25014]], [[54.261695, -2.25014], [54.261622, -2.250246]], [[54.261133, -2.250715], [54.261058, -2.25082]], [[54.261058, -2.25082], [54.260989, -2.250941]], [[54.260989, -2.250941], [54.260924, -2.251072]], [[54.260155, -2.252282], [54.260068, -2.252354]], [[54.260068, -2.252354], [54.25999, -2.252446]], [[54.259659, -2.252789], [54.259573, -2.252872]], [[54.259573, -2.252872], [54.259494, -2.252969]], [[54.259494, -2.252969], [54.259421, -2.253068]], [[54.259421, -2.253068], [54.259324, -2.253103]], [[54.259324, -2.253103], [54.259243, -2.253173]], [[54.259243, -2.253173], [54.25915, -2.25323]], [[54.258709, -2.253497], [54.25861, -2.253537]], [[54.25861, -2.253537], [54.258511, -2.253585]], [[54.258511, -2.253585], [54.258423, -2.253639]], [[54.258423, -2.253639], [54.258328, -2.253686]], [[54.258328, -2.253686], [54.258228, -2.253742]], [[54.258228, -2.253742], [54.258143, -2.253814]], [[54.258143, -2.253814], [54.258055, -2.253867]], [[54.256017, -2.254772], [54.25593, -2.254853]], [[54.25593, -2.254853], [54.255852, -2.254945]], [[54.255852, -2.254945], [54.255771, -2.255025]], [[54.255771, -2.255025], [54.255689, -2.255117]], [[54.255689, -2.255117], [54.255609, -2.255193]], [[54.255609, -2.255193], [54.255524, -2.255275]], [[54.255524, -2.255275], [54.255446, -2.255366]], [[54.254094, -2.256868], [54.254014, -2.256968]], [[54.254014, -2.256968], [54.253931, -2.257053]], [[54.253931, -2.257053], [54.253853, -2.257157]], [[54.253701, -2.257344], [54.253616, -2.25741]], [[54.253616, -2.25741], [54.253547, -2.25752]], [[54.253547, -2.25752], [54.253477, -2.257627]], [[54.253477, -2.257627], [54.253402, -2.257725]], [[54.253402, -2.257725], [54.253331, -2.257837]], [[54.253331, -2.257837], [54.253255, -2.257936]], [[54.253255, -2.257936], [54.253182, -2.258059]], [[54.253106, -2.258155], [54.253034, -2.258258]], [[54.253034, -2.258258], [54.252963, -2.25837]], [[54.252963, -2.25837], [54.252885, -2.258451]], [[54.252885, -2.258451], [54.252798, -2.258518]], [[54.252798, -2.258518], [54.252726, -2.258617]], [[54.252726, -2.258617], [54.252651, -2.258726]], [[54.252651, -2.258726], [54.25257, -2.258822]], [[54.25257, -2.258822], [54.25248, -2.258904]], [[54.25248, -2.258904], [54.252409, -2.259024]], [[54.251937, -2.259593], [54.251852, -2.259683]], [[54.251852, -2.259683], [54.251767, -2.259761]], [[54.251767, -2.259761], [54.251678, -2.25982]], [[54.251678, -2.25982], [54.251584, -2.25987]], [[54.251584, -2.25987], [54.251492, -2.259922]], [[54.251492, -2.259922], [54.25141, -2.260008]], [[54.25141, -2.260008], [54.25132, -2.260082]], [[54.25132, -2.260082], [54.25124, -2.260157]], [[54.25124, -2.260157], [54.251151, -2.260202]], [[54.251151, -2.260202], [54.251058, -2.260217]], [[54.251058, -2.260217], [54.250966, -2.260254]], [[54.250966, -2.260254], [54.250876, -2.260316]], [[54.250876, -2.260316], [54.250789, -2.260365]], [[54.250445, -2.260613], [54.250355, -2.260667]], [[54.249995, -2.260915], [54.249904, -2.260977]], [[54.249904, -2.260977], [54.249814, -2.26105]], [[54.249814, -2.26105], [54.249719, -2.261109]], [[54.249621, -2.261147], [54.249529, -2.261199]], [[54.249529, -2.261199], [54.249437, -2.261247]], [[54.249437, -2.261247], [54.249348, -2.261297]], [[54.249348, -2.261297], [54.249266, -2.261377]], [[54.249076, -2.261453], [54.248989, -2.261502]], [[54.248729, -2.26163], [54.24864, -2.261675]], [[54.24864, -2.261675], [54.248548, -2.261718]], [[54.248548, -2.261718], [54.248457, -2.26175]], [[54.248273, -2.261873], [54.248174, -2.261912]], [[54.248174, -2.261912], [54.248076, -2.261937]], [[54.248076, -2.261937], [54.24798, -2.261962]], [[54.24798, -2.261962], [54.247885, -2.261994]], [[54.247885, -2.261994], [54.247794, -2.262031]], [[54.247794, -2.262031], [54.247702, -2.262052]], [[54.247702, -2.262052], [54.24761, -2.262085]], [[54.24761, -2.262085], [54.247511, -2.262119]], [[54.247511, -2.262119], [54.247415, -2.262153]], [[54.247415, -2.262153], [54.247324, -2.262187]], [[54.247324, -2.262187], [54.24723, -2.262237]], [[54.24723, -2.262237], [54.247142, -2.262317]], [[54.247043, -2.262352], [54.246951, -2.262401]], [[54.246673, -2.262505], [54.246578, -2.262547]], [[54.246578, -2.262547], [54.246482, -2.262602]], [[54.246391, -2.26265], [54.246299, -2.262682]], [[54.246299, -2.262682], [54.246209, -2.26272]], [[54.246209, -2.26272], [54.246117, -2.262755]], [[54.246117, -2.262755], [54.246023, -2.262772]], [[54.24588, -2.262818], [54.245831, -2.262966]], [[54.245831, -2.262966], [54.245805, -2.263121]], [[54.245805, -2.263121], [54.245785, -2.26328]], [[54.245785, -2.26328], [54.245753, -2.263424]], [[54.24564, -2.263888], [54.245621, -2.264041]], [[54.245621, -2.264041], [54.245587, -2.264191]], [[54.245587, -2.264191], [54.245552, -2.264347]], [[54.245552, -2.264347], [54.245507, -2.264487]], [[54.245507, -2.264487], [54.245466, -2.264628]], [[54.245466, -2.264628], [54.245415, -2.264772]], [[54.245415, -2.264772], [54.24537, -2.264927]], [[54.24537, -2.264927], [54.245344, -2.265091]], [[54.245292, -2.265411], [54.245253, -2.26556]], [[54.245253, -2.26556], [54.245217, -2.265712]], [[54.245217, -2.265712], [54.245184, -2.265864]], [[54.245184, -2.265864], [54.245143, -2.26602]], [[54.245143, -2.26602], [54.245103, -2.266176]], [[54.245103, -2.266176], [54.245064, -2.266337]], [[54.245064, -2.266337], [54.245024, -2.266493]], [[54.245024, -2.266493], [54.244995, -2.266657]], [[54.244826, -2.267469], [54.244783, -2.267619]], [[54.244352, -2.268416], [54.24428, -2.268535]], [[54.24428, -2.268535], [54.244222, -2.268659]], [[54.244006, -2.269006], [54.243931, -2.269125]], [[54.243931, -2.269125], [54.243864, -2.269241]], [[54.243864, -2.269241], [54.243795, -2.269347]], [[54.243675, -2.269575], [54.243646, -2.26973]], [[54.243646, -2.26973], [54.24359, -2.269867]], [[54.24359, -2.269867], [54.243534, -2.270007]], [[54.243534, -2.270007], [54.243483, -2.270149]], [[54.243483, -2.270149], [54.243416, -2.27028]], [[54.243416, -2.27028], [54.243352, -2.270392]], [[54.243352, -2.270392], [54.243284, -2.270506]], [[54.243284, -2.270506], [54.243218, -2.270612]], [[54.243218, -2.270612], [54.243155, -2.270732]], [[54.243008, -2.27092], [54.242931, -2.271]], [[54.242931, -2.271], [54.242861, -2.271125]], [[54.242861, -2.271125], [54.242785, -2.271231]], [[54.242785, -2.271231], [54.242712, -2.271352]], [[54.242712, -2.271352], [54.242633, -2.271464]], [[54.242633, -2.271464], [54.242562, -2.271588]], [[54.242562, -2.271588], [54.242487, -2.271708]], [[54.242487, -2.271708], [54.242415, -2.271817]], [[54.242415, -2.271817], [54.24235, -2.271922]], [[54.242205, -2.272133], [54.24214, -2.272241]], [[54.24214, -2.272241], [54.242071, -2.272353]], [[54.242005, -2.272465], [54.241928, -2.272555]], [[54.241928, -2.272555], [54.241862, -2.272673]], [[54.241862, -2.272673], [54.241796, -2.272793]], [[54.241796, -2.272793], [54.241726, -2.272901]], [[54.241726, -2.272901], [54.241651, -2.273015]], [[54.241651, -2.273015], [54.241579, -2.273119]], [[54.241579, -2.273119], [54.241516, -2.27323]], [[54.241516, -2.27323], [54.241438, -2.273318]], [[54.241438, -2.273318], [54.241373, -2.27344]], [[54.2413, -2.273567], [54.241226, -2.273687]], [[54.241152, -2.273798], [54.241072, -2.273908]], [[54.241072, -2.273908], [54.241005, -2.274032]], [[54.241005, -2.274032], [54.240932, -2.274137]], [[54.240932, -2.274137], [54.240856, -2.274241]], [[54.240856, -2.274241], [54.240778, -2.274333]], [[54.240778, -2.274333], [54.240711, -2.274449]], [[54.240566, -2.27467], [54.240499, -2.274787]], [[54.240499, -2.274787], [54.240438, -2.274925]], [[54.240377, -2.275038], [54.240311, -2.275154]], [[54.240311, -2.275154], [54.240244, -2.275266]], [[54.240156, -2.275358], [54.240078, -2.275458]], [[54.240078, -2.275458], [54.240008, -2.27558]], [[54.240008, -2.27558], [54.239937, -2.275684]], [[54.239682, -2.276164], [54.239612, -2.276268]], [[54.239612, -2.276268], [54.239542, -2.276378]], [[54.239542, -2.276378], [54.239477, -2.276499]], [[54.239477, -2.276499], [54.239409, -2.276619]], [[54.239409, -2.276619], [54.239354, -2.276751]], [[54.239354, -2.276751], [54.239285, -2.27687]], [[54.239285, -2.27687], [54.239208, -2.276978]], [[54.239208, -2.276978], [54.239154, -2.2771]], [[54.239154, -2.2771], [54.239093, -2.277222]], [[54.239093, -2.277222], [54.239016, -2.277315]], [[54.238929, -2.277407], [54.238844, -2.277493]], [[54.238844, -2.277493], [54.238767, -2.277576]], [[54.238767, -2.277576], [54.238695, -2.277688]], [[54.238695, -2.277688], [54.238635, -2.277817]], [[54.238635, -2.277817], [54.238573, -2.277959]], [[54.238573, -2.277959], [54.238511, -2.278096]], [[54.238511, -2.278096], [54.238446, -2.278213]], [[54.238371, -2.27833], [54.2383, -2.278445]], [[54.2383, -2.278445], [54.238222, -2.278557]], [[54.238004, -2.278873], [54.237934, -2.278991]], [[54.237934, -2.278991], [54.23786, -2.279108]], [[54.23786, -2.279108], [54.237786, -2.279224]], [[54.237786, -2.279224], [54.237711, -2.279328]], [[54.237584, -2.279579], [54.237515, -2.27971]], [[54.237515, -2.27971], [54.237438, -2.279819]], [[54.237156, -2.280271], [54.237081, -2.280387]], [[54.237081, -2.280387], [54.236995, -2.280482]], [[54.236995, -2.280482], [54.236929, -2.280612]], [[54.236929, -2.280612], [54.236863, -2.280726]], [[54.236863, -2.280726], [54.23679, -2.280821]], [[54.23679, -2.280821], [54.236715, -2.280929]], [[54.236715, -2.280929], [54.236648, -2.281041]], [[54.236648, -2.281041], [54.236575, -2.281139]], [[54.236575, -2.281139], [54.236497, -2.281221]], [[54.236497, -2.281221], [54.236419, -2.281319]], [[54.236419, -2.281319], [54.236346, -2.281426]], [[54.236346, -2.281426], [54.236278, -2.281548]], [[54.236278, -2.281548], [54.236214, -2.281666]], [[54.235851, -2.282221], [54.235783, -2.282326]], [[54.235643, -2.282545], [54.235556, -2.282632]], [[54.235556, -2.282632], [54.235486, -2.282738]], [[54.235486, -2.282738], [54.235412, -2.282835]], [[54.235412, -2.282835], [54.235336, -2.282951]], [[54.235336, -2.282951], [54.23526, -2.28304]], [[54.234872, -2.283508], [54.234789, -2.283591]], [[54.234789, -2.283591], [54.234713, -2.283705]], [[54.234571, -2.283923], [54.2345, -2.284043]], [[54.2345, -2.284043], [54.234437, -2.284161]], [[54.234437, -2.284161], [54.234359, -2.284252]], [[54.234359, -2.284252], [54.234271, -2.284333]], [[54.234271, -2.284333], [54.234179, -2.284394]], [[54.234179, -2.284394], [54.234098, -2.284478]], [[54.234098, -2.284478], [54.234019, -2.284579]], [[54.234019, -2.284579], [54.23394, -2.284663]], [[54.233868, -2.284754], [54.233787, -2.284839]], [[54.233787, -2.284839], [54.233703, -2.284916]], [[54.233703, -2.284916], [54.233623, -2.284997]], [[54.233623, -2.284997], [54.233544, -2.285088]], [[54.233084, -2.285682], [54.232997, -2.285755]], [[54.232997, -2.285755], [54.232917, -2.285844]], [[54.232917, -2.285844], [54.232837, -2.285935]], [[54.232837, -2.285935], [54.23275, -2.286026]], [[54.23275, -2.286026], [54.232672, -2.286128]], [[54.232672, -2.286128], [54.232582, -2.286209]], [[54.232582, -2.286209], [54.232495, -2.286281]], [[54.232495, -2.286281], [54.232407, -2.286351]], [[54.232407, -2.286351], [54.232325, -2.286431]], [[54.232325, -2.286431], [54.232243, -2.286506]], [[54.23199, -2.28676], [54.231905, -2.286817]], [[54.231905, -2.286817], [54.231825, -2.286911]], [[54.231825, -2.286911], [54.231755, -2.287023]], [[54.231755, -2.287023], [54.231675, -2.287116]], [[54.231497, -2.28724], [54.231417, -2.287321]], [[54.231417, -2.287321], [54.231333, -2.287394]], [[54.231333, -2.287394], [54.231241, -2.287447]], [[54.231241, -2.287447], [54.231149, -2.287502]], [[54.231149, -2.287502], [54.231068, -2.287599]], [[54.231068, -2.287599], [54.230986, -2.287699]], [[54.230986, -2.287699], [54.230896, -2.287783]], [[54.230896, -2.287783], [54.230807, -2.287854]], [[54.230807, -2.287854], [54.230727, -2.287955]], [[54.230593, -2.288162], [54.230516, -2.288265]], [[54.230516, -2.288265], [54.230437, -2.288373]], [[54.230437, -2.288373], [54.230357, -2.288467]], [[54.230357, -2.288467], [54.230283, -2.288564]], [[54.230283, -2.288564], [54.230208, -2.288672]], [[54.230208, -2.288672], [54.230133, -2.288768]], [[54.230133, -2.288768], [54.230062, -2.28888]], [[54.230062, -2.28888], [54.229983, -2.288971]], [[54.229983, -2.288971], [54.229902, -2.289061]], [[54.229902, -2.289061], [54.229823, -2.289156]], [[54.229823, -2.289156], [54.229739, -2.289226]], [[54.229739, -2.289226], [54.229651, -2.289298]], [[54.229651, -2.289298], [54.229572, -2.289386]], [[54.229572, -2.289386], [54.229488, -2.289454]], [[54.229488, -2.289454], [54.229412, -2.289553]], [[54.229412, -2.289553], [54.229328, -2.289642]], [[54.229328, -2.289642], [54.229254, -2.289736]], [[54.229032, -2.29004], [54.228965, -2.290149]], [[54.228965, -2.290149], [54.228892, -2.290251]], [[54.228681, -2.290582], [54.228627, -2.290707]], [[54.228627, -2.290707], [54.228542, -2.290808]], [[54.228542, -2.290808], [54.22846, -2.290903]], [[54.228173, -2.291371], [54.228104, -2.29149]], [[54.228104, -2.29149], [54.22803, -2.291588]], [[54.22803, -2.291588], [54.227946, -2.29168]], [[54.227946, -2.29168], [54.22786, -2.29177]], [[54.227783, -2.291856], [54.227705, -2.291946]], [[54.227471, -2.292221], [54.227376, -2.292289]], [[54.227217, -2.292507], [54.227133, -2.292609]], [[54.227133, -2.292609], [54.227051, -2.292679]], [[54.227051, -2.292679], [54.226971, -2.29276]], [[54.226831, -2.292981], [54.226763, -2.293088]], [[54.226763, -2.293088], [54.226685, -2.293182]], [[54.226685, -2.293182], [54.226598, -2.293278]], [[54.226598, -2.293278], [54.226529, -2.293385]], [[54.226529, -2.293385], [54.226457, -2.293503]], [[54.226457, -2.293503], [54.226374, -2.293588]], [[54.226374, -2.293588], [54.226297, -2.293676]], [[54.226297, -2.293676], [54.226234, -2.293793]], [[54.226234, -2.293793], [54.226166, -2.293908]], [[54.226166, -2.293908], [54.226084, -2.293996]], [[54.226084, -2.293996], [54.226011, -2.294097]], [[54.226011, -2.294097], [54.225929, -2.294193]], [[54.225929, -2.294193], [54.225855, -2.294298]], [[54.225722, -2.294531], [54.225661, -2.294659]], [[54.225661, -2.294659], [54.22559, -2.294772]], [[54.22559, -2.294772], [54.225518, -2.294888]], [[54.225518, -2.294888], [54.225449, -2.294993]], [[54.225449, -2.294993], [54.225376, -2.295094]], [[54.225376, -2.295094], [54.225308, -2.295204]], [[54.225308, -2.295204], [54.225237, -2.2953]], [[54.225237, -2.2953], [54.225167, -2.295397]], [[54.225167, -2.295397], [54.225095, -2.295511]], [[54.225095, -2.295511], [54.225028, -2.295616]], [[54.224958, -2.29572], [54.224886, -2.295825]], [[54.224886, -2.295825], [54.224809, -2.295914]], [[54.224809, -2.295914], [54.224746, -2.296027]], [[54.224746, -2.296027], [54.224672, -2.29613]], [[54.224672, -2.29613], [54.224598, -2.296234]], [[54.224598, -2.296234], [54.224525, -2.296328]], [[54.224094, -2.296946], [54.224019, -2.297033]], [[54.224019, -2.297033], [54.223942, -2.297135]], [[54.223942, -2.297135], [54.223877, -2.297253]], [[54.223749, -2.297507], [54.223673, -2.29761]], [[54.223673, -2.29761], [54.223594, -2.29771]], [[54.223594, -2.29771], [54.223528, -2.297827]], [[54.223528, -2.297827], [54.223452, -2.297928]], [[54.223452, -2.297928], [54.22338, -2.298023]], [[54.22338, -2.298023], [54.223308, -2.298133]], [[54.223308, -2.298133], [54.223229, -2.298245]], [[54.223229, -2.298245], [54.223162, -2.298369]], [[54.223162, -2.298369], [54.223095, -2.298485]], [[54.223095, -2.298485], [54.223031, -2.29861]], [[54.223031, -2.29861], [54.222974, -2.29873]], [[54.222974, -2.29873], [54.222905, -2.298839]], [[54.222905, -2.298839], [54.222831, -2.298929]], [[54.222831, -2.298929], [54.222752, -2.299032]], [[54.222752, -2.299032], [54.222685, -2.299143]], [[54.222474, -2.299475], [54.222411, -2.299594]], [[54.222411, -2.299594], [54.222332, -2.299703]], [[54.222332, -2.299703], [54.222255, -2.299797]], [[54.222255, -2.299797], [54.222177, -2.299893]], [[54.222177, -2.299893], [54.222102, -2.299994]], [[54.222102, -2.299994], [54.222032, -2.300103]], [[54.222032, -2.300103], [54.221961, -2.300212]], [[54.221961, -2.300212], [54.221883, -2.300317]], [[54.221883, -2.300317], [54.221815, -2.300422]], [[54.221669, -2.300634], [54.221589, -2.300738]], [[54.221589, -2.300738], [54.221518, -2.300834]], [[54.221438, -2.30094], [54.221364, -2.301045]], [[54.221364, -2.301045], [54.221287, -2.301146]], [[54.221287, -2.301146], [54.221208, -2.301223]], [[54.220989, -2.301562], [54.220927, -2.301684]], [[54.220927, -2.301684], [54.220865, -2.301811]], [[54.220865, -2.301811], [54.220807, -2.301949]], [[54.220807, -2.301949], [54.220743, -2.302066]], [[54.220525, -2.302427], [54.220468, -2.302562]], [[54.220468, -2.302562], [54.220407, -2.302676]], [[54.220336, -2.302802], [54.220268, -2.302923]], [[54.220268, -2.302923], [54.220196, -2.303046]], [[54.220196, -2.303046], [54.220122, -2.30316]], [[54.220076, -2.303296], [54.220006, -2.303404]], [[54.220006, -2.303404], [54.219942, -2.303529]], [[54.219942, -2.303529], [54.219876, -2.303655]], [[54.219876, -2.303655], [54.219802, -2.303784]], [[54.219802, -2.303784], [54.219733, -2.30391]], [[54.219733, -2.30391], [54.219678, -2.304055]], [[54.219678, -2.304055], [54.219644, -2.304205]], [[54.219644, -2.304205], [54.219614, -2.30437]], [[54.219509, -2.305013], [54.219493, -2.305173]], [[54.219493, -2.305173], [54.219465, -2.30533]], [[54.219465, -2.30533], [54.219421, -2.305481]], [[54.219237, -2.305755], [54.219147, -2.305802]], [[54.219147, -2.305802], [54.219054, -2.305816]], [[54.219054, -2.305816], [54.218964, -2.305859]], [[54.218964, -2.305859], [54.218873, -2.305896]], [[54.218873, -2.305896], [54.218778, -2.305927]], [[54.218778, -2.305927], [54.218684, -2.30599]], [[54.218684, -2.30599], [54.218589, -2.306017]], [[54.218589, -2.306017], [54.21849, -2.306066]], [[54.21849, -2.306066], [54.218396, -2.306096]], [[54.218396, -2.306096], [54.218295, -2.306125]], [[54.218195, -2.306163], [54.218105, -2.306207]], [[54.218105, -2.306207], [54.218015, -2.306255]], [[54.218015, -2.306255], [54.217921, -2.306289]], [[54.217921, -2.306289], [54.217833, -2.306325]], [[54.217561, -2.306447], [54.217472, -2.306495]], [[54.217288, -2.306591], [54.2172, -2.306636]], [[54.2172, -2.306636], [54.217108, -2.306661]], [[54.217108, -2.306661], [54.217018, -2.306714]], [[54.217018, -2.306714], [54.216923, -2.306752]], [[54.216923, -2.306752], [54.216825, -2.306786]], [[54.216825, -2.306786], [54.216727, -2.306769]], [[54.216727, -2.306769], [54.216629, -2.306783]], [[54.216244, -2.306831], [54.216146, -2.306849]], [[54.216146, -2.306849], [54.216054, -2.306878]], [[54.216054, -2.306878], [54.215954, -2.306915]], [[54.215954, -2.306915], [54.215855, -2.306957]], [[54.215565, -2.306989], [54.215469, -2.306991]], [[54.215469, -2.306991], [54.215372, -2.306975]], [[54.215372, -2.306975], [54.215282, -2.306959]], [[54.215282, -2.306959], [54.21519, -2.306888]], [[54.21519, -2.306888], [54.215103, -2.306799]], [[54.215103, -2.306799], [54.215014, -2.306727]], [[54.215014, -2.306727], [54.214921, -2.306668]], [[54.214921, -2.306668], [54.214837, -2.306602]], [[54.214837, -2.306602], [54.214747, -2.306527]], [[54.214747, -2.306527], [54.214665, -2.306438]], [[54.214665, -2.306438], [54.214583, -2.306349]], [[54.214583, -2.306349], [54.214495, -2.306275]], [[54.214495, -2.306275], [54.214406, -2.306206]], [[54.214406, -2.306206], [54.214319, -2.306142]], [[54.214319, -2.306142], [54.214227, -2.306076]], [[54.214227, -2.306076], [54.21414, -2.306011]], [[54.21414, -2.306011], [54.214052, -2.30594]], [[54.213803, -2.305686], [54.213729, -2.305575]], [[54.213729, -2.305575], [54.213653, -2.305467]], [[54.213653, -2.305467], [54.21358, -2.305368]], [[54.21358, -2.305368], [54.213497, -2.305292]], [[54.213497, -2.305292], [54.213411, -2.305234]], [[54.213411, -2.305234], [54.213321, -2.305201]], [[54.212216, -2.305122], [54.212124, -2.305202]], [[54.212124, -2.305202], [54.212039, -2.305279]], [[54.212039, -2.305279], [54.211956, -2.305351]], [[54.211863, -2.305426], [54.211779, -2.3055]], [[54.211779, -2.3055], [54.21169, -2.305561]], [[54.21169, -2.305561], [54.211593, -2.305623]], [[54.211593, -2.305623], [54.211506, -2.305688]], [[54.211325, -2.305817], [54.211237, -2.305892]], [[54.211237, -2.305892], [54.211154, -2.30597]], [[54.211154, -2.30597], [54.211063, -2.306038]], [[54.211063, -2.306038], [54.210981, -2.306106]], [[54.210981, -2.306106], [54.21089, -2.306155]], [[54.210617, -2.306298], [54.210523, -2.306327]], [[54.210426, -2.30634], [54.210332, -2.306303]], [[54.210332, -2.306303], [54.210248, -2.306227]], [[54.210027, -2.305905], [54.209963, -2.305792]], [[54.209963, -2.305792], [54.209904, -2.305672]], [[54.209904, -2.305672], [54.209831, -2.305544]], [[54.209831, -2.305544], [54.209757, -2.30545]], [[54.209757, -2.30545], [54.209689, -2.30534]], [[54.209689, -2.30534], [54.209619, -2.30524]], [[54.209619, -2.30524], [54.209553, -2.305121]], [[54.209553, -2.305121], [54.209506, -2.304978]], [[54.209506, -2.304978], [54.20944, -2.304856]], [[54.20944, -2.304856], [54.209378, -2.30473]], [[54.209378, -2.30473], [54.209315, -2.304615]], [[54.208933, -2.304079], [54.208861, -2.303962]], [[54.208861, -2.303962], [54.208791, -2.303859]], [[54.208791, -2.303859], [54.208726, -2.303743]], [[54.208535, -2.303393], [54.208453, -2.303317]], [[54.208091, -2.303108], [54.207998, -2.303066]], [[54.207736, -2.30292], [54.207644, -2.302884]], [[54.20755, -2.302853], [54.207461, -2.302773]], [[54.207461, -2.302773], [54.207367, -2.302736]], [[54.206994, -2.302855], [54.206912, -2.302927]], [[54.206819, -2.302992], [54.206725, -2.303026]], [[54.206725, -2.303026], [54.206627, -2.303062]], [[54.206627, -2.303062], [54.206535, -2.303127]], [[54.206535, -2.303127], [54.206449, -2.303194]], [[54.206449, -2.303194], [54.206352, -2.303248]], [[54.206352, -2.303248], [54.206263, -2.303322]], [[54.206096, -2.303502], [54.206006, -2.303582]], [[54.204747, -2.303348], [54.204662, -2.303409]], [[54.204231, -2.30375], [54.204136, -2.303797]], [[54.204136, -2.303797], [54.204049, -2.303871]], [[54.204049, -2.303871], [54.20396, -2.30395]], [[54.20396, -2.30395], [54.203886, -2.304042]], [[54.203886, -2.304042], [54.203795, -2.304123]], [[54.203795, -2.304123], [54.203705, -2.304174]], [[54.203525, -2.304288], [54.203436, -2.304361]], [[54.203436, -2.304361], [54.20335, -2.304426]], [[54.20335, -2.304426], [54.203261, -2.3045]], [[54.203261, -2.3045], [54.203177, -2.304574]], [[54.203086, -2.304652], [54.202993, -2.304721]], [[54.202993, -2.304721], [54.202898, -2.304787]], [[54.202435, -2.305057], [54.20234, -2.30507]], [[54.20234, -2.30507], [54.202243, -2.305071]], [[54.202243, -2.305071], [54.202153, -2.305062]], [[54.202153, -2.305062], [54.202056, -2.305054]], [[54.202056, -2.305054], [54.201965, -2.305047]], [[54.201308, -2.304869], [54.201212, -2.30484]], [[54.201212, -2.30484], [54.201113, -2.304822]], [[54.200505, -2.304735], [54.200409, -2.304713]], [[54.200318, -2.304708], [54.200221, -2.304726]], [[54.200221, -2.304726], [54.200129, -2.304775]], [[54.200129, -2.304775], [54.200044, -2.304848]], [[54.199954, -2.304929], [54.199861, -2.304982]], [[54.199861, -2.304982], [54.199777, -2.305042]], [[54.1995, -2.30549], [54.19943, -2.3056]], [[54.19943, -2.3056], [54.199348, -2.3057]], [[54.199348, -2.3057], [54.199265, -2.305788]], [[54.199265, -2.305788], [54.199186, -2.305901]], [[54.199103, -2.305963], [54.199018, -2.306032]], [[54.199018, -2.306032], [54.198932, -2.306086]], [[54.198932, -2.306086], [54.198843, -2.306147]], [[54.198843, -2.306147], [54.198757, -2.306195]], [[54.198757, -2.306195], [54.19866, -2.306228]], [[54.19866, -2.306228], [54.198565, -2.306263]], [[54.198565, -2.306263], [54.198469, -2.306319]], [[54.197718, -2.306341], [54.197624, -2.306317]], [[54.197624, -2.306317], [54.197527, -2.306291]], [[54.197527, -2.306291], [54.197436, -2.30627]], [[54.197436, -2.30627], [54.197335, -2.306257]], [[54.197335, -2.306257], [54.197243, -2.306181]], [[54.197243, -2.306181], [54.197173, -2.306082]], [[54.197173, -2.306082], [54.197084, -2.306008]], [[54.197084, -2.306008], [54.197002, -2.305934]], [[54.19683, -2.305744], [54.196755, -2.305636]], [[54.196755, -2.305636], [54.196678, -2.305541]], [[54.196678, -2.305541], [54.19661, -2.305434]], [[54.196318, -2.30503], [54.196235, -2.304945]], [[54.196235, -2.304945], [54.196146, -2.304891]], [[54.196146, -2.304891], [54.196051, -2.304849]], [[54.196051, -2.304849], [54.195955, -2.304824]], [[54.195955, -2.304824], [54.195864, -2.304799]], [[54.195384, -2.304708], [54.195288, -2.304703]], [[54.195288, -2.304703], [54.195196, -2.304699]], [[54.195001, -2.304683], [54.194904, -2.304656]], [[54.194904, -2.304656], [54.194808, -2.304623]], [[54.194808, -2.304623], [54.194718, -2.304565]], [[54.194718, -2.304565], [54.19463, -2.304476]], [[54.194548, -2.304368], [54.19448, -2.304263]], [[54.19448, -2.304263], [54.194404, -2.304151]], [[54.194404, -2.304151], [54.194334, -2.304038]], [[54.194334, -2.304038], [54.194261, -2.303928]], [[54.194261, -2.303928], [54.194192, -2.303831]], [[54.192829, -2.301655], [54.192735, -2.301638]], [[54.192735, -2.301638], [54.192642, -2.301636]], [[54.192258, -2.301586], [54.192164, -2.301573]], [[54.192164, -2.301573], [54.192067, -2.301587]], [[54.192067, -2.301587], [54.191965, -2.301582]], [[54.191965, -2.301582], [54.191868, -2.301583]], [[54.191634, -2.301181], [54.191621, -2.301028]], [[54.191621, -2.301028], [54.19162, -2.300863]], [[54.191675, -2.300231], [54.191695, -2.300069]], [[54.191695, -2.300069], [54.191709, -2.299915]], [[54.191801, -2.298941], [54.191814, -2.29878]], [[54.191814, -2.29878], [54.191823, -2.29862]], [[54.191823, -2.29862], [54.191815, -2.298466]], [[54.191827, -2.298308], [54.191841, -2.298147]], [[54.191841, -2.298147], [54.191864, -2.29799]], [[54.191864, -2.29799], [54.191877, -2.297829]], [[54.191877, -2.297829], [54.191851, -2.297675]], [[54.191851, -2.297675], [54.191822, -2.297522]], [[54.191116, -2.296191], [54.191049, -2.29607]], [[54.191049, -2.29607], [54.190985, -2.29594]], [[54.190867, -2.295695], [54.190798, -2.295582]], [[54.190798, -2.295582], [54.190732, -2.295467]], [[54.190315, -2.294601], [54.190248, -2.29448]], [[54.190248, -2.29448], [54.190188, -2.294362]], [[54.189966, -2.294075], [54.189891, -2.293979]], [[54.189229, -2.288593], [54.189137, -2.288672]], [[54.189137, -2.288672], [54.189048, -2.288735]], [[54.18565, -2.290971], [54.185558, -2.291049]], [[54.185558, -2.291049], [54.185477, -2.291124]], [[54.185402, -2.291212], [54.18532, -2.291309]], [[54.18532, -2.291309], [54.185235, -2.291388]], [[54.185235, -2.291388], [54.185143, -2.291438]], [[54.185143, -2.291438], [54.185057, -2.291487]], [[54.184222, -2.291424], [54.184118, -2.291421]], [[54.184118, -2.291421], [54.184018, -2.291404]], [[54.184018, -2.291404], [54.183928, -2.291406]], [[54.183635, -2.291397], [54.183544, -2.291367]], [[54.183544, -2.291367], [54.183455, -2.291321]], [[54.183455, -2.291321], [54.183364, -2.291295]], [[54.183364, -2.291295], [54.183266, -2.291285]], [[54.183266, -2.291285], [54.183172, -2.29125]], [[54.183172, -2.29125], [54.183085, -2.291213]], [[54.180572, -2.29226], [54.180486, -2.292319]], [[54.180486, -2.292319], [54.180396, -2.292381]], [[54.180396, -2.292381], [54.180313, -2.292461]], [[54.180128, -2.292564], [54.180032, -2.292581]], [[54.180032, -2.292581], [54.179933, -2.292571]], [[54.179933, -2.292571], [54.179837, -2.292579]], [[54.179837, -2.292579], [54.179746, -2.292573]], [[54.179746, -2.292573], [54.17965, -2.292601]], [[54.17965, -2.292601], [54.179559, -2.292606]], [[54.179559, -2.292606], [54.179457, -2.292621]], [[54.179457, -2.292621], [54.179363, -2.29262]], [[54.179363, -2.29262], [54.17927, -2.292636]], [[54.17927, -2.292636], [54.179175, -2.292653]], [[54.179175, -2.292653], [54.179074, -2.292663]], [[54.179074, -2.292663], [54.178977, -2.292669]], [[54.178977, -2.292669], [54.178878, -2.292704]], [[54.178696, -2.292781], [54.178607, -2.292811]], [[54.178607, -2.292811], [54.178511, -2.292817]], [[54.178511, -2.292817], [54.178411, -2.292848]], [[54.178411, -2.292848], [54.178314, -2.29286]], [[54.178314, -2.29286], [54.178226, -2.292892]], [[54.177938, -2.292999], [54.177842, -2.293042]], [[54.177842, -2.293042], [54.177742, -2.293062]], [[54.177559, -2.293056], [54.177463, -2.293045]], [[54.177368, -2.293047], [54.177269, -2.293051]], [[54.177269, -2.293051], [54.177167, -2.293031]], [[54.177167, -2.293031], [54.177077, -2.293011]], [[54.177077, -2.293011], [54.176984, -2.292972]], [[54.176984, -2.292972], [54.176891, -2.292953]], [[54.176891, -2.292953], [54.176799, -2.292924]], [[54.176799, -2.292924], [54.176698, -2.292886]], [[54.176698, -2.292886], [54.176605, -2.29285]], [[54.176605, -2.29285], [54.176511, -2.292864]], [[54.176511, -2.292864], [54.176421, -2.292886]], [[54.176421, -2.292886], [54.176329, -2.292868]], [[54.176329, -2.292868], [54.176241, -2.292821]], [[54.176241, -2.292821], [54.176149, -2.292812]], [[54.176149, -2.292812], [54.176046, -2.292824]], [[54.176046, -2.292824], [54.175943, -2.292842]], [[54.175943, -2.292842], [54.175844, -2.292857]], [[54.175844, -2.292857], [54.175739, -2.292855]], [[54.175739, -2.292855], [54.175639, -2.292861]], [[54.175639, -2.292861], [54.175539, -2.292845]], [[54.175539, -2.292845], [54.175444, -2.292824]], [[54.175444, -2.292824], [54.175355, -2.292845]], [[54.175355, -2.292845], [54.175254, -2.292863]], [[54.175254, -2.292863], [54.175154, -2.292861]], [[54.175154, -2.292861], [54.175056, -2.292863]], [[54.175056, -2.292863], [54.174959, -2.292863]], [[54.174959, -2.292863], [54.17486, -2.292841]], [[54.17486, -2.292841], [54.174762, -2.292815]], [[54.174762, -2.292815], [54.174662, -2.292803]], [[54.174662, -2.292803], [54.174568, -2.292799]], [[54.174478, -2.292797], [54.174378, -2.292776]], [[54.174378, -2.292776], [54.174278, -2.292769]], [[54.174278, -2.292769], [54.174178, -2.292769]], [[54.174178, -2.292769], [54.17408, -2.292768]], [[54.17408, -2.292768], [54.173977, -2.292778]], [[54.173977, -2.292778], [54.173878, -2.292759]], [[54.173878, -2.292759], [54.173776, -2.292736]], [[54.173776, -2.292736], [54.173677, -2.292712]], [[54.173677, -2.292712], [54.173581, -2.292691]], [[54.173581, -2.292691], [54.173492, -2.29266]], [[54.173492, -2.29266], [54.173403, -2.29262]], [[54.173403, -2.29262], [54.173306, -2.292638]], [[54.173306, -2.292638], [54.173216, -2.292619]], [[54.173216, -2.292619], [54.173121, -2.292585]], [[54.173121, -2.292585], [54.173029, -2.292549]], [[54.173029, -2.292549], [54.172931, -2.292549]], [[54.172931, -2.292549], [54.172828, -2.29253]], [[54.172828, -2.29253], [54.172737, -2.29249]], [[54.172737, -2.29249], [54.172634, -2.292455]], [[54.172634, -2.292455], [54.172542, -2.292424]], [[54.172542, -2.292424], [54.172451, -2.292454]], [[54.172451, -2.292454], [54.172353, -2.292519]], [[54.172353, -2.292519], [54.172252, -2.292553]], [[54.172252, -2.292553], [54.172161, -2.29257]], [[54.172161, -2.29257], [54.17207, -2.292603]], [[54.17207, -2.292603], [54.171974, -2.292639]], [[54.171974, -2.292639], [54.171871, -2.292654]], [[54.171871, -2.292654], [54.171766, -2.29266]], [[54.171766, -2.29266], [54.171672, -2.292674]], [[54.171672, -2.292674], [54.171569, -2.2927]], [[54.171569, -2.2927], [54.171474, -2.292718]], [[54.171474, -2.292718], [54.171374, -2.292743]], [[54.171374, -2.292743], [54.171276, -2.292774]], [[54.171276, -2.292774], [54.171186, -2.292784]], [[54.171186, -2.292784], [54.171088, -2.292808]], [[54.171088, -2.292808], [54.170997, -2.292842]], [[54.1709, -2.292853], [54.170799, -2.292854]], [[54.170799, -2.292854], [54.170695, -2.292879]], [[54.170695, -2.292879], [54.170593, -2.292865]], [[54.170593, -2.292865], [54.170494, -2.292848]], [[54.170494, -2.292848], [54.170398, -2.29283]], [[54.170398, -2.29283], [54.170301, -2.292793]], [[54.170301, -2.292793], [54.170211, -2.292783]], [[54.170211, -2.292783], [54.170117, -2.292776]], [[54.170117, -2.292776], [54.170024, -2.292747]], [[54.170024, -2.292747], [54.169927, -2.292717]], [[54.169927, -2.292717], [54.16983, -2.29267]], [[54.16983, -2.29267], [54.169732, -2.292619]], [[54.169732, -2.292619], [54.169646, -2.292568]], [[54.169646, -2.292568], [54.169558, -2.292524]], [[54.169558, -2.292524], [54.169472, -2.292475]], [[54.169472, -2.292475], [54.169379, -2.29242]], [[54.169188, -2.292405], [54.16909, -2.292381]], [[54.16909, -2.292381], [54.16899, -2.292379]], [[54.16899, -2.292379], [54.168891, -2.292342]], [[54.168891, -2.292342], [54.168793, -2.292297]], [[54.168793, -2.292297], [54.168706, -2.292233]], [[54.168706, -2.292233], [54.168616, -2.292149]], [[54.168616, -2.292149], [54.16854, -2.292052]], [[54.168383, -2.291841], [54.168315, -2.291708]], [[54.168315, -2.291708], [54.168268, -2.291576]], [[54.168268, -2.291576], [54.16818, -2.291483]], [[54.16818, -2.291483], [54.168091, -2.291416]], [[54.168091, -2.291416], [54.167999, -2.291359]], [[54.167999, -2.291359], [54.167911, -2.291305]], [[54.167911, -2.291305], [54.167823, -2.291263]], [[54.167823, -2.291263], [54.167725, -2.291193]], [[54.167725, -2.291193], [54.167636, -2.291126]], [[54.167636, -2.291126], [54.167547, -2.291074]], [[54.167547, -2.291074], [54.167447, -2.291071]], [[54.167447, -2.291071], [54.167347, -2.291065]], [[54.167347, -2.291065], [54.16725, -2.291071]], [[54.16725, -2.291071], [54.167145, -2.291062]], [[54.167145, -2.291062], [54.167057, -2.291028]], [[54.167057, -2.291028], [54.16696, -2.290997]], [[54.16696, -2.290997], [54.166866, -2.29097]], [[54.166866, -2.29097], [54.166765, -2.290952]], [[54.166765, -2.290952], [54.166666, -2.290906]], [[54.166666, -2.290906], [54.166579, -2.290832]], [[54.166285, -2.290688], [54.166186, -2.29068]], [[54.166186, -2.29068], [54.166089, -2.29068]], [[54.166089, -2.29068], [54.165989, -2.290681]], [[54.165989, -2.290681], [54.165886, -2.290694]], [[54.165886, -2.290694], [54.165794, -2.290672]], [[54.165699, -2.29065], [54.165609, -2.290623]], [[54.165609, -2.290623], [54.16552, -2.290587]], [[54.16552, -2.290587], [54.165429, -2.290547]], [[54.165429, -2.290547], [54.165338, -2.290547]], [[54.165338, -2.290547], [54.165243, -2.290527]], [[54.165243, -2.290527], [54.165147, -2.290486]], [[54.165147, -2.290486], [54.165051, -2.290427]], [[54.165051, -2.290427], [54.164966, -2.290371]], [[54.164966, -2.290371], [54.164889, -2.290284]], [[54.164889, -2.290284], [54.164833, -2.290143]], [[54.164833, -2.290143], [54.164781, -2.290001]], [[54.164781, -2.290001], [54.164751, -2.28985]], [[54.164082, -2.289528], [54.163988, -2.289465]], [[54.163988, -2.289465], [54.163893, -2.289443]], [[54.163893, -2.289443], [54.163795, -2.289447]], [[54.163795, -2.289447], [54.163695, -2.289447]], [[54.163695, -2.289447], [54.163597, -2.28947]], [[54.163597, -2.28947], [54.163497, -2.289476]], [[54.163497, -2.289476], [54.163404, -2.289491]], [[54.163208, -2.28949], [54.16311, -2.289512]], [[54.16311, -2.289512], [54.163014, -2.289575]], [[54.163014, -2.289575], [54.162918, -2.289635]], [[54.162918, -2.289635], [54.162821, -2.289622]], [[54.162821, -2.289622], [54.16272, -2.289628]], [[54.16272, -2.289628], [54.16262, -2.289646]], [[54.16262, -2.289646], [54.162521, -2.289631]], [[54.162425, -2.289575], [54.162335, -2.28951]], [[54.162335, -2.28951], [54.162251, -2.289449]], [[54.162084, -2.289319], [54.161982, -2.289311]], [[54.161982, -2.289311], [54.161882, -2.289319]], [[54.16028, -2.289432], [54.16018, -2.289439]], [[54.16018, -2.289439], [54.160084, -2.289474]], [[54.160084, -2.289474], [54.159984, -2.289502]], [[54.159893, -2.289498], [54.159803, -2.289447]], [[54.159622, -2.289384], [54.159526, -2.289365]], [[54.159526, -2.289365], [54.159437, -2.289336]], [[54.159437, -2.289336], [54.159342, -2.289297]], [[54.159342, -2.289297], [54.159253, -2.289262]], [[54.158974, -2.289197], [54.158883, -2.28925]], [[54.158883, -2.28925], [54.15879, -2.289313]], [[54.158596, -2.289348], [54.158501, -2.289393]], [[54.158411, -2.289404], [54.158317, -2.289404]], [[54.158317, -2.289404], [54.158217, -2.289384]], [[54.158217, -2.289384], [54.158123, -2.289373]], [[54.158123, -2.289373], [54.158028, -2.289364]], [[54.158028, -2.289364], [54.157925, -2.289362]], [[54.157925, -2.289362], [54.157824, -2.289377]], [[54.157824, -2.289377], [54.157729, -2.289364]], [[54.157729, -2.289364], [54.157632, -2.289351]], [[54.157632, -2.289351], [54.157532, -2.289334]], [[54.157532, -2.289334], [54.157436, -2.289327]], [[54.157338, -2.289304], [54.157239, -2.289304]], [[54.157239, -2.289304], [54.157137, -2.289314]], [[54.157137, -2.289314], [54.157045, -2.289351]], [[54.157045, -2.289351], [54.156952, -2.289361]], [[54.156952, -2.289361], [54.15686, -2.289386]], [[54.15677, -2.289406], [54.156677, -2.28944]], [[54.156677, -2.28944], [54.156582, -2.28947]], [[54.156582, -2.28947], [54.156481, -2.289506]], [[54.156186, -2.289599], [54.156092, -2.289623]], [[54.156092, -2.289623], [54.156, -2.289657]], [[54.156, -2.289657], [54.155906, -2.289684]], [[54.155906, -2.289684], [54.15581, -2.289711]], [[54.15581, -2.289711], [54.155718, -2.28976]], [[54.155718, -2.28976], [54.155631, -2.289808]], [[54.155631, -2.289808], [54.155543, -2.289856]], [[54.155543, -2.289856], [54.15545, -2.289898]], [[54.15545, -2.289898], [54.155354, -2.289943]], [[54.155354, -2.289943], [54.155258, -2.289979]], [[54.155258, -2.289979], [54.155163, -2.29002]], [[54.155163, -2.29002], [54.155072, -2.29006]], [[54.155072, -2.29006], [54.15498, -2.290094]], [[54.15498, -2.290094], [54.154885, -2.290141]], [[54.154885, -2.290141], [54.154798, -2.290181]], [[54.15471, -2.290213], [54.154617, -2.290256]], [[54.154617, -2.290256], [54.154522, -2.290296]], [[54.154522, -2.290296], [54.154426, -2.290328]], [[54.154426, -2.290328], [54.154338, -2.290374]], [[54.154338, -2.290374], [54.154242, -2.290408]], [[54.154242, -2.290408], [54.154149, -2.290457]], [[54.154149, -2.290457], [54.154062, -2.290507]], [[54.154062, -2.290507], [54.15397, -2.290549]], [[54.15397, -2.290549], [54.153882, -2.290588]], [[54.153882, -2.290588], [54.153787, -2.290624]], [[54.153787, -2.290624], [54.153685, -2.290668]], [[54.15329, -2.291126], [54.153216, -2.291228]], [[54.152612, -2.292065], [54.152539, -2.292169]], [[54.152539, -2.292169], [54.152465, -2.292277]], [[54.152465, -2.292277], [54.152395, -2.292384]], [[54.152187, -2.292704], [54.152121, -2.292811]], [[54.152121, -2.292811], [54.15205, -2.292914]], [[54.15205, -2.292914], [54.15198, -2.293017]], [[54.15198, -2.293017], [54.151899, -2.293127]], [[54.151899, -2.293127], [54.151825, -2.293232]], [[54.151073, -2.294247], [54.150989, -2.294322]], [[54.150989, -2.294322], [54.150901, -2.294369]], [[54.150901, -2.294369], [54.150818, -2.294432]], [[54.150641, -2.29456], [54.150556, -2.294621]], [[54.150556, -2.294621], [54.150465, -2.294673]], [[54.150465, -2.294673], [54.150378, -2.294719]], [[54.149948, -2.295106], [54.149863, -2.295185]], [[54.148389, -2.295339], [54.148298, -2.295296]], [[54.14822, -2.295179], [54.148132, -2.295124]], [[54.147967, -2.294975], [54.147884, -2.294888]], [[54.147884, -2.294888], [54.147806, -2.294805]], [[54.147806, -2.294805], [54.147732, -2.294707]], [[54.147732, -2.294707], [54.147656, -2.294621]], [[54.147656, -2.294621], [54.14758, -2.294528]], [[54.14758, -2.294528], [54.147514, -2.294413]], [[54.147514, -2.294413], [54.147445, -2.294315]], [[54.147445, -2.294315], [54.14737, -2.294226]], [[54.147106, -2.294072], [54.147026, -2.293991]], [[54.147026, -2.293991], [54.146945, -2.293918]], [[54.146945, -2.293918], [54.146856, -2.293856]], [[54.146856, -2.293856], [54.146767, -2.293829]], [[54.146679, -2.293786], [54.146584, -2.29372]], [[54.146584, -2.29372], [54.146493, -2.29364]], [[54.146493, -2.29364], [54.146398, -2.293595]], [[54.146398, -2.293595], [54.146317, -2.293523]], [[54.146317, -2.293523], [54.146223, -2.293472]], [[54.146223, -2.293472], [54.146123, -2.293433]], [[54.146123, -2.293433], [54.146022, -2.293398]], [[54.146022, -2.293398], [54.145931, -2.29333]], [[54.145931, -2.29333], [54.145831, -2.293296]], [[54.145644, -2.293212], [54.145557, -2.293135]], [[54.145557, -2.293135], [54.145462, -2.29307]], [[54.145462, -2.29307], [54.145367, -2.29305]], [[54.145367, -2.29305], [54.145274, -2.293008]], [[54.145085, -2.293004], [54.144997, -2.292961]], [[54.144997, -2.292961], [54.144901, -2.292937]], [[54.144901, -2.292937], [54.144804, -2.29292]], [[54.144804, -2.29292], [54.144709, -2.292874]], [[54.144709, -2.292874], [54.144621, -2.292837]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            var poly_line_eabe860ab99e50a722e43ecc9efc2335 = L.polyline(
                [[[54.379765, -2.181036], [54.379809, -2.181179]], [[54.381175, -2.192637], [54.381146, -2.192629]], [[54.38437, -2.204737], [54.384363, -2.204802]], [[54.384363, -2.204802], [54.38432, -2.204954]], [[54.377604, -2.226177], [54.377513, -2.226247]], [[54.377204, -2.226639], [54.377189, -2.226658]], [[54.377189, -2.226658], [54.3771, -2.226705]], [[54.376914, -2.227027], [54.376835, -2.227116]], [[54.370899, -2.234486], [54.370876, -2.234505]], [[54.334493, -2.236958], [54.334487, -2.236938]], [[54.324373, -2.220368], [54.324284, -2.220342]], [[54.307778, -2.192279], [54.307682, -2.192274]], [[54.305671, -2.192433], [54.305573, -2.192447]], [[54.303831, -2.196928], [54.30382, -2.19709]], [[54.304098, -2.198793], [54.304012, -2.198741]], [[54.303981, -2.198669], [54.304055, -2.198581]], [[54.304055, -2.198581], [54.304123, -2.198639]], [[54.304123, -2.198639], [54.30403, -2.198593]], [[54.304083, -2.199195], [54.304104, -2.199351]], [[54.304104, -2.199351], [54.304104, -2.19937]], [[54.303979, -2.198612], [54.303947, -2.198587]], [[54.303947, -2.198587], [54.304071, -2.198695]], [[54.304071, -2.198695], [54.304139, -2.198662]], [[54.304139, -2.198662], [54.304094, -2.198815]], [[54.304089, -2.199434], [54.304083, -2.199467]], [[54.304083, -2.199467], [54.304078, -2.199312]], [[54.303947, -2.198656], [54.303944, -2.198811]], [[54.303925, -2.198356], [54.303891, -2.198196]], [[54.303827, -2.197451], [54.303741, -2.197379]], [[54.303309, -2.197363], [54.303231, -2.197255]], [[54.303171, -2.197199], [54.303232, -2.19732]], [[54.303232, -2.19732], [54.303271, -2.197407]], [[54.301774, -2.198714], [54.30168, -2.198722]], [[54.298944, -2.199871], [54.298979, -2.200031]], [[54.297542, -2.204748], [54.297459, -2.204675]], [[54.2965, -2.204101], [54.296412, -2.204166]], [[54.295451, -2.205106], [54.295543, -2.205091]], [[54.296122, -2.206281], [54.29613, -2.206305]], [[54.295222, -2.210446], [54.295188, -2.210596]], [[54.291635, -2.223143], [54.291624, -2.223167]], [[54.291624, -2.223167], [54.291592, -2.223313]], [[54.291312, -2.224066], [54.291277, -2.224222]], [[54.29066, -2.22685], [54.290587, -2.226961]], [[54.289733, -2.228511], [54.289702, -2.228464]], [[54.285615, -2.232669], [54.28553, -2.23274]], [[54.277303, -2.242526], [54.277213, -2.242584]], [[54.260419, -2.251779], [54.260359, -2.251901]], [[54.235995, -2.282018], [54.235922, -2.282122]], [[54.219419, -2.305707], [54.219329, -2.305694]], [[54.2053, -2.303523], [54.205202, -2.303489]], [[54.190015, -2.288126], [54.189931, -2.288051]], [[54.184977, -2.291455], [54.184888, -2.291409]], [[54.14978, -2.295795], [54.14848, -2.295362]], [[54.144429, -2.293062], [54.144508, -2.293155]], [[54.144508, -2.293155], [54.144421, -2.293143]], [[54.144523, -2.293131], [54.144588, -2.293017]], [[54.144479, -2.293035], [54.144479, -2.293036]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            var poly_line_def8b3d9719212257319d4963cab0cf4 = L.polyline(
                [[[54.381146, -2.192629], [54.381148, -2.192792]], [[54.370876, -2.234505], [54.370798, -2.234587]], [[54.341668, -2.24148], [54.341578, -2.241488]], [[54.316368, -2.204909], [54.316378, -2.205066]], [[54.303927, -2.198216], [54.304014, -2.198177]], [[54.304086, -2.19942], [54.304076, -2.199258]], [[54.304076, -2.199258], [54.304083, -2.199195]], [[54.303944, -2.198811], [54.304004, -2.19881]], [[54.304004, -2.19881], [54.303927, -2.198727]], [[54.303927, -2.198727], [54.303874, -2.198719]], [[54.303874, -2.198719], [54.303908, -2.198713]], [[54.303908, -2.198713], [54.303894, -2.19885]], [[54.303397, -2.197376], [54.303306, -2.197362]], [[54.303306, -2.197362], [54.303309, -2.197363]], [[54.30183, -2.198592], [54.301849, -2.198752]], [[54.301849, -2.198752], [54.301831, -2.198767]], [[54.301831, -2.198767], [54.30183, -2.198602]], [[54.30183, -2.198602], [54.301818, -2.198581]], [[54.301818, -2.198581], [54.301776, -2.198716]], [[54.301776, -2.198716], [54.301774, -2.198714]], [[54.29613, -2.206305], [54.296088, -2.206449]], [[54.260283, -2.252033], [54.26023, -2.252167]], [[54.212995, -2.3051], [54.212898, -2.305088]], [[54.164452, -2.289613], [54.164365, -2.289655]], [[54.149736, -2.295707], [54.14978, -2.295795]], [[54.144427, -2.293024], [54.144493, -2.293134]], [[54.144493, -2.293134], [54.144523, -2.293131]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            var poly_line_d71b74c5d1743471700cd82271770ec6 = L.polyline(
                [[[54.340853, -2.241082], [54.340751, -2.241015]], [[54.340368, -2.241042], [54.340275, -2.241069]], [[54.321719, -2.215554], [54.321705, -2.215394]], [[54.319916, -2.209619], [54.319915, -2.209451]], [[54.316998, -2.207347], [54.316917, -2.207247]], [[54.316212, -2.206323], [54.316278, -2.206196]], [[54.316278, -2.206196], [54.316327, -2.206063]], [[54.31425, -2.201134], [54.314212, -2.200979]], [[54.310128, -2.189944], [54.310037, -2.189909]], [[54.309944, -2.189891], [54.309848, -2.189907]], [[54.309848, -2.189907], [54.30975, -2.189946]], [[54.309081, -2.191104], [54.309009, -2.191207]], [[54.309011, -2.191559], [54.309008, -2.19173]], [[54.308782, -2.192], [54.308693, -2.192074]], [[54.308208, -2.192303], [54.308111, -2.192291]], [[54.308111, -2.192291], [54.308018, -2.192232]], [[54.307287, -2.19231], [54.307186, -2.192321]], [[54.307186, -2.192321], [54.307096, -2.192326]], [[54.303268, -2.197391], [54.303313, -2.197527]], [[54.302582, -2.197688], [54.30249, -2.197769]], [[54.30249, -2.197769], [54.302414, -2.197886]], [[54.300071, -2.200345], [54.299977, -2.200273]], [[54.299977, -2.200273], [54.2999, -2.20019]], [[54.277961, -2.241293], [54.277923, -2.241435]], [[54.277923, -2.241435], [54.277867, -2.241575]], [[54.277867, -2.241575], [54.277806, -2.24169]], [[54.277806, -2.24169], [54.277741, -2.2418]], [[54.242071, -2.272353], [54.242005, -2.272465]], [[54.241226, -2.273687], [54.241152, -2.273798]], [[54.200409, -2.304713], [54.200318, -2.304708]], [[54.177463, -2.293045], [54.177368, -2.293047]], [[54.170997, -2.292842], [54.1709, -2.292853]], [[54.16854, -2.292052], [54.168451, -2.291947]], [[54.168451, -2.291947], [54.168383, -2.291841]], [[54.166579, -2.290832], [54.166487, -2.290775]], [[54.166384, -2.290721], [54.166285, -2.290688]], [[54.165794, -2.290672], [54.165699, -2.29065]], [[54.15879, -2.289313], [54.158695, -2.289328]], [[54.158695, -2.289328], [54.158596, -2.289348]], [[54.156481, -2.289506], [54.156375, -2.289541]], [[54.156282, -2.289569], [54.156186, -2.289599]], [[54.153685, -2.290668], [54.153596, -2.290702]], [[54.153522, -2.290791], [54.153445, -2.290918]], [[54.153445, -2.290918], [54.153371, -2.291031]], [[54.153371, -2.291031], [54.15329, -2.291126]], [[54.14848, -2.295362], [54.148389, -2.295339]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            var poly_line_2d5c633a24e2be053ba8de21c133ea34 = L.polyline(
                [[[54.340751, -2.241015], [54.340645, -2.241008]], [[54.308693, -2.192074], [54.308605, -2.192172]], [[54.308605, -2.192172], [54.308511, -2.192208]], [[54.303182, -2.197502], [54.303268, -2.197391]], [[54.166487, -2.290775], [54.166384, -2.290721]], [[54.156375, -2.289541], [54.156282, -2.289569]], [[54.153596, -2.290702], [54.153522, -2.290791]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            var poly_line_6b383a0a197a0e79c28b90bc4e728284 = L.polyline(
                [[[54.340645, -2.241008], [54.340551, -2.241023]], [[54.340551, -2.241023], [54.34046, -2.24101]], [[54.34046, -2.24101], [54.340368, -2.241042]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff8b00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            var poly_line_6ff419f5203e7039891ac57d73381127 = L.polyline(
                [[[54.303894, -2.19885], [54.304067, -2.198669]], [[54.304067, -2.198669], [54.303975, -2.198634]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_bd1972a4a263b21d1db08b5061640005);
        
    
            color_line_bd1972a4a263b21d1db08b5061640005.addTo(map_cb044617458355258be66397df318406);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-9---horton-in-ribblesdale-to-gargrave" class="level3">
<h3 class="anchored" data-anchor-id="day-9---horton-in-ribblesdale-to-gargrave">Day 9 - Horton in Ribblesdale to Gargrave</h3>
<p>Still raining when I was woken early by Daniil’s alarm. Knowing he’d set it early I didn’t bother to look at the time and dozed instead listening to it going off repeatedly. When I finally looked at the time it was 06:50 so I got up and let Daniil know that he’d missed his early start. He wasn’t too bothered, saying that if the body needs rest it needs rest. We both slowly packed up our kit which was still slightly damp and he sensibly did some stretching before posing for a picture. We wished each other good luck and he and jumped on his bike and set off, rejoining the Pennine Bridleway heading ultimately to Cape Wrath.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53940605026_0bc85fbf30_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qbxGBu" target="_blank">Daniil</a></figcaption>
</figure>
</div>
<p>I was packed and ready to head out into the wind and rain shortly after and with nothing to keep me hanging around brace myself for the onslaught and headed out. Not sure there was much that could have prepared me for the battering the wind and rain gave me as I headed up <a href="https://en.wikipedia.org/wiki/Pen-y-ghent" target="_blank">Pen y Ghent</a>, it was brutal! The rain was heavy and coming in horizontal as I gained height and I passed a couple who I’d seen in the car park of the pub who had decided not to continue which seemed wise, they were in shorts and pretty basic trainers. The higher I got the stronger the wind blew and I chatted to a guy who said he’d been out wild camping for the night (nutter!). On the final path up to the summit plateau the wind really kicked in though and I was very grateful of having my walking poles to help stabilise me. Even then I was still struggling to walk in a straight line and remain upright! The plateau itself provided some respite as the wind wasn’t hitting the side of the hill and being driven upwards and there was a shelter (viz.&nbsp;wall) near the summit trig point.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53946989678_04da8a0df6_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qc7qxG" target="_blank">Pen-y-Ghent Summit</a></figcaption>
</figure>
</div>
<p>A couple who had come up the way I was due to descend arrived and said it was pretty windy and wet on the path. There was no point hanging around so I got on with descending out of the horrendous wind. The rocks were wet, as predicted several days ago, but weren’t that bad to negotiate (hands were employed for safety). The loss of altitude was accompanied by some easing off of the wind, but not by much. As I skirted round Cow Hill though the weather seemed to ease a bit, with both the rain and wind dying down a bit and the cloud base lifting a little. I unfortunately had to head up and over <a href="https://en.wikipedia.org/wiki/Fountains_Fell" target="_blank">Fountains Fell (668m)</a> so up I went again. The weather was definitely improving as it wasn’t anywhere near as windy or wet as <a href="https://en.wikipedia.org/wiki/Pen-y-ghent" target="_blank">Pen y Ghent</a> had been although the views remained non-existent.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53947191850_cc04b893ff_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qc8sDq" target="_blank">Fountains Fell</a></figcaption>
</figure>
</div>
<p>Soon I was dropping down and passing through farmland and making my way to skirt the long way round <a href="https://en.wikipedia.org/wiki/Malham_Tarn" target="_blank">Malham Tarn</a> where the wind was whipping across and making quite a few waves. Somewhere to return to in the future as it was very picturesque (like so many other places on the hike!).</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975630039_dcb556ee4b_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeDdk2" target="_blank">Malham Tarn</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53974425352_d54a247c14_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qex3dy" target="_blank">The River from Malham Tarn</a></figcaption>
</figure>
</div>
<p>The sun was out in force by now so I stripped down to shorts and hung my waterproofs from my arm to dry in the wind which worked pretty quickly as I could pack them away before starting the descent to <a href="https://en.wikipedia.org/wiki/Malham_Cove" target="_blank">Malham Cove</a>. I passed a couple of young ladies out for a walk as I descended from Malham Moor and skirted under Watlowes. They seemed impressed by my progress and said they would have to try hiking The Way which I thoroughly recommended they do. The limestone pavement above <a href="https://en.wikipedia.org/wiki/Malham_Cove" target="_blank">Malham Cove</a> was impressive and had attracted those fit enough to climb the stairs up from the bottom of the Cove.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975630114_9062004599_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeDdmj" target="_blank">Above Malham Cove</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975548133_c1c2db78d7_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeCMYR" target="_blank">Malham Cove</a></figcaption>
</figure>
</div>
<p>I was getting hungry by now so after a few pictures I descended the steps, picking up an empty Red Bull can along the way, and passed many people out for the day as I made a beeline for <a href="https://listerarms.co.uk/" target="_blank">The Lester Arms</a> where I had a mushroom and black bean burger with wedges and beer battered onion rings. Chatted to a few others who were having a drink and explained how useful I found walking poles to a couple, as the lady had had operations on her knees which were weak as a consequence.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948245041_8f2744aad6_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcdRHT" target="_blank">Lunch at The Lister Arms, Malham</a></figcaption>
</figure>
</div>
<p>Satiated and watered I set off for Gargrave, tracking the <a href="https://en.wikipedia.org/wiki/River_Aire" target="_blank">River Aire</a> as it wound its way down the dale. This took me most of the way, but I parted company and was taken over a couple of hills via some fields with cows in which weren’t bothered by my presence.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53974424372_6fe86e3c4f_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qex2VE" target="_blank">Malham Cove from afar</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53947350527_d893ccce69_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qc9gPe" target="_blank">Goooogley Eyes</a></figcaption>
</figure>
</div>
<p>Soon I arrived at Gargrave and headed to the Co-op to get a few beers for the evening before back-tracking to <a href="https://www.ukcampsite.co.uk/sites/details.asp?revid=4187" target="_blank">Eshton Road Caravan Park</a> where a lovely old gentleman pointed me to a small enclosed field to camp for the night. A beer whilst pitching the tent close to the wall so it was sheltered from the storm that was forecast to come through overnight before heading back into town to eat at <a href="https://www.tripadvisor.co.uk/Restaurant_Review-g672785-d16645415-Reviews-The_Frying_Yorkshireman-Gargrave_North_Yorkshire_England.html" target="_blank">The Frying Yorkshireman</a> which was excellent both in terms of food and service. Very friendly, big portions of delicious food and a boot shaped glass for the beer. If you’re ever in Gargrave and need to eat head here you won’t be disappointed. Back to the tent for another beer (cheaper than the pub!) and an early night.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948703470_cd52992eb8_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcgcZQ" target="_blank">The Frying Yorkshireman</a></figcaption>
</figure>
</div>
<p>Chatted to a friendly guy on the campsite who I’d seen eating fish and chips opposite the chippy whilst I snapped pictures of the antiquated pharmacy and then got an early night.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975740610_88c92fb179_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeDMcq" target="_blank">Gargrave Pharmacy</a></figcaption>
</figure>
</div>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-10-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-10-1" aria-controls="tabset-10-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-10-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-10-2" aria-controls="tabset-10-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-10-1" class="tab-pane active" aria-labelledby="tabset-10-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb19-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-22"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-43f0adc884e0eb1aed97" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-43f0adc884e0eb1aed97">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.293116,-2.293197,-2.293101,-2.293119,-2.293055,-2.292955,-2.292789,-2.292753,-2.292649,-2.292703,-2.29275,-2.292793,-2.292825,-2.292849,-2.292879,-2.292904,-2.292942,-2.293051,-2.293091,-2.293136,-2.293183,-2.293235,-2.293289,-2.293325,-2.29336,-2.293399,-2.293475,-2.293509,-2.293573,-2.293629,-2.29368,-2.293726,-2.293775,-2.293834,-2.293887,-2.293877,-2.293837,-2.293931,-2.294018,-2.294099,-2.294173,-2.294061,-2.293929,-2.293775,-2.29362,-2.293492,-2.293364,-2.293232,-2.29308,-2.292936,-2.292771,-2.292628,-2.292475,-2.292314,-2.292156,-2.29199,-2.291819,-2.291664,-2.291504,-2.291339,-2.291219,-2.29112,-2.29109,-2.291058,-2.290953,-2.290881,-2.290817,-2.290679,-2.290536,-2.290367,-2.290205,-2.290083,-2.28992,-2.28978,-2.289629,-2.289463,-2.289288,-2.289131,-2.288946,-2.288787,-2.288626,-2.288461,-2.288361,-2.288244,-2.288121,-2.28797,-2.287889,-2.287728,-2.287594,-2.287486,-2.287381,-2.287257,-2.287103,-2.286995,-2.286908,-2.28685,-2.28675,-2.286651,-2.286544,-2.286457,-2.286384,-2.286305,-2.286223,-2.286152,-2.286063,-2.286004,-2.28589,-2.285782,-2.285683,-2.285636,-2.285588,-2.285544,-2.28555,-2.285521,-2.285517,-2.28548,-2.285452,-2.285392,-2.285344,-2.285277,-2.285267,-2.285211,-2.285169,-2.285105,-2.285056,-2.284997,-2.284933,-2.284864,-2.28478,-2.284765,-2.284771,-2.284772,-2.284717,-2.284665,-2.28458,-2.284529,-2.284466,-2.284427,-2.28435,-2.284298,-2.284246,-2.284185,-2.284067,-2.283932,-2.283866,-2.283712,-2.283566,-2.283514,-2.283346,-2.283306,-2.283237,-2.283081,-2.282981,-2.282879,-2.282795,-2.282701,-2.282635,-2.282501,-2.282423,-2.282356,-2.282279,-2.282203,-2.282117,-2.282035,-2.281976,-2.281907,-2.281827,-2.281768,-2.281704,-2.281634,-2.281579,-2.281478,-2.281413,-2.281386,-2.281295,-2.281205,-2.281181,-2.281114,-2.281045,-2.281017,-2.280991,-2.280926,-2.280858,-2.280785,-2.280708,-2.280677,-2.280611,-2.280593,-2.280508,-2.280439,-2.280383,-2.280341,-2.280321,-2.28025,-2.280199,-2.280145,-2.280139,-2.280109,-2.280086,-2.280078,-2.280076,-2.280026,-2.279977,-2.279936,-2.279874,-2.279796,-2.279717,-2.279672,-2.279599,-2.279475,-2.279385,-2.279296,-2.279182,-2.279053,-2.278937,-2.278814,-2.278688,-2.278571,-2.278422,-2.278307,-2.278251,-2.278243,-2.278271,-2.278298,-2.278309,-2.278177,-2.278056,-2.277935,-2.27788,-2.277792,-2.277717,-2.277596,-2.277485,-2.2774,-2.277352,-2.277307,-2.277209,-2.277101,-2.277056,-2.276999,-2.276967,-2.276924,-2.276868,-2.276837,-2.276762,-2.276725,-2.276678,-2.276602,-2.276544,-2.276478,-2.276414,-2.27636,-2.276328,-2.27626,-2.276183,-2.276112,-2.276054,-2.275984,-2.275903,-2.275866,-2.275789,-2.275625,-2.275566,-2.275506,-2.275452,-2.275361,-2.275273,-2.275201,-2.275122,-2.275031,-2.274954,-2.27487,-2.274776,-2.274687,-2.274604,-2.274529,-2.274434,-2.274348,-2.274193,-2.274089,-2.273975,-2.273816,-2.273653,-2.273503,-2.273361,-2.273223,-2.273097,-2.272999,-2.272905,-2.272797,-2.272729,-2.272568,-2.272426,-2.272302,-2.272143,-2.271989,-2.271917,-2.271788,-2.271651,-2.271572,-2.271462,-2.27136,-2.271267,-2.271162,-2.271056,-2.27098,-2.270888,-2.270822,-2.270738,-2.270627,-2.270498,-2.270358,-2.270208,-2.270055,-2.269894,-2.269737,-2.269602,-2.269454,-2.269291,-2.269138,-2.268988,-2.268838,-2.268698,-2.268549,-2.268382,-2.268232,-2.268066,-2.267923,-2.267768,-2.267615,-2.267459,-2.267291,-2.267135,-2.266956,-2.266785,-2.266632,-2.266564,-2.266391,-2.266232,-2.266061,-2.265898,-2.265744,-2.265581,-2.265473,-2.265357,-2.26521,-2.265062,-2.264904,-2.26477,-2.26464,-2.264508,-2.264337,-2.264204,-2.264071,-2.263903,-2.263744,-2.263586,-2.26343,-2.263257,-2.263095,-2.262931,-2.262776,-2.26262,-2.262463,-2.262309,-2.262146,-2.261994,-2.261854,-2.261697,-2.261542,-2.261378,-2.261223,-2.261065,-2.260907,-2.26075,-2.260592,-2.260432,-2.26028,-2.260118,-2.259949,-2.25979,-2.259634,-2.259476,-2.259321,-2.259164,-2.259008,-2.258877,-2.258733,-2.258586,-2.258479,-2.258364,-2.258221,-2.258079,-2.257939,-2.257788,-2.25763,-2.257479,-2.257327,-2.257167,-2.257017,-2.256844,-2.256684,-2.256522,-2.256387,-2.256221,-2.25606,-2.255922,-2.255765,-2.2556,-2.255446,-2.255283,-2.255129,-2.254968,-2.254817,-2.254728,-2.254586,-2.254423,-2.254269,-2.254135,-2.254013,-2.25385,-2.2537,-2.253552,-2.253398,-2.253274,-2.253116,-2.252961,-2.25281,-2.252658,-2.2526,-2.252446,-2.252304,-2.252162,-2.251998,-2.251845,-2.251699,-2.251546,-2.25141,-2.251299,-2.251153,-2.251038,-2.250909,-2.250788,-2.250714,-2.250655,-2.25059,-2.250487,-2.25043,-2.250403,-2.250387,-2.250323,-2.250252,-2.250243,-2.25026,-2.250153,-2.250154,-2.250124,-2.250077,-2.249909,-2.249955,-2.249995,-2.249945,-2.249955,-2.249836,-2.249871,-2.249938,-2.249914,-2.249958,-2.249964,-2.249956,-2.249982,-2.249932,-2.249908,-2.249853,-2.249893,-2.249881,-2.24992,-2.249925,-2.249963,-2.249954,-2.249964,-2.249961,-2.249968,-2.250038,-2.250077,-2.250099,-2.250246,-2.250288,-2.250268,-2.250281,-2.250345,-2.250432,-2.250527,-2.250602,-2.250633,-2.250715,-2.250779,-2.25077,-2.250773,-2.250793,-2.250885,-2.250984,-2.251014,-2.251088,-2.251102,-2.251094,-2.25103,-2.250938,-2.25084,-2.250738,-2.250621,-2.250492,-2.250427,-2.250354,-2.250269,-2.250146,-2.250096,-2.25002,-2.24993,-2.249833,-2.249782,-2.249678,-2.24963,-2.249504,-2.249411,-2.249295,-2.249214,-2.249158,-2.249097,-2.249064,-2.249003,-2.248979,-2.248907,-2.248818,-2.248779,-2.248741,-2.248767,-2.248908,-2.248847,-2.248841,-2.248934,-2.249044,-2.24915,-2.249257,-2.249354,-2.249433,-2.249504,-2.249571,-2.249667,-2.249783,-2.249895,-2.249998,-2.250091,-2.250191,-2.250297,-2.25037,-2.250437,-2.250528,-2.25063,-2.250715,-2.250777,-2.250819,-2.250874,-2.250923,-2.250977,-2.251039,-2.251081,-2.251085,-2.251116,-2.251155,-2.251182,-2.25116,-2.251106,-2.251169,-2.251188,-2.251203,-2.25125,-2.251321,-2.251401,-2.25126,-2.251159,-2.251124,-2.251039,-2.251036,-2.25099,-2.250926,-2.250898,-2.250947,-2.251027,-2.251154,-2.251286,-2.251384,-2.251443,-2.251442,-2.251272,-2.251329,-2.251395,-2.251475,-2.25159,-2.251721,-2.251847,-2.251935,-2.252008,-2.252029,-2.252081,-2.252077,-2.252078,-2.252097,-2.252199,-2.25226,-2.252305,-2.252363,-2.252399,-2.252439,-2.252438,-2.2525,-2.252547,-2.252611,-2.2527,-2.252767,-2.252833,-2.252925,-2.253005,-2.253078,-2.253098,-2.253178,-2.253261,-2.253339,-2.253428,-2.253489,-2.253583,-2.253629,-2.253701,-2.253794,-2.253856,-2.253933,-2.254033,-2.254018,-2.253946,-2.253896,-2.253845,-2.253794,-2.25377,-2.253756,-2.253728,-2.253684,-2.253639,-2.253611,-2.253543,-2.253453,-2.253312,-2.253212,-2.253145,-2.253111,-2.253118,-2.253145,-2.253166,-2.253222,-2.253303,-2.253358,-2.253422,-2.253433,-2.25343,-2.253444,-2.253463,-2.253485,-2.253485,-2.253481,-2.253471,-2.253516,-2.253572,-2.253611,-2.253646,-2.253701,-2.253733,-2.253771,-2.253815,-2.253853,-2.253885,-2.253923,-2.253906,-2.253944,-2.253972,-2.253965,-2.253947,-2.253931,-2.253913,-2.253883,-2.253849,-2.25383,-2.253772,-2.253733,-2.253702,-2.25366,-2.253634,-2.253604,-2.253621,-2.253653,-2.253664,-2.253678,-2.25367,-2.253642,-2.253615,-2.253617,-2.253505,-2.25335,-2.253196,-2.253065,-2.252958,-2.252817,-2.2527,-2.252578,-2.252446,-2.252286,-2.252132,-2.251977,-2.251825,-2.251665,-2.251514,-2.251369,-2.251217,-2.251048,-2.250885,-2.250738,-2.250574,-2.250422,-2.250281,-2.250129,-2.24998,-2.249842,-2.24969,-2.24954,-2.249369,-2.249206,-2.249042,-2.24887,-2.248711,-2.248572,-2.248435,-2.248306,-2.248187,-2.248047,-2.247898,-2.247781,-2.247675,-2.247547,-2.2474,-2.247252,-2.247089,-2.246935,-2.246781,-2.246615,-2.246444,-2.246283,-2.246132,-2.246127,-2.245976,-2.245988,-2.245828,-2.245671,-2.245624,-2.245454,-2.2453,-2.24522,-2.245213,-2.245176,-2.245254,-2.245297,-2.245232,-2.245202,-2.245104,-2.245007,-2.244884,-2.244761,-2.244702,-2.244598,-2.244448,-2.244283,-2.244129,-2.243979,-2.243821,-2.243682,-2.243565,-2.243449,-2.243327,-2.243216,-2.243116,-2.243029,-2.242948,-2.242829,-2.242733,-2.242636,-2.242487,-2.242353,-2.242208,-2.242058,-2.241899,-2.241742,-2.241567,-2.241398,-2.241242,-2.241089,-2.240937,-2.240804,-2.240683,-2.24057,-2.240493,-2.240431,-2.240369,-2.240292,-2.2402,-2.240093,-2.239948,-2.239827,-2.239721,-2.239597,-2.23949,-2.239368,-2.23925,-2.239109,-2.238981,-2.238848,-2.238704,-2.238555,-2.238411,-2.23826,-2.238107,-2.237956,-2.237809,-2.237655,-2.237515,-2.237381,-2.237234,-2.237094,-2.236958,-2.236818,-2.236694,-2.236554,-2.236424,-2.236294,-2.236174,-2.236056,-2.235933,-2.235816,-2.2357,-2.235573,-2.235442,-2.235318,-2.235195,-2.235071,-2.23494,-2.234805,-2.234665,-2.234534,-2.234407,-2.23428,-2.234149,-2.234027,-2.233917,-2.233809,-2.233679,-2.233553,-2.233439,-2.233325,-2.233209,-2.233091,-2.232981,-2.232882,-2.23278,-2.232658,-2.232545,-2.232439,-2.232324,-2.232208,-2.232085,-2.231974,-2.231957,-2.231795,-2.231683,-2.231563,-2.231449,-2.231344,-2.231252,-2.231156,-2.231036,-2.230944,-2.230848,-2.230766,-2.230722,-2.230618,-2.230522,-2.230428,-2.230349,-2.23028,-2.230163,-2.230096,-2.229994,-2.229907,-2.229806,-2.229693,-2.229617,-2.229535,-2.229435,-2.229337,-2.229249,-2.229176,-2.229105,-2.22903,-2.228955,-2.228886,-2.228813,-2.228715,-2.228604,-2.228473,-2.228347,-2.228194,-2.228031,-2.227858,-2.227688,-2.227522,-2.227358,-2.22719,-2.227035,-2.226865,-2.226695,-2.226554,-2.226387,-2.226239,-2.226095,-2.225949,-2.225803,-2.225735,-2.225638,-2.225508,-2.225389,-2.225314,-2.225168,-2.225056,-2.224913,-2.22481,-2.224673,-2.22455,-2.224439,-2.224315,-2.22419,-2.22409,-2.223998,-2.223872,-2.223755,-2.223736,-2.223569,-2.223421,-2.223334,-2.223214,-2.223066,-2.222952,-2.222816,-2.222725,-2.222587,-2.222454,-2.222384,-2.222269,-2.22211,-2.221998,-2.22189,-2.221758,-2.221617,-2.221497,-2.221358,-2.221217,-2.221082,-2.220984,-2.220845,-2.220708,-2.220592,-2.220449,-2.220338,-2.220191,-2.220076,-2.220018,-2.219898,-2.219777,-2.219613,-2.219478,-2.21931,-2.219157,-2.218997,-2.218839,-2.218688,-2.218539,-2.218396,-2.218289,-2.218126,-2.217962,-2.217817,-2.217675,-2.21754,-2.217399,-2.217259,-2.217132,-2.216981,-2.216851,-2.216693,-2.216553,-2.216408,-2.216262,-2.21611,-2.215966,-2.215835,-2.215698,-2.215545,-2.215385,-2.215244,-2.215086,-2.214929,-2.21477,-2.214624,-2.214478,-2.214319,-2.214227,-2.214104,-2.213962,-2.213818,-2.213666,-2.213505,-2.21334,-2.213175,-2.213022,-2.212864,-2.212705,-2.212546,-2.212386,-2.212228,-2.212066,-2.211915,-2.211764,-2.211609,-2.211459,-2.211298,-2.211145,-2.210992,-2.210843,-2.2107,-2.210568,-2.210406,-2.210262,-2.210107,-2.20996,-2.209797,-2.209641,-2.209497,-2.209334,-2.209182,-2.209025,-2.208868,-2.208714,-2.208559,-2.208394,-2.208233,-2.208074,-2.207914,-2.207755,-2.207599,-2.207443,-2.20733,-2.207193,-2.20721,-2.20705,-2.206927,-2.2068,-2.206675,-2.206523,-2.206367,-2.20622,-2.206071,-2.205912,-2.205784,-2.2058,-2.20589,-2.205969,-2.205968,-2.205912,-2.205832,-2.205707,-2.20556,-2.205394,-2.205229,-2.205065,-2.204913,-2.204752,-2.204585,-2.204428,-2.20429,-2.204206,-2.20409,-2.203981,-2.203874,-2.203763,-2.203721,-2.203627,-2.203586,-2.203581,-2.203574,-2.203585,-2.203555,-2.203515,-2.203401,-2.203297,-2.203193,-2.203028,-2.20287,-2.20272,-2.202618,-2.202555,-2.202507,-2.202435,-2.202352,-2.202211,-2.202057,-2.201898,-2.201752,-2.20165,-2.201552,-2.201394,-2.201244,-2.201136,-2.201042,-2.200935,-2.200817,-2.200718,-2.20059,-2.200451,-2.200313,-2.200151,-2.200024,-2.199959,-2.199901,-2.199804,-2.199701,-2.19961,-2.199513,-2.199426,-2.199337,-2.199223,-2.199102,-2.198973,-2.198872,-2.198745,-2.198627,-2.1985,-2.198389,-2.198246,-2.198091,-2.197963,-2.197832,-2.197707,-2.197594,-2.197466,-2.197327,-2.197188,-2.197026,-2.196872,-2.196716,-2.196576,-2.196473,-2.19634,-2.196221,-2.196089,-2.195964,-2.195822,-2.195669,-2.195518,-2.195412,-2.195261,-2.195112,-2.194967,-2.194833,-2.194699,-2.194524,-2.194368,-2.19421,-2.194041,-2.193911,-2.193804,-2.193692,-2.193585,-2.193484,-2.193485,-2.193488,-2.193479,-2.19344,-2.193417,-2.193405,-2.193371,-2.193294,-2.193217,-2.193135,-2.193116,-2.193101,-2.193073,-2.193044,-2.192989,-2.192939,-2.192944,-2.192853,-2.192698,-2.192555,-2.192429,-2.192303,-2.192186,-2.192043,-2.191891,-2.191766,-2.191648,-2.191489,-2.191351,-2.191188,-2.191058,-2.190945,-2.19083,-2.190733,-2.190608,-2.19048,-2.190384,-2.190322,-2.190287,-2.190253,-2.190173,-2.190121,-2.190049,-2.189975,-2.189923,-2.189828,-2.189694,-2.189602,-2.189515,-2.18942,-2.1893,-2.189148,-2.18908,-2.189009,-2.188996,-2.188915,-2.188968,-2.189063,-2.18911,-2.189069,-2.188962,-2.188821,-2.188699,-2.188601,-2.188512,-2.188424,-2.188373,-2.188363,-2.188373,-2.188403,-2.188431,-2.188419,-2.188382,-2.188398,-2.188478,-2.188534,-2.188599,-2.188632,-2.188659,-2.188731,-2.188706,-2.188696,-2.188687,-2.188707,-2.18878,-2.188797,-2.188821,-2.188825,-2.188815,-2.188872,-2.188869,-2.188891,-2.188959,-2.188954,-2.188929,-2.188889,-2.188862,-2.188843,-2.188812,-2.188769,-2.18872,-2.1887,-2.188734,-2.188783,-2.188839,-2.188889,-2.188926,-2.188959,-2.188957,-2.188895,-2.188758,-2.188634,-2.188571,-2.188555,-2.188549,-2.188551,-2.188524,-2.188489,-2.18846,-2.18844,-2.188413,-2.18843,-2.188464,-2.188536,-2.188621,-2.188607,-2.188636,-2.188696,-2.188778,-2.188816,-2.188832,-2.188837,-2.188938,-2.189077,-2.189203,-2.189333,-2.189442,-2.189546,-2.189662,-2.189788,-2.189833,-2.189873,-2.189918,-2.189948,-2.189983,-2.189983,-2.190031,-2.190128,-2.190232,-2.190316,-2.190356,-2.19044,-2.190419,-2.19044,-2.190395,-2.19043,-2.190388,-2.190268,-2.19017,-2.190073,-2.189982,-2.189861,-2.189734,-2.189596,-2.189487,-2.189376,-2.189267,-2.189157,-2.189055,-2.18895,-2.188794,-2.188638,-2.188465,-2.188299,-2.188137,-2.18797,-2.187813,-2.187662,-2.18749,-2.187342,-2.187182,-2.187032,-2.186873,-2.186713,-2.186557,-2.186398,-2.186254,-2.1861,-2.185937,-2.185793,-2.185659,-2.18553,-2.185372,-2.185236,-2.185113,-2.184981,-2.18484,-2.184719,-2.18458,-2.184441,-2.184296,-2.184174,-2.184056,-2.183926,-2.1838,-2.183676,-2.183554,-2.18341,-2.183283,-2.183135,-2.183002,-2.182867,-2.182741,-2.182615,-2.182469,-2.182308,-2.182162,-2.182019,-2.181875,-2.181797,-2.181627,-2.181499,-2.181364,-2.181237,-2.181096,-2.180968,-2.180848,-2.180713,-2.180578,-2.180473,-2.18035,-2.18021,-2.180097,-2.179999,-2.179901,-2.179796,-2.179737,-2.179703,-2.179629,-2.179531,-2.179415,-2.179325,-2.17921,-2.179074,-2.178962,-2.178838,-2.178743,-2.178699,-2.178689,-2.178709,-2.178632,-2.178496,-2.178339,-2.178229,-2.17812,-2.17809,-2.178107,-2.178118,-2.178118,-2.178121,-2.178138,-2.178157,-2.178169,-2.178173,-2.178185,-2.17821,-2.178227,-2.178222,-2.178231,-2.178246,-2.178254,-2.178273,-2.178267,-2.178271,-2.178277,-2.178281,-2.178296,-2.178317,-2.178302,-2.17829,-2.178299,-2.17835,-2.1784,-2.178429,-2.178414,-2.178415,-2.17842,-2.178397,-2.178263,-2.178113,-2.177976,-2.177863,-2.177778,-2.177702,-2.17761,-2.177516,-2.177434,-2.177389,-2.17731,-2.17722,-2.177154,-2.177074,-2.176988,-2.176922,-2.176842,-2.176827,-2.176816,-2.176812,-2.17687,-2.176933,-2.177036,-2.177112,-2.177125,-2.177186,-2.177138,-2.17698,-2.176823,-2.176675,-2.176515,-2.176363,-2.176222,-2.176069,-2.175922,-2.175768,-2.17563,-2.175569,-2.175623,-2.175702,-2.175786,-2.175846,-2.175895,-2.175982,-2.176075,-2.176144,-2.176214,-2.176275,-2.17634,-2.176366,-2.176411,-2.17645,-2.176516,-2.176543,-2.176613,-2.176645,-2.17667,-2.176664,-2.176642,-2.176613,-2.176617,-2.176611,-2.176585,-2.176541,-2.176537,-2.176461,-2.176377,-2.17631,-2.176263,-2.176192,-2.176141,-2.176069,-2.176067,-2.176103,-2.176017,-2.175925,-2.175817,-2.175745,-2.175663,-2.175596,-2.175505,-2.175412,-2.175308,-2.175215,-2.175117,-2.175005,-2.174898,-2.174811,-2.174738,-2.174682,-2.174657,-2.174649,-2.174664,-2.174803,-2.174906,-2.174986,-2.175062,-2.17516,-2.175227,-2.175305,-2.175324,-2.175278,-2.175275,-2.175267,-2.17525,-2.175224,-2.175182,-2.175197,-2.175196,-2.175168,-2.175163,-2.175111,-2.17508,-2.175066,-2.175051,-2.175022,-2.17499,-2.174961,-2.174952,-2.174954,-2.174934,-2.174921,-2.174904,-2.174898,-2.174919,-2.174948,-2.174968,-2.174998,-2.175036,-2.175058,-2.175055,-2.175088,-2.175124,-2.175149,-2.175146,-2.175078,-2.175036,-2.174992,-2.174968,-2.174927,-2.174877,-2.174862,-2.17485,-2.17479,-2.17471,-2.174622,-2.174531,-2.174427,-2.174321,-2.174219,-2.174115,-2.173998,-2.173884,-2.173767,-2.173637,-2.173505,-2.173375,-2.173254,-2.173183,-2.173085,-2.173032,-2.17297,-2.172897,-2.172841,-2.1728,-2.172791,-2.172771,-2.172731,-2.172741,-2.172736,-2.17273,-2.172712,-2.17268,-2.172637,-2.1726,-2.172554,-2.17249,-2.172419,-2.172341,-2.172267,-2.172189,-2.172148,-2.17213,-2.172142,-2.172126,-2.172155,-2.17213,-2.17204,-2.172026,-2.172038,-2.172072,-2.172226,-2.172226,-2.17206,-2.17195,-2.171982,-2.17208,-2.172159,-2.171979,-2.171818,-2.17167,-2.171547,-2.171394,-2.171444,-2.171275,-2.171151,-2.17103,-2.170878,-2.17074,-2.170625,-2.170492,-2.17035,-2.170245,-2.170121,-2.169983,-2.169838,-2.16968,-2.169537,-2.169396,-2.169227,-2.169105,-2.168964,-2.168818,-2.16867,-2.168508,-2.168335,-2.168174,-2.168041,-2.16789,-2.167735,-2.167567,-2.167398,-2.167247,-2.167111,-2.166935,-2.166858,-2.166703,-2.166579,-2.166426,-2.166257,-2.166082,-2.165941,-2.165784,-2.165834,-2.165696,-2.165538,-2.165361,-2.16528,-2.16516,-2.165,-2.164834,-2.164671,-2.164501,-2.164351,-2.164295,-2.164249,-2.164276,-2.164236,-2.164077,-2.164048,-2.163901,-2.163741,-2.163643,-2.163472,-2.16332,-2.163148,-2.16298,-2.162806,-2.162644,-2.162501,-2.162366,-2.162253,-2.162126,-2.162066,-2.161957,-2.161844,-2.161687,-2.16153,-2.16137,-2.161223,-2.161077,-2.160934,-2.160793,-2.160666,-2.160503,-2.160341,-2.160196,-2.160049,-2.159898,-2.15974,-2.159582,-2.159426,-2.159265,-2.159124,-2.158981,-2.158874,-2.158781,-2.158674,-2.158607,-2.158524,-2.158446,-2.158377,-2.158401,-2.158285,-2.158217,-2.158155,-2.158095,-2.158039,-2.157967,-2.157898,-2.157821,-2.157727,-2.157631,-2.157556,-2.157447,-2.157389,-2.157308,-2.157206,-2.157098,-2.157002,-2.1569,-2.1568,-2.15671,-2.156628,-2.156585,-2.156516,-2.156447,-2.15637,-2.156299,-2.156253,-2.156227,-2.156214,-2.156267,-2.156235,-2.156217,-2.156195,-2.156239,-2.156284,-2.156315,-2.156321,-2.156326,-2.15635,-2.156385,-2.156386,-2.15638,-2.156397,-2.156388,-2.156406,-2.156432,-2.156457,-2.156516,-2.156562,-2.156584,-2.156613,-2.156626,-2.156656,-2.156687,-2.156715,-2.156764,-2.1568,-2.156813,-2.156847,-2.156892,-2.156925,-2.156964,-2.156978,-2.156972,-2.156999,-2.157014,-2.157036,-2.157059,-2.157108,-2.157199,-2.157271,-2.157328,-2.15741,-2.157505,-2.157614,-2.157745,-2.157866,-2.15797,-2.158124,-2.158275,-2.158429,-2.158592,-2.158753,-2.158919,-2.159053,-2.159206,-2.159355,-2.159506,-2.159648,-2.159809,-2.159969,-2.160093,-2.160259,-2.160395,-2.160526,-2.160685,-2.160853,-2.161003,-2.161162,-2.161316,-2.161467,-2.161636,-2.161772,-2.161931,-2.162061,-2.16217,-2.1623,-2.162444,-2.162588,-2.162693,-2.162816,-2.1629,-2.163013,-2.163165,-2.163243,-2.163315,-2.163408,-2.163491,-2.163599,-2.163573,-2.163473,-2.163404,-2.16337,-2.163319,-2.163298,-2.163261,-2.163271,-2.163269,-2.163242,-2.163232,-2.163228,-2.16322,-2.163247,-2.163267,-2.163283,-2.163286,-2.163286,-2.163265,-2.163256,-2.163211,-2.163176,-2.163149,-2.163102,-2.163077,-2.163045,-2.163016,-2.163038,-2.163085,-2.163138,-2.163262,-2.163378,-2.163492,-2.163651,-2.163811,-2.16397,-2.164129,-2.164294,-2.16445,-2.164607,-2.164638,-2.164813,-2.16495,-2.164915,-2.16485,-2.164754,-2.164676,-2.164614,-2.164551,-2.16441,-2.164442,-2.164506,-2.164514,-2.164449,-2.164382,-2.164286,-2.164184,-2.164077,-2.163974,-2.163859,-2.163765,-2.16367,-2.16358,-2.163531,-2.163444,-2.163364,-2.163248,-2.163176,-2.163117,-2.163082,-2.163105,-2.163164,-2.163239,-2.163304,-2.163365,-2.163456,-2.163569,-2.163681,-2.163771,-2.163864,-2.163945,-2.164055,-2.164177,-2.164267,-2.164395,-2.164509,-2.164631,-2.164735,-2.164783,-2.16484,-2.164942,-2.164986,-2.165046,-2.165155,-2.165223,-2.165284,-2.16536,-2.165436,-2.165502,-2.165568,-2.165661,-2.165742,-2.165836,-2.165903,-2.165968,-2.166024,-2.166106,-2.166171,-2.166231,-2.166312,-2.16634,-2.166384,-2.166488,-2.166545,-2.166572,-2.166603,-2.166714,-2.166836,-2.166892,-2.166891,-2.166888,-2.166903,-2.166834,-2.166775,-2.166742,-2.166638,-2.166577,-2.166509,-2.166491,-2.166433,-2.166348,-2.166309,-2.166308,-2.166315,-2.166213,-2.166166,-2.166123,-2.166112,-2.166066,-2.166079,-2.166199,-2.166311,-2.166355,-2.166502,-2.166657,-2.166812,-2.166965,-2.167114,-2.167269,-2.167439,-2.167587,-2.167735,-2.167843,-2.167715,-2.167664,-2.167527,-2.167464,-2.167338,-2.167179,-2.167095,-2.166958,-2.166983,-2.166856,-2.166748,-2.166639,-2.166471,-2.166348,-2.166204,-2.166149,-2.166104,-2.165961,-2.165847,-2.16571,-2.165721,-2.16558,-2.165448,-2.165397,-2.165286,-2.165151,-2.165052,-2.164937,-2.164806,-2.164727,-2.164574,-2.16443,-2.164315,-2.164176,-2.164047,-2.163947,-2.16386,-2.163717,-2.163579,-2.163457,-2.16336,-2.163244,-2.163126,-2.163012,-2.162894,-2.162757,-2.162637,-2.162557,-2.162435,-2.162313,-2.162158,-2.162024,-2.161885,-2.161763,-2.161639,-2.161498,-2.161402,-2.161242,-2.161164,-2.16104,-2.160935,-2.160832,-2.160777,-2.160678,-2.160595,-2.160494,-2.160425,-2.160372,-2.160266,-2.160169,-2.160069,-2.160051,-2.159978,-2.159913,-2.159803,-2.159677,-2.159621,-2.159633,-2.159577,-2.159486,-2.159358,-2.159353,-2.159326,-2.159256,-2.159329,-2.159208,-2.159157,-2.15904,-2.158936,-2.15887,-2.158789,-2.158716,-2.158658,-2.158592,-2.158473,-2.15837,-2.158333,-2.158311,-2.158454,-2.158591,-2.158648,-2.158704,-2.158836,-2.158885,-2.159013,-2.159091,-2.159059,-2.159218,-2.15936,-2.159505,-2.159668,-2.1598,-2.159944,-2.160098,-2.160263,-2.160395,-2.160557,-2.160698,-2.160822,-2.160972,-2.161079,-2.161223,-2.161371,-2.161279,-2.161318,-2.161306,-2.161181,-2.161197,-2.161072,-2.160944,-2.160969,-2.160867,-2.160861,-2.16084,-2.160806,-2.160749,-2.160693,-2.160681,-2.160675,-2.16055,-2.160441,-2.160362,-2.160345,-2.160237,-2.16008,-2.15992,-2.159829,-2.159677,-2.159519,-2.159468,-2.159333,-2.159188,-2.159037,-2.158904,-2.158795,-2.1587,-2.158599,-2.15851,-2.158429,-2.158461,-2.158383,-2.158378,-2.158452,-2.158485,-2.158457,-2.158488,-2.158506,-2.158445,-2.158515,-2.158616,-2.158718,-2.158843,-2.158863,-2.158923,-2.158887,-2.158844,-2.158887,-2.158898,-2.158882,-2.158876,-2.158927,-2.158915,-2.158948,-2.158991,-2.159056,-2.15913,-2.159124,-2.159181,-2.159198,-2.159207,-2.159203,-2.159191,-2.159164,-2.159129,-2.159098,-2.159064,-2.159123,-2.159113,-2.159129,-2.159122,-2.159075,-2.159055,-2.159019,-2.159015,-2.159041,-2.159063,-2.15902,-2.159056,-2.159135,-2.159084,-2.158947,-2.15884,-2.158749,-2.158634,-2.15856,-2.158518,-2.158408,-2.158277,-2.158146,-2.158009,-2.15786,-2.157712,-2.15762,-2.157522,-2.157395,-2.157256,-2.157113,-2.156997,-2.156852,-2.15671,-2.15659,-2.156454,-2.156292,-2.156149,-2.156054,-2.155987,-2.156063,-2.156043,-2.155909,-2.1558,-2.155684,-2.155525,-2.15535,-2.155181,-2.155032,-2.154882,-2.154828,-2.154773,-2.154772,-2.154817,-2.154704,-2.154555,-2.154476,-2.154396,-2.154313,-2.154206,-2.154175,-2.154069,-2.153967,-2.153847,-2.153824,-2.1538,-2.153691,-2.153738,-2.153663,-2.153664,-2.153683,-2.153603,-2.153587,-2.153595,-2.153499,-2.153482,-2.153384,-2.153365,-2.153321,-2.153213,-2.15326,-2.153248,-2.153137,-2.153004,-2.152857,-2.152681,-2.152584,-2.152476,-2.152425,-2.152518,-2.152339,-2.152266,-2.152512,-2.152575,-2.152531,-2.15277,-2.152612,-2.152618,-2.152601,-2.152573,-2.152689,-2.152699,-2.152614,-2.152509,-2.152409,-2.152435,-2.15246,-2.152551,-2.152578,-2.152702,-2.152735,-2.152756,-2.152686,-2.152598,-2.152622,-2.152665,-2.152813,-2.152853,-2.152842,-2.152795,-2.15263,-2.152609,-2.152612,-2.152618,-2.152632,-2.152611,-2.152579,-2.152568,-2.152524,-2.152523,-2.152529,-2.15249,-2.152474,-2.152433,-2.152421,-2.152385,-2.152328,-2.152267,-2.152181,-2.152077,-2.151978,-2.151897,-2.151829,-2.151736,-2.151657,-2.151595,-2.151522,-2.151461,-2.15143,-2.151387,-2.151346,-2.151277,-2.151228,-2.15116,-2.151111,-2.151048,-2.150972,-2.150925,-2.150898,-2.150857,-2.150874,-2.150825,-2.15076,-2.150732,-2.150693,-2.150641,-2.15057,-2.150552,-2.150521,-2.150484,-2.150457,-2.150423,-2.1504,-2.15039,-2.150377,-2.150329,-2.150287,-2.150214,-2.150164,-2.150123,-2.150076,-2.149999,-2.14996,-2.149942,-2.149976,-2.150018,-2.149957,-2.149869,-2.149844,-2.14982,-2.149812,-2.149815,-2.149747,-2.149671,-2.149691,-2.149697,-2.149769,-2.149742,-2.149688,-2.149586,-2.149509,-2.149428,-2.14941,-2.149477,-2.149499,-2.149653,-2.149805,-2.14997,-2.150135,-2.150276,-2.150408,-2.150516,-2.150545,-2.150635,-2.150687,-2.15078,-2.150818,-2.150877,-2.150949,-2.150982,-2.151024,-2.151091,-2.151165,-2.151243,-2.151333,-2.151417,-2.15149,-2.151573,-2.151631,-2.151719,-2.15185,-2.151968,-2.152017,-2.152138,-2.152251,-2.152375,-2.152518,-2.152623,-2.152736,-2.152828,-2.152824,-2.15277,-2.152732,-2.152705,-2.152672,-2.15262,-2.152583,-2.152548,-2.152493,-2.152449,-2.152394,-2.152317,-2.15223,-2.152147,-2.152095,-2.152052,-2.151979,-2.151876,-2.15177,-2.151677,-2.151638,-2.151588,-2.15154,-2.151513,-2.151486,-2.151534,-2.151521,-2.151617,-2.151702,-2.151651,-2.151594,-2.151605,-2.151612,-2.151615,-2.151601,-2.151559,-2.151555,-2.151609,-2.151758,-2.151888,-2.15203,-2.152155,-2.152285,-2.152399,-2.152509,-2.152631,-2.152731,-2.152849,-2.152977,-2.153126,-2.153264,-2.153427,-2.153575,-2.153733,-2.153824,-2.153964,-2.154088,-2.154202,-2.154263,-2.154347,-2.154415,-2.154366,-2.15433,-2.154322,-2.154316,-2.154303,-2.15425,-2.154206,-2.154185,-2.154159,-2.154181,-2.154144,-2.15409,-2.154085,-2.154063,-2.154018,-2.153986,-2.153933,-2.153902,-2.153873,-2.153871,-2.153871,-2.153922,-2.153941,-2.153941,-2.153936,-2.153935,-2.153943,-2.153947,-2.153953,-2.153925,-2.15393,-2.153932,-2.153913,-2.15384,-2.153773,-2.153709,-2.153665,-2.153532,-2.153408,-2.153282,-2.153167,-2.153044,-2.152943,-2.152836,-2.152743,-2.152631,-2.152496,-2.152383,-2.15224,-2.152158,-2.152081,-2.152018,-2.151999,-2.151955,-2.151902,-2.151817,-2.151748,-2.151699,-2.151738,-2.151728,-2.151785,-2.151743,-2.151747,-2.151761,-2.151783,-2.1518,-2.151874,-2.151886,-2.151982,-2.15207,-2.152162,-2.152245,-2.152236,-2.152228,-2.152167,-2.15209,-2.152066,-2.152006,-2.151951,-2.151879,-2.151897,-2.151894,-2.151763,-2.15171,-2.151756,-2.151851,-2.151938,-2.151921,-2.151873,-2.151844,-2.151818,-2.15182,-2.151824,-2.151846,-2.151925,-2.15201,-2.152119,-2.152245,-2.152293,-2.152328,-2.152381,-2.152354,-2.152319,-2.152254,-2.152235,-2.152212,-2.152159,-2.152169,-2.15219,-2.152246,-2.152296,-2.152273,-2.152266,-2.152236,-2.152196,-2.152151,-2.15209,-2.152013,-2.151939,-2.151873,-2.151803,-2.151766,-2.1517,-2.151648,-2.151626,-2.151602,-2.151581,-2.151559,-2.151524,-2.151503,-2.151483,-2.151452,-2.151466,-2.151456,-2.151431,-2.151396,-2.15137,-2.151346,-2.151309,-2.1513,-2.151274,-2.151148,-2.151027,-2.150877,-2.150766,-2.150663,-2.150558,-2.150465,-2.150351,-2.150247,-2.150137,-2.150003,-2.149878,-2.149758,-2.149647,-2.14961,-2.14952,-2.149386,-2.149261,-2.149175,-2.149085,-2.149065,-2.149066,-2.149018,-2.149016,-2.148991,-2.148947,-2.148897,-2.148868,-2.148826,-2.14878,-2.148754,-2.148707,-2.148651,-2.148589,-2.148501,-2.148423,-2.148348,-2.148263,-2.148183,-2.148138,-2.148155,-2.148174,-2.148179,-2.148224,-2.148281,-2.148349,-2.148336,-2.148323,-2.148298,-2.148314,-2.148319,-2.148313,-2.148276,-2.148259,-2.148196,-2.148119,-2.148088,-2.148006,-2.147894,-2.147753,-2.147811,-2.147808,-2.147785,-2.147732,-2.147674,-2.14763,-2.147626,-2.147565,-2.147517,-2.147492,-2.147434,-2.147455,-2.147377,-2.147334,-2.147343,-2.147332,-2.147308,-2.147256,-2.147193,-2.147219,-2.14723,-2.147179,-2.147178,-2.147282,-2.147335,-2.14735,-2.14738,-2.147422,-2.147432,-2.147421,-2.147413,-2.147377,-2.147367,-2.14729,-2.147232,-2.147205,-2.147162,-2.14708,-2.147044,-2.146983,-2.146913,-2.14683,-2.146724,-2.146637,-2.146539,-2.146457,-2.146376,-2.146271,-2.146187,-2.146084,-2.145986,-2.145858,-2.145788,-2.145667,-2.145604,-2.145581,-2.145605,-2.145617,-2.145609,-2.145597,-2.145557,-2.145552,-2.145521,-2.145395,-2.145297,-2.145185,-2.145063,-2.144956,-2.144831,-2.144726,-2.144615,-2.144488,-2.144376,-2.144252,-2.144112,-2.143992,-2.143862,-2.143728,-2.143582,-2.143466,-2.143351,-2.143232,-2.143164,-2.143072,-2.14295,-2.142951,-2.142867,-2.142868,-2.142835,-2.142827,-2.142796,-2.142776,-2.142793,-2.142776,-2.142845,-2.142877,-2.142876,-2.142885,-2.142894,-2.142904,-2.142891,-2.142917,-2.143004,-2.143071,-2.143037,-2.142992,-2.142952,-2.142898,-2.14286,-2.142843,-2.14283,-2.142784,-2.142752,-2.142745,-2.142723,-2.142646,-2.142541,-2.142443,-2.142368,-2.142528,-2.142693,-2.142849,-2.143006,-2.143165,-2.143325,-2.143494,-2.143531,-2.143438,-2.143409,-2.14335,-2.143393,-2.14337,-2.14333,-2.143248,-2.143129,-2.143027,-2.143001,-2.142907,-2.142777,-2.142685,-2.142527,-2.142379,-2.142223,-2.142063,-2.141905,-2.141754,-2.14159,-2.141481,-2.141362,-2.141218,-2.141072,-2.140946,-2.140827,-2.140721,-2.140635,-2.140533,-2.140408,-2.140332,-2.140316,-2.140373,-2.140512,-2.140409,-2.140253,-2.140085,-2.139917,-2.139771,-2.139674,-2.139548,-2.139455,-2.139315,-2.139207,-2.139048,-2.138925,-2.138851,-2.138741,-2.138681,-2.13864,-2.138558,-2.138545,-2.13852,-2.138492,-2.138461,-2.138457,-2.138394,-2.138357,-2.138327,-2.138306,-2.138275,-2.138265,-2.138246,-2.138192,-2.138113,-2.138108,-2.138146,-2.138261,-2.138368,-2.138435,-2.138407,-2.138242,-2.138094,-2.137937,-2.137787,-2.137631,-2.137492,-2.137484,-2.137328,-2.13718,-2.137023,-2.136874,-2.136733,-2.136585,-2.136475,-2.1364,-2.136318,-2.136295,-2.136297,-2.136252,-2.136183,-2.13606,-2.135984,-2.135897,-2.135808,-2.135704,-2.135593,-2.135508,-2.135394,-2.135309,-2.135199,-2.135078,-2.134959,-2.134856,-2.134777,-2.13469,-2.134602,-2.134503,-2.134424,-2.134325,-2.134264,-2.134178,-2.134137,-2.134047,-2.133961,-2.133894,-2.133803,-2.133717,-2.133636,-2.133545,-2.133473,-2.133416,-2.133358,-2.133285,-2.133185,-2.133096,-2.133022,-2.13297,-2.132879,-2.132754,-2.132661,-2.132579,-2.132487,-2.132394,-2.132286,-2.132196,-2.132108,-2.132018,-2.131928,-2.131846,-2.131903,-2.132005,-2.13188,-2.131743,-2.131658,-2.131557,-2.131456,-2.131363,-2.131268,-2.13118,-2.131078,-2.130986,-2.130892,-2.1308,-2.130715,-2.130654,-2.13058,-2.130524,-2.130502,-2.130449,-2.130439,-2.130388,-2.130356,-2.130303,-2.13029,-2.130248,-2.130245,-2.130313,-2.130333,-2.130359,-2.130361,-2.130346,-2.130338,-2.130307,-2.130245,-2.130196,-2.130142,-2.130061,-2.13001,-2.129961,-2.129924,-2.129906,-2.129864,-2.1298,-2.129741,-2.129671,-2.129617,-2.129564,-2.129513,-2.12946,-2.129429,-2.129381,-2.129334,-2.129255,-2.129208,-2.129179,-2.129154,-2.129104,-2.129059,-2.129005,-2.12896,-2.128918,-2.128885,-2.128857,-2.128823,-2.128775,-2.128744,-2.128705,-2.12866,-2.128602,-2.128554,-2.128493,-2.128416,-2.12836,-2.128334,-2.128233,-2.128225,-2.12817,-2.128076,-2.127941,-2.127821,-2.127697,-2.127584,-2.127475,-2.127351,-2.127237,-2.127123,-2.127001,-2.12689,-2.126772,-2.126647,-2.126522,-2.126399,-2.126274,-2.126161,-2.126051,-2.125924,-2.12582,-2.125715,-2.125593,-2.125482,-2.125399,-2.125353,-2.125266,-2.125202,-2.125155,-2.125089,-2.125025,-2.124979,-2.124894,-2.124839,-2.124743,-2.124677,-2.124627,-2.12454,-2.124457,-2.124377,-2.1243,-2.124216,-2.124147,-2.124094,-2.124018,-2.124006,-2.123942,-2.123911,-2.12389,-2.123873,-2.123866,-2.123854,-2.123863,-2.12382,-2.123801,-2.123783,-2.123771,-2.123763,-2.123737,-2.123757,-2.12373,-2.123679,-2.123662,-2.123659,-2.123665,-2.123643,-2.123612,-2.123604,-2.123596,-2.123572,-2.12353,-2.123439,-2.123338,-2.123244,-2.12315,-2.123055,-2.122951,-2.122841,-2.122726,-2.122604,-2.122492,-2.122384,-2.122271,-2.122123,-2.121969,-2.121832,-2.121718,-2.121601,-2.121489,-2.121387,-2.121276,-2.121183,-2.121088,-2.120986,-2.120883,-2.120785,-2.120693,-2.120565,-2.120427,-2.120321,-2.120213,-2.120099,-2.119997,-2.119911,-2.119776,-2.119655,-2.119539,-2.119421,-2.119301,-2.119182,-2.119056,-2.118944,-2.118846,-2.118762,-2.118714,-2.118693,-2.118676,-2.118651,-2.118597,-2.118523,-2.11847,-2.118455,-2.118368,-2.118329,-2.118238,-2.118158,-2.118085,-2.117997,-2.117938,-2.117896,-2.117833,-2.117767,-2.117653,-2.117627,-2.11758,-2.117503,-2.117407,-2.117321,-2.117231,-2.117156,-2.117061,-2.116995,-2.116923,-2.116843,-2.116774,-2.116709,-2.11663,-2.11654,-2.116459,-2.116351,-2.116195,-2.116209,-2.11632,-2.116212,-2.116095,-2.116065,-2.115932,-2.115805,-2.115669,-2.115577,-2.115429,-2.115343,-2.115222,-2.115146,-2.115044,-2.114981,-2.114824,-2.114672,-2.114644,-2.114519,-2.11437,-2.114261,-2.114203,-2.114077,-2.113951,-2.113848,-2.113738,-2.113628,-2.1135,-2.113394,-2.113284,-2.113185,-2.113085,-2.11297,-2.112825,-2.112721,-2.112623,-2.112511,-2.112383,-2.11226,-2.112144,-2.112002,-2.111846,-2.111739,-2.111567,-2.111409,-2.111242,-2.111088,-2.110931,-2.110763,-2.110609,-2.110456,-2.110291,-2.11013,-2.109965,-2.109801,-2.109644,-2.109468,-2.10933,-2.109223,-2.109085,-2.108935,-2.108822,-2.10872,-2.108619,-2.108518,-2.108434,-2.10832,-2.108231,-2.108152,-2.108077,-2.108013,-2.107942,-2.107856,-2.107753,-2.107679,-2.107576,-2.107476,-2.107408,-2.10734,-2.107313,-2.107261,-2.107202,-2.107152,-2.107089,-2.10702,-2.106918,-2.106818,-2.106711,-2.106592,-2.106496,-2.106515,-2.106386,-2.106299,-2.106223,-2.106112,-2.106009,-2.105928,-2.105841,-2.105776,-2.105712,-2.105666,-2.105519,-2.105514,-2.105348,-2.105184,-2.10502,-2.10487,-2.104711,-2.104562,-2.104408,-2.104254,-2.104088,-2.103922,-2.103766,-2.103666,-2.103552,-2.103467,-2.103529,-2.103626,-2.103691,-2.103784,-2.103862,-2.103969,-2.104075,-2.104207,-2.104242,-2.104305,-2.104295,-2.104646,-2.104484,-2.104383,-2.104325,-2.104248,-2.104225,-2.104137,-2.104077,-2.104056,-2.103937,-2.10382,-2.103741,-2.103667,-2.103528,-2.103366,-2.103206,-2.103046,-2.102873,-2.102713,-2.102551,-2.102397,-2.102245,-2.102084,-2.101934,-2.101767,-2.101641,-2.101492,-2.101325,-2.101172,-2.101033,-2.100991,-2.101069,-2.101161,-2.1012,-2.101243,-2.101279,-2.101313,-2.10134,-2.101385,-2.101426,-2.101461,-2.101493,-2.101526,-2.101577,-2.101602,-2.101659,-2.101704,-2.10175,-2.101802,-2.101841,-2.101875,-2.101931,-2.101987,-2.102029,-2.102032,-2.102005,-2.102035,-2.101997,-2.101931,-2.101856,-2.101775,-2.101723,-2.101642,-2.10147,-2.101322,-2.10128,-2.101339,-2.101415,-2.101326,-2.101284,-2.101319,-2.101372,-2.101465,-2.101626,-2.101793,-2.101948,-2.102054,-2.101892,-2.101711,-2.101557,-2.101382,-2.101256,-2.10114,-2.101049,-2.100887,-2.100959,-2.101071,-2.101072,-2.101159,-2.101305,-2.101422,-2.101564,-2.101725,-2.10188,-2.102003,-2.101838,-2.101926,-2.102013,-2.101996,-2.10197,-2.101983,-2.102041,-2.101889,-2.10173,-2.101571,-2.101711,-2.101885,-2.101986,-2.101979,-2.101932,-2.10189,-2.101815,-2.101864,-2.101991,-2.102145,-2.102268,-2.102422,-2.102581,-2.102722,-2.102824,-2.102949,-2.103095,-2.103264,-2.103419,-2.103575,-2.103746,-2.103899,-2.104056,-2.104211,-2.104373,-2.104514,-2.104638,-2.104743,-2.104891,-2.105047,-2.10519,-2.105342,-2.105485,-2.10563,-2.105768,-2.105904,-2.106029,-2.106166,-2.106316,-2.106324,-2.10626,-2.106164,-2.106067,-2.105967,-2.105877,-2.105806,-2.105768,-2.105675,-2.105529,-2.105379,-2.105214,-2.105061,-2.104913,-2.104759,-2.104623,-2.10446,-2.10432,-2.10416,-2.104005,-2.10385,-2.103708,-2.10368,-2.103653,-2.103546,-2.103659,-2.103772,-2.103769,-2.10391,-2.103993,-2.104057,-2.10407,-2.104148,-2.104141,-2.103951,-2.104059,-2.104174,-2.104228,-2.104207,-2.10426,-2.10424,-2.104206,-2.104128,-2.104039,-2.103946,-2.103821,-2.103691,-2.103638,-2.10365,-2.103685,-2.103698,-2.103623,-2.103564,-2.103557,-2.103548,-2.10355,-2.103583,-2.103454,-2.10331,-2.10329,-2.103363,-2.103423,-2.103452,-2.103432,-2.103387,-2.103337,-2.103293,-2.103293,-2.103192,-2.103144,-2.103062,-2.103017,-2.10299,-2.102912,-2.10289,-2.102747,-2.102588,-2.102432,-2.102272,-2.102248,-2.102091,-2.101982,-2.101965,-2.101837,-2.101707,-2.101554,-2.101406,-2.101351,-2.101459,-2.101579,-2.101723,-2.101714,-2.101818,-2.101805,-2.101905,-2.10196,-2.101991,-2.101867,-2.101732,-2.101584,-2.10144,-2.101375,-2.101304,-2.101296,-2.101346,-2.10135,-2.101311,-2.101308,-2.10122,-2.101221,-2.101325,-2.101359,-2.101335,-2.101271,-2.101324,-2.101424,-2.101555,-2.101726,-2.101876,-2.101978,-2.10181,-2.101659,-2.101514,-2.101366,-2.101327,-2.101345],"lat":[54.144514,54.144603,54.144509,54.144499,54.144417,54.144342,54.144349,54.144347,54.144413,54.144507,54.144605,54.144696,54.144789,54.14488,54.144975,54.145073,54.145167,54.145241,54.145329,54.145416,54.145513,54.145602,54.145695,54.145791,54.145887,54.145983,54.146063,54.146163,54.146256,54.146352,54.146442,54.146539,54.146633,54.146718,54.14681,54.146909,54.146998,54.147074,54.147156,54.14724,54.147324,54.147388,54.147437,54.147484,54.147507,54.147563,54.147622,54.147669,54.14771,54.147759,54.147773,54.14774,54.147749,54.147741,54.147732,54.147738,54.147755,54.147789,54.147821,54.147818,54.147876,54.147952,54.147985,54.148078,54.148144,54.148226,54.148308,54.148366,54.148398,54.148397,54.1484,54.14846,54.148454,54.148415,54.148451,54.148459,54.148476,54.148458,54.148444,54.148479,54.148495,54.148478,54.148404,54.148337,54.148273,54.148225,54.148141,54.148157,54.148202,54.148266,54.148333,54.148387,54.148415,54.148496,54.148581,54.148666,54.148745,54.148818,54.148888,54.148975,54.149057,54.149135,54.149224,54.149316,54.14939,54.149474,54.149542,54.149617,54.149703,54.149798,54.149886,54.149979,54.150072,54.150172,54.150268,54.150361,54.150451,54.150538,54.150624,54.150706,54.150803,54.150895,54.150987,54.151079,54.151175,54.15126,54.151346,54.151428,54.151517,54.151611,54.151703,54.151796,54.15189,54.151979,54.152062,54.152162,54.152247,54.152344,54.152435,54.152523,54.152614,54.1527,54.152763,54.152812,54.152896,54.152923,54.152961,54.153052,54.153083,54.15317,54.153251,54.153248,54.153317,54.15339,54.153478,54.153562,54.153651,54.153712,54.153793,54.153874,54.153957,54.154037,54.154116,54.1542,54.154284,54.154366,54.154446,54.15453,54.154614,54.154707,54.1548,54.154869,54.154954,54.15505,54.155127,54.155205,54.155296,54.155385,54.155474,54.155574,54.155664,54.155751,54.155842,54.155924,54.156011,54.156108,54.156198,54.156288,54.156365,54.156452,54.156537,54.15663,54.15672,54.156804,54.156901,54.156987,54.157083,54.157178,54.157272,54.157372,54.15747,54.157562,54.157652,54.157746,54.157829,54.157915,54.158008,54.158098,54.158122,54.158189,54.158277,54.158365,54.158443,54.158511,54.158585,54.158648,54.158711,54.158777,54.158823,54.158898,54.15899,54.159083,54.159175,54.159271,54.159362,54.15942,54.159476,54.159533,54.159572,54.159656,54.159738,54.159804,54.159869,54.159958,54.160051,54.160141,54.16021,54.160284,54.160374,54.160458,54.160553,54.160643,54.160744,54.160839,54.160929,54.161024,54.161111,54.161191,54.161285,54.16137,54.161456,54.161544,54.161646,54.161734,54.161812,54.161893,54.16198,54.16206,54.16215,54.162243,54.162308,54.162351,54.162444,54.162535,54.162622,54.162703,54.162793,54.162877,54.162965,54.163049,54.163136,54.163217,54.1633,54.163378,54.163466,54.163555,54.163641,54.163723,54.163735,54.163655,54.163586,54.163547,54.163547,54.163584,54.163642,54.163694,54.163751,54.163835,54.16392,54.163999,54.164051,54.164058,54.164012,54.163959,54.163972,54.163954,54.163871,54.163816,54.163777,54.163693,54.16362,54.163551,54.163473,54.163397,54.163327,54.163247,54.163167,54.163078,54.163,54.162926,54.162859,54.162813,54.162774,54.162752,54.162727,54.162701,54.162656,54.162602,54.162563,54.162532,54.162496,54.162457,54.16242,54.162382,54.162358,54.162329,54.162304,54.162266,54.16225,54.162235,54.162222,54.162207,54.162184,54.162167,54.162175,54.162164,54.162142,54.162124,54.162125,54.162125,54.162122,54.162113,54.162106,54.16204,54.16198,54.161951,54.161993,54.162032,54.162081,54.162149,54.162199,54.162216,54.162171,54.162112,54.162102,54.162116,54.162127,54.162127,54.162121,54.162131,54.162149,54.162145,54.162131,54.162145,54.162135,54.162133,54.162148,54.162108,54.162114,54.162101,54.162091,54.162099,54.162099,54.162096,54.162101,54.162126,54.162134,54.162114,54.162122,54.162129,54.162127,54.162122,54.162118,54.162139,54.162118,54.162079,54.162027,54.161993,54.161959,54.162031,54.162098,54.162137,54.162176,54.162224,54.162245,54.162249,54.162266,54.162294,54.162323,54.162354,54.162351,54.16235,54.162364,54.162411,54.162421,54.162417,54.16246,54.162494,54.162482,54.162469,54.162487,54.162522,54.162532,54.162574,54.162649,54.162694,54.162719,54.162706,54.162657,54.162707,54.162713,54.162736,54.162719,54.162716,54.162779,54.162817,54.162813,54.162832,54.162855,54.162884,54.162916,54.162952,54.162996,54.162998,54.163018,54.163038,54.163066,54.163114,54.163181,54.16315,54.163156,54.163206,54.16327,54.163354,54.16344,54.163523,54.163527,54.163437,54.163339,54.163246,54.163155,54.163071,54.16298,54.162884,54.162819,54.162724,54.162634,54.162548,54.162527,54.162426,54.162333,54.162244,54.162154,54.162094,54.162006,54.161911,54.161816,54.161721,54.161629,54.161531,54.161441,54.161346,54.161251,54.161161,54.161069,54.160976,54.160883,54.160791,54.160696,54.160605,54.160532,54.160437,54.160345,54.160257,54.160162,54.160069,54.160031,54.159944,54.159851,54.15976,54.159677,54.159599,54.15952,54.159433,54.159344,54.159262,54.159177,54.159087,54.15899,54.1589,54.158818,54.158747,54.158649,54.158562,54.158472,54.158378,54.158294,54.158215,54.158144,54.158068,54.158004,54.157955,54.157869,54.157783,54.157706,54.157649,54.157556,54.157477,54.157399,54.157354,54.157265,54.157192,54.157154,54.157094,54.15702,54.156957,54.156873,54.156783,54.156693,54.156604,54.156513,54.156417,54.156326,54.156253,54.156156,54.156058,54.156004,54.156049,54.156023,54.155926,54.155854,54.15578,54.155715,54.155639,54.155556,54.155466,54.155376,54.155285,54.155206,54.15513,54.155064,54.154985,54.154905,54.15483,54.15475,54.15466,54.154569,54.154493,54.154414,54.154353,54.154256,54.154169,54.154075,54.153977,54.153891,54.153805,54.153716,54.153618,54.153525,54.153433,54.15334,54.153243,54.153161,54.153074,54.153089,54.152999,54.152946,54.152866,54.152791,54.152739,54.152668,54.152615,54.152536,54.15244,54.152369,54.15228,54.152186,54.1521,54.152018,54.151967,54.151911,54.151831,54.151748,54.151732,54.151728,54.151679,54.151595,54.151564,54.151501,54.151444,54.151383,54.151309,54.151228,54.151135,54.151042,54.15095,54.150853,54.150755,54.150683,54.15059,54.150499,54.150399,54.150299,54.15021,54.150211,54.150123,54.150028,54.149943,54.149863,54.149775,54.149688,54.149603,54.149525,54.149441,54.14943,54.149346,54.149267,54.149183,54.149096,54.148995,54.148894,54.148804,54.148718,54.148638,54.148549,54.148457,54.148388,54.148327,54.148237,54.148145,54.148053,54.147958,54.147867,54.147771,54.147671,54.147585,54.147487,54.147392,54.147304,54.147227,54.147166,54.147087,54.147004,54.146907,54.146816,54.146717,54.146626,54.146537,54.146458,54.146362,54.146273,54.14618,54.146088,54.145997,54.145904,54.14581,54.145719,54.145616,54.145523,54.145429,54.145338,54.145241,54.145141,54.145045,54.144954,54.144863,54.14477,54.144678,54.144588,54.144495,54.144501,54.144407,54.144313,54.14421,54.144113,54.144011,54.143919,54.143829,54.143739,54.143647,54.143554,54.143466,54.143373,54.143283,54.143193,54.143105,54.143012,54.142913,54.142823,54.142731,54.142629,54.142533,54.142437,54.142437,54.14237,54.142352,54.142331,54.14228,54.142224,54.142166,54.142099,54.142032,54.141972,54.141945,54.141936,54.141932,54.141903,54.14187,54.141841,54.141802,54.141775,54.141749,54.141719,54.141686,54.141655,54.141615,54.141578,54.141535,54.141491,54.141451,54.141414,54.141394,54.141401,54.141409,54.141419,54.141432,54.141409,54.141348,54.141302,54.141237,54.141176,54.14112,54.141066,54.141008,54.140939,54.140872,54.140818,54.140787,54.140771,54.140763,54.140763,54.14075,54.140737,54.14074,54.140725,54.140724,54.140687,54.140675,54.140659,54.14066,54.14068,54.140662,54.140621,54.140539,54.140441,54.140348,54.140266,54.140171,54.140086,54.139993,54.139909,54.139839,54.139774,54.139715,54.139619,54.139552,54.139524,54.139507,54.139482,54.139459,54.139434,54.139375,54.139301,54.139233,54.139165,54.1391,54.139012,54.138922,54.138843,54.13878,54.138698,54.138619,54.138656,54.1387,54.138753,54.138783,54.138815,54.138814,54.138819,54.138822,54.138846,54.138853,54.138878,54.138926,54.138995,54.139078,54.139157,54.139251,54.139342,54.139435,54.139509,54.139578,54.139637,54.139697,54.139764,54.139836,54.139905,54.13996,54.14003,54.140083,54.140144,54.140201,54.140253,54.140305,54.140352,54.140402,54.140449,54.140489,54.140535,54.140577,54.140618,54.14067,54.140717,54.140771,54.14082,54.140876,54.140929,54.140986,54.141055,54.141125,54.141188,54.141253,54.14131,54.141372,54.141444,54.141503,54.141563,54.141632,54.141699,54.141766,54.141819,54.141878,54.141939,54.141993,54.142045,54.142114,54.142168,54.142227,54.142296,54.142363,54.142424,54.142493,54.142559,54.142624,54.142686,54.142746,54.14281,54.142892,54.142968,54.143041,54.14311,54.143176,54.14324,54.143308,54.143383,54.143453,54.143504,54.143534,54.143596,54.143658,54.143724,54.143802,54.143889,54.14396,54.144021,54.144103,54.144176,54.144263,54.144355,54.14443,54.144505,54.144584,54.144674,54.144755,54.144814,54.144908,54.144984,54.145061,54.145139,54.145214,54.145298,54.145382,54.145459,54.145541,54.145625,54.145712,54.1458,54.14589,54.145971,54.14606,54.146144,54.146215,54.146294,54.146362,54.14642,54.146453,54.146474,54.146477,54.146479,54.146489,54.146492,54.146496,54.146493,54.146491,54.146518,54.146571,54.146575,54.146543,54.146504,54.146466,54.146437,54.146349,54.146277,54.146227,54.14616,54.146081,54.146034,54.145972,54.145921,54.145852,54.145796,54.145735,54.145672,54.145612,54.14555,54.145476,54.145397,54.145329,54.145261,54.145189,54.145195,54.145164,54.145089,54.14503,54.144991,54.144927,54.144873,54.144794,54.14474,54.144682,54.144589,54.144527,54.14453,54.144463,54.144394,54.144343,54.144294,54.14423,54.144185,54.144157,54.144101,54.144029,54.143981,54.14396,54.143897,54.143861,54.143799,54.143755,54.143695,54.143625,54.143562,54.143503,54.143508,54.143464,54.14345,54.143426,54.1434,54.143394,54.143367,54.143327,54.143289,54.143269,54.143275,54.143301,54.143332,54.143382,54.143429,54.143465,54.143514,54.143578,54.143621,54.143675,54.143691,54.143739,54.143782,54.143815,54.14384,54.14388,54.143928,54.143975,54.144016,54.144043,54.144088,54.144107,54.144123,54.144134,54.144173,54.144139,54.14413,54.144151,54.144211,54.14426,54.144307,54.144328,54.144342,54.144335,54.144349,54.144338,54.14432,54.144328,54.144311,54.144303,54.144317,54.144309,54.144291,54.144265,54.144262,54.144288,54.144309,54.144341,54.144364,54.14439,54.144432,54.144488,54.144514,54.144545,54.144548,54.144578,54.144587,54.144601,54.144649,54.144667,54.144693,54.144662,54.14468,54.144691,54.144705,54.144717,54.144727,54.144722,54.144739,54.144741,54.144763,54.144762,54.144721,54.14468,54.144676,54.144669,54.144724,54.144785,54.144838,54.144872,54.144894,54.144853,54.144813,54.14481,54.144754,54.144661,54.144587,54.144509,54.144413,54.144322,54.144234,54.144171,54.14412,54.144118,54.144095,54.144098,54.144112,54.144111,54.144117,54.144097,54.144045,54.143964,54.143895,54.143829,54.143754,54.143705,54.143616,54.143543,54.143446,54.143348,54.143253,54.143152,54.143051,54.142954,54.142891,54.142811,54.142744,54.14271,54.142695,54.142644,54.142577,54.142485,54.142391,54.142309,54.142232,54.142185,54.142147,54.142111,54.142061,54.141987,54.141915,54.141888,54.141841,54.141764,54.141686,54.141621,54.141553,54.14148,54.141423,54.141374,54.141317,54.141282,54.141222,54.141135,54.141049,54.140964,54.140894,54.140815,54.140742,54.14066,54.140584,54.140521,54.140466,54.140395,54.140315,54.140248,54.140186,54.140119,54.140047,54.139988,54.139943,54.139882,54.139825,54.139756,54.139689,54.139628,54.139582,54.139534,54.139497,54.139467,54.139427,54.13937,54.139303,54.139239,54.13918,54.139117,54.139057,54.139021,54.138991,54.138942,54.138875,54.138837,54.138792,54.138743,54.138695,54.138649,54.138645,54.138638,54.138615,54.138602,54.138538,54.138474,54.138399,54.138331,54.138259,54.138165,54.138066,54.137975,54.137876,54.137784,54.137685,54.137592,54.137507,54.137425,54.137346,54.137253,54.137162,54.137066,54.136965,54.136868,54.13678,54.136712,54.136633,54.136596,54.136542,54.136476,54.136417,54.136358,54.136308,54.13633,54.136388,54.136452,54.136447,54.136407,54.136402,54.136346,54.136283,54.136209,54.136131,54.136066,54.136007,54.135935,54.135838,54.135738,54.135642,54.135554,54.135469,54.135377,54.135295,54.135206,54.135128,54.135075,54.134996,54.134922,54.134848,54.134789,54.134736,54.134647,54.134564,54.134468,54.134386,54.134299,54.134226,54.134134,54.134037,54.133961,54.133902,54.133843,54.133768,54.133686,54.133596,54.133507,54.133412,54.133318,54.133217,54.133119,54.133021,54.132933,54.132836,54.132744,54.132657,54.132567,54.132464,54.132367,54.132286,54.132182,54.132081,54.131983,54.131885,54.131796,54.131704,54.131611,54.131521,54.131431,54.131338,54.131236,54.131141,54.131056,54.130959,54.130868,54.130777,54.13068,54.13058,54.130485,54.130391,54.13029,54.130194,54.1301,54.13001,54.12992,54.12983,54.129741,54.12964,54.129537,54.129449,54.129388,54.129327,54.12924,54.12915,54.129057,54.128957,54.128864,54.12877,54.128674,54.128581,54.128489,54.128389,54.128294,54.128205,54.128119,54.128026,54.127926,54.127836,54.127754,54.127654,54.127564,54.127465,54.127395,54.127355,54.127296,54.127231,54.127152,54.12708,54.127014,54.126942,54.126853,54.126764,54.126668,54.126579,54.126487,54.126386,54.126298,54.126218,54.126143,54.126053,54.125965,54.125879,54.125786,54.125695,54.125606,54.125505,54.125408,54.125342,54.12526,54.125173,54.125091,54.125028,54.124977,54.12492,54.124843,54.124778,54.12471,54.124628,54.124558,54.124483,54.124453,54.124419,54.124408,54.124391,54.124375,54.124371,54.124338,54.124311,54.1243,54.124275,54.124267,54.124217,54.124182,54.124155,54.124115,54.124087,54.124046,54.124015,54.123991,54.123932,54.123886,54.123827,54.123784,54.123722,54.123665,54.123613,54.123572,54.123513,54.123455,54.123401,54.123356,54.123297,54.123231,54.123163,54.123104,54.123046,54.122986,54.122934,54.12288,54.122844,54.122893,54.122955,54.123022,54.12308,54.123125,54.12315,54.123194,54.12325,54.123291,54.123281,54.123249,54.123191,54.123132,54.123074,54.123019,54.122953,54.122891,54.122837,54.122782,54.122714,54.122658,54.122598,54.122528,54.12245,54.122371,54.122298,54.122211,54.122111,54.122022,54.121937,54.121858,54.121776,54.121703,54.121643,54.121578,54.121505,54.12142,54.121325,54.121224,54.121127,54.121043,54.120981,54.120938,54.120862,54.120793,54.120698,54.120601,54.120507,54.120413,54.120317,54.120221,54.120131,54.120034,54.119937,54.119847,54.119753,54.11965,54.119553,54.11946,54.11937,54.119275,54.119176,54.119085,54.118993,54.1189,54.118798,54.118699,54.118601,54.118501,54.118407,54.11831,54.118222,54.118127,54.118036,54.117937,54.117843,54.117747,54.117652,54.117597,54.117551,54.117503,54.117436,54.117353,54.117264,54.11719,54.117107,54.11703,54.116937,54.116849,54.116771,54.116681,54.116595,54.11652,54.116435,54.116351,54.116257,54.116165,54.116071,54.115977,54.115883,54.115806,54.115719,54.115625,54.115538,54.115477,54.115494,54.115477,54.115437,54.115401,54.115368,54.115332,54.115303,54.115258,54.115234,54.115179,54.115091,54.115003,54.114924,54.114836,54.114751,54.114665,54.11458,54.114496,54.114411,54.114322,54.114239,54.114151,54.114058,54.113962,54.113872,54.11379,54.1137,54.113619,54.113522,54.11343,54.113335,54.113246,54.113149,54.113057,54.112966,54.112877,54.112779,54.112684,54.112592,54.112501,54.112418,54.112324,54.11224,54.112146,54.112064,54.112032,54.111941,54.111861,54.111788,54.111713,54.111622,54.111532,54.111444,54.111362,54.111281,54.111199,54.11112,54.111047,54.110969,54.1109,54.110823,54.110739,54.110649,54.110551,54.110456,54.110382,54.11034,54.110265,54.110177,54.11009,54.110014,54.109927,54.109843,54.109752,54.109656,54.109557,54.109458,54.109358,54.109265,54.109172,54.109074,54.108975,54.108886,54.108783,54.108687,54.108595,54.108493,54.108402,54.108312,54.108212,54.108117,54.10802,54.107958,54.107867,54.107764,54.107664,54.107569,54.107478,54.107381,54.107287,54.107199,54.107108,54.107008,54.106908,54.106819,54.10673,54.106629,54.106536,54.106444,54.106349,54.106254,54.106156,54.106066,54.105969,54.105879,54.105784,54.105696,54.105611,54.105528,54.105455,54.105379,54.105301,54.105231,54.105149,54.105081,54.105014,54.104937,54.104872,54.104815,54.104759,54.10469,54.104608,54.104529,54.104437,54.104353,54.104272,54.104187,54.104088,54.103997,54.103973,54.103879,54.103781,54.10368,54.103589,54.103499,54.103406,54.10332,54.103219,54.10313,54.103046,54.10296,54.102879,54.102794,54.10271,54.102612,54.102514,54.10242,54.102321,54.10223,54.10213,54.102043,54.101947,54.101855,54.101827,54.101803,54.101805,54.101843,54.101827,54.101921,54.101842,54.101807,54.101795,54.101774,54.101735,54.101681,54.101643,54.101576,54.101554,54.101494,54.101426,54.101393,54.10134,54.101276,54.101222,54.101164,54.101098,54.101039,54.100985,54.100955,54.10092,54.100858,54.100819,54.100784,54.100725,54.100671,54.10062,54.100578,54.100539,54.100516,54.100531,54.100596,54.100625,54.100625,54.100628,54.100605,54.100643,54.100686,54.10069,54.100768,54.100783,54.100725,54.100699,54.100716,54.100751,54.100716,54.100685,54.100662,54.100725,54.100747,54.100721,54.100801,54.100877,54.100888,54.100873,54.10089,54.100917,54.100953,54.101048,54.101137,54.101225,54.101234,54.101248,54.101238,54.101211,54.101215,54.101135,54.101151,54.101189,54.101227,54.101221,54.101228,54.101192,54.101152,54.101095,54.101032,54.100965,54.100882,54.100809,54.100747,54.100696,54.100671,54.100622,54.100591,54.100561,54.100525,54.100488,54.100435,54.100416,54.100384,54.100349,54.100317,54.100294,54.100265,54.100228,54.100193,54.100164,54.100119,54.100069,54.100004,54.09993,54.09986,54.099777,54.099688,54.099604,54.099515,54.0995,54.099424,54.099332,54.099246,54.099163,54.099075,54.098992,54.0989,54.09881,54.098736,54.09866,54.098577,54.098499,54.098439,54.098362,54.09828,54.098208,54.098136,54.098056,54.097971,54.097893,54.097809,54.097722,54.097634,54.097539,54.097451,54.097365,54.097273,54.09718,54.097089,54.097002,54.096907,54.096807,54.096714,54.096619,54.096522,54.096424,54.09633,54.09624,54.096148,54.096058,54.095958,54.095867,54.095772,54.095677,54.095581,54.095488,54.095387,54.095304,54.095206,54.095107,54.095016,54.094923,54.09483,54.094732,54.094632,54.094543,54.094455,54.094349,54.09426,54.094168,54.09408,54.093981,54.093935,54.093844,54.093743,54.093651,54.093558,54.09346,54.093371,54.093289,54.093203,54.09311,54.093022,54.092949,54.092875,54.092807,54.092745,54.092679,54.09266,54.092642,54.092621,54.092597,54.092584,54.092561,54.092508,54.092484,54.092431,54.092378,54.092341,54.092291,54.09225,54.092192,54.092178,54.09212,54.092071,54.092035,54.092023,54.092002,54.091977,54.091936,54.091903,54.091906,54.091846,54.091823,54.091816,54.091748,54.091697,54.091652,54.091607,54.091559,54.091489,54.091406,54.091336,54.091287,54.091208,54.091123,54.091044,54.090959,54.090894,54.090887,54.090816,54.090725,54.090628,54.090535,54.090435,54.090339,54.090241,54.090145,54.090049,54.089952,54.089859,54.089767,54.08967,54.089572,54.08948,54.089379,54.089284,54.089189,54.089093,54.089007,54.088907,54.088813,54.088715,54.088616,54.08852,54.088426,54.088332,54.088245,54.088157,54.088094,54.088073,54.088011,54.088024,54.088037,54.088034,54.088026,54.088026,54.088022,54.088034,54.088053,54.088043,54.087996,54.087904,54.087818,54.087745,54.087654,54.087569,54.087485,54.087434,54.087336,54.087248,54.087154,54.08707,54.086983,54.086906,54.086838,54.086772,54.086695,54.086618,54.086541,54.08646,54.086383,54.086296,54.086216,54.08613,54.086057,54.085971,54.085883,54.085787,54.085691,54.085593,54.085512,54.085422,54.085334,54.085253,54.08518,54.08511,54.085031,54.084947,54.084869,54.084791,54.084725,54.084637,54.08457,54.084505,54.084448,54.084376,54.084291,54.084205,54.084124,54.08403,54.08394,54.083873,54.083782,54.083687,54.083608,54.083521,54.083429,54.083339,54.083263,54.083178,54.083105,54.083021,54.082923,54.082837,54.082752,54.082655,54.08257,54.082488,54.082389,54.082296,54.082226,54.082142,54.082051,54.081963,54.081891,54.081833,54.081747,54.081647,54.081549,54.081458,54.081372,54.081278,54.081179,54.081109,54.081019,54.080932,54.080842,54.080757,54.080677,54.080581,54.080482,54.080387,54.080307,54.080211,54.080123,54.080024,54.079937,54.079846,54.079779,54.079713,54.079624,54.079585,54.079598,54.079612,54.079639,54.079686,54.079712,54.079736,54.07976,54.079788,54.079776,54.079718,54.079695,54.07965,54.079561,54.079499,54.079481,54.079401,54.079357,54.079405,54.079352,54.07928,54.079237,54.079244,54.079186,54.079144,54.079054,54.078965,54.078919,54.078855,54.078806,54.078802,54.078754,54.078704,54.078619,54.078547,54.0785,54.07842,54.078352,54.078293,54.078207,54.078184,54.078147,54.078075,54.078033,54.077969,54.077897,54.07782,54.077763,54.077709,54.077651,54.07757,54.077511,54.077436,54.077367,54.077292,54.077246,54.077174,54.077092,54.077031,54.076959,54.076909,54.076849,54.076808,54.076751,54.076681,54.076628,54.076548,54.076516,54.076432,54.076355,54.076282,54.076201,54.076112,54.076034,54.075947,54.075875,54.075791,54.075707,54.075638,54.075562,54.075483,54.07539,54.07531,54.075216,54.075142,54.07508,54.07499,54.074898,54.07481,54.074728,54.07467,54.074577,54.074484,54.074393,54.07433,54.074269,54.074176,54.074118,54.07405,54.073962,54.073879,54.073793,54.073709,54.073623,54.073551,54.073473,54.073372,54.073274,54.073233,54.073187,54.0731,54.073011,54.072959,54.072981,54.072929,54.072845,54.072837,54.072832,54.072868,54.072914,54.072913,54.072862,54.072895,54.072918,54.07293,54.072879,54.072873,54.072832,54.072766,54.072739,54.072676,54.072645,54.072672,54.07262,54.072522,54.072418,54.072356,54.072425,54.072364,54.072314,54.072219,54.072149,54.072049,54.071954,54.071865,54.071776,54.071689,54.071597,54.071578,54.071524,54.071472,54.071574,54.071672,54.071727,54.07172,54.071705,54.071645,54.071692,54.07171,54.071698,54.071654,54.071682,54.071635,54.07157,54.071504,54.071431,54.071359,54.071277,54.07125,54.071154,54.071073,54.070969,54.07088,54.070786,54.070694,54.070605,54.070504,54.070415,54.070324,54.070243,54.070168,54.070154,54.070065,54.069981,54.069881,54.069786,54.069691,54.069595,54.069503,54.06941,54.069336,54.069236,54.069135,54.069049,54.06896,54.068874,54.068772,54.068676,54.068585,54.068484,54.068391,54.068295,54.068202,54.068104,54.068008,54.06792,54.067836,54.06774,54.067643,54.067552,54.06746,54.067365,54.067275,54.067176,54.067085,54.066992,54.066902,54.066805,54.066716,54.066627,54.066565,54.0665,54.066415,54.066355,54.066271,54.066183,54.066114,54.066055,54.065999,54.065947,54.065899,54.065855,54.065782,54.065709,54.065658,54.065608,54.065549,54.065479,54.065421,54.065359,54.065293,54.065249,54.065218,54.065164,54.065092,54.064998,54.064915,54.064821,54.06475,54.064687,54.064612,54.064567,54.06458,54.064541,54.064507,54.064472,54.064384,54.064294,54.064204,54.064102,54.064034,54.063993,54.063904,54.06382,54.063742,54.063674,54.063575,54.063499,54.063424,54.063359,54.063263,54.063165,54.063082,54.062984,54.062902,54.062799,54.062704,54.062613,54.062515,54.062421,54.062341,54.062241,54.062171,54.062078,54.061972,54.061902,54.061815,54.061711,54.061646,54.061698,54.061736,54.061766,54.061843,54.061913,54.061997,54.062011,54.062023,54.061993,54.062135,54.062221,54.062157,54.062369,54.062294,54.062271,54.062261,54.062082,54.062021,54.061931,54.061851,54.061773,54.061695,54.061603,54.061592,54.061511,54.061431,54.061372,54.061276,54.061178,54.061096,54.061013,54.060922,54.060827,54.060794,54.060702,54.060611,54.060672,54.060679,54.060579,54.060483,54.060385,54.060284,54.06019,54.060094,54.059999,54.059909,54.059809,54.059713,54.05962,54.059521,54.059426,54.059335,54.059238,54.059153,54.059071,54.05898,54.0589,54.058816,54.058729,54.058647,54.058565,54.058482,54.058391,54.058309,54.058227,54.058127,54.058039,54.057942,54.057852,54.057762,54.05768,54.057583,54.057492,54.057468,54.05738,54.057288,54.05719,54.05718,54.057089,54.057006,54.056908,54.056811,54.056721,54.056628,54.056532,54.056434,54.056335,54.056239,54.056148,54.05605,54.055956,54.055905,54.055816,54.055726,54.055638,54.055547,54.055453,54.055354,54.055275,54.055181,54.05509,54.054996,54.054903,54.054817,54.054733,54.054638,54.054544,54.054451,54.054368,54.054287,54.054205,54.054114,54.054023,54.053984,54.053886,54.053798,54.053718,54.053633,54.053556,54.053521,54.053437,54.053346,54.053316,54.053281,54.053283,54.053283,54.053244,54.053183,54.053107,54.053094,54.053014,54.052926,54.052844,54.05282,54.052732,54.052646,54.052555,54.052461,54.052375,54.052288,54.052201,54.052123,54.052032,54.051952,54.051876,54.051791,54.05171,54.05165,54.051585,54.051555,54.0515,54.051437,54.051371,54.051319,54.05125,54.051187,54.051102,54.051008,54.050918,54.050829,54.050732,54.050641,54.050551,54.050463,54.050366,54.050275,54.050183,54.050095,54.050014,54.049927,54.049843,54.049753,54.049657,54.049577,54.049506,54.04943,54.049358,54.049265,54.049199,54.049104,54.049016,54.048919,54.048831,54.048739,54.048664,54.048588,54.048496,54.048407,54.048301,54.048204,54.048103,54.048001,54.047908,54.047816,54.047725,54.04767,54.047605,54.047561,54.047506,54.047453,54.047375,54.047302,54.047236,54.047158,54.047092,54.047031,54.046985,54.046939,54.04691,54.046856,54.046823,54.046743,54.046687,54.046618,54.046553,54.046467,54.046388,54.046306,54.046207,54.046105,54.046008,54.045913,54.045816,54.045714,54.045624,54.045534,54.045438,54.045345,54.045256,54.045166,54.045073,54.044982,54.044891,54.044791,54.044703,54.044602,54.044511,54.044415,54.044314,54.044222,54.044126,54.044029,54.043938,54.043843,54.043743,54.043648,54.043552,54.043455,54.043356,54.043265,54.043173,54.04309,54.043002,54.04292,54.042827,54.042778,54.042725,54.042665,54.042596,54.042526,54.042453,54.042378,54.04229,54.042209,54.042157,54.04208,54.042028,54.04195,54.041865,54.041776,54.04168,54.041591,54.041498,54.041419,54.041329,54.041243,54.041141,54.041045,54.040959,54.040864,54.040766,54.040665,54.040564,54.040467,54.040386,54.040295,54.040219,54.040139,54.040068,54.039986,54.039894,54.039795,54.039704,54.039614,54.039517,54.039432,54.039343,54.039262,54.039165,54.039068,54.039005,54.038915,54.038819,54.038737,54.038658,54.03856,54.038474,54.038385,54.038283,54.038191,54.038099,54.038004,54.037916,54.037829,54.037753,54.037701,54.037604,54.03751,54.037419,54.037328,54.037256,54.037173,54.037081,54.036986,54.036898,54.036826,54.036731,54.03664,54.036542,54.036452,54.03635,54.036259,54.036168,54.036074,54.035983,54.035893,54.035808,54.035726,54.035634,54.035547,54.035464,54.03537,54.035271,54.035178,54.035085,54.034988,54.034888,54.034787,54.034696,54.034605,54.034506,54.034411,54.034318,54.034219,54.034123,54.034028,54.033938,54.033836,54.033745,54.033682,54.033632,54.033594,54.033522,54.033452,54.033376,54.033288,54.03321,54.03314,54.033076,54.033021,54.032965,54.032927,54.032864,54.032766,54.032693,54.032648,54.032581,54.032502,54.032424,54.032328,54.03223,54.032137,54.032039,54.03194,54.031843,54.031753,54.031659,54.031572,54.031475,54.031385,54.031296,54.0312,54.031115,54.031041,54.030961,54.03088,54.030803,54.030724,54.030631,54.030534,54.030436,54.030344,54.030254,54.03016,54.030077,54.029978,54.029884,54.029786,54.029689,54.02959,54.029491,54.029401,54.029302,54.029206,54.029118,54.029041,54.028953,54.028884,54.028847,54.028775,54.028679,54.028585,54.028495,54.028402,54.028307,54.028216,54.028118,54.028028,54.027927,54.027838,54.027745,54.02766,54.02757,54.027479,54.027387,54.027292,54.027201,54.027114,54.02701,54.026916,54.026815,54.026723,54.026655,54.026565,54.026473,54.026382,54.02629,54.026197,54.026104,54.026008,54.025912,54.025821,54.025735,54.025643,54.025554,54.025465,54.025381,54.025289,54.025202,54.02512,54.02504,54.024969,54.024879,54.024802,54.024708,54.024625,54.024559,54.024472,54.024397,54.024327,54.024274,54.024244,54.024176,54.024088,54.023997,54.0239,54.023802,54.023706,54.023616,54.023526,54.023497,54.023403,54.023337,54.023263,54.023193,54.023118,54.023049,54.022996,54.022924,54.022862,54.022807,54.022736,54.02267,54.022618,54.02255,54.022498,54.022441,54.022406,54.022344,54.022276,54.022211,54.022123,54.022049,54.021985,54.021934,54.021852,54.021757,54.021664,54.021569,54.021475,54.021375,54.021278,54.021182,54.021097,54.021006,54.020908,54.020813,54.020713,54.020676,54.020577,54.020481,54.020404,54.02031,54.020214,54.020127,54.020027,54.019931,54.019838,54.019743,54.019653,54.019556,54.019465,54.019368,54.019278,54.019186,54.019108,54.019029,54.018949,54.018935,54.018938,54.018917,54.018898,54.018856,54.018824,54.01881,54.018796,54.01872,54.018623,54.018534,54.018437,54.018347,54.018254,54.018174,54.018111,54.01804,54.017947,54.01786,54.017798,54.017714,54.017711,54.017683,54.017659,54.017657,54.017675,54.017656,54.01762,54.017552,54.017485,54.017444,54.017413,54.017357,54.017288,54.017222,54.017143,54.017068,54.016999,54.016919,54.016825,54.016741,54.0167,54.016631,54.01658,54.016573,54.016533,54.016479,54.016404,54.016354,54.016282,54.016233,54.016165,54.016115,54.016057,54.015972,54.015907,54.015824,54.015729,54.015638,54.015545,54.015446,54.015351,54.015262,54.015162,54.015069,54.014969,54.014879,54.014784,54.014694,54.014595,54.014505,54.014411,54.01433,54.014237,54.014146,54.014071,54.014007,54.013924,54.013835,54.013843,54.013894,54.013916,54.013934,54.01394,54.013901,54.013917,54.013921,54.013905,54.013898,54.013877,54.013842,54.013804,54.013732,54.013644,54.013561,54.013463,54.013371,54.013321,54.013237,54.013177,54.013087,54.013007,54.012931,54.012853,54.012778,54.012697,54.012624,54.012548,54.012476,54.012409,54.012348,54.012273,54.012193,54.01211,54.012034,54.011955,54.011874,54.011804,54.011721,54.011643,54.011554,54.011475,54.011394,54.01131,54.011223,54.011144,54.011067,54.010986,54.010904,54.010817,54.01073,54.010651,54.010575,54.010497,54.010416,54.010331,54.010253,54.010185,54.010103,54.01002,54.009946,54.009863,54.009787,54.009704,54.009622,54.009542,54.009463,54.009384,54.009299,54.009328,54.009264,54.009223,54.009144,54.009064,54.008988,54.008916,54.008835,54.008755,54.008672,54.008595,54.008515,54.008431,54.008356,54.008266,54.008177,54.008082,54.007987,54.0079,54.007805,54.007717,54.007627,54.00754,54.007444,54.007348,54.00725,54.007158,54.007062,54.006966,54.006872,54.006773,54.006682,54.006589,54.006504,54.006416,54.006325,54.006245,54.006156,54.006063,54.005975,54.005877,54.005783,54.005698,54.005609,54.005522,54.005428,54.00534,54.005243,54.005154,54.005059,54.004969,54.004878,54.004788,54.004696,54.004603,54.004506,54.004411,54.004325,54.004239,54.004151,54.004061,54.003966,54.003875,54.003777,54.003687,54.003593,54.003504,54.003415,54.003322,54.003235,54.003141,54.003057,54.002964,54.002866,54.002786,54.002733,54.002648,54.002564,54.002497,54.002433,54.002372,54.002311,54.002247,54.002193,54.002132,54.002071,54.002,54.001938,54.001875,54.00181,54.001754,54.001688,54.00163,54.001561,54.001492,54.001426,54.001357,54.001274,54.001204,54.001129,54.001046,54.000954,54.000869,54.000785,54.000694,54.000606,54.000516,54.000427,54.000342,54.000253,54.000173,54.000081,53.999983,53.999898,53.999811,53.999726,53.999638,53.999556,53.999475,53.99939,53.999301,53.999233,53.999146,53.999045,53.998955,53.998857,53.998756,53.998658,53.998558,53.998463,53.998372,53.998275,53.998172,53.998078,53.997979,53.997886,53.997792,53.997704,53.997613,53.997519,53.99742,53.997324,53.997225,53.997128,53.997122,53.997031,53.996942,53.996858,53.996777,53.996698,53.996615,53.996537,53.996458,53.996381,53.996319,53.996246,53.996169,53.996095,53.996032,53.995983,53.995943,53.995891,53.995825,53.995751,53.995687,53.995617,53.995548,53.995476,53.9954,53.995319,53.995251,53.995171,53.995091,53.995023,53.994973,53.994902,53.994836,53.994759,53.994688,53.994613,53.994551,53.994492,53.994422,53.994357,53.994287,53.994228,53.994167,53.994101,53.994026,53.993943,53.993858,53.993765,53.99367,53.99358,53.993496,53.993408,53.993354,53.993259,53.993176,53.993081,53.993003,53.992914,53.992824,53.992738,53.99265,53.992556,53.992466,53.992381,53.992317,53.992219,53.992122,53.992039,53.991964,53.991884,53.991799,53.991721,53.991644,53.99156,53.991473,53.991385,53.991297,53.991207,53.991127,53.991043,53.990964,53.990962,53.990933,53.990838,53.990839,53.990767,53.9907,53.990602,53.990545,53.990483,53.990434,53.990354,53.990314,53.990237,53.990178,53.990088,53.99,53.989914,53.989897,53.98986,53.989759,53.989698,53.989649,53.989577,53.989489,53.989428,53.98937,53.989292,53.989229,53.989145,53.989076,53.988994,53.988919,53.988841,53.988771,53.988701,53.988652,53.988574,53.988498,53.988428,53.98837,53.988314,53.988251,53.98821,53.988191,53.988117,53.988101,53.988101,53.988095,53.988123,53.988125,53.988112,53.988127,53.988159,53.988178,53.988174,53.988181,53.988202,53.988207,53.988205,53.988155,53.988087,53.988043,53.987997,53.987928,53.987851,53.987778,53.987702,53.987615,53.987536,53.987459,53.98738,53.987294,53.987212,53.987124,53.987042,53.986961,53.986876,53.986798,53.986728,53.986633,53.986548,53.986457,53.98637,53.986276,53.986188,53.986094,53.986012,53.985935,53.985851,53.98578,53.98571,53.985633,53.985593,53.985537,53.985554,53.985464,53.985389,53.985309,53.98523,53.985149,53.985066,53.984972,53.984886,53.98484,53.984859,53.984843,53.984831,53.984815,53.984783,53.98475,53.984718,53.984694,53.984682,53.984667,53.984639,53.984609,53.98458,53.984518,53.984442,53.984356,53.984283,53.9842,53.984121,53.984039,53.983963,53.983889,53.983837,53.98375,53.98366,53.98362,53.983554,53.983583,53.983608,53.983701,53.983788,53.98384,53.983913,53.983985,53.984076,53.984144,53.984206,53.984287,53.984372,53.984428,53.984435,53.984411,53.984406,53.984402,53.98441,53.984443,53.984486,53.984467,53.984488,53.984506,53.984546,53.984608,53.984653,53.984678,53.984716,53.984771,53.98486,53.984941,53.98502,53.985117,53.985211,53.985305,53.985393,53.985482,53.985574,53.985664,53.985762,53.985856,53.985955,53.986046,53.986142,53.98623,53.986326,53.986415,53.98651,53.986603,53.986702,53.986787,53.986883,53.986978,53.987068,53.987163,53.987258,53.987355,53.987451,53.987532,53.987612,53.987708,53.987796,53.987785,53.98776,53.987824,53.987726,53.98764,53.987552,53.987457,53.987362,53.987277,53.987191,53.987189,53.987188,53.987189,53.987178,53.987185,53.987196,53.987191,53.987199,53.987253,53.987335,53.98742,53.987443,53.987438,53.9875,53.9875,53.987409,53.987338,53.987255,53.987187,53.987168,53.987166,53.987171,53.987174,53.987184,53.987108,53.987093,53.987182,53.987183,53.987099,53.987084,53.987126,53.987132,53.987092,53.987047,53.986969,53.986878,53.986782,53.986696,53.986615,53.986639,53.986587,53.986578,53.986547,53.986516,53.986496,53.986428,53.986359,53.986304,53.986277,53.986279,53.986248,53.98622,53.986207,53.986161,53.986123,53.986104,53.986106,53.98604,53.985971,53.985896,53.985927,53.985894,53.985855,53.985815,53.985779,53.985743,53.985692,53.985731,53.985677,53.985624,53.985594,53.985494,53.98541,53.985327,53.985251,53.985181,53.985104,53.985014,53.984916,53.984836,53.984799,53.984767,53.984761,53.984744,53.984716,53.984698,53.984653,53.984641,53.984601,53.984581,53.984564,53.984556,53.984522,53.984433,53.984344,53.984265,53.984199,53.98426,53.984267,53.984224,53.984138,53.984049,53.984062,53.983981,53.983938,53.983824,53.983891,53.98383,53.983736,53.983658,53.98375,53.983739,53.983834,53.983897,53.983985,53.984058,53.984122,53.984179,53.984269,53.984371,53.984464,53.984554,53.984637,53.984728,53.984824,53.984916,53.98501,53.985046,53.985099,53.985135,53.985136,53.985223,53.985316,53.98541,53.985501,53.98559,53.985681,53.985775,53.985833,53.985906,53.986002,53.986079,53.986171,53.98622,53.986301,53.986398,53.98644,53.986473,53.986505,53.98652,53.98653,53.986534,53.986607,53.98661,53.98667,53.986651,53.986688,53.986711,53.986796,53.986732,53.986713,53.986674,53.986661,53.986728,53.986707,53.986782,53.986867,53.986961,53.987032,53.987081,53.987117,53.987171,53.987266,53.987346,53.987441,53.98753,53.987624,53.987718,53.987813,53.987858,53.98776,53.987682,53.987591,53.987492,53.987399,53.987306,53.987222,53.987167,53.987184,53.987152,53.987141,53.987154,53.987169,53.98721,53.987245,53.987337,53.987382]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[53.983554,54.164058],"lng":[-2.294173,-2.100887]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-10-2" class="tab-pane" aria-labelledby="tabset-10-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb20-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-22"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_83037dc731cdb85670d1f634d414f1df {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_83037dc731cdb85670d1f634d414f1df&quot; ></div>
        
</body>
<script>
    
    
            var map_83037dc731cdb85670d1f634d414f1df = L.map(
                &quot;map_83037dc731cdb85670d1f634d414f1df&quot;,
                {
                    center: [54.08525370996979, -2.181726165613842],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_6dda806bd3a9f808bda37c9f31d1a3f4 = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_6dda806bd3a9f808bda37c9f31d1a3f4.addTo(map_83037dc731cdb85670d1f634d414f1df);
        
    
            var tile_layer_f0d2de0eb0823879f51d45790681dd84 = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_f0d2de0eb0823879f51d45790681dd84.addTo(map_83037dc731cdb85670d1f634d414f1df);
        
    
            var color_line_b6a36ceeb2126a3cb32022027442da2e = L.featureGroup(
                {
}
            );
        
    
            var poly_line_9397e107250893db12df343ce1b56872 = L.polyline(
                [[[54.144514, -2.293116], [54.144603, -2.293197]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_af986afca988118bc29c767469210dc1 = L.polyline(
                [[[54.144603, -2.293197], [54.144509, -2.293101]], [[53.987338, -2.101305], [53.987255, -2.101422]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2e00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff2e00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_b9df145c216e6f7641f8d49d4e443160 = L.polyline(
                [[[54.144509, -2.293101], [54.144499, -2.293119]], [[54.144342, -2.292955], [54.144349, -2.292789]], [[54.144696, -2.292793], [54.144789, -2.292825]], [[54.144789, -2.292825], [54.14488, -2.292849]], [[54.14488, -2.292849], [54.144975, -2.292879]], [[54.145167, -2.292942], [54.145241, -2.293051]], [[54.145241, -2.293051], [54.145329, -2.293091]], [[54.145329, -2.293091], [54.145416, -2.293136]], [[54.145416, -2.293136], [54.145513, -2.293183]], [[54.145513, -2.293183], [54.145602, -2.293235]], [[54.145887, -2.29336], [54.145983, -2.293399]], [[54.146163, -2.293509], [54.146256, -2.293573]], [[54.146442, -2.29368], [54.146539, -2.293726]], [[54.146539, -2.293726], [54.146633, -2.293775]], [[54.146633, -2.293775], [54.146718, -2.293834]], [[54.14681, -2.293887], [54.146909, -2.293877]], [[54.146998, -2.293837], [54.147074, -2.293931]], [[54.147156, -2.294018], [54.14724, -2.294099]], [[54.14724, -2.294099], [54.147324, -2.294173]], [[54.147563, -2.293492], [54.147622, -2.293364]], [[54.147622, -2.293364], [54.147669, -2.293232]], [[54.147759, -2.292936], [54.147773, -2.292771]], [[54.147749, -2.292475], [54.147741, -2.292314]], [[54.147741, -2.292314], [54.147732, -2.292156]], [[54.147732, -2.292156], [54.147738, -2.29199]], [[54.147738, -2.29199], [54.147755, -2.291819]], [[54.147755, -2.291819], [54.147789, -2.291664]], [[54.147789, -2.291664], [54.147821, -2.291504]], [[54.147821, -2.291504], [54.147818, -2.291339]], [[54.148144, -2.290953], [54.148226, -2.290881]], [[54.148226, -2.290881], [54.148308, -2.290817]], [[54.148366, -2.290679], [54.148398, -2.290536]], [[54.1484, -2.290205], [54.14846, -2.290083]], [[54.148479, -2.288787], [54.148495, -2.288626]], [[54.148495, -2.288626], [54.148478, -2.288461]], [[54.148404, -2.288361], [54.148337, -2.288244]], [[54.148273, -2.288121], [54.148225, -2.28797]], [[54.148225, -2.28797], [54.148141, -2.287889]], [[54.148157, -2.287728], [54.148202, -2.287594]], [[54.148202, -2.287594], [54.148266, -2.287486]], [[54.148333, -2.287381], [54.148387, -2.287257]], [[54.148415, -2.287103], [54.148496, -2.286995]], [[54.148496, -2.286995], [54.148581, -2.286908]], [[54.148745, -2.28675], [54.148818, -2.286651]], [[54.148818, -2.286651], [54.148888, -2.286544]], [[54.148888, -2.286544], [54.148975, -2.286457]], [[54.149057, -2.286384], [54.149135, -2.286305]], [[54.149135, -2.286305], [54.149224, -2.286223]], [[54.149224, -2.286223], [54.149316, -2.286152]], [[54.149316, -2.286152], [54.14939, -2.286063]], [[54.14939, -2.286063], [54.149474, -2.286004]], [[54.149474, -2.286004], [54.149542, -2.28589]], [[54.149542, -2.28589], [54.149617, -2.285782]], [[54.149617, -2.285782], [54.149703, -2.285683]], [[54.149886, -2.285588], [54.149979, -2.285544]], [[54.149979, -2.285544], [54.150072, -2.28555]], [[54.150072, -2.28555], [54.150172, -2.285521]], [[54.150172, -2.285521], [54.150268, -2.285517]], [[54.150268, -2.285517], [54.150361, -2.28548]], [[54.150538, -2.285392], [54.150624, -2.285344]], [[54.150803, -2.285267], [54.150895, -2.285211]], [[54.15126, -2.284997], [54.151346, -2.284933]], [[54.151346, -2.284933], [54.151428, -2.284864]], [[54.151796, -2.284772], [54.15189, -2.284717]], [[54.152162, -2.284529], [54.152247, -2.284466]], [[54.152247, -2.284466], [54.152344, -2.284427]], [[54.152344, -2.284427], [54.152435, -2.28435]], [[54.152435, -2.28435], [54.152523, -2.284298]], [[54.1527, -2.284185], [54.152763, -2.284067]], [[54.152763, -2.284067], [54.152812, -2.283932]], [[54.153052, -2.283514], [54.153083, -2.283346]], [[54.153251, -2.283237], [54.153248, -2.283081]], [[54.153248, -2.283081], [54.153317, -2.282981]], [[54.153317, -2.282981], [54.15339, -2.282879]], [[54.15339, -2.282879], [54.153478, -2.282795]], [[54.153562, -2.282701], [54.153651, -2.282635]], [[54.153874, -2.282356], [54.153957, -2.282279]], [[54.153957, -2.282279], [54.154037, -2.282203]], [[54.154037, -2.282203], [54.154116, -2.282117]], [[54.154116, -2.282117], [54.1542, -2.282035]], [[54.1542, -2.282035], [54.154284, -2.281976]], [[54.154284, -2.281976], [54.154366, -2.281907]], [[54.154366, -2.281907], [54.154446, -2.281827]], [[54.15453, -2.281768], [54.154614, -2.281704]], [[54.154614, -2.281704], [54.154707, -2.281634]], [[54.154707, -2.281634], [54.1548, -2.281579]], [[54.1548, -2.281579], [54.154869, -2.281478]], [[54.154869, -2.281478], [54.154954, -2.281413]], [[54.154954, -2.281413], [54.15505, -2.281386]], [[54.15505, -2.281386], [54.155127, -2.281295]], [[54.155127, -2.281295], [54.155205, -2.281205]], [[54.155205, -2.281205], [54.155296, -2.281181]], [[54.155296, -2.281181], [54.155385, -2.281114]], [[54.155385, -2.281114], [54.155474, -2.281045]], [[54.155664, -2.280991], [54.155751, -2.280926]], [[54.155751, -2.280926], [54.155842, -2.280858]], [[54.155842, -2.280858], [54.155924, -2.280785]], [[54.155924, -2.280785], [54.156011, -2.280708]], [[54.156198, -2.280611], [54.156288, -2.280593]], [[54.156288, -2.280593], [54.156365, -2.280508]], [[54.156365, -2.280508], [54.156452, -2.280439]], [[54.156452, -2.280439], [54.156537, -2.280383]], [[54.156537, -2.280383], [54.15663, -2.280341]], [[54.15663, -2.280341], [54.15672, -2.280321]], [[54.156804, -2.28025], [54.156901, -2.280199]], [[54.156901, -2.280199], [54.156987, -2.280145]], [[54.157272, -2.280086], [54.157372, -2.280078]], [[54.157372, -2.280078], [54.15747, -2.280076]], [[54.157746, -2.279936], [54.157829, -2.279874]], [[54.158008, -2.279717], [54.158098, -2.279672]], [[54.158511, -2.279053], [54.158585, -2.278937]], [[54.158585, -2.278937], [54.158648, -2.278814]], [[54.158648, -2.278814], [54.158711, -2.278688]], [[54.158711, -2.278688], [54.158777, -2.278571]], [[54.158898, -2.278307], [54.15899, -2.278251]], [[54.159362, -2.278309], [54.15942, -2.278177]], [[54.159476, -2.278056], [54.159533, -2.277935]], [[54.159656, -2.277792], [54.159738, -2.277717]], [[54.159738, -2.277717], [54.159804, -2.277596]], [[54.159869, -2.277485], [54.159958, -2.2774]], [[54.160141, -2.277307], [54.16021, -2.277209]], [[54.16021, -2.277209], [54.160284, -2.277101]], [[54.160284, -2.277101], [54.160374, -2.277056]], [[54.160374, -2.277056], [54.160458, -2.276999]], [[54.160458, -2.276999], [54.160553, -2.276967]], [[54.160553, -2.276967], [54.160643, -2.276924]], [[54.160929, -2.276762], [54.161024, -2.276725]], [[54.161024, -2.276725], [54.161111, -2.276678]], [[54.161111, -2.276678], [54.161191, -2.276602]], [[54.161191, -2.276602], [54.161285, -2.276544]], [[54.161285, -2.276544], [54.16137, -2.276478]], [[54.16137, -2.276478], [54.161456, -2.276414]], [[54.161456, -2.276414], [54.161544, -2.27636]], [[54.161544, -2.27636], [54.161646, -2.276328]], [[54.161646, -2.276328], [54.161734, -2.27626]], [[54.161734, -2.27626], [54.161812, -2.276183]], [[54.161812, -2.276183], [54.161893, -2.276112]], [[54.161893, -2.276112], [54.16198, -2.276054]], [[54.16198, -2.276054], [54.16206, -2.275984]], [[54.16206, -2.275984], [54.16215, -2.275903]], [[54.16215, -2.275903], [54.162243, -2.275866]], [[54.162622, -2.275452], [54.162703, -2.275361]], [[54.162703, -2.275361], [54.162793, -2.275273]], [[54.163049, -2.275031], [54.163136, -2.274954]], [[54.163136, -2.274954], [54.163217, -2.27487]], [[54.163217, -2.27487], [54.1633, -2.274776]], [[54.1633, -2.274776], [54.163378, -2.274687]], [[54.163378, -2.274687], [54.163466, -2.274604]], [[54.163466, -2.274604], [54.163555, -2.274529]], [[54.163723, -2.274348], [54.163735, -2.274193]], [[54.163586, -2.273975], [54.163547, -2.273816]], [[54.163547, -2.273816], [54.163547, -2.273653]], [[54.163584, -2.273503], [54.163642, -2.273361]], [[54.163751, -2.273097], [54.163835, -2.272999]], [[54.16392, -2.272905], [54.163999, -2.272797]], [[54.164058, -2.272568], [54.164012, -2.272426]], [[54.164012, -2.272426], [54.163959, -2.272302]], [[54.163959, -2.272302], [54.163972, -2.272143]], [[54.163972, -2.272143], [54.163954, -2.271989]], [[54.163954, -2.271989], [54.163871, -2.271917]], [[54.163551, -2.27136], [54.163473, -2.271267]], [[54.163327, -2.271056], [54.163247, -2.27098]], [[54.163, -2.270738], [54.162926, -2.270627]], [[54.162813, -2.270358], [54.162774, -2.270208]], [[54.162774, -2.270208], [54.162752, -2.270055]], [[54.162752, -2.270055], [54.162727, -2.269894]], [[54.162727, -2.269894], [54.162701, -2.269737]], [[54.162701, -2.269737], [54.162656, -2.269602]], [[54.162457, -2.268838], [54.16242, -2.268698]], [[54.16242, -2.268698], [54.162382, -2.268549]], [[54.162382, -2.268549], [54.162358, -2.268382]], [[54.162358, -2.268382], [54.162329, -2.268232]], [[54.162329, -2.268232], [54.162304, -2.268066]], [[54.162304, -2.268066], [54.162266, -2.267923]], [[54.162266, -2.267923], [54.16225, -2.267768]], [[54.16225, -2.267768], [54.162235, -2.267615]], [[54.162235, -2.267615], [54.162222, -2.267459]], [[54.162207, -2.267291], [54.162184, -2.267135]], [[54.162184, -2.267135], [54.162167, -2.266956]], [[54.162125, -2.266061], [54.162122, -2.265898]], [[54.162122, -2.265898], [54.162113, -2.265744]], [[54.16204, -2.265473], [54.16198, -2.265357]], [[54.16198, -2.265357], [54.161951, -2.26521]], [[54.161951, -2.26521], [54.161993, -2.265062]], [[54.162032, -2.264904], [54.162081, -2.26477]], [[54.162081, -2.26477], [54.162149, -2.26464]], [[54.162149, -2.26464], [54.162199, -2.264508]], [[54.162216, -2.264337], [54.162171, -2.264204]], [[54.162171, -2.264204], [54.162112, -2.264071]], [[54.162112, -2.264071], [54.162102, -2.263903]], [[54.162116, -2.263744], [54.162127, -2.263586]], [[54.162121, -2.263257], [54.162131, -2.263095]], [[54.162145, -2.262776], [54.162131, -2.26262]], [[54.162131, -2.26262], [54.162145, -2.262463]], [[54.162135, -2.262309], [54.162133, -2.262146]], [[54.162127, -2.25979], [54.162122, -2.259634]], [[54.162122, -2.259634], [54.162118, -2.259476]], [[54.162118, -2.259476], [54.162139, -2.259321]], [[54.162139, -2.259321], [54.162118, -2.259164]], [[54.162323, -2.257167], [54.162354, -2.257017]], [[54.162574, -2.254817], [54.162649, -2.254728]], [[54.163437, -2.25043], [54.163339, -2.250403]], [[54.163155, -2.250323], [54.163071, -2.250252]], [[54.162548, -2.250077], [54.162527, -2.249909]], [[54.162527, -2.249909], [54.162426, -2.249955]], [[54.161911, -2.249938], [54.161816, -2.249914]], [[54.161721, -2.249958], [54.161629, -2.249964]], [[54.161629, -2.249964], [54.161531, -2.249956]], [[54.161346, -2.249932], [54.161251, -2.249908]], [[54.15976, -2.250281], [54.159677, -2.250345]], [[54.159677, -2.250345], [54.159599, -2.250432]], [[54.159262, -2.250715], [54.159177, -2.250779]], [[54.159177, -2.250779], [54.159087, -2.25077]], [[54.158818, -2.250885], [54.158747, -2.250984]], [[54.158747, -2.250984], [54.158649, -2.251014]], [[54.158649, -2.251014], [54.158562, -2.251088]], [[54.158562, -2.251088], [54.158472, -2.251102]], [[54.158472, -2.251102], [54.158378, -2.251094]], [[54.158378, -2.251094], [54.158294, -2.25103]], [[54.158144, -2.25084], [54.158068, -2.250738]], [[54.156513, -2.249003], [54.156417, -2.248979]], [[54.156417, -2.248979], [54.156326, -2.248907]], [[54.156253, -2.248818], [54.156156, -2.248779]], [[54.156156, -2.248779], [54.156058, -2.248741]], [[54.155926, -2.248841], [54.155854, -2.248934]], [[54.15578, -2.249044], [54.155715, -2.24915]], [[54.155715, -2.24915], [54.155639, -2.249257]], [[54.155285, -2.249571], [54.155206, -2.249667]], [[54.155206, -2.249667], [54.15513, -2.249783]], [[54.154985, -2.249998], [54.154905, -2.250091]], [[54.154169, -2.250819], [54.154075, -2.250874]], [[54.154075, -2.250874], [54.153977, -2.250923]], [[54.153525, -2.251116], [54.153433, -2.251155]], [[54.153433, -2.251155], [54.15334, -2.251182]], [[54.15334, -2.251182], [54.153243, -2.25116]], [[54.151911, -2.251286], [54.151831, -2.251384]], [[54.151383, -2.251847], [54.151309, -2.251935]], [[54.15059, -2.25226], [54.150499, -2.252305]], [[54.150028, -2.252547], [54.149943, -2.252611]], [[54.149863, -2.2527], [54.149775, -2.252767]], [[54.149267, -2.253261], [54.149183, -2.253339]], [[54.149183, -2.253339], [54.149096, -2.253428]], [[54.149096, -2.253428], [54.148995, -2.253489]], [[54.148804, -2.253629], [54.148718, -2.253701]], [[54.148718, -2.253701], [54.148638, -2.253794]], [[54.148638, -2.253794], [54.148549, -2.253856]], [[54.148457, -2.253933], [54.148388, -2.254033]], [[54.148145, -2.253896], [54.148053, -2.253845]], [[54.147958, -2.253794], [54.147867, -2.25377]], [[54.147867, -2.25377], [54.147771, -2.253756]], [[54.147771, -2.253756], [54.147671, -2.253728]], [[54.147392, -2.253611], [54.147304, -2.253543]], [[54.146816, -2.253118], [54.146717, -2.253145]], [[54.146717, -2.253145], [54.146626, -2.253166]], [[54.146626, -2.253166], [54.146537, -2.253222]], [[54.146537, -2.253222], [54.146458, -2.253303]], [[54.146458, -2.253303], [54.146362, -2.253358]], [[54.144863, -2.253771], [54.14477, -2.253815]], [[54.14477, -2.253815], [54.144678, -2.253853]], [[54.144011, -2.253931], [54.143919, -2.253913]], [[54.143012, -2.253621], [54.142913, -2.253653]], [[54.142533, -2.253642], [54.142437, -2.253615]], [[54.142331, -2.253196], [54.14228, -2.253065]], [[54.142099, -2.2527], [54.142032, -2.252578]], [[54.142032, -2.252578], [54.141972, -2.252446]], [[54.141932, -2.251977], [54.141903, -2.251825]], [[54.141903, -2.251825], [54.14187, -2.251665]], [[54.14187, -2.251665], [54.141841, -2.251514]], [[54.141491, -2.24998], [54.141451, -2.249842]], [[54.141451, -2.249842], [54.141414, -2.24969]], [[54.141414, -2.24969], [54.141394, -2.24954]], [[54.141409, -2.249206], [54.141419, -2.249042]], [[54.141419, -2.249042], [54.141432, -2.24887]], [[54.141432, -2.24887], [54.141409, -2.248711]], [[54.141409, -2.248711], [54.141348, -2.248572]], [[54.141348, -2.248572], [54.141302, -2.248435]], [[54.141302, -2.248435], [54.141237, -2.248306]], [[54.141237, -2.248306], [54.141176, -2.248187]], [[54.141066, -2.247898], [54.141008, -2.247781]], [[54.140872, -2.247547], [54.140818, -2.2474]], [[54.140818, -2.2474], [54.140787, -2.247252]], [[54.140763, -2.246935], [54.140763, -2.246781]], [[54.140763, -2.246781], [54.14075, -2.246615]], [[54.14075, -2.246615], [54.140737, -2.246444]], [[54.140737, -2.246444], [54.14074, -2.246283]], [[54.14074, -2.246283], [54.140725, -2.246132]], [[54.140621, -2.2453], [54.140539, -2.24522]], [[54.140266, -2.245254], [54.140171, -2.245297]], [[54.140171, -2.245297], [54.140086, -2.245232]], [[54.140086, -2.245232], [54.139993, -2.245202]], [[54.139434, -2.243821], [54.139375, -2.243682]], [[54.139165, -2.243327], [54.1391, -2.243216]], [[54.138843, -2.242948], [54.13878, -2.242829]], [[54.13878, -2.242829], [54.138698, -2.242733]], [[54.138698, -2.242733], [54.138619, -2.242636]], [[54.138619, -2.242636], [54.138656, -2.242487]], [[54.138656, -2.242487], [54.1387, -2.242353]], [[54.139251, -2.240431], [54.139342, -2.240369]], [[54.139578, -2.240093], [54.139637, -2.239948]], [[54.139637, -2.239948], [54.139697, -2.239827]], [[54.139697, -2.239827], [54.139764, -2.239721]], [[54.139764, -2.239721], [54.139836, -2.239597]], [[54.139836, -2.239597], [54.139905, -2.23949]], [[54.139905, -2.23949], [54.13996, -2.239368]], [[54.140201, -2.238848], [54.140253, -2.238704]], [[54.140253, -2.238704], [54.140305, -2.238555]], [[54.140402, -2.23826], [54.140449, -2.238107]], [[54.140449, -2.238107], [54.140489, -2.237956]], [[54.140489, -2.237956], [54.140535, -2.237809]], [[54.140535, -2.237809], [54.140577, -2.237655]], [[54.140577, -2.237655], [54.140618, -2.237515]], [[54.14082, -2.236958], [54.140876, -2.236818]], [[54.140876, -2.236818], [54.140929, -2.236694]], [[54.141372, -2.235816], [54.141444, -2.2357]], [[54.141444, -2.2357], [54.141503, -2.235573]], [[54.141993, -2.234534], [54.142045, -2.234407]], [[54.142363, -2.233809], [54.142424, -2.233679]], [[54.142424, -2.233679], [54.142493, -2.233553]], [[54.142493, -2.233553], [54.142559, -2.233439]], [[54.142746, -2.233091], [54.14281, -2.232981]], [[54.14281, -2.232981], [54.142892, -2.232882]], [[54.142892, -2.232882], [54.142968, -2.23278]], [[54.143176, -2.232439], [54.14324, -2.232324]], [[54.143308, -2.232208], [54.143383, -2.232085]], [[54.143596, -2.231683], [54.143658, -2.231563]], [[54.143658, -2.231563], [54.143724, -2.231449]], [[54.143724, -2.231449], [54.143802, -2.231344]], [[54.143802, -2.231344], [54.143889, -2.231252]], [[54.143889, -2.231252], [54.14396, -2.231156]], [[54.144176, -2.230848], [54.144263, -2.230766]], [[54.144263, -2.230766], [54.144355, -2.230722]], [[54.144908, -2.230096], [54.144984, -2.229994]], [[54.144984, -2.229994], [54.145061, -2.229907]], [[54.145298, -2.229617], [54.145382, -2.229535]], [[54.14606, -2.228886], [54.146144, -2.228813]], [[54.146144, -2.228813], [54.146215, -2.228715]], [[54.146492, -2.227358], [54.146496, -2.22719]], [[54.146496, -2.22719], [54.146493, -2.227035]], [[54.146571, -2.226554], [54.146575, -2.226387]], [[54.146575, -2.226387], [54.146543, -2.226239]], [[54.146277, -2.225638], [54.146227, -2.225508]], [[54.146227, -2.225508], [54.14616, -2.225389]], [[54.145921, -2.224913], [54.145852, -2.22481]], [[54.145397, -2.223998], [54.145329, -2.223872]], [[54.145329, -2.223872], [54.145261, -2.223755]], [[54.144794, -2.222725], [54.14474, -2.222587]], [[54.144527, -2.222269], [54.14453, -2.22211]], [[54.143301, -2.217962], [54.143332, -2.217817]], [[54.144785, -2.2068], [54.144838, -2.206675]], [[54.144838, -2.206675], [54.144872, -2.206523]], [[54.14412, -2.20556], [54.144118, -2.205394]], [[54.144118, -2.205394], [54.144095, -2.205229]], [[54.144095, -2.205229], [54.144098, -2.205065]], [[54.144098, -2.205065], [54.144112, -2.204913]], [[54.144112, -2.204913], [54.144111, -2.204752]], [[54.144111, -2.204752], [54.144117, -2.204585]], [[54.144117, -2.204585], [54.144097, -2.204428]], [[54.144097, -2.204428], [54.144045, -2.20429]], [[54.144045, -2.20429], [54.143964, -2.204206]], [[54.143964, -2.204206], [54.143895, -2.20409]], [[54.143895, -2.20409], [54.143829, -2.203981]], [[54.143829, -2.203981], [54.143754, -2.203874]], [[54.143446, -2.203586], [54.143348, -2.203581]], [[54.143348, -2.203581], [54.143253, -2.203574]], [[54.143253, -2.203574], [54.143152, -2.203585]], [[54.143152, -2.203585], [54.143051, -2.203555]], [[54.143051, -2.203555], [54.142954, -2.203515]], [[54.142954, -2.203515], [54.142891, -2.203401]], [[54.142695, -2.20287], [54.142644, -2.20272]], [[54.142644, -2.20272], [54.142577, -2.202618]], [[54.142577, -2.202618], [54.142485, -2.202555]], [[54.142391, -2.202507], [54.142309, -2.202435]], [[54.142309, -2.202435], [54.142232, -2.202352]], [[54.142232, -2.202352], [54.142185, -2.202211]], [[54.142185, -2.202211], [54.142147, -2.202057]], [[54.142111, -2.201898], [54.142061, -2.201752]], [[54.142061, -2.201752], [54.141987, -2.20165]], [[54.141915, -2.201552], [54.141888, -2.201394]], [[54.141888, -2.201394], [54.141841, -2.201244]], [[54.141841, -2.201244], [54.141764, -2.201136]], [[54.141764, -2.201136], [54.141686, -2.201042]], [[54.141686, -2.201042], [54.141621, -2.200935]], [[54.141621, -2.200935], [54.141553, -2.200817]], [[54.141553, -2.200817], [54.14148, -2.200718]], [[54.14148, -2.200718], [54.141423, -2.20059]], [[54.141374, -2.200451], [54.141317, -2.200313]], [[54.141317, -2.200313], [54.141282, -2.200151]], [[54.141282, -2.200151], [54.141222, -2.200024]], [[54.141222, -2.200024], [54.141135, -2.199959]], [[54.141049, -2.199901], [54.140964, -2.199804]], [[54.140964, -2.199804], [54.140894, -2.199701]], [[54.140742, -2.199513], [54.14066, -2.199426]], [[54.14066, -2.199426], [54.140584, -2.199337]], [[54.140584, -2.199337], [54.140521, -2.199223]], [[54.140521, -2.199223], [54.140466, -2.199102]], [[54.140466, -2.199102], [54.140395, -2.198973]], [[54.140315, -2.198872], [54.140248, -2.198745]], [[54.140248, -2.198745], [54.140186, -2.198627]], [[54.140186, -2.198627], [54.140119, -2.1985]], [[54.140119, -2.1985], [54.140047, -2.198389]], [[54.140047, -2.198389], [54.139988, -2.198246]], [[54.139825, -2.197832], [54.139756, -2.197707]], [[54.139756, -2.197707], [54.139689, -2.197594]], [[54.139582, -2.197327], [54.139534, -2.197188]], [[54.139534, -2.197188], [54.139497, -2.197026]], [[54.139497, -2.197026], [54.139467, -2.196872]], [[54.139467, -2.196872], [54.139427, -2.196716]], [[54.139427, -2.196716], [54.13937, -2.196576]], [[54.13937, -2.196576], [54.139303, -2.196473]], [[54.139303, -2.196473], [54.139239, -2.19634]], [[54.139239, -2.19634], [54.13918, -2.196221]], [[54.13918, -2.196221], [54.139117, -2.196089]], [[54.139117, -2.196089], [54.139057, -2.195964]], [[54.139057, -2.195964], [54.139021, -2.195822]], [[54.139021, -2.195822], [54.138991, -2.195669]], [[54.138942, -2.195518], [54.138875, -2.195412]], [[54.138875, -2.195412], [54.138837, -2.195261]], [[54.138792, -2.195112], [54.138743, -2.194967]], [[54.138645, -2.194524], [54.138638, -2.194368]], [[54.138538, -2.193911], [54.138474, -2.193804]], [[54.138474, -2.193804], [54.138399, -2.193692]], [[54.138399, -2.193692], [54.138331, -2.193585]], [[54.138066, -2.193488], [54.137975, -2.193479]], [[54.137975, -2.193479], [54.137876, -2.19344]], [[54.137876, -2.19344], [54.137784, -2.193417]], [[54.137784, -2.193417], [54.137685, -2.193405]], [[54.137685, -2.193405], [54.137592, -2.193371]], [[54.137425, -2.193217], [54.137346, -2.193135]], [[54.136965, -2.193044], [54.136868, -2.192989]], [[54.136868, -2.192989], [54.13678, -2.192939]], [[54.13633, -2.191891], [54.136388, -2.191766]], [[54.136388, -2.191766], [54.136452, -2.191648]], [[54.136452, -2.191648], [54.136447, -2.191489]], [[54.136447, -2.191489], [54.136407, -2.191351]], [[54.136402, -2.191188], [54.136346, -2.191058]], [[54.136283, -2.190945], [54.136209, -2.19083]], [[54.135642, -2.190253], [54.135554, -2.190173]], [[54.135554, -2.190173], [54.135469, -2.190121]], [[54.135469, -2.190121], [54.135377, -2.190049]], [[54.135377, -2.190049], [54.135295, -2.189975]], [[54.135295, -2.189975], [54.135206, -2.189923]], [[54.134922, -2.189515], [54.134848, -2.18942]], [[54.134226, -2.189063], [54.134134, -2.18911]], [[54.133961, -2.188962], [54.133902, -2.188821]], [[54.133902, -2.188821], [54.133843, -2.188699]], [[54.133507, -2.188373], [54.133412, -2.188363]], [[54.133412, -2.188363], [54.133318, -2.188373]], [[54.133318, -2.188373], [54.133217, -2.188403]], [[54.132657, -2.188534], [54.132567, -2.188599]], [[54.132567, -2.188599], [54.132464, -2.188632]], [[54.132286, -2.188731], [54.132182, -2.188706]], [[54.131885, -2.188707], [54.131796, -2.18878]], [[54.131796, -2.18878], [54.131704, -2.188797]], [[54.131611, -2.188821], [54.131521, -2.188825]], [[54.131521, -2.188825], [54.131431, -2.188815]], [[54.131431, -2.188815], [54.131338, -2.188872]], [[54.131338, -2.188872], [54.131236, -2.188869]], [[54.131236, -2.188869], [54.131141, -2.188891]], [[54.131141, -2.188891], [54.131056, -2.188959]], [[54.131056, -2.188959], [54.130959, -2.188954]], [[54.130959, -2.188954], [54.130868, -2.188929]], [[54.130868, -2.188929], [54.130777, -2.188889]], [[54.130485, -2.188812], [54.130391, -2.188769]], [[54.130391, -2.188769], [54.13029, -2.18872]], [[54.129057, -2.188549], [54.128957, -2.188551]], [[54.128957, -2.188551], [54.128864, -2.188524]], [[54.128864, -2.188524], [54.12877, -2.188489]], [[54.12877, -2.188489], [54.128674, -2.18846]], [[54.128489, -2.188413], [54.128389, -2.18843]], [[54.128389, -2.18843], [54.128294, -2.188464]], [[54.128294, -2.188464], [54.128205, -2.188536]], [[54.128205, -2.188536], [54.128119, -2.188621]], [[54.127926, -2.188636], [54.127836, -2.188696]], [[54.127836, -2.188696], [54.127754, -2.188778]], [[54.127465, -2.188837], [54.127395, -2.188938]], [[54.127355, -2.189077], [54.127296, -2.189203]], [[54.127296, -2.189203], [54.127231, -2.189333]], [[54.12708, -2.189546], [54.127014, -2.189662]], [[54.127014, -2.189662], [54.126942, -2.189788]], [[54.126942, -2.189788], [54.126853, -2.189833]], [[54.126853, -2.189833], [54.126764, -2.189873]], [[54.126764, -2.189873], [54.126668, -2.189918]], [[54.126668, -2.189918], [54.126579, -2.189948]], [[54.126487, -2.189983], [54.126386, -2.189983]], [[54.126386, -2.189983], [54.126298, -2.190031]], [[54.126298, -2.190031], [54.126218, -2.190128]], [[54.126218, -2.190128], [54.126143, -2.190232]], [[54.126143, -2.190232], [54.126053, -2.190316]], [[54.126053, -2.190316], [54.125965, -2.190356]], [[54.125965, -2.190356], [54.125879, -2.19044]], [[54.125879, -2.19044], [54.125786, -2.190419]], [[54.125786, -2.190419], [54.125695, -2.19044]], [[54.125505, -2.19043], [54.125408, -2.190388]], [[54.125028, -2.189861], [54.124977, -2.189734]], [[54.124977, -2.189734], [54.12492, -2.189596]], [[54.124843, -2.189487], [54.124778, -2.189376]], [[54.124778, -2.189376], [54.12471, -2.189267]], [[54.124558, -2.189055], [54.124483, -2.18895]], [[54.124483, -2.18895], [54.124453, -2.188794]], [[54.124453, -2.188794], [54.124419, -2.188638]], [[54.124391, -2.188299], [54.124375, -2.188137]], [[54.124338, -2.187813], [54.124311, -2.187662]], [[54.124311, -2.187662], [54.1243, -2.18749]], [[54.1243, -2.18749], [54.124275, -2.187342]], [[54.124275, -2.187342], [54.124267, -2.187182]], [[54.124155, -2.186713], [54.124115, -2.186557]], [[54.124115, -2.186557], [54.124087, -2.186398]], [[54.124087, -2.186398], [54.124046, -2.186254]], [[54.124046, -2.186254], [54.124015, -2.1861]], [[54.124015, -2.1861], [54.123991, -2.185937]], [[54.123827, -2.18553], [54.123784, -2.185372]], [[54.123784, -2.185372], [54.123722, -2.185236]], [[54.123722, -2.185236], [54.123665, -2.185113]], [[54.123665, -2.185113], [54.123613, -2.184981]], [[54.123513, -2.184719], [54.123455, -2.18458]], [[54.123455, -2.18458], [54.123401, -2.184441]], [[54.123401, -2.184441], [54.123356, -2.184296]], [[54.123104, -2.1838], [54.123046, -2.183676]], [[54.12288, -2.183283], [54.122844, -2.183135]], [[54.122844, -2.183135], [54.122893, -2.183002]], [[54.123125, -2.182469], [54.12315, -2.182308]], [[54.12315, -2.182308], [54.123194, -2.182162]], [[54.12325, -2.182019], [54.123291, -2.181875]], [[54.123249, -2.181627], [54.123191, -2.181499]], [[54.123074, -2.181237], [54.123019, -2.181096]], [[54.122658, -2.18035], [54.122598, -2.18021]], [[54.12245, -2.179999], [54.122371, -2.179901]], [[54.122371, -2.179901], [54.122298, -2.179796]], [[54.122298, -2.179796], [54.122211, -2.179737]], [[54.121776, -2.179325], [54.121703, -2.17921]], [[54.121703, -2.17921], [54.121643, -2.179074]], [[54.121643, -2.179074], [54.121578, -2.178962]], [[54.12142, -2.178743], [54.121325, -2.178699]], [[54.121127, -2.178709], [54.121043, -2.178632]], [[54.121043, -2.178632], [54.120981, -2.178496]], [[54.120862, -2.178229], [54.120793, -2.17812]], [[54.120131, -2.178157], [54.120034, -2.178169]], [[54.120034, -2.178169], [54.119937, -2.178173]], [[54.119937, -2.178173], [54.119847, -2.178185]], [[54.11946, -2.178231], [54.11937, -2.178246]], [[54.119275, -2.178254], [54.119176, -2.178273]], [[54.119176, -2.178273], [54.119085, -2.178267]], [[54.119085, -2.178267], [54.118993, -2.178271]], [[54.1189, -2.178277], [54.118798, -2.178281]], [[54.118798, -2.178281], [54.118699, -2.178296]], [[54.118699, -2.178296], [54.118601, -2.178317]], [[54.118036, -2.178429], [54.117937, -2.178414]], [[54.117937, -2.178414], [54.117843, -2.178415]], [[54.117747, -2.17842], [54.117652, -2.178397]], [[54.117652, -2.178397], [54.117597, -2.178263]], [[54.117551, -2.178113], [54.117503, -2.177976]], [[54.117503, -2.177976], [54.117436, -2.177863]], [[54.117436, -2.177863], [54.117353, -2.177778]], [[54.117353, -2.177778], [54.117264, -2.177702]], [[54.11703, -2.177434], [54.116937, -2.177389]], [[54.116937, -2.177389], [54.116849, -2.17731]], [[54.116681, -2.177154], [54.116595, -2.177074]], [[54.116595, -2.177074], [54.11652, -2.176988]], [[54.11652, -2.176988], [54.116435, -2.176922]], [[54.116435, -2.176922], [54.116351, -2.176842]], [[54.116351, -2.176842], [54.116257, -2.176827]], [[54.116165, -2.176816], [54.116071, -2.176812]], [[54.116071, -2.176812], [54.115977, -2.17687]], [[54.115806, -2.177036], [54.115719, -2.177112]], [[54.115719, -2.177112], [54.115625, -2.177125]], [[54.115625, -2.177125], [54.115538, -2.177186]], [[54.115401, -2.176515], [54.115368, -2.176363]], [[54.115368, -2.176363], [54.115332, -2.176222]], [[54.115332, -2.176222], [54.115303, -2.176069]], [[54.115303, -2.176069], [54.115258, -2.175922]], [[54.115258, -2.175922], [54.115234, -2.175768]], [[54.115003, -2.175623], [54.114924, -2.175702]], [[54.114924, -2.175702], [54.114836, -2.175786]], [[54.114836, -2.175786], [54.114751, -2.175846]], [[54.11458, -2.175982], [54.114496, -2.176075]], [[54.114496, -2.176075], [54.114411, -2.176144]], [[54.114322, -2.176214], [54.114239, -2.176275]], [[54.114239, -2.176275], [54.114151, -2.17634]], [[54.114151, -2.17634], [54.114058, -2.176366]], [[54.114058, -2.176366], [54.113962, -2.176411]], [[54.113962, -2.176411], [54.113872, -2.17645]], [[54.113619, -2.176613], [54.113522, -2.176645]], [[54.113522, -2.176645], [54.11343, -2.17667]], [[54.11343, -2.17667], [54.113335, -2.176664]], [[54.113335, -2.176664], [54.113246, -2.176642]], [[54.113149, -2.176613], [54.113057, -2.176617]], [[54.113057, -2.176617], [54.112966, -2.176611]], [[54.112877, -2.176585], [54.112779, -2.176541]], [[54.112779, -2.176541], [54.112684, -2.176537]], [[54.112684, -2.176537], [54.112592, -2.176461]], [[54.112324, -2.176263], [54.11224, -2.176192]], [[54.112146, -2.176141], [54.112064, -2.176069]], [[54.111861, -2.176017], [54.111788, -2.175925]], [[54.111622, -2.175745], [54.111532, -2.175663]], [[54.111532, -2.175663], [54.111444, -2.175596]], [[54.111444, -2.175596], [54.111362, -2.175505]], [[54.111362, -2.175505], [54.111281, -2.175412]], [[54.111281, -2.175412], [54.111199, -2.175308]], [[54.111047, -2.175117], [54.110969, -2.175005]], [[54.110969, -2.175005], [54.1109, -2.174898]], [[54.110739, -2.174738], [54.110649, -2.174682]], [[54.110649, -2.174682], [54.110551, -2.174657]], [[54.110551, -2.174657], [54.110456, -2.174649]], [[54.110265, -2.174906], [54.110177, -2.174986]], [[54.110177, -2.174986], [54.11009, -2.175062]], [[54.11009, -2.175062], [54.110014, -2.17516]], [[54.110014, -2.17516], [54.109927, -2.175227]], [[54.109927, -2.175227], [54.109843, -2.175305]], [[54.109843, -2.175305], [54.109752, -2.175324]], [[54.109752, -2.175324], [54.109656, -2.175278]], [[54.109656, -2.175278], [54.109557, -2.175275]], [[54.109557, -2.175275], [54.109458, -2.175267]], [[54.109458, -2.175267], [54.109358, -2.17525]], [[54.109358, -2.17525], [54.109265, -2.175224]], [[54.109265, -2.175224], [54.109172, -2.175182]], [[54.109172, -2.175182], [54.109074, -2.175197]], [[54.108886, -2.175168], [54.108783, -2.175163]], [[54.108595, -2.17508], [54.108493, -2.175066]], [[54.108493, -2.175066], [54.108402, -2.175051]], [[54.108312, -2.175022], [54.108212, -2.17499]], [[54.108212, -2.17499], [54.108117, -2.174961]], [[54.107287, -2.174968], [54.107199, -2.174998]], [[54.107199, -2.174998], [54.107108, -2.175036]], [[54.107108, -2.175036], [54.107008, -2.175058]], [[54.107008, -2.175058], [54.106908, -2.175055]], [[54.106908, -2.175055], [54.106819, -2.175088]], [[54.106819, -2.175088], [54.10673, -2.175124]], [[54.10673, -2.175124], [54.106629, -2.175149]], [[54.106629, -2.175149], [54.106536, -2.175146]], [[54.106536, -2.175146], [54.106444, -2.175078]], [[54.106444, -2.175078], [54.106349, -2.175036]], [[54.106349, -2.175036], [54.106254, -2.174992]], [[54.106254, -2.174992], [54.106156, -2.174968]], [[54.106156, -2.174968], [54.106066, -2.174927]], [[54.106066, -2.174927], [54.105969, -2.174877]], [[54.105969, -2.174877], [54.105879, -2.174862]], [[54.105879, -2.174862], [54.105784, -2.17485]], [[54.105784, -2.17485], [54.105696, -2.17479]], [[54.105231, -2.174219], [54.105149, -2.174115]], [[54.105149, -2.174115], [54.105081, -2.173998]], [[54.105081, -2.173998], [54.105014, -2.173884]], [[54.10469, -2.173254], [54.104608, -2.173183]], [[54.104608, -2.173183], [54.104529, -2.173085]], [[54.104529, -2.173085], [54.104437, -2.173032]], [[54.104437, -2.173032], [54.104353, -2.17297]], [[54.104088, -2.1728], [54.103997, -2.172791]], [[54.103879, -2.172731], [54.103781, -2.172741]], [[54.103589, -2.17273], [54.103499, -2.172712]], [[54.10271, -2.172189], [54.102612, -2.172148]], [[54.102612, -2.172148], [54.102514, -2.17213]], [[54.102321, -2.172126], [54.10223, -2.172155]], [[54.10223, -2.172155], [54.10213, -2.17213]], [[54.101947, -2.172026], [54.101855, -2.172038]], [[54.101643, -2.171394], [54.101576, -2.171444]], [[54.101426, -2.17103], [54.101393, -2.170878]], [[54.101393, -2.170878], [54.10134, -2.17074]], [[54.10134, -2.17074], [54.101276, -2.170625]], [[54.101276, -2.170625], [54.101222, -2.170492]], [[54.101222, -2.170492], [54.101164, -2.17035]], [[54.100819, -2.169396], [54.100784, -2.169227]], [[54.100784, -2.169227], [54.100725, -2.169105]], [[54.100725, -2.169105], [54.100671, -2.168964]], [[54.100671, -2.168964], [54.10062, -2.168818]], [[54.100625, -2.167735], [54.100628, -2.167567]], [[54.100783, -2.166703], [54.100725, -2.166579]], [[54.10089, -2.164671], [54.100917, -2.164501]], [[54.100953, -2.164351], [54.101048, -2.164295]], [[54.101048, -2.164295], [54.101137, -2.164249]], [[54.101152, -2.162501], [54.101095, -2.162366]], [[54.101095, -2.162366], [54.101032, -2.162253]], [[54.100882, -2.162066], [54.100809, -2.161957]], [[54.100809, -2.161957], [54.100747, -2.161844]], [[54.100561, -2.161077], [54.100525, -2.160934]], [[54.100525, -2.160934], [54.100488, -2.160793]], [[54.100488, -2.160793], [54.100435, -2.160666]], [[54.100435, -2.160666], [54.100416, -2.160503]], [[54.100294, -2.159898], [54.100265, -2.15974]], [[54.100265, -2.15974], [54.100228, -2.159582]], [[54.100228, -2.159582], [54.100193, -2.159426]], [[54.100193, -2.159426], [54.100164, -2.159265]], [[54.100164, -2.159265], [54.100119, -2.159124]], [[54.100119, -2.159124], [54.100069, -2.158981]], [[54.100069, -2.158981], [54.100004, -2.158874]], [[54.100004, -2.158874], [54.09993, -2.158781]], [[54.099332, -2.158217], [54.099246, -2.158155]], [[54.098208, -2.157098], [54.098136, -2.157002]], [[54.098136, -2.157002], [54.098056, -2.1569]], [[54.097893, -2.15671], [54.097809, -2.156628]], [[54.097809, -2.156628], [54.097722, -2.156585]], [[54.097089, -2.156214], [54.097002, -2.156267]], [[54.097002, -2.156267], [54.096907, -2.156235]], [[54.096714, -2.156195], [54.096619, -2.156239]], [[54.096619, -2.156239], [54.096522, -2.156284]], [[54.096148, -2.15635], [54.096058, -2.156385]], [[54.096058, -2.156385], [54.095958, -2.156386]], [[54.095387, -2.156457], [54.095304, -2.156516]], [[54.095304, -2.156516], [54.095206, -2.156562]], [[54.095107, -2.156584], [54.095016, -2.156613]], [[54.094543, -2.156764], [54.094455, -2.1568]], [[54.09408, -2.156925], [54.093981, -2.156964]], [[54.093289, -2.157199], [54.093203, -2.157271]], [[54.093203, -2.157271], [54.09311, -2.157328]], [[54.09311, -2.157328], [54.093022, -2.15741]], [[54.093022, -2.15741], [54.092949, -2.157505]], [[54.092949, -2.157505], [54.092875, -2.157614]], [[54.092875, -2.157614], [54.092807, -2.157745]], [[54.092807, -2.157745], [54.092745, -2.157866]], [[54.092745, -2.157866], [54.092679, -2.15797]], [[54.092679, -2.15797], [54.09266, -2.158124]], [[54.09266, -2.158124], [54.092642, -2.158275]], [[54.092642, -2.158275], [54.092621, -2.158429]], [[54.092621, -2.158429], [54.092597, -2.158592]], [[54.092597, -2.158592], [54.092584, -2.158753]], [[54.092584, -2.158753], [54.092561, -2.158919]], [[54.092561, -2.158919], [54.092508, -2.159053]], [[54.092508, -2.159053], [54.092484, -2.159206]], [[54.092484, -2.159206], [54.092431, -2.159355]], [[54.092431, -2.159355], [54.092378, -2.159506]], [[54.092378, -2.159506], [54.092341, -2.159648]], [[54.092341, -2.159648], [54.092291, -2.159809]], [[54.092192, -2.160093], [54.092178, -2.160259]], [[54.092178, -2.160259], [54.09212, -2.160395]], [[54.09212, -2.160395], [54.092071, -2.160526]], [[54.092071, -2.160526], [54.092035, -2.160685]], [[54.092023, -2.160853], [54.092002, -2.161003]], [[54.092002, -2.161003], [54.091977, -2.161162]], [[54.091977, -2.161162], [54.091936, -2.161316]], [[54.091936, -2.161316], [54.091903, -2.161467]], [[54.091903, -2.161467], [54.091906, -2.161636]], [[54.091906, -2.161636], [54.091846, -2.161772]], [[54.091697, -2.1623], [54.091652, -2.162444]], [[54.091652, -2.162444], [54.091607, -2.162588]], [[54.091489, -2.162816], [54.091406, -2.1629]], [[54.091406, -2.1629], [54.091336, -2.163013]], [[54.091044, -2.163408], [54.090959, -2.163491]], [[54.090959, -2.163491], [54.090894, -2.163599]], [[54.090816, -2.163473], [54.090725, -2.163404]], [[54.090725, -2.163404], [54.090628, -2.16337]], [[54.090435, -2.163298], [54.090339, -2.163261]], [[54.090339, -2.163261], [54.090241, -2.163271]], [[54.089952, -2.163232], [54.089859, -2.163228]], [[54.089767, -2.16322], [54.08967, -2.163247]], [[54.08967, -2.163247], [54.089572, -2.163267]], [[54.089572, -2.163267], [54.08948, -2.163283]], [[54.08948, -2.163283], [54.089379, -2.163286]], [[54.089379, -2.163286], [54.089284, -2.163286]], [[54.089284, -2.163286], [54.089189, -2.163265]], [[54.089189, -2.163265], [54.089093, -2.163256]], [[54.089093, -2.163256], [54.089007, -2.163211]], [[54.089007, -2.163211], [54.088907, -2.163176]], [[54.088813, -2.163149], [54.088715, -2.163102]], [[54.088715, -2.163102], [54.088616, -2.163077]], [[54.088332, -2.163038], [54.088245, -2.163085]], [[54.088245, -2.163085], [54.088157, -2.163138]], [[54.088157, -2.163138], [54.088094, -2.163262]], [[54.088037, -2.163811], [54.088034, -2.16397]], [[54.088034, -2.16397], [54.088026, -2.164129]], [[54.088043, -2.164813], [54.087996, -2.16495]], [[54.087654, -2.164676], [54.087569, -2.164614]], [[54.087569, -2.164614], [54.087485, -2.164551]], [[54.087434, -2.16441], [54.087336, -2.164442]], [[54.087336, -2.164442], [54.087248, -2.164506]], [[54.087154, -2.164514], [54.08707, -2.164449]], [[54.08707, -2.164449], [54.086983, -2.164382]], [[54.086983, -2.164382], [54.086906, -2.164286]], [[54.086906, -2.164286], [54.086838, -2.164184]], [[54.08646, -2.16367], [54.086383, -2.16358]], [[54.086383, -2.16358], [54.086296, -2.163531]], [[54.086296, -2.163531], [54.086216, -2.163444]], [[54.085691, -2.163105], [54.085593, -2.163164]], [[54.085593, -2.163164], [54.085512, -2.163239]], [[54.085512, -2.163239], [54.085422, -2.163304]], [[54.085334, -2.163365], [54.085253, -2.163456]], [[54.085253, -2.163456], [54.08518, -2.163569]], [[54.085031, -2.163771], [54.084947, -2.163864]], [[54.084947, -2.163864], [54.084869, -2.163945]], [[54.084869, -2.163945], [54.084791, -2.164055]], [[54.084791, -2.164055], [54.084725, -2.164177]], [[54.084725, -2.164177], [54.084637, -2.164267]], [[54.084637, -2.164267], [54.08457, -2.164395]], [[54.08457, -2.164395], [54.084505, -2.164509]], [[54.084505, -2.164509], [54.084448, -2.164631]], [[54.084448, -2.164631], [54.084376, -2.164735]], [[54.084124, -2.164942], [54.08403, -2.164986]], [[54.08403, -2.164986], [54.08394, -2.165046]], [[54.083687, -2.165284], [54.083608, -2.16536]], [[54.083608, -2.16536], [54.083521, -2.165436]], [[54.083339, -2.165568], [54.083263, -2.165661]], [[54.083263, -2.165661], [54.083178, -2.165742]], [[54.083178, -2.165742], [54.083105, -2.165836]], [[54.083105, -2.165836], [54.083021, -2.165903]], [[54.083021, -2.165903], [54.082923, -2.165968]], [[54.082837, -2.166024], [54.082752, -2.166106]], [[54.082752, -2.166106], [54.082655, -2.166171]], [[54.082655, -2.166171], [54.08257, -2.166231]], [[54.081747, -2.166892], [54.081647, -2.166891]], [[54.081647, -2.166891], [54.081549, -2.166888]], [[54.081549, -2.166888], [54.081458, -2.166903]], [[54.081179, -2.166742], [54.081109, -2.166638]], [[54.081109, -2.166638], [54.081019, -2.166577]], [[54.081019, -2.166577], [54.080932, -2.166509]], [[54.080932, -2.166509], [54.080842, -2.166491]], [[54.080387, -2.166315], [54.080307, -2.166213]], [[54.080211, -2.166166], [54.080123, -2.166123]], [[54.080024, -2.166112], [54.079937, -2.166066]], [[54.079937, -2.166066], [54.079846, -2.166079]], [[54.079686, -2.167114], [54.079712, -2.167269]], [[54.079712, -2.167269], [54.079736, -2.167439]], [[54.079736, -2.167439], [54.07976, -2.167587]], [[54.079054, -2.166149], [54.078965, -2.166104]], [[54.078965, -2.166104], [54.078919, -2.165961]], [[54.078919, -2.165961], [54.078855, -2.165847]], [[54.078547, -2.165286], [54.0785, -2.165151]], [[54.0785, -2.165151], [54.07842, -2.165052]], [[54.078207, -2.164727], [54.078184, -2.164574]], [[54.078075, -2.164315], [54.078033, -2.164176]], [[54.078033, -2.164176], [54.077969, -2.164047]], [[54.077969, -2.164047], [54.077897, -2.163947]], [[54.077897, -2.163947], [54.07782, -2.16386]], [[54.07782, -2.16386], [54.077763, -2.163717]], [[54.077763, -2.163717], [54.077709, -2.163579]], [[54.077651, -2.163457], [54.07757, -2.16336]], [[54.07757, -2.16336], [54.077511, -2.163244]], [[54.077436, -2.163126], [54.077367, -2.163012]], [[54.077174, -2.162637], [54.077092, -2.162557]], [[54.076959, -2.162313], [54.076909, -2.162158]], [[54.076909, -2.162158], [54.076849, -2.162024]], [[54.076849, -2.162024], [54.076808, -2.161885]], [[54.076808, -2.161885], [54.076751, -2.161763]], [[54.076751, -2.161763], [54.076681, -2.161639]], [[54.076628, -2.161498], [54.076548, -2.161402]], [[54.076548, -2.161402], [54.076516, -2.161242]], [[54.076516, -2.161242], [54.076432, -2.161164]], [[54.076432, -2.161164], [54.076355, -2.16104]], [[54.076355, -2.16104], [54.076282, -2.160935]], [[54.076112, -2.160777], [54.076034, -2.160678]], [[54.076034, -2.160678], [54.075947, -2.160595]], [[54.075947, -2.160595], [54.075875, -2.160494]], [[54.075875, -2.160494], [54.075791, -2.160425]], [[54.075707, -2.160372], [54.075638, -2.160266]], [[54.075638, -2.160266], [54.075562, -2.160169]], [[54.075562, -2.160169], [54.075483, -2.160069]], [[54.07539, -2.160051], [54.07531, -2.159978]], [[54.07499, -2.159621], [54.074898, -2.159633]], [[54.074898, -2.159633], [54.07481, -2.159577]], [[54.074728, -2.159486], [54.07467, -2.159358]], [[54.074577, -2.159353], [54.074484, -2.159326]], [[54.074176, -2.159157], [54.074118, -2.15904]], [[54.074118, -2.15904], [54.07405, -2.158936]], [[54.07405, -2.158936], [54.073962, -2.15887]], [[54.073879, -2.158789], [54.073793, -2.158716]], [[54.073709, -2.158658], [54.073623, -2.158592]], [[54.073623, -2.158592], [54.073551, -2.158473]], [[54.073473, -2.15837], [54.073372, -2.158333]], [[54.072868, -2.15936], [54.072914, -2.159505]], [[54.071954, -2.16084], [54.071865, -2.160806]], [[54.071692, -2.159677], [54.07171, -2.159519]], [[54.07157, -2.158904], [54.071504, -2.158795]], [[54.071359, -2.158599], [54.071277, -2.15851]], [[54.07088, -2.158452], [54.070786, -2.158485]], [[54.070786, -2.158485], [54.070694, -2.158457]], [[54.070694, -2.158457], [54.070605, -2.158488]], [[54.070605, -2.158488], [54.070504, -2.158506]], [[54.070504, -2.158506], [54.070415, -2.158445]], [[54.069981, -2.158923], [54.069881, -2.158887]], [[54.069691, -2.158887], [54.069595, -2.158898]], [[54.06941, -2.158876], [54.069336, -2.158927]], [[54.06896, -2.159056], [54.068874, -2.15913]], [[54.068874, -2.15913], [54.068772, -2.159124]], [[54.068772, -2.159124], [54.068676, -2.159181]], [[54.06792, -2.159064], [54.067836, -2.159123]], [[54.06774, -2.159113], [54.067643, -2.159129]], [[54.067365, -2.159055], [54.067275, -2.159019]], [[54.067275, -2.159019], [54.067176, -2.159015]], [[54.067085, -2.159041], [54.066992, -2.159063]], [[54.066992, -2.159063], [54.066902, -2.15902]], [[54.066902, -2.15902], [54.066805, -2.159056]], [[54.066627, -2.159084], [54.066565, -2.158947]], [[54.066565, -2.158947], [54.0665, -2.15884]], [[54.0665, -2.15884], [54.066415, -2.158749]], [[54.066415, -2.158749], [54.066355, -2.158634]], [[54.066114, -2.158408], [54.066055, -2.158277]], [[54.065855, -2.157712], [54.065782, -2.15762]], [[54.065709, -2.157522], [54.065658, -2.157395]], [[54.065479, -2.156997], [54.065421, -2.156852]], [[54.065421, -2.156852], [54.065359, -2.15671]], [[54.065164, -2.156149], [54.065092, -2.156054]], [[54.063904, -2.154476], [54.06382, -2.154396]], [[54.063359, -2.153847], [54.063263, -2.153824]], [[54.063263, -2.153824], [54.063165, -2.1538]], [[54.062902, -2.153663], [54.062799, -2.153664]], [[54.062799, -2.153664], [54.062704, -2.153683]], [[54.062515, -2.153587], [54.062421, -2.153595]], [[54.062241, -2.153482], [54.062171, -2.153384]], [[54.062171, -2.153384], [54.062078, -2.153365]], [[54.062078, -2.153365], [54.061972, -2.153321]], [[54.061711, -2.153248], [54.061646, -2.153137]], [[54.061646, -2.153137], [54.061698, -2.153004]], [[54.061913, -2.152476], [54.061997, -2.152425]], [[54.061851, -2.152614], [54.061773, -2.152509]], [[54.061773, -2.152509], [54.061695, -2.152409]], [[54.061276, -2.152735], [54.061178, -2.152756]], [[54.061096, -2.152686], [54.061013, -2.152598]], [[54.060579, -2.152609], [54.060483, -2.152612]], [[54.060094, -2.152579], [54.059999, -2.152568]], [[54.059999, -2.152568], [54.059909, -2.152524]], [[54.059809, -2.152523], [54.059713, -2.152529]], [[54.05962, -2.15249], [54.059521, -2.152474]], [[54.059521, -2.152474], [54.059426, -2.152433]], [[54.059426, -2.152433], [54.059335, -2.152421]], [[54.059335, -2.152421], [54.059238, -2.152385]], [[54.059238, -2.152385], [54.059153, -2.152328]], [[54.059153, -2.152328], [54.059071, -2.152267]], [[54.059071, -2.152267], [54.05898, -2.152181]], [[54.058729, -2.151897], [54.058647, -2.151829]], [[54.058482, -2.151657], [54.058391, -2.151595]], [[54.058391, -2.151595], [54.058309, -2.151522]], [[54.058039, -2.151387], [54.057942, -2.151346]], [[54.057942, -2.151346], [54.057852, -2.151277]], [[54.057852, -2.151277], [54.057762, -2.151228]], [[54.057762, -2.151228], [54.05768, -2.15116]], [[54.057583, -2.151111], [54.057492, -2.151048]], [[54.05738, -2.150925], [54.057288, -2.150898]], [[54.056908, -2.150732], [54.056811, -2.150693]], [[54.056811, -2.150693], [54.056721, -2.150641]], [[54.056532, -2.150552], [54.056434, -2.150521]], [[54.056434, -2.150521], [54.056335, -2.150484]], [[54.056335, -2.150484], [54.056239, -2.150457]], [[54.056239, -2.150457], [54.056148, -2.150423]], [[54.056148, -2.150423], [54.05605, -2.1504]], [[54.055638, -2.150214], [54.055547, -2.150164]], [[54.055547, -2.150164], [54.055453, -2.150123]], [[54.055453, -2.150123], [54.055354, -2.150076]], [[54.055354, -2.150076], [54.055275, -2.149999]], [[54.055275, -2.149999], [54.055181, -2.14996]], [[54.055181, -2.14996], [54.05509, -2.149942]], [[54.053886, -2.149742], [54.053798, -2.149688]], [[54.053718, -2.149586], [54.053633, -2.149509]], [[54.053633, -2.149509], [54.053556, -2.149428]], [[54.053283, -2.14997], [54.053283, -2.150135]], [[54.053283, -2.150135], [54.053244, -2.150276]], [[54.053244, -2.150276], [54.053183, -2.150408]], [[54.053183, -2.150408], [54.053107, -2.150516]], [[54.052926, -2.150687], [54.052844, -2.15078]], [[54.052555, -2.150982], [54.052461, -2.151024]], [[54.052461, -2.151024], [54.052375, -2.151091]], [[54.052375, -2.151091], [54.052288, -2.151165]], [[54.052288, -2.151165], [54.052201, -2.151243]], [[54.052201, -2.151243], [54.052123, -2.151333]], [[54.052123, -2.151333], [54.052032, -2.151417]], [[54.052032, -2.151417], [54.051952, -2.15149]], [[54.051952, -2.15149], [54.051876, -2.151573]], [[54.051876, -2.151573], [54.051791, -2.151631]], [[54.051791, -2.151631], [54.05171, -2.151719]], [[54.05171, -2.151719], [54.05165, -2.15185]], [[54.051437, -2.152251], [54.051371, -2.152375]], [[54.051371, -2.152375], [54.051319, -2.152518]], [[54.051319, -2.152518], [54.05125, -2.152623]], [[54.05125, -2.152623], [54.051187, -2.152736]], [[54.051187, -2.152736], [54.051102, -2.152828]], [[54.051102, -2.152828], [54.051008, -2.152824]], [[54.051008, -2.152824], [54.050918, -2.15277]], [[54.050732, -2.152705], [54.050641, -2.152672]], [[54.050641, -2.152672], [54.050551, -2.15262]], [[54.050551, -2.15262], [54.050463, -2.152583]], [[54.050463, -2.152583], [54.050366, -2.152548]], [[54.050366, -2.152548], [54.050275, -2.152493]], [[54.050275, -2.152493], [54.050183, -2.152449]], [[54.050183, -2.152449], [54.050095, -2.152394]], [[54.050095, -2.152394], [54.050014, -2.152317]], [[54.050014, -2.152317], [54.049927, -2.15223]], [[54.049927, -2.15223], [54.049843, -2.152147]], [[54.049843, -2.152147], [54.049753, -2.152095]], [[54.049753, -2.152095], [54.049657, -2.152052]], [[54.049506, -2.151876], [54.04943, -2.15177]], [[54.04943, -2.15177], [54.049358, -2.151677]], [[54.049358, -2.151677], [54.049265, -2.151638]], [[54.049104, -2.15154], [54.049016, -2.151513]], [[54.049016, -2.151513], [54.048919, -2.151486]], [[54.048919, -2.151486], [54.048831, -2.151534]], [[54.048831, -2.151534], [54.048739, -2.151521]], [[54.048407, -2.151594], [54.048301, -2.151605]], [[54.048001, -2.151601], [54.047908, -2.151559]], [[54.047908, -2.151559], [54.047816, -2.151555]], [[54.047816, -2.151555], [54.047725, -2.151609]], [[54.047561, -2.15203], [54.047506, -2.152155]], [[54.047506, -2.152155], [54.047453, -2.152285]], [[54.047453, -2.152285], [54.047375, -2.152399]], [[54.047375, -2.152399], [54.047302, -2.152509]], [[54.047302, -2.152509], [54.047236, -2.152631]], [[54.047236, -2.152631], [54.047158, -2.152731]], [[54.047031, -2.152977], [54.046985, -2.153126]], [[54.046985, -2.153126], [54.046939, -2.153264]], [[54.046939, -2.153264], [54.04691, -2.153427]], [[54.04691, -2.153427], [54.046856, -2.153575]], [[54.046856, -2.153575], [54.046823, -2.153733]], [[54.046823, -2.153733], [54.046743, -2.153824]], [[54.046743, -2.153824], [54.046687, -2.153964]], [[54.046618, -2.154088], [54.046553, -2.154202]], [[54.046553, -2.154202], [54.046467, -2.154263]], [[54.046467, -2.154263], [54.046388, -2.154347]], [[54.046306, -2.154415], [54.046207, -2.154366]], [[54.046008, -2.154322], [54.045913, -2.154316]], [[54.045816, -2.154303], [54.045714, -2.15425]], [[54.045714, -2.15425], [54.045624, -2.154206]], [[54.045438, -2.154159], [54.045345, -2.154181]], [[54.045256, -2.154144], [54.045166, -2.15409]], [[54.045166, -2.15409], [54.045073, -2.154085]], [[54.045073, -2.154085], [54.044982, -2.154063]], [[54.044982, -2.154063], [54.044891, -2.154018]], [[54.044891, -2.154018], [54.044791, -2.153986]], [[54.044791, -2.153986], [54.044703, -2.153933]], [[54.044703, -2.153933], [54.044602, -2.153902]], [[54.044602, -2.153902], [54.044511, -2.153873]], [[54.044511, -2.153873], [54.044415, -2.153871]], [[54.044415, -2.153871], [54.044314, -2.153871]], [[54.044314, -2.153871], [54.044222, -2.153922]], [[54.044126, -2.153941], [54.044029, -2.153941]], [[54.044029, -2.153941], [54.043938, -2.153936]], [[54.043938, -2.153936], [54.043843, -2.153935]], [[54.043552, -2.153953], [54.043455, -2.153925]], [[54.043455, -2.153925], [54.043356, -2.15393]], [[54.043356, -2.15393], [54.043265, -2.153932]], [[54.043265, -2.153932], [54.043173, -2.153913]], [[54.04309, -2.15384], [54.043002, -2.153773]], [[54.042827, -2.153665], [54.042778, -2.153532]], [[54.042725, -2.153408], [54.042665, -2.153282]], [[54.042665, -2.153282], [54.042596, -2.153167]], [[54.042526, -2.153044], [54.042453, -2.152943]], [[54.042453, -2.152943], [54.042378, -2.152836]], [[54.042209, -2.152631], [54.042157, -2.152496]], [[54.042157, -2.152496], [54.04208, -2.152383]], [[54.04208, -2.152383], [54.042028, -2.15224]], [[54.042028, -2.15224], [54.04195, -2.152158]], [[54.04195, -2.152158], [54.041865, -2.152081]], [[54.041865, -2.152081], [54.041776, -2.152018]], [[54.041776, -2.152018], [54.04168, -2.151999]], [[54.04168, -2.151999], [54.041591, -2.151955]], [[54.041591, -2.151955], [54.041498, -2.151902]], [[54.041498, -2.151902], [54.041419, -2.151817]], [[54.041419, -2.151817], [54.041329, -2.151748]], [[54.041329, -2.151748], [54.041243, -2.151699]], [[54.041045, -2.151728], [54.040959, -2.151785]], [[54.040959, -2.151785], [54.040864, -2.151743]], [[54.040766, -2.151747], [54.040665, -2.151761]], [[54.040665, -2.151761], [54.040564, -2.151783]], [[54.040386, -2.151874], [54.040295, -2.151886]], [[54.040295, -2.151886], [54.040219, -2.151982]], [[54.040068, -2.152162], [54.039986, -2.152245]], [[54.039986, -2.152245], [54.039894, -2.152236]], [[54.039894, -2.152236], [54.039795, -2.152228]], [[54.039795, -2.152228], [54.039704, -2.152167]], [[54.039517, -2.152066], [54.039432, -2.152006]], [[54.039432, -2.152006], [54.039343, -2.151951]], [[54.039165, -2.151897], [54.039068, -2.151894]], [[54.039068, -2.151894], [54.039005, -2.151763]], [[54.039005, -2.151763], [54.038915, -2.15171]], [[54.038915, -2.15171], [54.038819, -2.151756]], [[54.038819, -2.151756], [54.038737, -2.151851]], [[54.038737, -2.151851], [54.038658, -2.151938]], [[54.038658, -2.151938], [54.03856, -2.151921]], [[54.038474, -2.151873], [54.038385, -2.151844]], [[54.038385, -2.151844], [54.038283, -2.151818]], [[54.038283, -2.151818], [54.038191, -2.15182]], [[54.038191, -2.15182], [54.038099, -2.151824]], [[54.038099, -2.151824], [54.038004, -2.151846]], [[54.038004, -2.151846], [54.037916, -2.151925]], [[54.037916, -2.151925], [54.037829, -2.15201]], [[54.037829, -2.15201], [54.037753, -2.152119]], [[54.036986, -2.152212], [54.036898, -2.152159]], [[54.036542, -2.152296], [54.036452, -2.152273]], [[54.036452, -2.152273], [54.03635, -2.152266]], [[54.03635, -2.152266], [54.036259, -2.152236]], [[54.036168, -2.152196], [54.036074, -2.152151]], [[54.036074, -2.152151], [54.035983, -2.15209]], [[54.035983, -2.15209], [54.035893, -2.152013]], [[54.035893, -2.152013], [54.035808, -2.151939]], [[54.035808, -2.151939], [54.035726, -2.151873]], [[54.035726, -2.151873], [54.035634, -2.151803]], [[54.035634, -2.151803], [54.035547, -2.151766]], [[54.035547, -2.151766], [54.035464, -2.1517]], [[54.035464, -2.1517], [54.03537, -2.151648]], [[54.03537, -2.151648], [54.035271, -2.151626]], [[54.035271, -2.151626], [54.035178, -2.151602]], [[54.035178, -2.151602], [54.035085, -2.151581]], [[54.035085, -2.151581], [54.034988, -2.151559]], [[54.034988, -2.151559], [54.034888, -2.151524]], [[54.034888, -2.151524], [54.034787, -2.151503]], [[54.034787, -2.151503], [54.034696, -2.151483]], [[54.034696, -2.151483], [54.034605, -2.151452]], [[54.034605, -2.151452], [54.034506, -2.151466]], [[54.034506, -2.151466], [54.034411, -2.151456]], [[54.034411, -2.151456], [54.034318, -2.151431]], [[54.034318, -2.151431], [54.034219, -2.151396]], [[54.034219, -2.151396], [54.034123, -2.15137]], [[54.034028, -2.151346], [54.033938, -2.151309]], [[54.033938, -2.151309], [54.033836, -2.1513]], [[54.033836, -2.1513], [54.033745, -2.151274]], [[54.033745, -2.151274], [54.033682, -2.151148]], [[54.033594, -2.150877], [54.033522, -2.150766]], [[54.033522, -2.150766], [54.033452, -2.150663]], [[54.033452, -2.150663], [54.033376, -2.150558]], [[54.033376, -2.150558], [54.033288, -2.150465]], [[54.033288, -2.150465], [54.03321, -2.150351]], [[54.03321, -2.150351], [54.03314, -2.150247]], [[54.03314, -2.150247], [54.033076, -2.150137]], [[54.033076, -2.150137], [54.033021, -2.150003]], [[54.033021, -2.150003], [54.032965, -2.149878]], [[54.032648, -2.149386], [54.032581, -2.149261]], [[54.032581, -2.149261], [54.032502, -2.149175]], [[54.032039, -2.149016], [54.03194, -2.148991]], [[54.03194, -2.148991], [54.031843, -2.148947]], [[54.031843, -2.148947], [54.031753, -2.148897]], [[54.031753, -2.148897], [54.031659, -2.148868]], [[54.031659, -2.148868], [54.031572, -2.148826]], [[54.031572, -2.148826], [54.031475, -2.14878]], [[54.031475, -2.14878], [54.031385, -2.148754]], [[54.031385, -2.148754], [54.031296, -2.148707]], [[54.031296, -2.148707], [54.0312, -2.148651]], [[54.0312, -2.148651], [54.031115, -2.148589]], [[54.031115, -2.148589], [54.031041, -2.148501]], [[54.031041, -2.148501], [54.030961, -2.148423]], [[54.030961, -2.148423], [54.03088, -2.148348]], [[54.03088, -2.148348], [54.030803, -2.148263]], [[54.030803, -2.148263], [54.030724, -2.148183]], [[54.030724, -2.148183], [54.030631, -2.148138]], [[54.030631, -2.148138], [54.030534, -2.148155]], [[54.030534, -2.148155], [54.030436, -2.148174]], [[54.030436, -2.148174], [54.030344, -2.148179]], [[54.029978, -2.148336], [54.029884, -2.148323]], [[54.029884, -2.148323], [54.029786, -2.148298]], [[54.02959, -2.148319], [54.029491, -2.148313]], [[54.029491, -2.148313], [54.029401, -2.148276]], [[54.029401, -2.148276], [54.029302, -2.148259]], [[54.028679, -2.147808], [54.028585, -2.147785]], [[54.028307, -2.14763], [54.028216, -2.147626]], [[54.028028, -2.147517], [54.027927, -2.147492]], [[54.027927, -2.147492], [54.027838, -2.147434]], [[54.027838, -2.147434], [54.027745, -2.147455]], [[54.027745, -2.147455], [54.02766, -2.147377]], [[54.02766, -2.147377], [54.02757, -2.147334]], [[54.02757, -2.147334], [54.027479, -2.147343]], [[54.027114, -2.147193], [54.02701, -2.147219]], [[54.02701, -2.147219], [54.026916, -2.14723]], [[54.026916, -2.14723], [54.026815, -2.147179]], [[54.026723, -2.147178], [54.026655, -2.147282]], [[54.026655, -2.147282], [54.026565, -2.147335]], [[54.026473, -2.14735], [54.026382, -2.14738]], [[54.026382, -2.14738], [54.02629, -2.147422]], [[54.02629, -2.147422], [54.026197, -2.147432]], [[54.026197, -2.147432], [54.026104, -2.147421]], [[54.026008, -2.147413], [54.025912, -2.147377]], [[54.025912, -2.147377], [54.025821, -2.147367]], [[54.025735, -2.14729], [54.025643, -2.147232]], [[54.025643, -2.147232], [54.025554, -2.147205]], [[54.025554, -2.147205], [54.025465, -2.147162]], [[54.025465, -2.147162], [54.025381, -2.14708]], [[54.025381, -2.14708], [54.025289, -2.147044]], [[54.025289, -2.147044], [54.025202, -2.146983]], [[54.025202, -2.146983], [54.02512, -2.146913]], [[54.02512, -2.146913], [54.02504, -2.14683]], [[54.024708, -2.146457], [54.024625, -2.146376]], [[54.024625, -2.146376], [54.024559, -2.146271]], [[54.024559, -2.146271], [54.024472, -2.146187]], [[54.024472, -2.146187], [54.024397, -2.146084]], [[54.024397, -2.146084], [54.024327, -2.145986]], [[54.024327, -2.145986], [54.024274, -2.145858]], [[54.024176, -2.145667], [54.024088, -2.145604]], [[54.024088, -2.145604], [54.023997, -2.145581]], [[54.023997, -2.145581], [54.0239, -2.145605]], [[54.0239, -2.145605], [54.023802, -2.145617]], [[54.023802, -2.145617], [54.023706, -2.145609]], [[54.023616, -2.145597], [54.023526, -2.145557]], [[54.023403, -2.145521], [54.023337, -2.145395]], [[54.023263, -2.145297], [54.023193, -2.145185]], [[54.023193, -2.145185], [54.023118, -2.145063]], [[54.023118, -2.145063], [54.023049, -2.144956]], [[54.023049, -2.144956], [54.022996, -2.144831]], [[54.022924, -2.144726], [54.022862, -2.144615]], [[54.02267, -2.144252], [54.022618, -2.144112]], [[54.022618, -2.144112], [54.02255, -2.143992]], [[54.02255, -2.143992], [54.022498, -2.143862]], [[54.022498, -2.143862], [54.022441, -2.143728]], [[54.022441, -2.143728], [54.022406, -2.143582]], [[54.022406, -2.143582], [54.022344, -2.143466]], [[54.022344, -2.143466], [54.022276, -2.143351]], [[54.022276, -2.143351], [54.022211, -2.143232]], [[54.022211, -2.143232], [54.022123, -2.143164]], [[54.022049, -2.143072], [54.021985, -2.14295]], [[54.021664, -2.142835], [54.021569, -2.142827]], [[54.021569, -2.142827], [54.021475, -2.142796]], [[54.021475, -2.142796], [54.021375, -2.142776]], [[54.021375, -2.142776], [54.021278, -2.142793]], [[54.021278, -2.142793], [54.021182, -2.142776]], [[54.021097, -2.142845], [54.021006, -2.142877]], [[54.021006, -2.142877], [54.020908, -2.142876]], [[54.020908, -2.142876], [54.020813, -2.142885]], [[54.020813, -2.142885], [54.020713, -2.142894]], [[54.02031, -2.143071], [54.020214, -2.143037]], [[54.020214, -2.143037], [54.020127, -2.142992]], [[54.019931, -2.142898], [54.019838, -2.14286]], [[54.019838, -2.14286], [54.019743, -2.142843]], [[54.019743, -2.142843], [54.019653, -2.14283]], [[54.019653, -2.14283], [54.019556, -2.142784]], [[54.019556, -2.142784], [54.019465, -2.142752]], [[54.019465, -2.142752], [54.019368, -2.142745]], [[54.019278, -2.142723], [54.019186, -2.142646]], [[54.019186, -2.142646], [54.019108, -2.142541]], [[54.019108, -2.142541], [54.019029, -2.142443]], [[54.018938, -2.142693], [54.018917, -2.142849]], [[54.018898, -2.143006], [54.018856, -2.143165]], [[54.018856, -2.143165], [54.018824, -2.143325]], [[54.018824, -2.143325], [54.01881, -2.143494]], [[54.018534, -2.14335], [54.018437, -2.143393]], [[54.018347, -2.14337], [54.018254, -2.14333]], [[54.018254, -2.14333], [54.018174, -2.143248]], [[54.018111, -2.143129], [54.01804, -2.143027]], [[54.01804, -2.143027], [54.017947, -2.143001]], [[54.017714, -2.142685], [54.017711, -2.142527]], [[54.017659, -2.142223], [54.017657, -2.142063]], [[54.017485, -2.141362], [54.017444, -2.141218]], [[54.017444, -2.141218], [54.017413, -2.141072]], [[54.017413, -2.141072], [54.017357, -2.140946]], [[54.017357, -2.140946], [54.017288, -2.140827]], [[54.017143, -2.140635], [54.017068, -2.140533]], [[54.017068, -2.140533], [54.016999, -2.140408]], [[54.016999, -2.140408], [54.016919, -2.140332]], [[54.016919, -2.140332], [54.016825, -2.140316]], [[54.016825, -2.140316], [54.016741, -2.140373]], [[54.016631, -2.140409], [54.01658, -2.140253]], [[54.016404, -2.139674], [54.016354, -2.139548]], [[54.016057, -2.138925], [54.015972, -2.138851]], [[54.015972, -2.138851], [54.015907, -2.138741]], [[54.015824, -2.138681], [54.015729, -2.13864]], [[54.015729, -2.13864], [54.015638, -2.138558]], [[54.015446, -2.13852], [54.015351, -2.138492]], [[54.015351, -2.138492], [54.015262, -2.138461]], [[54.015262, -2.138461], [54.015162, -2.138457]], [[54.015162, -2.138457], [54.015069, -2.138394]], [[54.014969, -2.138357], [54.014879, -2.138327]], [[54.014784, -2.138306], [54.014694, -2.138275]], [[54.014595, -2.138265], [54.014505, -2.138246]], [[54.014505, -2.138246], [54.014411, -2.138192]], [[54.014411, -2.138192], [54.01433, -2.138113]], [[54.014146, -2.138146], [54.014071, -2.138261]], [[54.014071, -2.138261], [54.014007, -2.138368]], [[54.014007, -2.138368], [54.013924, -2.138435]], [[54.013924, -2.138435], [54.013835, -2.138407]], [[54.013894, -2.138094], [54.013916, -2.137937]], [[54.013916, -2.137937], [54.013934, -2.137787]], [[54.013934, -2.137787], [54.01394, -2.137631]], [[54.013561, -2.136318], [54.013463, -2.136295]], [[54.013463, -2.136295], [54.013371, -2.136297]], [[54.013177, -2.13606], [54.013087, -2.135984]], [[54.013087, -2.135984], [54.013007, -2.135897]], [[54.013007, -2.135897], [54.012931, -2.135808]], [[54.012931, -2.135808], [54.012853, -2.135704]], [[54.012853, -2.135704], [54.012778, -2.135593]], [[54.012778, -2.135593], [54.012697, -2.135508]], [[54.012697, -2.135508], [54.012624, -2.135394]], [[54.012624, -2.135394], [54.012548, -2.135309]], [[54.012548, -2.135309], [54.012476, -2.135199]], [[54.012476, -2.135199], [54.012409, -2.135078]], [[54.012409, -2.135078], [54.012348, -2.134959]], [[54.012348, -2.134959], [54.012273, -2.134856]], [[54.012273, -2.134856], [54.012193, -2.134777]], [[54.012193, -2.134777], [54.01211, -2.13469]], [[54.01211, -2.13469], [54.012034, -2.134602]], [[54.011223, -2.133803], [54.011144, -2.133717]], [[54.011144, -2.133717], [54.011067, -2.133636]], [[54.011067, -2.133636], [54.010986, -2.133545]], [[54.010986, -2.133545], [54.010904, -2.133473]], [[54.010651, -2.133285], [54.010575, -2.133185]], [[54.010575, -2.133185], [54.010497, -2.133096]], [[54.010497, -2.133096], [54.010416, -2.133022]], [[54.010253, -2.132879], [54.010185, -2.132754]], [[54.010185, -2.132754], [54.010103, -2.132661]], [[54.010103, -2.132661], [54.01002, -2.132579]], [[54.01002, -2.132579], [54.009946, -2.132487]], [[54.009946, -2.132487], [54.009863, -2.132394]], [[54.009863, -2.132394], [54.009787, -2.132286]], [[54.009787, -2.132286], [54.009704, -2.132196]], [[54.009704, -2.132196], [54.009622, -2.132108]], [[54.009622, -2.132108], [54.009542, -2.132018]], [[54.009542, -2.132018], [54.009463, -2.131928]], [[54.009463, -2.131928], [54.009384, -2.131846]], [[54.009223, -2.131743], [54.009144, -2.131658]], [[54.009144, -2.131658], [54.009064, -2.131557]], [[54.009064, -2.131557], [54.008988, -2.131456]], [[54.008916, -2.131363], [54.008835, -2.131268]], [[54.008835, -2.131268], [54.008755, -2.13118]], [[54.008755, -2.13118], [54.008672, -2.131078]], [[54.008672, -2.131078], [54.008595, -2.130986]], [[54.008595, -2.130986], [54.008515, -2.130892]], [[54.008515, -2.130892], [54.008431, -2.1308]], [[54.008431, -2.1308], [54.008356, -2.130715]], [[54.008356, -2.130715], [54.008266, -2.130654]], [[54.008266, -2.130654], [54.008177, -2.13058]], [[54.008177, -2.13058], [54.008082, -2.130524]], [[54.007158, -2.130313], [54.007062, -2.130333]], [[54.007062, -2.130333], [54.006966, -2.130359]], [[54.006966, -2.130359], [54.006872, -2.130361]], [[54.006872, -2.130361], [54.006773, -2.130346]], [[54.006773, -2.130346], [54.006682, -2.130338]], [[54.006682, -2.130338], [54.006589, -2.130307]], [[54.006589, -2.130307], [54.006504, -2.130245]], [[54.006504, -2.130245], [54.006416, -2.130196]], [[54.006416, -2.130196], [54.006325, -2.130142]], [[54.006156, -2.13001], [54.006063, -2.129961]], [[54.005975, -2.129924], [54.005877, -2.129906]], [[54.005877, -2.129906], [54.005783, -2.129864]], [[54.005783, -2.129864], [54.005698, -2.1298]], [[54.005698, -2.1298], [54.005609, -2.129741]], [[54.005522, -2.129671], [54.005428, -2.129617]], [[54.005428, -2.129617], [54.00534, -2.129564]], [[54.00534, -2.129564], [54.005243, -2.129513]], [[54.005243, -2.129513], [54.005154, -2.12946]], [[54.005154, -2.12946], [54.005059, -2.129429]], [[54.005059, -2.129429], [54.004969, -2.129381]], [[54.004969, -2.129381], [54.004878, -2.129334]], [[54.004878, -2.129334], [54.004788, -2.129255]], [[54.004788, -2.129255], [54.004696, -2.129208]], [[54.004696, -2.129208], [54.004603, -2.129179]], [[54.004603, -2.129179], [54.004506, -2.129154]], [[54.004506, -2.129154], [54.004411, -2.129104]], [[54.004411, -2.129104], [54.004325, -2.129059]], [[54.004325, -2.129059], [54.004239, -2.129005]], [[54.004239, -2.129005], [54.004151, -2.12896]], [[54.004151, -2.12896], [54.004061, -2.128918]], [[54.003966, -2.128885], [54.003875, -2.128857]], [[54.003875, -2.128857], [54.003777, -2.128823]], [[54.003777, -2.128823], [54.003687, -2.128775]], [[54.003687, -2.128775], [54.003593, -2.128744]], [[54.003593, -2.128744], [54.003504, -2.128705]], [[54.003504, -2.128705], [54.003415, -2.12866]], [[54.003415, -2.12866], [54.003322, -2.128602]], [[54.003235, -2.128554], [54.003141, -2.128493]], [[54.002964, -2.12836], [54.002866, -2.128334]], [[54.002866, -2.128334], [54.002786, -2.128233]], [[54.002564, -2.128076], [54.002497, -2.127941]], [[54.002497, -2.127941], [54.002433, -2.127821]], [[54.002433, -2.127821], [54.002372, -2.127697]], [[54.002372, -2.127697], [54.002311, -2.127584]], [[54.002311, -2.127584], [54.002247, -2.127475]], [[54.002247, -2.127475], [54.002193, -2.127351]], [[54.002193, -2.127351], [54.002132, -2.127237]], [[54.002071, -2.127123], [54.002, -2.127001]], [[54.002, -2.127001], [54.001938, -2.12689]], [[54.001875, -2.126772], [54.00181, -2.126647]], [[54.00181, -2.126647], [54.001754, -2.126522]], [[54.001754, -2.126522], [54.001688, -2.126399]], [[54.001688, -2.126399], [54.00163, -2.126274]], [[54.001492, -2.126051], [54.001426, -2.125924]], [[54.001426, -2.125924], [54.001357, -2.12582]], [[54.001357, -2.12582], [54.001274, -2.125715]], [[54.001274, -2.125715], [54.001204, -2.125593]], [[54.001204, -2.125593], [54.001129, -2.125482]], [[54.001129, -2.125482], [54.001046, -2.125399]], [[54.000954, -2.125353], [54.000869, -2.125266]], [[54.000869, -2.125266], [54.000785, -2.125202]], [[54.000606, -2.125089], [54.000516, -2.125025]], [[54.000516, -2.125025], [54.000427, -2.124979]], [[54.000427, -2.124979], [54.000342, -2.124894]], [[54.000342, -2.124894], [54.000253, -2.124839]], [[54.000253, -2.124839], [54.000173, -2.124743]], [[54.000081, -2.124677], [53.999983, -2.124627]], [[53.999983, -2.124627], [53.999898, -2.12454]], [[53.999898, -2.12454], [53.999811, -2.124457]], [[53.999811, -2.124457], [53.999726, -2.124377]], [[53.999726, -2.124377], [53.999638, -2.1243]], [[53.999638, -2.1243], [53.999556, -2.124216]], [[53.999556, -2.124216], [53.999475, -2.124147]], [[53.999475, -2.124147], [53.99939, -2.124094]], [[53.99939, -2.124094], [53.999301, -2.124018]], [[53.999045, -2.123911], [53.998955, -2.12389]], [[53.998658, -2.123854], [53.998558, -2.123863]], [[53.998558, -2.123863], [53.998463, -2.12382]], [[53.998463, -2.12382], [53.998372, -2.123801]], [[53.998372, -2.123801], [53.998275, -2.123783]], [[53.998275, -2.123783], [53.998172, -2.123771]], [[53.998172, -2.123771], [53.998078, -2.123763]], [[53.998078, -2.123763], [53.997979, -2.123737]], [[53.997979, -2.123737], [53.997886, -2.123757]], [[53.997886, -2.123757], [53.997792, -2.12373]], [[53.997792, -2.12373], [53.997704, -2.123679]], [[53.997704, -2.123679], [53.997613, -2.123662]], [[53.997613, -2.123662], [53.997519, -2.123659]], [[53.997519, -2.123659], [53.99742, -2.123665]], [[53.99742, -2.123665], [53.997324, -2.123643]], [[53.997324, -2.123643], [53.997225, -2.123612]], [[53.997225, -2.123612], [53.997128, -2.123604]], [[53.997031, -2.123572], [53.996942, -2.12353]], [[53.996942, -2.12353], [53.996858, -2.123439]], [[53.996858, -2.123439], [53.996777, -2.123338]], [[53.996777, -2.123338], [53.996698, -2.123244]], [[53.996698, -2.123244], [53.996615, -2.12315]], [[53.996615, -2.12315], [53.996537, -2.123055]], [[53.996537, -2.123055], [53.996458, -2.122951]], [[53.996458, -2.122951], [53.996381, -2.122841]], [[53.996381, -2.122841], [53.996319, -2.122726]], [[53.996319, -2.122726], [53.996246, -2.122604]], [[53.996246, -2.122604], [53.996169, -2.122492]], [[53.996169, -2.122492], [53.996095, -2.122384]], [[53.996095, -2.122384], [53.996032, -2.122271]], [[53.996032, -2.122271], [53.995983, -2.122123]], [[53.995983, -2.122123], [53.995943, -2.121969]], [[53.995943, -2.121969], [53.995891, -2.121832]], [[53.995891, -2.121832], [53.995825, -2.121718]], [[53.995825, -2.121718], [53.995751, -2.121601]], [[53.995751, -2.121601], [53.995687, -2.121489]], [[53.995617, -2.121387], [53.995548, -2.121276]], [[53.995548, -2.121276], [53.995476, -2.121183]], [[53.995476, -2.121183], [53.9954, -2.121088]], [[53.995091, -2.120693], [53.995023, -2.120565]], [[53.994973, -2.120427], [53.994902, -2.120321]], [[53.994836, -2.120213], [53.994759, -2.120099]], [[53.994759, -2.120099], [53.994688, -2.119997]], [[53.994688, -2.119997], [53.994613, -2.119911]], [[53.994613, -2.119911], [53.994551, -2.119776]], [[53.994492, -2.119655], [53.994422, -2.119539]], [[53.994422, -2.119539], [53.994357, -2.119421]], [[53.994357, -2.119421], [53.994287, -2.119301]], [[53.994287, -2.119301], [53.994228, -2.119182]], [[53.994228, -2.119182], [53.994167, -2.119056]], [[53.994167, -2.119056], [53.994101, -2.118944]], [[53.994101, -2.118944], [53.994026, -2.118846]], [[53.994026, -2.118846], [53.993943, -2.118762]], [[53.993943, -2.118762], [53.993858, -2.118714]], [[53.993858, -2.118714], [53.993765, -2.118693]], [[53.993765, -2.118693], [53.99367, -2.118676]], [[53.99367, -2.118676], [53.99358, -2.118651]], [[53.99358, -2.118651], [53.993496, -2.118597]], [[53.993496, -2.118597], [53.993408, -2.118523]], [[53.993003, -2.118238], [53.992914, -2.118158]], [[53.992738, -2.117997], [53.99265, -2.117938]], [[53.99265, -2.117938], [53.992556, -2.117896]], [[53.992466, -2.117833], [53.992381, -2.117767]], [[53.992381, -2.117767], [53.992317, -2.117653]], [[53.992317, -2.117653], [53.992219, -2.117627]], [[53.992219, -2.117627], [53.992122, -2.11758]], [[53.992039, -2.117503], [53.991964, -2.117407]], [[53.991964, -2.117407], [53.991884, -2.117321]], [[53.991721, -2.117156], [53.991644, -2.117061]], [[53.99156, -2.116995], [53.991473, -2.116923]], [[53.991297, -2.116774], [53.991207, -2.116709]], [[53.991207, -2.116709], [53.991127, -2.11663]], [[53.991127, -2.11663], [53.991043, -2.11654]], [[53.991043, -2.11654], [53.990964, -2.116459]], [[53.990767, -2.116212], [53.9907, -2.116095]], [[53.9907, -2.116095], [53.990602, -2.116065]], [[53.990483, -2.115805], [53.990434, -2.115669]], [[53.990434, -2.115669], [53.990354, -2.115577]], [[53.990354, -2.115577], [53.990314, -2.115429]], [[53.990314, -2.115429], [53.990237, -2.115343]], [[53.990237, -2.115343], [53.990178, -2.115222]], [[53.989428, -2.114077], [53.98937, -2.113951]], [[53.98937, -2.113951], [53.989292, -2.113848]], [[53.989292, -2.113848], [53.989229, -2.113738]], [[53.989229, -2.113738], [53.989145, -2.113628]], [[53.988771, -2.113085], [53.988701, -2.11297]], [[53.988652, -2.112825], [53.988574, -2.112721]], [[53.988574, -2.112721], [53.988498, -2.112623]], [[53.988428, -2.112511], [53.98837, -2.112383]], [[53.98837, -2.112383], [53.988314, -2.11226]], [[53.988314, -2.11226], [53.988251, -2.112144]], [[53.988251, -2.112144], [53.98821, -2.112002]], [[53.988101, -2.111567], [53.988101, -2.111409]], [[53.988101, -2.111409], [53.988095, -2.111242]], [[53.988095, -2.111242], [53.988123, -2.111088]], [[53.988123, -2.111088], [53.988125, -2.110931]], [[53.988125, -2.110931], [53.988112, -2.110763]], [[53.988112, -2.110763], [53.988127, -2.110609]], [[53.988178, -2.110291], [53.988174, -2.11013]], [[53.988174, -2.11013], [53.988181, -2.109965]], [[53.988181, -2.109965], [53.988202, -2.109801]], [[53.988207, -2.109644], [53.988205, -2.109468]], [[53.988205, -2.109468], [53.988155, -2.10933]], [[53.988155, -2.10933], [53.988087, -2.109223]], [[53.988087, -2.109223], [53.988043, -2.109085]], [[53.988043, -2.109085], [53.987997, -2.108935]], [[53.987997, -2.108935], [53.987928, -2.108822]], [[53.987928, -2.108822], [53.987851, -2.10872]], [[53.987851, -2.10872], [53.987778, -2.108619]], [[53.987778, -2.108619], [53.987702, -2.108518]], [[53.987702, -2.108518], [53.987615, -2.108434]], [[53.987615, -2.108434], [53.987536, -2.10832]], [[53.987536, -2.10832], [53.987459, -2.108231]], [[53.987212, -2.108013], [53.987124, -2.107942]], [[53.987124, -2.107942], [53.987042, -2.107856]], [[53.987042, -2.107856], [53.986961, -2.107753]], [[53.986961, -2.107753], [53.986876, -2.107679]], [[53.986876, -2.107679], [53.986798, -2.107576]], [[53.986798, -2.107576], [53.986728, -2.107476]], [[53.986728, -2.107476], [53.986633, -2.107408]], [[53.986633, -2.107408], [53.986548, -2.10734]], [[53.986548, -2.10734], [53.986457, -2.107313]], [[53.986457, -2.107313], [53.98637, -2.107261]], [[53.98637, -2.107261], [53.986276, -2.107202]], [[53.986188, -2.107152], [53.986094, -2.107089]], [[53.986094, -2.107089], [53.986012, -2.10702]], [[53.986012, -2.10702], [53.985935, -2.106918]], [[53.985935, -2.106918], [53.985851, -2.106818]], [[53.985851, -2.106818], [53.98578, -2.106711]], [[53.98578, -2.106711], [53.98571, -2.106592]], [[53.98571, -2.106592], [53.985633, -2.106496]], [[53.985389, -2.106112], [53.985309, -2.106009]], [[53.985309, -2.106009], [53.98523, -2.105928]], [[53.98523, -2.105928], [53.985149, -2.105841]], [[53.985149, -2.105841], [53.985066, -2.105776]], [[53.985066, -2.105776], [53.984972, -2.105712]], [[53.984972, -2.105712], [53.984886, -2.105666]], [[53.984886, -2.105666], [53.98484, -2.105519]], [[53.984815, -2.10502], [53.984783, -2.10487]], [[53.984783, -2.10487], [53.98475, -2.104711]], [[53.98475, -2.104711], [53.984718, -2.104562]], [[53.984718, -2.104562], [53.984694, -2.104408]], [[53.984694, -2.104408], [53.984682, -2.104254]], [[53.984682, -2.104254], [53.984667, -2.104088]], [[53.984667, -2.104088], [53.984639, -2.103922]], [[53.984639, -2.103922], [53.984609, -2.103766]], [[53.984442, -2.103467], [53.984356, -2.103529]], [[53.9842, -2.103691], [53.984121, -2.103784]], [[53.984121, -2.103784], [53.984039, -2.103862]], [[53.984039, -2.103862], [53.983963, -2.103969]], [[53.983963, -2.103969], [53.983889, -2.104075]], [[53.983889, -2.104075], [53.983837, -2.104207]], [[53.983583, -2.104484], [53.983608, -2.104383]], [[53.983788, -2.104248], [53.98384, -2.104225]], [[53.984144, -2.103937], [53.984206, -2.10382]], [[53.984206, -2.10382], [53.984287, -2.103741]], [[53.984287, -2.103741], [53.984372, -2.103667]], [[53.984372, -2.103667], [53.984428, -2.103528]], [[53.984411, -2.103206], [53.984406, -2.103046]], [[53.984406, -2.103046], [53.984402, -2.102873]], [[53.984402, -2.102873], [53.98441, -2.102713]], [[53.984486, -2.102397], [53.984467, -2.102245]], [[53.984467, -2.102245], [53.984488, -2.102084]], [[53.984488, -2.102084], [53.984506, -2.101934]], [[53.984506, -2.101934], [53.984546, -2.101767]], [[53.984771, -2.101033], [53.98486, -2.100991]], [[53.985305, -2.101279], [53.985393, -2.101313]], [[53.985393, -2.101313], [53.985482, -2.10134]], [[53.985762, -2.101461], [53.985856, -2.101493]], [[53.985856, -2.101493], [53.985955, -2.101526]], [[53.985955, -2.101526], [53.986046, -2.101577]], [[53.986046, -2.101577], [53.986142, -2.101602]], [[53.986142, -2.101602], [53.98623, -2.101659]], [[53.98623, -2.101659], [53.986326, -2.101704]], [[53.986326, -2.101704], [53.986415, -2.10175]], [[53.986415, -2.10175], [53.98651, -2.101802]], [[53.98651, -2.101802], [53.986603, -2.101841]], [[53.986603, -2.101841], [53.986702, -2.101875]], [[53.986702, -2.101875], [53.986787, -2.101931]], [[53.986787, -2.101931], [53.986883, -2.101987]], [[53.986883, -2.101987], [53.986978, -2.102029]], [[53.986978, -2.102029], [53.987068, -2.102032]], [[53.987068, -2.102032], [53.987163, -2.102005]], [[53.987163, -2.102005], [53.987258, -2.102035]], [[53.987258, -2.102035], [53.987355, -2.101997]], [[53.987355, -2.101997], [53.987451, -2.101931]], [[53.987532, -2.101856], [53.987612, -2.101775]], [[53.987796, -2.101642], [53.987785, -2.10147]], [[53.987362, -2.101319], [53.987277, -2.101372]], [[53.987277, -2.101372], [53.987191, -2.101465]], [[53.987191, -2.101465], [53.987189, -2.101626]], [[53.987188, -2.101793], [53.987189, -2.101948]], [[53.987168, -2.101725], [53.987166, -2.10188]], [[53.987099, -2.102041], [53.987084, -2.101889]], [[53.987126, -2.10173], [53.987132, -2.101571]], [[53.987092, -2.101711], [53.987047, -2.101885]], [[53.986878, -2.101979], [53.986782, -2.101932]], [[53.986782, -2.101932], [53.986696, -2.10189]], [[53.986696, -2.10189], [53.986615, -2.101815]], [[53.986516, -2.102422], [53.986496, -2.102581]], [[53.986304, -2.102949], [53.986277, -2.103095]], [[53.986277, -2.103095], [53.986279, -2.103264]], [[53.986279, -2.103264], [53.986248, -2.103419]], [[53.986248, -2.103419], [53.98622, -2.103575]], [[53.986207, -2.103746], [53.986161, -2.103899]], [[53.985896, -2.104743], [53.985927, -2.104891]], [[53.985894, -2.105047], [53.985855, -2.10519]], [[53.985855, -2.10519], [53.985815, -2.105342]], [[53.985743, -2.10563], [53.985692, -2.105768]], [[53.985494, -2.106324], [53.98541, -2.10626]], [[53.98541, -2.10626], [53.985327, -2.106164]], [[53.985327, -2.106164], [53.985251, -2.106067]], [[53.985251, -2.106067], [53.985181, -2.105967]], [[53.984916, -2.105768], [53.984836, -2.105675]], [[53.984799, -2.105529], [53.984767, -2.105379]], [[53.984767, -2.105379], [53.984761, -2.105214]], [[53.984761, -2.105214], [53.984744, -2.105061]], [[53.984698, -2.104759], [53.984653, -2.104623]], [[53.984556, -2.10385], [53.984522, -2.103708]], [[53.984522, -2.103708], [53.984433, -2.10368]], [[53.984433, -2.10368], [53.984344, -2.103653]], [[53.984265, -2.103546], [53.984199, -2.103659]], [[53.98383, -2.104174], [53.983736, -2.104228]], [[53.984058, -2.103946], [53.984122, -2.103821]], [[53.984122, -2.103821], [53.984179, -2.103691]], [[53.984179, -2.103691], [53.984269, -2.103638]], [[53.984269, -2.103638], [53.984371, -2.10365]], [[53.984554, -2.103698], [53.984637, -2.103623]], [[53.984637, -2.103623], [53.984728, -2.103564]], [[53.984728, -2.103564], [53.984824, -2.103557]], [[53.984916, -2.103548], [53.98501, -2.10355]], [[53.985316, -2.103423], [53.98541, -2.103452]], [[53.985681, -2.103337], [53.985775, -2.103293]], [[53.986002, -2.103144], [53.986079, -2.103062]], [[53.986079, -2.103062], [53.986171, -2.103017]], [[53.986398, -2.10289], [53.98644, -2.102747]], [[53.98644, -2.102747], [53.986473, -2.102588]], [[53.986651, -2.101707], [53.986688, -2.101554]], [[53.986711, -2.101406], [53.986796, -2.101351]], [[53.987081, -2.101732], [53.987117, -2.101584]], [[53.987117, -2.101584], [53.987171, -2.10144]], [[53.98753, -2.101346], [53.987624, -2.10135]], [[53.987591, -2.101359], [53.987492, -2.101335]], [[53.987492, -2.101335], [53.987399, -2.101271]], [[53.987399, -2.101271], [53.987306, -2.101324]], [[53.98721, -2.101514], [53.987245, -2.101366]], [[53.987245, -2.101366], [53.987337, -2.101327]], [[53.987337, -2.101327], [53.987382, -2.101345]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_01d8a11341501e6bf7822a52f2966ebc = L.polyline(
                [[[54.144499, -2.293119], [54.144417, -2.293055]], [[54.144347, -2.292753], [54.144413, -2.292649]], [[54.162884, -2.2526], [54.162916, -2.252446]], [[54.156004, -2.248767], [54.156049, -2.248908]], [[54.156049, -2.248908], [54.156023, -2.248847]], [[54.153074, -2.251169], [54.153089, -2.251188]], [[54.150211, -2.252438], [54.150123, -2.2525]], [[54.144501, -2.253906], [54.144407, -2.253944]], [[54.142437, -2.253617], [54.14237, -2.253505]], [[54.140675, -2.245988], [54.140659, -2.245828]], [[54.14068, -2.245624], [54.140662, -2.245454]], [[54.143504, -2.231957], [54.143534, -2.231795]], [[54.14468, -2.207193], [54.144676, -2.20721]], [[54.144676, -2.20721], [54.144669, -2.20705]], [[54.112032, -2.176067], [54.111941, -2.176103]], [[54.107958, -2.174954], [54.107867, -2.174934]], [[54.101827, -2.172072], [54.101803, -2.172226]], [[54.101803, -2.172226], [54.101805, -2.172226]], [[54.101807, -2.172159], [54.101795, -2.171979]], [[54.100662, -2.165834], [54.100725, -2.165696]], [[54.0995, -2.158401], [54.099424, -2.158285]], [[54.078802, -2.165721], [54.078754, -2.16558]], [[54.072981, -2.158885], [54.072929, -2.159013]], [[54.062271, -2.152618], [54.062261, -2.152601]], [[54.062261, -2.152601], [54.062082, -2.152573]], [[54.061592, -2.15246], [54.061511, -2.152551]], [[54.05718, -2.150874], [54.057089, -2.150825]], [[53.98362, -2.104295], [53.983554, -2.104646]], [[53.983608, -2.104383], [53.983701, -2.104325]], [[53.9875, -2.101071], [53.9875, -2.101072]], [[53.9875, -2.101072], [53.987409, -2.101159]], [[53.987171, -2.102003], [53.987174, -2.101838]], [[53.987174, -2.101838], [53.987184, -2.101926]], [[53.987184, -2.101926], [53.987108, -2.102013]], [[53.987108, -2.102013], [53.987093, -2.101996]], [[53.987093, -2.101996], [53.987182, -2.10197]], [[53.987182, -2.10197], [53.987183, -2.101983]], [[53.984267, -2.103769], [53.984224, -2.10391]], [[53.984062, -2.10407], [53.983981, -2.104148]], [[53.983938, -2.104141], [53.983824, -2.103951]], [[53.98375, -2.10426], [53.983739, -2.10424]], [[53.983739, -2.10424], [53.983834, -2.104206]], [[53.985046, -2.103583], [53.985099, -2.103454]], [[53.985136, -2.10329], [53.985223, -2.103363]], [[53.985833, -2.103293], [53.985906, -2.103192]], [[53.98653, -2.102248], [53.986534, -2.102091]], [[53.98661, -2.101965], [53.98667, -2.101837]], [[53.986661, -2.101714], [53.986728, -2.101818]], [[53.986728, -2.101818], [53.986707, -2.101805]], [[53.987141, -2.101978], [53.987154, -2.10181]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_9e38db44ce0e64964f3b7e79543c4eab = L.polyline(
                [[[54.144417, -2.293055], [54.144342, -2.292955]], [[54.144349, -2.292789], [54.144347, -2.292753]], [[54.147952, -2.29112], [54.147985, -2.29109]], [[54.148078, -2.291058], [54.148144, -2.290953]], [[54.158098, -2.279672], [54.158122, -2.279599]], [[54.159533, -2.277935], [54.159572, -2.27788]], [[54.159572, -2.27788], [54.159656, -2.277792]], [[54.164051, -2.272729], [54.164058, -2.272568]], [[54.163816, -2.271788], [54.163777, -2.271651]], [[54.163777, -2.271651], [54.163693, -2.271572]], [[54.162098, -2.258364], [54.162137, -2.258221]], [[54.162137, -2.258221], [54.162176, -2.258079]], [[54.162249, -2.25763], [54.162266, -2.257479]], [[54.162266, -2.257479], [54.162294, -2.257327]], [[54.16246, -2.255922], [54.162494, -2.255765]], [[54.162657, -2.254135], [54.162707, -2.254013]], [[54.162707, -2.254013], [54.162713, -2.25385]], [[54.162713, -2.25385], [54.162736, -2.2537]], [[54.162736, -2.2537], [54.162719, -2.253552]], [[54.162719, -2.253552], [54.162716, -2.253398]], [[54.162832, -2.25281], [54.162855, -2.252658]], [[54.162855, -2.252658], [54.162884, -2.2526]], [[54.162998, -2.251998], [54.163018, -2.251845]], [[54.163018, -2.251845], [54.163038, -2.251699]], [[54.163038, -2.251699], [54.163066, -2.251546]], [[54.163066, -2.251546], [54.163114, -2.25141]], [[54.163114, -2.25141], [54.163181, -2.251299]], [[54.16315, -2.251153], [54.163156, -2.251038]], [[54.163156, -2.251038], [54.163206, -2.250909]], [[54.16344, -2.250655], [54.163523, -2.25059]], [[54.163523, -2.25059], [54.163527, -2.250487]], [[54.16298, -2.250243], [54.162884, -2.25026]], [[54.160976, -2.249881], [54.160883, -2.24992]], [[54.160883, -2.24992], [54.160791, -2.249925]], [[54.160791, -2.249925], [54.160696, -2.249963]], [[54.160696, -2.249963], [54.160605, -2.249954]], [[54.160605, -2.249954], [54.160532, -2.249964]], [[54.160532, -2.249964], [54.160437, -2.249961]], [[54.160162, -2.250077], [54.160069, -2.250099]], [[54.157869, -2.250427], [54.157783, -2.250354]], [[54.157783, -2.250354], [54.157706, -2.250269]], [[54.157706, -2.250269], [54.157649, -2.250146]], [[54.157649, -2.250146], [54.157556, -2.250096]], [[54.157399, -2.24993], [54.157354, -2.249833]], [[54.157354, -2.249833], [54.157265, -2.249782]], [[54.157265, -2.249782], [54.157192, -2.249678]], [[54.157192, -2.249678], [54.157154, -2.24963]], [[54.157094, -2.249504], [54.15702, -2.249411]], [[54.15702, -2.249411], [54.156957, -2.249295]], [[54.156023, -2.248847], [54.155926, -2.248841]], [[54.153243, -2.25116], [54.153161, -2.251106]], [[54.152739, -2.25126], [54.152668, -2.251159]], [[54.152668, -2.251159], [54.152615, -2.251124]], [[54.152536, -2.251039], [54.15244, -2.251036]], [[54.15244, -2.251036], [54.152369, -2.25099]], [[54.152369, -2.25099], [54.15228, -2.250926]], [[54.15228, -2.250926], [54.152186, -2.250898]], [[54.151732, -2.251442], [54.151728, -2.251272]], [[54.151728, -2.251272], [54.151679, -2.251329]], [[54.151679, -2.251329], [54.151595, -2.251395]], [[54.151595, -2.251395], [54.151564, -2.251475]], [[54.15021, -2.252439], [54.150211, -2.252438]], [[54.150123, -2.2525], [54.150028, -2.252547]], [[54.149441, -2.253078], [54.14943, -2.253098]], [[54.148388, -2.254033], [54.148327, -2.254018]], [[54.144495, -2.253923], [54.144501, -2.253906]], [[54.142224, -2.252958], [54.142166, -2.252817]], [[54.140659, -2.245828], [54.14066, -2.245671]], [[54.14066, -2.245671], [54.14068, -2.245624]], [[54.140662, -2.245454], [54.140621, -2.2453]], [[54.140441, -2.245213], [54.140348, -2.245176]], [[54.143453, -2.231974], [54.143504, -2.231957]], [[54.143534, -2.231795], [54.143596, -2.231683]], [[54.145261, -2.223755], [54.145189, -2.223736]], [[54.145189, -2.223736], [54.145195, -2.223569]], [[54.14423, -2.221497], [54.144185, -2.221358]], [[54.144185, -2.221358], [54.144157, -2.221217]], [[54.144157, -2.221217], [54.144101, -2.221082]], [[54.143981, -2.220845], [54.14396, -2.220708]], [[54.14396, -2.220708], [54.143897, -2.220592]], [[54.143755, -2.220191], [54.143695, -2.220076]], [[54.143695, -2.220076], [54.143625, -2.220018]], [[54.143625, -2.220018], [54.143562, -2.219898]], [[54.143562, -2.219898], [54.143503, -2.219777]], [[54.143289, -2.218396], [54.143269, -2.218289]], [[54.143275, -2.218126], [54.143301, -2.217962]], [[54.143382, -2.217675], [54.143429, -2.21754]], [[54.14388, -2.215966], [54.143928, -2.215835]], [[54.144139, -2.214478], [54.14413, -2.214319]], [[54.14413, -2.214319], [54.144151, -2.214227]], [[54.144151, -2.214227], [54.144211, -2.214104]], [[54.144303, -2.212386], [54.144317, -2.212228]], [[54.144309, -2.212066], [54.144291, -2.211915]], [[54.144291, -2.211915], [54.144265, -2.211764]], [[54.144265, -2.211764], [54.144262, -2.211609]], [[54.144341, -2.211145], [54.144364, -2.210992]], [[54.144364, -2.210992], [54.14439, -2.210843]], [[54.144548, -2.210107], [54.144578, -2.20996]], [[54.144578, -2.20996], [54.144587, -2.209797]], [[54.144587, -2.209797], [54.144601, -2.209641]], [[54.144667, -2.209334], [54.144693, -2.209182]], [[54.144693, -2.209182], [54.144662, -2.209025]], [[54.144662, -2.209025], [54.14468, -2.208868]], [[54.144691, -2.208714], [54.144705, -2.208559]], [[54.144705, -2.208559], [54.144717, -2.208394]], [[54.144727, -2.208233], [54.144722, -2.208074]], [[54.144722, -2.208074], [54.144739, -2.207914]], [[54.144739, -2.207914], [54.144741, -2.207755]], [[54.144741, -2.207755], [54.144763, -2.207599]], [[54.144763, -2.207599], [54.144762, -2.207443]], [[54.144762, -2.207443], [54.144721, -2.20733]], [[54.144669, -2.20705], [54.144724, -2.206927]], [[54.144813, -2.206071], [54.14481, -2.205912]], [[54.14481, -2.205912], [54.144754, -2.205784]], [[54.144754, -2.205784], [54.144661, -2.2058]], [[54.134386, -2.188915], [54.134299, -2.188968]], [[54.123291, -2.181875], [54.123281, -2.181797]], [[54.123281, -2.181797], [54.123249, -2.181627]], [[54.115538, -2.177186], [54.115477, -2.177138]], [[54.115477, -2.177138], [54.115494, -2.17698]], [[54.112064, -2.176069], [54.112032, -2.176067]], [[54.111941, -2.176103], [54.111861, -2.176017]], [[54.107867, -2.174934], [54.107764, -2.174921]], [[54.103997, -2.172791], [54.103973, -2.172771]], [[54.103973, -2.172771], [54.103879, -2.172731]], [[54.101855, -2.172038], [54.101827, -2.172072]], [[54.101843, -2.17206], [54.101827, -2.17195]], [[54.101921, -2.171982], [54.101842, -2.17208]], [[54.101842, -2.17208], [54.101807, -2.172159]], [[54.101554, -2.171275], [54.101494, -2.171151]], [[54.100685, -2.165784], [54.100662, -2.165834]], [[54.101234, -2.164236], [54.101248, -2.164077]], [[54.101248, -2.164077], [54.101238, -2.164048]], [[54.101211, -2.163901], [54.101215, -2.163741]], [[54.099515, -2.158377], [54.0995, -2.158401]], [[54.099424, -2.158285], [54.099332, -2.158217]], [[54.098439, -2.157389], [54.098362, -2.157308]], [[54.093981, -2.156964], [54.093935, -2.156978]], [[54.091823, -2.161931], [54.091816, -2.162061]], [[54.090894, -2.163599], [54.090887, -2.163573]], [[54.090887, -2.163573], [54.090816, -2.163473]], [[54.088094, -2.163262], [54.088073, -2.163378]], [[54.088073, -2.163378], [54.088011, -2.163492]], [[54.088034, -2.164607], [54.088053, -2.164638]], [[54.082296, -2.166384], [54.082226, -2.166488]], [[54.079846, -2.166079], [54.079779, -2.166199]], [[54.079779, -2.166199], [54.079713, -2.166311]], [[54.079713, -2.166311], [54.079624, -2.166355]], [[54.079788, -2.167735], [54.079776, -2.167843]], [[54.079481, -2.167179], [54.079401, -2.167095]], [[54.07928, -2.166748], [54.079237, -2.166639]], [[54.079237, -2.166639], [54.079244, -2.166471]], [[54.079244, -2.166471], [54.079186, -2.166348]], [[54.079186, -2.166348], [54.079144, -2.166204]], [[54.078754, -2.16558], [54.078704, -2.165448]], [[54.074393, -2.159256], [54.07433, -2.159329]], [[54.074269, -2.159208], [54.074176, -2.159157]], [[54.072959, -2.158836], [54.072981, -2.158885]], [[54.072739, -2.160972], [54.072676, -2.161079]], [[54.072676, -2.161079], [54.072645, -2.161223]], [[54.072645, -2.161223], [54.072672, -2.161371]], [[54.072672, -2.161371], [54.07262, -2.161279]], [[54.072149, -2.160867], [54.072049, -2.160861]], [[54.071597, -2.160681], [54.071578, -2.160675]], [[54.071727, -2.160237], [54.07172, -2.16008]], [[54.07172, -2.16008], [54.071705, -2.15992]], [[54.071705, -2.15992], [54.071645, -2.159829]], [[54.07171, -2.159519], [54.071698, -2.159468]], [[54.071654, -2.159333], [54.071682, -2.159188]], [[54.071277, -2.15851], [54.07125, -2.158429]], [[54.069336, -2.158927], [54.069236, -2.158915]], [[54.068585, -2.159198], [54.068484, -2.159207]], [[54.061997, -2.152425], [54.062011, -2.152518]], [[54.062023, -2.152339], [54.061993, -2.152266]], [[54.062221, -2.152575], [54.062157, -2.152531]], [[54.062294, -2.152612], [54.062271, -2.152618]], [[54.062082, -2.152573], [54.062021, -2.152689]], [[54.062021, -2.152689], [54.061931, -2.152699]], [[54.061431, -2.152578], [54.061372, -2.152702]], [[54.060611, -2.152842], [54.060672, -2.152795]], [[54.060679, -2.15263], [54.060579, -2.152609]], [[54.057492, -2.151048], [54.057468, -2.150972]], [[54.057468, -2.150972], [54.05738, -2.150925]], [[54.05719, -2.150857], [54.05718, -2.150874]], [[54.057089, -2.150825], [54.057006, -2.15076]], [[54.055905, -2.150377], [54.055816, -2.150329]], [[54.054451, -2.149812], [54.054368, -2.149815]], [[54.054368, -2.149815], [54.054287, -2.149747]], [[54.054114, -2.149691], [54.054023, -2.149697]], [[54.054023, -2.149697], [54.053984, -2.149769]], [[54.053984, -2.149769], [54.053886, -2.149742]], [[54.053556, -2.149428], [54.053521, -2.14941]], [[54.053437, -2.149477], [54.053346, -2.149499]], [[54.053107, -2.150516], [54.053094, -2.150545]], [[54.052844, -2.15078], [54.05282, -2.150818]], [[54.05282, -2.150818], [54.052732, -2.150877]], [[54.051585, -2.151968], [54.051555, -2.152017]], [[54.049199, -2.151588], [54.049104, -2.15154]], [[54.048664, -2.151617], [54.048588, -2.151702]], [[54.037604, -2.152293], [54.03751, -2.152328]], [[54.037419, -2.152381], [54.037328, -2.152354]], [[54.037328, -2.152354], [54.037256, -2.152319]], [[54.033682, -2.151148], [54.033632, -2.151027]], [[54.032864, -2.149647], [54.032766, -2.14961]], [[54.030254, -2.148224], [54.03016, -2.148281]], [[54.03016, -2.148281], [54.030077, -2.148349]], [[54.028884, -2.147894], [54.028847, -2.147753]], [[54.028847, -2.147753], [54.028775, -2.147811]], [[54.027387, -2.147332], [54.027292, -2.147308]], [[54.024274, -2.145858], [54.024244, -2.145788]], [[54.024244, -2.145788], [54.024176, -2.145667]], [[54.021934, -2.142951], [54.021852, -2.142867]], [[54.020713, -2.142894], [54.020676, -2.142904]], [[54.020577, -2.142891], [54.020481, -2.142917]], [[54.018949, -2.142368], [54.018935, -2.142528]], [[54.01881, -2.143494], [54.018796, -2.143531]], [[54.016354, -2.139548], [54.016282, -2.139455]], [[54.013901, -2.137492], [54.013917, -2.137484]], [[54.013921, -2.137328], [54.013905, -2.13718]], [[54.013371, -2.136297], [54.013321, -2.136252]], [[54.013321, -2.136252], [54.013237, -2.136183]], [[54.009299, -2.131903], [54.009328, -2.132005]], [[54.009264, -2.13188], [54.009223, -2.131743]], [[54.007444, -2.13029], [54.007348, -2.130248]], [[54.002786, -2.128233], [54.002733, -2.128225]], [[53.999301, -2.124018], [53.999233, -2.124006]], [[53.999146, -2.123942], [53.999045, -2.123911]], [[53.997128, -2.123604], [53.997122, -2.123596]], [[53.997122, -2.123596], [53.997031, -2.123572]], [[53.993354, -2.11847], [53.993259, -2.118455]], [[53.990962, -2.116351], [53.990933, -2.116195]], [[53.985633, -2.106496], [53.985593, -2.106515]], [[53.98484, -2.105519], [53.984859, -2.105514]], [[53.984518, -2.103552], [53.984442, -2.103467]], [[53.98366, -2.104305], [53.98362, -2.104295]], [[53.984076, -2.104056], [53.984144, -2.103937]], [[53.987726, -2.101339], [53.98764, -2.101415]], [[53.987189, -2.101948], [53.987178, -2.102054]], [[53.986615, -2.101815], [53.986639, -2.101864]], [[53.986587, -2.101991], [53.986578, -2.102145]], [[53.986578, -2.102145], [53.986547, -2.102268]], [[53.986547, -2.102268], [53.986516, -2.102422]], [[53.985731, -2.105904], [53.985677, -2.106029]], [[53.985624, -2.106166], [53.985594, -2.106316]], [[53.98426, -2.103772], [53.984267, -2.103769]], [[53.984224, -2.10391], [53.984138, -2.103993]], [[53.984049, -2.104057], [53.984062, -2.10407]], [[53.98501, -2.10355], [53.985046, -2.103583]], [[53.985223, -2.103363], [53.985316, -2.103423]], [[53.985775, -2.103293], [53.985833, -2.103293]], [[53.985906, -2.103192], [53.986002, -2.103144]], [[53.986171, -2.103017], [53.98622, -2.10299]], [[53.98622, -2.10299], [53.986301, -2.102912]], [[53.98652, -2.102272], [53.98653, -2.102248]], [[53.986607, -2.101982], [53.98661, -2.101965]], [[53.986796, -2.101351], [53.986732, -2.101459]], [[53.986732, -2.101459], [53.986713, -2.101579]], [[53.987154, -2.10181], [53.987169, -2.101659]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_138d38b5868b204cdc5c5bc618ac919d = L.polyline(
                [[[54.144413, -2.292649], [54.144507, -2.292703]], [[54.146909, -2.293877], [54.146998, -2.293837]], [[54.147773, -2.292771], [54.14774, -2.292628]], [[54.14774, -2.292628], [54.147749, -2.292475]], [[54.147818, -2.291339], [54.147876, -2.291219]], [[54.147876, -2.291219], [54.147952, -2.29112]], [[54.148308, -2.290817], [54.148366, -2.290679]], [[54.148415, -2.28978], [54.148451, -2.289629]], [[54.148451, -2.289629], [54.148459, -2.289463]], [[54.148337, -2.288244], [54.148273, -2.288121]], [[54.148141, -2.287889], [54.148157, -2.287728]], [[54.148387, -2.287257], [54.148415, -2.287103]], [[54.150361, -2.28548], [54.150451, -2.285452]], [[54.150451, -2.285452], [54.150538, -2.285392]], [[54.150624, -2.285344], [54.150706, -2.285277]], [[54.150706, -2.285277], [54.150803, -2.285267]], [[54.15189, -2.284717], [54.151979, -2.284665]], [[54.151979, -2.284665], [54.152062, -2.28458]], [[54.152062, -2.28458], [54.152162, -2.284529]], [[54.152523, -2.284298], [54.152614, -2.284246]], [[54.152614, -2.284246], [54.1527, -2.284185]], [[54.152812, -2.283932], [54.152896, -2.283866]], [[54.152896, -2.283866], [54.152923, -2.283712]], [[54.152923, -2.283712], [54.152961, -2.283566]], [[54.152961, -2.283566], [54.153052, -2.283514]], [[54.156011, -2.280708], [54.156108, -2.280677]], [[54.156108, -2.280677], [54.156198, -2.280611]], [[54.15672, -2.280321], [54.156804, -2.28025]], [[54.156987, -2.280145], [54.157083, -2.280139]], [[54.157083, -2.280139], [54.157178, -2.280109]], [[54.157178, -2.280109], [54.157272, -2.280086]], [[54.15747, -2.280076], [54.157562, -2.280026]], [[54.157562, -2.280026], [54.157652, -2.279977]], [[54.157652, -2.279977], [54.157746, -2.279936]], [[54.158189, -2.279475], [54.158277, -2.279385]], [[54.158777, -2.278571], [54.158823, -2.278422]], [[54.158823, -2.278422], [54.158898, -2.278307]], [[54.15899, -2.278251], [54.159083, -2.278243]], [[54.159083, -2.278243], [54.159175, -2.278271]], [[54.159175, -2.278271], [54.159271, -2.278298]], [[54.159271, -2.278298], [54.159362, -2.278309]], [[54.159804, -2.277596], [54.159869, -2.277485]], [[54.162243, -2.275866], [54.162308, -2.275789]], [[54.162351, -2.275625], [54.162444, -2.275566]], [[54.163999, -2.272797], [54.164051, -2.272729]], [[54.163871, -2.271917], [54.163816, -2.271788]], [[54.163693, -2.271572], [54.16362, -2.271462]], [[54.16362, -2.271462], [54.163551, -2.27136]], [[54.163473, -2.271267], [54.163397, -2.271162]], [[54.163397, -2.271162], [54.163327, -2.271056]], [[54.163247, -2.27098], [54.163167, -2.270888]], [[54.163167, -2.270888], [54.163078, -2.270822]], [[54.163078, -2.270822], [54.163, -2.270738]], [[54.162164, -2.266632], [54.162142, -2.266564]], [[54.162124, -2.266391], [54.162125, -2.266232]], [[54.162113, -2.265744], [54.162106, -2.265581]], [[54.162106, -2.265581], [54.16204, -2.265473]], [[54.162199, -2.264508], [54.162216, -2.264337]], [[54.162102, -2.263903], [54.162116, -2.263744]], [[54.162127, -2.263586], [54.162127, -2.26343]], [[54.162127, -2.26343], [54.162121, -2.263257]], [[54.162131, -2.263095], [54.162149, -2.262931]], [[54.162149, -2.262931], [54.162145, -2.262776]], [[54.162145, -2.262463], [54.162135, -2.262309]], [[54.162133, -2.262146], [54.162148, -2.261994]], [[54.162148, -2.261994], [54.162108, -2.261854]], [[54.162108, -2.261854], [54.162114, -2.261697]], [[54.162114, -2.261697], [54.162101, -2.261542]], [[54.162101, -2.261542], [54.162091, -2.261378]], [[54.162091, -2.261378], [54.162099, -2.261223]], [[54.162099, -2.261223], [54.162099, -2.261065]], [[54.162099, -2.261065], [54.162096, -2.260907]], [[54.162096, -2.260907], [54.162101, -2.26075]], [[54.162101, -2.26075], [54.162126, -2.260592]], [[54.162126, -2.260592], [54.162134, -2.260432]], [[54.162134, -2.260432], [54.162114, -2.26028]], [[54.162114, -2.26028], [54.162122, -2.260118]], [[54.162122, -2.260118], [54.162129, -2.259949]], [[54.162129, -2.259949], [54.162127, -2.25979]], [[54.162118, -2.259164], [54.162079, -2.259008]], [[54.162079, -2.259008], [54.162027, -2.258877]], [[54.162027, -2.258877], [54.161993, -2.258733]], [[54.161993, -2.258733], [54.161959, -2.258586]], [[54.161959, -2.258586], [54.162031, -2.258479]], [[54.162031, -2.258479], [54.162098, -2.258364]], [[54.162176, -2.258079], [54.162224, -2.257939]], [[54.162224, -2.257939], [54.162245, -2.257788]], [[54.162245, -2.257788], [54.162249, -2.25763]], [[54.162294, -2.257327], [54.162323, -2.257167]], [[54.162354, -2.257017], [54.162351, -2.256844]], [[54.162351, -2.256844], [54.16235, -2.256684]], [[54.16235, -2.256684], [54.162364, -2.256522]], [[54.162364, -2.256522], [54.162411, -2.256387]], [[54.162411, -2.256387], [54.162421, -2.256221]], [[54.162421, -2.256221], [54.162417, -2.25606]], [[54.162417, -2.25606], [54.16246, -2.255922]], [[54.162494, -2.255765], [54.162482, -2.2556]], [[54.162482, -2.2556], [54.162469, -2.255446]], [[54.162469, -2.255446], [54.162487, -2.255283]], [[54.162487, -2.255283], [54.162522, -2.255129]], [[54.162522, -2.255129], [54.162532, -2.254968]], [[54.162532, -2.254968], [54.162574, -2.254817]], [[54.162649, -2.254728], [54.162694, -2.254586]], [[54.162694, -2.254586], [54.162719, -2.254423]], [[54.162719, -2.254423], [54.162706, -2.254269]], [[54.162706, -2.254269], [54.162657, -2.254135]], [[54.162716, -2.253398], [54.162779, -2.253274]], [[54.162779, -2.253274], [54.162817, -2.253116]], [[54.162817, -2.253116], [54.162813, -2.252961]], [[54.162813, -2.252961], [54.162832, -2.25281]], [[54.162952, -2.252304], [54.162996, -2.252162]], [[54.162996, -2.252162], [54.162998, -2.251998]], [[54.163181, -2.251299], [54.16315, -2.251153]], [[54.163206, -2.250909], [54.16327, -2.250788]], [[54.16327, -2.250788], [54.163354, -2.250714]], [[54.163354, -2.250714], [54.16344, -2.250655]], [[54.163527, -2.250487], [54.163437, -2.25043]], [[54.163339, -2.250403], [54.163246, -2.250387]], [[54.163246, -2.250387], [54.163155, -2.250323]], [[54.163071, -2.250252], [54.16298, -2.250243]], [[54.162884, -2.25026], [54.162819, -2.250153]], [[54.162819, -2.250153], [54.162724, -2.250154]], [[54.162724, -2.250154], [54.162634, -2.250124]], [[54.162634, -2.250124], [54.162548, -2.250077]], [[54.162426, -2.249955], [54.162333, -2.249995]], [[54.162333, -2.249995], [54.162244, -2.249945]], [[54.162244, -2.249945], [54.162154, -2.249955]], [[54.162154, -2.249955], [54.162094, -2.249836]], [[54.162094, -2.249836], [54.162006, -2.249871]], [[54.162006, -2.249871], [54.161911, -2.249938]], [[54.161531, -2.249956], [54.161441, -2.249982]], [[54.161441, -2.249982], [54.161346, -2.249932]], [[54.161251, -2.249908], [54.161161, -2.249853]], [[54.161161, -2.249853], [54.161069, -2.249893]], [[54.161069, -2.249893], [54.160976, -2.249881]], [[54.160437, -2.249961], [54.160345, -2.249968]], [[54.160345, -2.249968], [54.160257, -2.250038]], [[54.160257, -2.250038], [54.160162, -2.250077]], [[54.160069, -2.250099], [54.160031, -2.250246]], [[54.160031, -2.250246], [54.159944, -2.250288]], [[54.159944, -2.250288], [54.159851, -2.250268]], [[54.159851, -2.250268], [54.15976, -2.250281]], [[54.159599, -2.250432], [54.15952, -2.250527]], [[54.15952, -2.250527], [54.159433, -2.250602]], [[54.159433, -2.250602], [54.159344, -2.250633]], [[54.159344, -2.250633], [54.159262, -2.250715]], [[54.159087, -2.25077], [54.15899, -2.250773]], [[54.15899, -2.250773], [54.1589, -2.250793]], [[54.1589, -2.250793], [54.158818, -2.250885]], [[54.158294, -2.25103], [54.158215, -2.250938]], [[54.158215, -2.250938], [54.158144, -2.25084]], [[54.158068, -2.250738], [54.158004, -2.250621]], [[54.158004, -2.250621], [54.157955, -2.250492]], [[54.157955, -2.250492], [54.157869, -2.250427]], [[54.157556, -2.250096], [54.157477, -2.25002]], [[54.157477, -2.25002], [54.157399, -2.24993]], [[54.156957, -2.249295], [54.156873, -2.249214]], [[54.156873, -2.249214], [54.156783, -2.249158]], [[54.156783, -2.249158], [54.156693, -2.249097]], [[54.156693, -2.249097], [54.156604, -2.249064]], [[54.156604, -2.249064], [54.156513, -2.249003]], [[54.156326, -2.248907], [54.156253, -2.248818]], [[54.156058, -2.248741], [54.156004, -2.248767]], [[54.154414, -2.25063], [54.154353, -2.250715]], [[54.154256, -2.250777], [54.154169, -2.250819]], [[54.152186, -2.250898], [54.1521, -2.250947]], [[54.1521, -2.250947], [54.152018, -2.251027]], [[54.152018, -2.251027], [54.151967, -2.251154]], [[54.151967, -2.251154], [54.151911, -2.251286]], [[54.151831, -2.251384], [54.151748, -2.251443]], [[54.151501, -2.25159], [54.151444, -2.251721]], [[54.151309, -2.251935], [54.151228, -2.252008]], [[54.151228, -2.252008], [54.151135, -2.252029]], [[54.151135, -2.252029], [54.151042, -2.252081]], [[54.151042, -2.252081], [54.15095, -2.252077]], [[54.15095, -2.252077], [54.150853, -2.252078]], [[54.150853, -2.252078], [54.150755, -2.252097]], [[54.150755, -2.252097], [54.150683, -2.252199]], [[54.150683, -2.252199], [54.15059, -2.25226]], [[54.149346, -2.253178], [54.149267, -2.253261]], [[54.148237, -2.253946], [54.148145, -2.253896]], [[54.144407, -2.253944], [54.144313, -2.253972]], [[54.142352, -2.25335], [54.142331, -2.253196]], [[54.14228, -2.253065], [54.142224, -2.252958]], [[54.142166, -2.252817], [54.142099, -2.2527]], [[54.140539, -2.24522], [54.140441, -2.245213]], [[54.140348, -2.245176], [54.140266, -2.245254]], [[54.143383, -2.232085], [54.143453, -2.231974]], [[54.146543, -2.226239], [54.146504, -2.226095]], [[54.146504, -2.226095], [54.146466, -2.225949]], [[54.146466, -2.225949], [54.146437, -2.225803]], [[54.146437, -2.225803], [54.146349, -2.225735]], [[54.146349, -2.225735], [54.146277, -2.225638]], [[54.14616, -2.225389], [54.146081, -2.225314]], [[54.146081, -2.225314], [54.146034, -2.225168]], [[54.146034, -2.225168], [54.145972, -2.225056]], [[54.145972, -2.225056], [54.145921, -2.224913]], [[54.145852, -2.22481], [54.145796, -2.224673]], [[54.145796, -2.224673], [54.145735, -2.22455]], [[54.145735, -2.22455], [54.145672, -2.224439]], [[54.145672, -2.224439], [54.145612, -2.224315]], [[54.145612, -2.224315], [54.14555, -2.22419]], [[54.14555, -2.22419], [54.145476, -2.22409]], [[54.145476, -2.22409], [54.145397, -2.223998]], [[54.145195, -2.223569], [54.145164, -2.223421]], [[54.145164, -2.223421], [54.145089, -2.223334]], [[54.145089, -2.223334], [54.14503, -2.223214]], [[54.14503, -2.223214], [54.144991, -2.223066]], [[54.144991, -2.223066], [54.144927, -2.222952]], [[54.144927, -2.222952], [54.144873, -2.222816]], [[54.144873, -2.222816], [54.144794, -2.222725]], [[54.14474, -2.222587], [54.144682, -2.222454]], [[54.144682, -2.222454], [54.144589, -2.222384]], [[54.144589, -2.222384], [54.144527, -2.222269]], [[54.14453, -2.22211], [54.144463, -2.221998]], [[54.144463, -2.221998], [54.144394, -2.22189]], [[54.144394, -2.22189], [54.144343, -2.221758]], [[54.144343, -2.221758], [54.144294, -2.221617]], [[54.144294, -2.221617], [54.14423, -2.221497]], [[54.144101, -2.221082], [54.144029, -2.220984]], [[54.144029, -2.220984], [54.143981, -2.220845]], [[54.143897, -2.220592], [54.143861, -2.220449]], [[54.143861, -2.220449], [54.143799, -2.220338]], [[54.143799, -2.220338], [54.143755, -2.220191]], [[54.143503, -2.219777], [54.143508, -2.219613]], [[54.143508, -2.219613], [54.143464, -2.219478]], [[54.143464, -2.219478], [54.14345, -2.21931]], [[54.14345, -2.21931], [54.143426, -2.219157]], [[54.143426, -2.219157], [54.1434, -2.218997]], [[54.1434, -2.218997], [54.143394, -2.218839]], [[54.143394, -2.218839], [54.143367, -2.218688]], [[54.143367, -2.218688], [54.143327, -2.218539]], [[54.143327, -2.218539], [54.143289, -2.218396]], [[54.143332, -2.217817], [54.143382, -2.217675]], [[54.143429, -2.21754], [54.143465, -2.217399]], [[54.143465, -2.217399], [54.143514, -2.217259]], [[54.143514, -2.217259], [54.143578, -2.217132]], [[54.143578, -2.217132], [54.143621, -2.216981]], [[54.143621, -2.216981], [54.143675, -2.216851]], [[54.143675, -2.216851], [54.143691, -2.216693]], [[54.143691, -2.216693], [54.143739, -2.216553]], [[54.143739, -2.216553], [54.143782, -2.216408]], [[54.143782, -2.216408], [54.143815, -2.216262]], [[54.143815, -2.216262], [54.14384, -2.21611]], [[54.14384, -2.21611], [54.14388, -2.215966]], [[54.143928, -2.215835], [54.143975, -2.215698]], [[54.143975, -2.215698], [54.144016, -2.215545]], [[54.144016, -2.215545], [54.144043, -2.215385]], [[54.144043, -2.215385], [54.144088, -2.215244]], [[54.144088, -2.215244], [54.144107, -2.215086]], [[54.144107, -2.215086], [54.144123, -2.214929]], [[54.144123, -2.214929], [54.144134, -2.21477]], [[54.144134, -2.21477], [54.144173, -2.214624]], [[54.144173, -2.214624], [54.144139, -2.214478]], [[54.144211, -2.214104], [54.14426, -2.213962]], [[54.14426, -2.213962], [54.144307, -2.213818]], [[54.144307, -2.213818], [54.144328, -2.213666]], [[54.144328, -2.213666], [54.144342, -2.213505]], [[54.144342, -2.213505], [54.144335, -2.21334]], [[54.144335, -2.21334], [54.144349, -2.213175]], [[54.144349, -2.213175], [54.144338, -2.213022]], [[54.144338, -2.213022], [54.14432, -2.212864]], [[54.14432, -2.212864], [54.144328, -2.212705]], [[54.144328, -2.212705], [54.144311, -2.212546]], [[54.144311, -2.212546], [54.144303, -2.212386]], [[54.144317, -2.212228], [54.144309, -2.212066]], [[54.144262, -2.211609], [54.144288, -2.211459]], [[54.144288, -2.211459], [54.144309, -2.211298]], [[54.144309, -2.211298], [54.144341, -2.211145]], [[54.14439, -2.210843], [54.144432, -2.2107]], [[54.144432, -2.2107], [54.144488, -2.210568]], [[54.144488, -2.210568], [54.144514, -2.210406]], [[54.144514, -2.210406], [54.144545, -2.210262]], [[54.144545, -2.210262], [54.144548, -2.210107]], [[54.144601, -2.209641], [54.144649, -2.209497]], [[54.144649, -2.209497], [54.144667, -2.209334]], [[54.14468, -2.208868], [54.144691, -2.208714]], [[54.144717, -2.208394], [54.144727, -2.208233]], [[54.144724, -2.206927], [54.144785, -2.2068]], [[54.144872, -2.206523], [54.144894, -2.206367]], [[54.144894, -2.206367], [54.144853, -2.20622]], [[54.144853, -2.20622], [54.144813, -2.206071]], [[54.144661, -2.2058], [54.144587, -2.20589]], [[54.144587, -2.20589], [54.144509, -2.205969]], [[54.144509, -2.205969], [54.144413, -2.205968]], [[54.144413, -2.205968], [54.144322, -2.205912]], [[54.144322, -2.205912], [54.144234, -2.205832]], [[54.144234, -2.205832], [54.144171, -2.205707]], [[54.144171, -2.205707], [54.14412, -2.20556]], [[54.143754, -2.203874], [54.143705, -2.203763]], [[54.143543, -2.203627], [54.143446, -2.203586]], [[54.142485, -2.202555], [54.142391, -2.202507]], [[54.141987, -2.20165], [54.141915, -2.201552]], [[54.141135, -2.199959], [54.141049, -2.199901]], [[54.139689, -2.197594], [54.139628, -2.197466]], [[54.139628, -2.197466], [54.139582, -2.197327]], [[54.138743, -2.194967], [54.138695, -2.194833]], [[54.138695, -2.194833], [54.138649, -2.194699]], [[54.138649, -2.194699], [54.138645, -2.194524]], [[54.138615, -2.19421], [54.138602, -2.194041]], [[54.138602, -2.194041], [54.138538, -2.193911]], [[54.13678, -2.192939], [54.136712, -2.192944]], [[54.136712, -2.192944], [54.136633, -2.192853]], [[54.136417, -2.192303], [54.136358, -2.192186]], [[54.136407, -2.191351], [54.136402, -2.191188]], [[54.134647, -2.18908], [54.134564, -2.189009]], [[54.134564, -2.189009], [54.134468, -2.188996]], [[54.134468, -2.188996], [54.134386, -2.188915]], [[54.134299, -2.188968], [54.134226, -2.189063]], [[54.128119, -2.188621], [54.128026, -2.188607]], [[54.128026, -2.188607], [54.127926, -2.188636]], [[54.127395, -2.188938], [54.127355, -2.189077]], [[54.125695, -2.19044], [54.125606, -2.190395]], [[54.125606, -2.190395], [54.125505, -2.19043]], [[54.12492, -2.189596], [54.124843, -2.189487]], [[54.121325, -2.178699], [54.121224, -2.178689]], [[54.121224, -2.178689], [54.121127, -2.178709]], [[54.115494, -2.17698], [54.115477, -2.176823]], [[54.115477, -2.176823], [54.115437, -2.176675]], [[54.115437, -2.176675], [54.115401, -2.176515]], [[54.115234, -2.175768], [54.115179, -2.17563]], [[54.115179, -2.17563], [54.115091, -2.175569]], [[54.115091, -2.175569], [54.115003, -2.175623]], [[54.114751, -2.175846], [54.114665, -2.175895]], [[54.114665, -2.175895], [54.11458, -2.175982]], [[54.114411, -2.176144], [54.114322, -2.176214]], [[54.113872, -2.17645], [54.11379, -2.176516]], [[54.11379, -2.176516], [54.1137, -2.176543]], [[54.1137, -2.176543], [54.113619, -2.176613]], [[54.110456, -2.174649], [54.110382, -2.174664]], [[54.11034, -2.174803], [54.110265, -2.174906]], [[54.10802, -2.174952], [54.107958, -2.174954]], [[54.101795, -2.171979], [54.101774, -2.171818]], [[54.101494, -2.171151], [54.101426, -2.17103]], [[54.100625, -2.16789], [54.100625, -2.167735]], [[54.100725, -2.165696], [54.100747, -2.165538]], [[54.101137, -2.164249], [54.101225, -2.164276]], [[54.101215, -2.163741], [54.101135, -2.163643]], [[54.09993, -2.158781], [54.09986, -2.158674]], [[54.09986, -2.158674], [54.099777, -2.158607]], [[54.098499, -2.157447], [54.098439, -2.157389]], [[54.098362, -2.157308], [54.09828, -2.157206]], [[54.093844, -2.156972], [54.093743, -2.156999]], [[54.092035, -2.160685], [54.092023, -2.160853]], [[54.091846, -2.161772], [54.091823, -2.161931]], [[54.091748, -2.16217], [54.091697, -2.1623]], [[54.091607, -2.162588], [54.091559, -2.162693]], [[54.091559, -2.162693], [54.091489, -2.162816]], [[54.088011, -2.163492], [54.088024, -2.163651]], [[54.088053, -2.164638], [54.088043, -2.164813]], [[54.087996, -2.16495], [54.087904, -2.164915]], [[54.087904, -2.164915], [54.087818, -2.16485]], [[54.087248, -2.164506], [54.087154, -2.164514]], [[54.085422, -2.163304], [54.085334, -2.163365]], [[54.08518, -2.163569], [54.08511, -2.163681]], [[54.08511, -2.163681], [54.085031, -2.163771]], [[54.08257, -2.166231], [54.082488, -2.166312]], [[54.082488, -2.166312], [54.082389, -2.16634]], [[54.082389, -2.16634], [54.082296, -2.166384]], [[54.082226, -2.166488], [54.082142, -2.166545]], [[54.082142, -2.166545], [54.082051, -2.166572]], [[54.082051, -2.166572], [54.081963, -2.166603]], [[54.081963, -2.166603], [54.081891, -2.166714]], [[54.081891, -2.166714], [54.081833, -2.166836]], [[54.081833, -2.166836], [54.081747, -2.166892]], [[54.081458, -2.166903], [54.081372, -2.166834]], [[54.081372, -2.166834], [54.081278, -2.166775]], [[54.081278, -2.166775], [54.081179, -2.166742]], [[54.080842, -2.166491], [54.080757, -2.166433]], [[54.080757, -2.166433], [54.080677, -2.166348]], [[54.080677, -2.166348], [54.080581, -2.166309]], [[54.080581, -2.166309], [54.080482, -2.166308]], [[54.080482, -2.166308], [54.080387, -2.166315]], [[54.080123, -2.166123], [54.080024, -2.166112]], [[54.079624, -2.166355], [54.079585, -2.166502]], [[54.079585, -2.166502], [54.079598, -2.166657]], [[54.079598, -2.166657], [54.079612, -2.166812]], [[54.079612, -2.166812], [54.079639, -2.166965]], [[54.079639, -2.166965], [54.079686, -2.167114]], [[54.07976, -2.167587], [54.079788, -2.167735]], [[54.079695, -2.167664], [54.07965, -2.167527]], [[54.07965, -2.167527], [54.079561, -2.167464]], [[54.079561, -2.167464], [54.079499, -2.167338]], [[54.079499, -2.167338], [54.079481, -2.167179]], [[54.079401, -2.167095], [54.079357, -2.166958]], [[54.079357, -2.166958], [54.079405, -2.166983]], [[54.079405, -2.166983], [54.079352, -2.166856]], [[54.079352, -2.166856], [54.07928, -2.166748]], [[54.079144, -2.166204], [54.079054, -2.166149]], [[54.078855, -2.165847], [54.078806, -2.16571]], [[54.078704, -2.165448], [54.078619, -2.165397]], [[54.078619, -2.165397], [54.078547, -2.165286]], [[54.07842, -2.165052], [54.078352, -2.164937]], [[54.078352, -2.164937], [54.078293, -2.164806]], [[54.078293, -2.164806], [54.078207, -2.164727]], [[54.078184, -2.164574], [54.078147, -2.16443]], [[54.078147, -2.16443], [54.078075, -2.164315]], [[54.077511, -2.163244], [54.077436, -2.163126]], [[54.075483, -2.160069], [54.07539, -2.160051]], [[54.07481, -2.159577], [54.074728, -2.159486]], [[54.074484, -2.159326], [54.074393, -2.159256]], [[54.073962, -2.15887], [54.073879, -2.158789]], [[54.073372, -2.158333], [54.073274, -2.158311]], [[54.073274, -2.158311], [54.073233, -2.158454]], [[54.073233, -2.158454], [54.073187, -2.158591]], [[54.073187, -2.158591], [54.0731, -2.158648]], [[54.0731, -2.158648], [54.073011, -2.158704]], [[54.073011, -2.158704], [54.072959, -2.158836]], [[54.072832, -2.159218], [54.072868, -2.15936]], [[54.072914, -2.159505], [54.072913, -2.159668]], [[54.072913, -2.159668], [54.072862, -2.1598]], [[54.072862, -2.1598], [54.072895, -2.159944]], [[54.072895, -2.159944], [54.072918, -2.160098]], [[54.072918, -2.160098], [54.07293, -2.160263]], [[54.07293, -2.160263], [54.072879, -2.160395]], [[54.072879, -2.160395], [54.072873, -2.160557]], [[54.072873, -2.160557], [54.072832, -2.160698]], [[54.072832, -2.160698], [54.072766, -2.160822]], [[54.072766, -2.160822], [54.072739, -2.160972]], [[54.072522, -2.161318], [54.072418, -2.161306]], [[54.072356, -2.161181], [54.072425, -2.161197]], [[54.072425, -2.161197], [54.072364, -2.161072]], [[54.072364, -2.161072], [54.072314, -2.160944]], [[54.072314, -2.160944], [54.072219, -2.160969]], [[54.072219, -2.160969], [54.072149, -2.160867]], [[54.072049, -2.160861], [54.071954, -2.16084]], [[54.071865, -2.160806], [54.071776, -2.160749]], [[54.071776, -2.160749], [54.071689, -2.160693]], [[54.071689, -2.160693], [54.071597, -2.160681]], [[54.071472, -2.160441], [54.071574, -2.160362]], [[54.071645, -2.159829], [54.071692, -2.159677]], [[54.071682, -2.159188], [54.071635, -2.159037]], [[54.071154, -2.158461], [54.071073, -2.158383]], [[54.070168, -2.158718], [54.070154, -2.158843]], [[54.070065, -2.158863], [54.069981, -2.158923]], [[54.069236, -2.158915], [54.069135, -2.158948]], [[54.068676, -2.159181], [54.068585, -2.159198]], [[54.068484, -2.159207], [54.068391, -2.159203]], [[54.067836, -2.159123], [54.06774, -2.159113]], [[54.065782, -2.15762], [54.065709, -2.157522]], [[54.065092, -2.156054], [54.064998, -2.155987]], [[54.061931, -2.152699], [54.061851, -2.152614]], [[54.061695, -2.152409], [54.061603, -2.152435]], [[54.061372, -2.152702], [54.061276, -2.152735]], [[54.061178, -2.152756], [54.061096, -2.152686]], [[54.060702, -2.152853], [54.060611, -2.152842]], [[54.059909, -2.152524], [54.059809, -2.152523]], [[54.05605, -2.1504], [54.055956, -2.15039]], [[54.055816, -2.150329], [54.055726, -2.150287]], [[54.055726, -2.150287], [54.055638, -2.150214]], [[54.05509, -2.149942], [54.054996, -2.149976]], [[54.054996, -2.149976], [54.054903, -2.150018]], [[54.054903, -2.150018], [54.054817, -2.149957]], [[54.054817, -2.149957], [54.054733, -2.149869]], [[54.054733, -2.149869], [54.054638, -2.149844]], [[54.054638, -2.149844], [54.054544, -2.14982]], [[54.054544, -2.14982], [54.054451, -2.149812]], [[54.054287, -2.149747], [54.054205, -2.149671]], [[54.054205, -2.149671], [54.054114, -2.149691]], [[54.053798, -2.149688], [54.053718, -2.149586]], [[54.053346, -2.149499], [54.053316, -2.149653]], [[54.053316, -2.149653], [54.053281, -2.149805]], [[54.053281, -2.149805], [54.053283, -2.14997]], [[54.053014, -2.150635], [54.052926, -2.150687]], [[54.052732, -2.150877], [54.052646, -2.150949]], [[54.052646, -2.150949], [54.052555, -2.150982]], [[54.05165, -2.15185], [54.051585, -2.151968]], [[54.0515, -2.152138], [54.051437, -2.152251]], [[54.050918, -2.15277], [54.050829, -2.152732]], [[54.050829, -2.152732], [54.050732, -2.152705]], [[54.049657, -2.152052], [54.049577, -2.151979]], [[54.049577, -2.151979], [54.049506, -2.151876]], [[54.049265, -2.151638], [54.049199, -2.151588]], [[54.048739, -2.151521], [54.048664, -2.151617]], [[54.048588, -2.151702], [54.048496, -2.151651]], [[54.048496, -2.151651], [54.048407, -2.151594]], [[54.046388, -2.154347], [54.046306, -2.154415]], [[54.045913, -2.154316], [54.045816, -2.154303]], [[54.045345, -2.154181], [54.045256, -2.154144]], [[54.044222, -2.153922], [54.044126, -2.153941]], [[54.043843, -2.153935], [54.043743, -2.153943]], [[54.043743, -2.153943], [54.043648, -2.153947]], [[54.043648, -2.153947], [54.043552, -2.153953]], [[54.043173, -2.153913], [54.04309, -2.15384]], [[54.040219, -2.151982], [54.040139, -2.15207]], [[54.040139, -2.15207], [54.040068, -2.152162]], [[54.039343, -2.151951], [54.039262, -2.151879]], [[54.039262, -2.151879], [54.039165, -2.151897]], [[54.037753, -2.152119], [54.037701, -2.152245]], [[54.037701, -2.152245], [54.037604, -2.152293]], [[54.03751, -2.152328], [54.037419, -2.152381]], [[54.037256, -2.152319], [54.037173, -2.152254]], [[54.037173, -2.152254], [54.037081, -2.152235]], [[54.037081, -2.152235], [54.036986, -2.152212]], [[54.036898, -2.152159], [54.036826, -2.152169]], [[54.036826, -2.152169], [54.036731, -2.15219]], [[54.036731, -2.15219], [54.03664, -2.152246]], [[54.03664, -2.152246], [54.036542, -2.152296]], [[54.034123, -2.15137], [54.034028, -2.151346]], [[54.033632, -2.151027], [54.033594, -2.150877]], [[54.032965, -2.149878], [54.032927, -2.149758]], [[54.032766, -2.14961], [54.032693, -2.14952]], [[54.032693, -2.14952], [54.032648, -2.149386]], [[54.032502, -2.149175], [54.032424, -2.149085]], [[54.032424, -2.149085], [54.032328, -2.149065]], [[54.032328, -2.149065], [54.03223, -2.149066]], [[54.03223, -2.149066], [54.032137, -2.149018]], [[54.032137, -2.149018], [54.032039, -2.149016]], [[54.030344, -2.148179], [54.030254, -2.148224]], [[54.030077, -2.148349], [54.029978, -2.148336]], [[54.029118, -2.148119], [54.029041, -2.148088]], [[54.028775, -2.147811], [54.028679, -2.147808]], [[54.028585, -2.147785], [54.028495, -2.147732]], [[54.028495, -2.147732], [54.028402, -2.147674]], [[54.028402, -2.147674], [54.028307, -2.14763]], [[54.027479, -2.147343], [54.027387, -2.147332]], [[54.027292, -2.147308], [54.027201, -2.147256]], [[54.026565, -2.147335], [54.026473, -2.14735]], [[54.025821, -2.147367], [54.025735, -2.14729]], [[54.023526, -2.145557], [54.023497, -2.145552]], [[54.022862, -2.144615], [54.022807, -2.144488]], [[54.022807, -2.144488], [54.022736, -2.144376]], [[54.022736, -2.144376], [54.02267, -2.144252]], [[54.022123, -2.143164], [54.022049, -2.143072]], [[54.021985, -2.14295], [54.021934, -2.142951]], [[54.021852, -2.142867], [54.021757, -2.142868]], [[54.021757, -2.142868], [54.021664, -2.142835]], [[54.020481, -2.142917], [54.020404, -2.143004]], [[54.020404, -2.143004], [54.02031, -2.143071]], [[54.019368, -2.142745], [54.019278, -2.142723]], [[54.019029, -2.142443], [54.018949, -2.142368]], [[54.018935, -2.142528], [54.018938, -2.142693]], [[54.018623, -2.143409], [54.018534, -2.14335]], [[54.018174, -2.143248], [54.018111, -2.143129]], [[54.017711, -2.142527], [54.017683, -2.142379]], [[54.017683, -2.142379], [54.017659, -2.142223]], [[54.016741, -2.140373], [54.0167, -2.140512]], [[54.0167, -2.140512], [54.016631, -2.140409]], [[54.016282, -2.139455], [54.016233, -2.139315]], [[54.016233, -2.139315], [54.016165, -2.139207]], [[54.015907, -2.138741], [54.015824, -2.138681]], [[54.015638, -2.138558], [54.015545, -2.138545]], [[54.015545, -2.138545], [54.015446, -2.13852]], [[54.014879, -2.138327], [54.014784, -2.138306]], [[54.013835, -2.138407], [54.013843, -2.138242]], [[54.013843, -2.138242], [54.013894, -2.138094]], [[54.01394, -2.137631], [54.013901, -2.137492]], [[54.013905, -2.13718], [54.013898, -2.137023]], [[54.013898, -2.137023], [54.013877, -2.136874]], [[54.013877, -2.136874], [54.013842, -2.136733]], [[54.013842, -2.136733], [54.013804, -2.136585]], [[54.013804, -2.136585], [54.013732, -2.136475]], [[54.013732, -2.136475], [54.013644, -2.1364]], [[54.013644, -2.1364], [54.013561, -2.136318]], [[54.013237, -2.136183], [54.013177, -2.13606]], [[54.012034, -2.134602], [54.011955, -2.134503]], [[54.011955, -2.134503], [54.011874, -2.134424]], [[54.011874, -2.134424], [54.011804, -2.134325]], [[54.011804, -2.134325], [54.011721, -2.134264]], [[54.011721, -2.134264], [54.011643, -2.134178]], [[54.011643, -2.134178], [54.011554, -2.134137]], [[54.011554, -2.134137], [54.011475, -2.134047]], [[54.011475, -2.134047], [54.011394, -2.133961]], [[54.011394, -2.133961], [54.01131, -2.133894]], [[54.01131, -2.133894], [54.011223, -2.133803]], [[54.010904, -2.133473], [54.010817, -2.133416]], [[54.010817, -2.133416], [54.01073, -2.133358]], [[54.01073, -2.133358], [54.010651, -2.133285]], [[54.010416, -2.133022], [54.010331, -2.13297]], [[54.010331, -2.13297], [54.010253, -2.132879]], [[54.009384, -2.131846], [54.009299, -2.131903]], [[54.008082, -2.130524], [54.007987, -2.130502]], [[54.007987, -2.130502], [54.0079, -2.130449]], [[54.0079, -2.130449], [54.007805, -2.130439]], [[54.007805, -2.130439], [54.007717, -2.130388]], [[54.007717, -2.130388], [54.007627, -2.130356]], [[54.007627, -2.130356], [54.00754, -2.130303]], [[54.00754, -2.130303], [54.007444, -2.13029]], [[54.007348, -2.130248], [54.00725, -2.130245]], [[54.00725, -2.130245], [54.007158, -2.130313]], [[54.006063, -2.129961], [54.005975, -2.129924]], [[54.004061, -2.128918], [54.003966, -2.128885]], [[54.003322, -2.128602], [54.003235, -2.128554]], [[54.003141, -2.128493], [54.003057, -2.128416]], [[54.003057, -2.128416], [54.002964, -2.12836]], [[54.002648, -2.12817], [54.002564, -2.128076]], [[54.001046, -2.125399], [54.000954, -2.125353]], [[53.995023, -2.120565], [53.994973, -2.120427]], [[53.993408, -2.118523], [53.993354, -2.11847]], [[53.993259, -2.118455], [53.993176, -2.118368]], [[53.993176, -2.118368], [53.993081, -2.118329]], [[53.993081, -2.118329], [53.993003, -2.118238]], [[53.992122, -2.11758], [53.992039, -2.117503]], [[53.991884, -2.117321], [53.991799, -2.117231]], [[53.991799, -2.117231], [53.991721, -2.117156]], [[53.991473, -2.116923], [53.991385, -2.116843]], [[53.991385, -2.116843], [53.991297, -2.116774]], [[53.990964, -2.116459], [53.990962, -2.116351]], [[53.990933, -2.116195], [53.990838, -2.116209]], [[53.990838, -2.116209], [53.990839, -2.11632]], [[53.990839, -2.11632], [53.990767, -2.116212]], [[53.988127, -2.110609], [53.988159, -2.110456]], [[53.988159, -2.110456], [53.988178, -2.110291]], [[53.988202, -2.109801], [53.988207, -2.109644]], [[53.985464, -2.106223], [53.985389, -2.106112]], [[53.984843, -2.105348], [53.984831, -2.105184]], [[53.984831, -2.105184], [53.984815, -2.10502]], [[53.984609, -2.103766], [53.98458, -2.103666]], [[53.983837, -2.104207], [53.98375, -2.104242]], [[53.98375, -2.104242], [53.98366, -2.104305]], [[53.983554, -2.104646], [53.983583, -2.104484]], [[53.983701, -2.104325], [53.983788, -2.104248]], [[53.984428, -2.103528], [53.984435, -2.103366]], [[53.984435, -2.103366], [53.984411, -2.103206]], [[53.98502, -2.101161], [53.985117, -2.1012]], [[53.985117, -2.1012], [53.985211, -2.101243]], [[53.985211, -2.101243], [53.985305, -2.101279]], [[53.985482, -2.10134], [53.985574, -2.101385]], [[53.985574, -2.101385], [53.985664, -2.101426]], [[53.985664, -2.101426], [53.985762, -2.101461]], [[53.98776, -2.101322], [53.987824, -2.10128]], [[53.987178, -2.102054], [53.987185, -2.101892]], [[53.987443, -2.100887], [53.987438, -2.100959]], [[53.987166, -2.10188], [53.987171, -2.102003]], [[53.987132, -2.101571], [53.987092, -2.101711]], [[53.985927, -2.104891], [53.985894, -2.105047]], [[53.985815, -2.105342], [53.985779, -2.105485]], [[53.985779, -2.105485], [53.985743, -2.10563]], [[53.985692, -2.105768], [53.985731, -2.105904]], [[53.985677, -2.106029], [53.985624, -2.106166]], [[53.985594, -2.106316], [53.985494, -2.106324]], [[53.985181, -2.105967], [53.985104, -2.105877]], [[53.985104, -2.105877], [53.985014, -2.105806]], [[53.985014, -2.105806], [53.984916, -2.105768]], [[53.984836, -2.105675], [53.984799, -2.105529]], [[53.984744, -2.105061], [53.984716, -2.104913]], [[53.984716, -2.104913], [53.984698, -2.104759]], [[53.984641, -2.10446], [53.984601, -2.10432]], [[53.984601, -2.10432], [53.984581, -2.10416]], [[53.984581, -2.10416], [53.984564, -2.104005]], [[53.984564, -2.104005], [53.984556, -2.10385]], [[53.984199, -2.103659], [53.98426, -2.103772]], [[53.984138, -2.103993], [53.984049, -2.104057]], [[53.983736, -2.104228], [53.983658, -2.104207]], [[53.983985, -2.104039], [53.984058, -2.103946]], [[53.98541, -2.103452], [53.985501, -2.103432]], [[53.985501, -2.103432], [53.98559, -2.103387]], [[53.98559, -2.103387], [53.985681, -2.103337]], [[53.986301, -2.102912], [53.986398, -2.10289]], [[53.986473, -2.102588], [53.986505, -2.102432]], [[53.986505, -2.102432], [53.98652, -2.102272]], [[53.986534, -2.102091], [53.986607, -2.101982]], [[53.986782, -2.101905], [53.986867, -2.10196]], [[53.987813, -2.101308], [53.987858, -2.10122]], [[53.98776, -2.101221], [53.987682, -2.101325]], [[53.987152, -2.101876], [53.987141, -2.101978]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_641985b9b1a6b43b8a29d77c14db185a = L.polyline(
                [[[54.144507, -2.292703], [54.144605, -2.29275]], [[54.144605, -2.29275], [54.144696, -2.292793]], [[54.144975, -2.292879], [54.145073, -2.292904]], [[54.145073, -2.292904], [54.145167, -2.292942]], [[54.145602, -2.293235], [54.145695, -2.293289]], [[54.145695, -2.293289], [54.145791, -2.293325]], [[54.145791, -2.293325], [54.145887, -2.29336]], [[54.145983, -2.293399], [54.146063, -2.293475]], [[54.146063, -2.293475], [54.146163, -2.293509]], [[54.146256, -2.293573], [54.146352, -2.293629]], [[54.146352, -2.293629], [54.146442, -2.29368]], [[54.146718, -2.293834], [54.14681, -2.293887]], [[54.147074, -2.293931], [54.147156, -2.294018]], [[54.147324, -2.294173], [54.147388, -2.294061]], [[54.147388, -2.294061], [54.147437, -2.293929]], [[54.147507, -2.29362], [54.147563, -2.293492]], [[54.147669, -2.293232], [54.14771, -2.29308]], [[54.14771, -2.29308], [54.147759, -2.292936]], [[54.148398, -2.290536], [54.148397, -2.290367]], [[54.148397, -2.290367], [54.1484, -2.290205]], [[54.14846, -2.290083], [54.148454, -2.28992]], [[54.148454, -2.28992], [54.148415, -2.28978]], [[54.148459, -2.289463], [54.148476, -2.289288]], [[54.148476, -2.289288], [54.148458, -2.289131]], [[54.148444, -2.288946], [54.148479, -2.288787]], [[54.148478, -2.288461], [54.148404, -2.288361]], [[54.148266, -2.287486], [54.148333, -2.287381]], [[54.148581, -2.286908], [54.148666, -2.28685]], [[54.148666, -2.28685], [54.148745, -2.28675]], [[54.148975, -2.286457], [54.149057, -2.286384]], [[54.149703, -2.285683], [54.149798, -2.285636]], [[54.149798, -2.285636], [54.149886, -2.285588]], [[54.150895, -2.285211], [54.150987, -2.285169]], [[54.151175, -2.285056], [54.15126, -2.284997]], [[54.151428, -2.284864], [54.151517, -2.28478]], [[54.151517, -2.28478], [54.151611, -2.284765]], [[54.151611, -2.284765], [54.151703, -2.284771]], [[54.151703, -2.284771], [54.151796, -2.284772]], [[54.153083, -2.283346], [54.15317, -2.283306]], [[54.15317, -2.283306], [54.153251, -2.283237]], [[54.153478, -2.282795], [54.153562, -2.282701]], [[54.153651, -2.282635], [54.153712, -2.282501]], [[54.153712, -2.282501], [54.153793, -2.282423]], [[54.153793, -2.282423], [54.153874, -2.282356]], [[54.154446, -2.281827], [54.15453, -2.281768]], [[54.155474, -2.281045], [54.155574, -2.281017]], [[54.155574, -2.281017], [54.155664, -2.280991]], [[54.157829, -2.279874], [54.157915, -2.279796]], [[54.157915, -2.279796], [54.158008, -2.279717]], [[54.158277, -2.279385], [54.158365, -2.279296]], [[54.158365, -2.279296], [54.158443, -2.279182]], [[54.158443, -2.279182], [54.158511, -2.279053]], [[54.15942, -2.278177], [54.159476, -2.278056]], [[54.159958, -2.2774], [54.160051, -2.277352]], [[54.160051, -2.277352], [54.160141, -2.277307]], [[54.160643, -2.276924], [54.160744, -2.276868]], [[54.160839, -2.276837], [54.160929, -2.276762]], [[54.162535, -2.275506], [54.162622, -2.275452]], [[54.162793, -2.275273], [54.162877, -2.275201]], [[54.162877, -2.275201], [54.162965, -2.275122]], [[54.162965, -2.275122], [54.163049, -2.275031]], [[54.163555, -2.274529], [54.163641, -2.274434]], [[54.163641, -2.274434], [54.163723, -2.274348]], [[54.163735, -2.274193], [54.163655, -2.274089]], [[54.163655, -2.274089], [54.163586, -2.273975]], [[54.163547, -2.273653], [54.163584, -2.273503]], [[54.163642, -2.273361], [54.163694, -2.273223]], [[54.163694, -2.273223], [54.163751, -2.273097]], [[54.163835, -2.272999], [54.16392, -2.272905]], [[54.162926, -2.270627], [54.162859, -2.270498]], [[54.162859, -2.270498], [54.162813, -2.270358]], [[54.162656, -2.269602], [54.162602, -2.269454]], [[54.162602, -2.269454], [54.162563, -2.269291]], [[54.162563, -2.269291], [54.162532, -2.269138]], [[54.162532, -2.269138], [54.162496, -2.268988]], [[54.162496, -2.268988], [54.162457, -2.268838]], [[54.162222, -2.267459], [54.162207, -2.267291]], [[54.162167, -2.266956], [54.162175, -2.266785]], [[54.162175, -2.266785], [54.162164, -2.266632]], [[54.162125, -2.266232], [54.162125, -2.266061]], [[54.161993, -2.265062], [54.162032, -2.264904]], [[54.161816, -2.249914], [54.161721, -2.249958]], [[54.155854, -2.248934], [54.15578, -2.249044]], [[54.155639, -2.249257], [54.155556, -2.249354]], [[54.155466, -2.249433], [54.155376, -2.249504]], [[54.155376, -2.249504], [54.155285, -2.249571]], [[54.15513, -2.249783], [54.155064, -2.249895]], [[54.155064, -2.249895], [54.154985, -2.249998]], [[54.154905, -2.250091], [54.15483, -2.250191]], [[54.15483, -2.250191], [54.15475, -2.250297]], [[54.15475, -2.250297], [54.15466, -2.25037]], [[54.15466, -2.25037], [54.154569, -2.250437]], [[54.154569, -2.250437], [54.154493, -2.250528]], [[54.154493, -2.250528], [54.154414, -2.25063]], [[54.153977, -2.250923], [54.153891, -2.250977]], [[54.153891, -2.250977], [54.153805, -2.251039]], [[54.153805, -2.251039], [54.153716, -2.251081]], [[54.153716, -2.251081], [54.153618, -2.251085]], [[54.153618, -2.251085], [54.153525, -2.251116]], [[54.151444, -2.251721], [54.151383, -2.251847]], [[54.150299, -2.252399], [54.15021, -2.252439]], [[54.149943, -2.252611], [54.149863, -2.2527]], [[54.149775, -2.252767], [54.149688, -2.252833]], [[54.149688, -2.252833], [54.149603, -2.252925]], [[54.149603, -2.252925], [54.149525, -2.253005]], [[54.149525, -2.253005], [54.149441, -2.253078]], [[54.148549, -2.253856], [54.148457, -2.253933]], [[54.148053, -2.253845], [54.147958, -2.253794]], [[54.147671, -2.253728], [54.147585, -2.253684]], [[54.147585, -2.253684], [54.147487, -2.253639]], [[54.147487, -2.253639], [54.147392, -2.253611]], [[54.147304, -2.253543], [54.147227, -2.253453]], [[54.147227, -2.253453], [54.147166, -2.253312]], [[54.147166, -2.253312], [54.147087, -2.253212]], [[54.147087, -2.253212], [54.147004, -2.253145]], [[54.147004, -2.253145], [54.146907, -2.253111]], [[54.146907, -2.253111], [54.146816, -2.253118]], [[54.146362, -2.253358], [54.146273, -2.253422]], [[54.146273, -2.253422], [54.14618, -2.253433]], [[54.14618, -2.253433], [54.146088, -2.25343]], [[54.146088, -2.25343], [54.145997, -2.253444]], [[54.145997, -2.253444], [54.145904, -2.253463]], [[54.145904, -2.253463], [54.14581, -2.253485]], [[54.14581, -2.253485], [54.145719, -2.253485]], [[54.145719, -2.253485], [54.145616, -2.253481]], [[54.145616, -2.253481], [54.145523, -2.253471]], [[54.145523, -2.253471], [54.145429, -2.253516]], [[54.145429, -2.253516], [54.145338, -2.253572]], [[54.145338, -2.253572], [54.145241, -2.253611]], [[54.145241, -2.253611], [54.145141, -2.253646]], [[54.145141, -2.253646], [54.145045, -2.253701]], [[54.145045, -2.253701], [54.144954, -2.253733]], [[54.144954, -2.253733], [54.144863, -2.253771]], [[54.144678, -2.253853], [54.144588, -2.253885]], [[54.144588, -2.253885], [54.144495, -2.253923]], [[54.144313, -2.253972], [54.14421, -2.253965]], [[54.14421, -2.253965], [54.144113, -2.253947]], [[54.144113, -2.253947], [54.144011, -2.253931]], [[54.143919, -2.253913], [54.143829, -2.253883]], [[54.143829, -2.253883], [54.143739, -2.253849]], [[54.143739, -2.253849], [54.143647, -2.25383]], [[54.143647, -2.25383], [54.143554, -2.253772]], [[54.143554, -2.253772], [54.143466, -2.253733]], [[54.143466, -2.253733], [54.143373, -2.253702]], [[54.143373, -2.253702], [54.143283, -2.25366]], [[54.143283, -2.25366], [54.143193, -2.253634]], [[54.143193, -2.253634], [54.143105, -2.253604]], [[54.143105, -2.253604], [54.143012, -2.253621]], [[54.142913, -2.253653], [54.142823, -2.253664]], [[54.141972, -2.252446], [54.141945, -2.252286]], [[54.141945, -2.252286], [54.141936, -2.252132]], [[54.141936, -2.252132], [54.141932, -2.251977]], [[54.141841, -2.251514], [54.141802, -2.251369]], [[54.141802, -2.251369], [54.141775, -2.251217]], [[54.141775, -2.251217], [54.141749, -2.251048]], [[54.141749, -2.251048], [54.141719, -2.250885]], [[54.141719, -2.250885], [54.141686, -2.250738]], [[54.141686, -2.250738], [54.141655, -2.250574]], [[54.141655, -2.250574], [54.141615, -2.250422]], [[54.141615, -2.250422], [54.141578, -2.250281]], [[54.141535, -2.250129], [54.141491, -2.24998]], [[54.141394, -2.24954], [54.141401, -2.249369]], [[54.141401, -2.249369], [54.141409, -2.249206]], [[54.141176, -2.248187], [54.14112, -2.248047]], [[54.14112, -2.248047], [54.141066, -2.247898]], [[54.141008, -2.247781], [54.140939, -2.247675]], [[54.140939, -2.247675], [54.140872, -2.247547]], [[54.140787, -2.247252], [54.140771, -2.247089]], [[54.140771, -2.247089], [54.140763, -2.246935]], [[54.139993, -2.245202], [54.139909, -2.245104]], [[54.139909, -2.245104], [54.139839, -2.245007]], [[54.139839, -2.245007], [54.139774, -2.244884]], [[54.139774, -2.244884], [54.139715, -2.244761]], [[54.139715, -2.244761], [54.139619, -2.244702]], [[54.139619, -2.244702], [54.139552, -2.244598]], [[54.139552, -2.244598], [54.139524, -2.244448]], [[54.139482, -2.244129], [54.139459, -2.243979]], [[54.139459, -2.243979], [54.139434, -2.243821]], [[54.139375, -2.243682], [54.139301, -2.243565]], [[54.139301, -2.243565], [54.139233, -2.243449]], [[54.139233, -2.243449], [54.139165, -2.243327]], [[54.1391, -2.243216], [54.139012, -2.243116]], [[54.139012, -2.243116], [54.138922, -2.243029]], [[54.138922, -2.243029], [54.138843, -2.242948]], [[54.1387, -2.242353], [54.138753, -2.242208]], [[54.138753, -2.242208], [54.138783, -2.242058]], [[54.138783, -2.242058], [54.138815, -2.241899]], [[54.138815, -2.241899], [54.138814, -2.241742]], [[54.138814, -2.241742], [54.138819, -2.241567]], [[54.138819, -2.241567], [54.138822, -2.241398]], [[54.138822, -2.241398], [54.138846, -2.241242]], [[54.138846, -2.241242], [54.138853, -2.241089]], [[54.138853, -2.241089], [54.138878, -2.240937]], [[54.138878, -2.240937], [54.138926, -2.240804]], [[54.138926, -2.240804], [54.138995, -2.240683]], [[54.138995, -2.240683], [54.139078, -2.24057]], [[54.139078, -2.24057], [54.139157, -2.240493]], [[54.139157, -2.240493], [54.139251, -2.240431]], [[54.139342, -2.240369], [54.139435, -2.240292]], [[54.139435, -2.240292], [54.139509, -2.2402]], [[54.139509, -2.2402], [54.139578, -2.240093]], [[54.13996, -2.239368], [54.14003, -2.23925]], [[54.14003, -2.23925], [54.140083, -2.239109]], [[54.140083, -2.239109], [54.140144, -2.238981]], [[54.140144, -2.238981], [54.140201, -2.238848]], [[54.140305, -2.238555], [54.140352, -2.238411]], [[54.140352, -2.238411], [54.140402, -2.23826]], [[54.140618, -2.237515], [54.14067, -2.237381]], [[54.14067, -2.237381], [54.140717, -2.237234]], [[54.140717, -2.237234], [54.140771, -2.237094]], [[54.140771, -2.237094], [54.14082, -2.236958]], [[54.140929, -2.236694], [54.140986, -2.236554]], [[54.140986, -2.236554], [54.141055, -2.236424]], [[54.141055, -2.236424], [54.141125, -2.236294]], [[54.141125, -2.236294], [54.141188, -2.236174]], [[54.141188, -2.236174], [54.141253, -2.236056]], [[54.141253, -2.236056], [54.14131, -2.235933]], [[54.14131, -2.235933], [54.141372, -2.235816]], [[54.141503, -2.235573], [54.141563, -2.235442]], [[54.141563, -2.235442], [54.141632, -2.235318]], [[54.141632, -2.235318], [54.141699, -2.235195]], [[54.141699, -2.235195], [54.141766, -2.235071]], [[54.141766, -2.235071], [54.141819, -2.23494]], [[54.141819, -2.23494], [54.141878, -2.234805]], [[54.141878, -2.234805], [54.141939, -2.234665]], [[54.141939, -2.234665], [54.141993, -2.234534]], [[54.142045, -2.234407], [54.142114, -2.23428]], [[54.142114, -2.23428], [54.142168, -2.234149]], [[54.142168, -2.234149], [54.142227, -2.234027]], [[54.142227, -2.234027], [54.142296, -2.233917]], [[54.142296, -2.233917], [54.142363, -2.233809]], [[54.142559, -2.233439], [54.142624, -2.233325]], [[54.142624, -2.233325], [54.142686, -2.233209]], [[54.142686, -2.233209], [54.142746, -2.233091]], [[54.142968, -2.23278], [54.143041, -2.232658]], [[54.143041, -2.232658], [54.14311, -2.232545]], [[54.14311, -2.232545], [54.143176, -2.232439]], [[54.14324, -2.232324], [54.143308, -2.232208]], [[54.14396, -2.231156], [54.144021, -2.231036]], [[54.144103, -2.230944], [54.144176, -2.230848]], [[54.144355, -2.230722], [54.14443, -2.230618]], [[54.14443, -2.230618], [54.144505, -2.230522]], [[54.144505, -2.230522], [54.144584, -2.230428]], [[54.144584, -2.230428], [54.144674, -2.230349]], [[54.144674, -2.230349], [54.144755, -2.23028]], [[54.144755, -2.23028], [54.144814, -2.230163]], [[54.144814, -2.230163], [54.144908, -2.230096]], [[54.145061, -2.229907], [54.145139, -2.229806]], [[54.145139, -2.229806], [54.145214, -2.229693]], [[54.145214, -2.229693], [54.145298, -2.229617]], [[54.145382, -2.229535], [54.145459, -2.229435]], [[54.145459, -2.229435], [54.145541, -2.229337]], [[54.145541, -2.229337], [54.145625, -2.229249]], [[54.145625, -2.229249], [54.145712, -2.229176]], [[54.145712, -2.229176], [54.1458, -2.229105]], [[54.1458, -2.229105], [54.14589, -2.22903]], [[54.14589, -2.22903], [54.145971, -2.228955]], [[54.145971, -2.228955], [54.14606, -2.228886]], [[54.146215, -2.228715], [54.146294, -2.228604]], [[54.146294, -2.228604], [54.146362, -2.228473]], [[54.146362, -2.228473], [54.14642, -2.228347]], [[54.14642, -2.228347], [54.146453, -2.228194]], [[54.146453, -2.228194], [54.146474, -2.228031]], [[54.146474, -2.228031], [54.146477, -2.227858]], [[54.146477, -2.227858], [54.146479, -2.227688]], [[54.146479, -2.227688], [54.146489, -2.227522]], [[54.146489, -2.227522], [54.146492, -2.227358]], [[54.146493, -2.227035], [54.146491, -2.226865]], [[54.146491, -2.226865], [54.146518, -2.226695]], [[54.146518, -2.226695], [54.146571, -2.226554]], [[54.142891, -2.203401], [54.142811, -2.203297]], [[54.142811, -2.203297], [54.142744, -2.203193]], [[54.142744, -2.203193], [54.14271, -2.203028]], [[54.14271, -2.203028], [54.142695, -2.20287]], [[54.142147, -2.202057], [54.142111, -2.201898]], [[54.141423, -2.20059], [54.141374, -2.200451]], [[54.140894, -2.199701], [54.140815, -2.19961]], [[54.140815, -2.19961], [54.140742, -2.199513]], [[54.140395, -2.198973], [54.140315, -2.198872]], [[54.139988, -2.198246], [54.139943, -2.198091]], [[54.139943, -2.198091], [54.139882, -2.197963]], [[54.139882, -2.197963], [54.139825, -2.197832]], [[54.138991, -2.195669], [54.138942, -2.195518]], [[54.138837, -2.195261], [54.138792, -2.195112]], [[54.138638, -2.194368], [54.138615, -2.19421]], [[54.138331, -2.193585], [54.138259, -2.193484]], [[54.138259, -2.193484], [54.138165, -2.193485]], [[54.138165, -2.193485], [54.138066, -2.193488]], [[54.137592, -2.193371], [54.137507, -2.193294]], [[54.137507, -2.193294], [54.137425, -2.193217]], [[54.137346, -2.193135], [54.137253, -2.193116]], [[54.137253, -2.193116], [54.137162, -2.193101]], [[54.137162, -2.193101], [54.137066, -2.193073]], [[54.137066, -2.193073], [54.136965, -2.193044]], [[54.136476, -2.192429], [54.136417, -2.192303]], [[54.136358, -2.192186], [54.136308, -2.192043]], [[54.136346, -2.191058], [54.136283, -2.190945]], [[54.136209, -2.19083], [54.136131, -2.190733]], [[54.136007, -2.19048], [54.135935, -2.190384]], [[54.135935, -2.190384], [54.135838, -2.190322]], [[54.135838, -2.190322], [54.135738, -2.190287]], [[54.135738, -2.190287], [54.135642, -2.190253]], [[54.135206, -2.189923], [54.135128, -2.189828]], [[54.135128, -2.189828], [54.135075, -2.189694]], [[54.135075, -2.189694], [54.134996, -2.189602]], [[54.134996, -2.189602], [54.134922, -2.189515]], [[54.134848, -2.18942], [54.134789, -2.1893]], [[54.134789, -2.1893], [54.134736, -2.189148]], [[54.134736, -2.189148], [54.134647, -2.18908]], [[54.134134, -2.18911], [54.134037, -2.189069]], [[54.134037, -2.189069], [54.133961, -2.188962]], [[54.133843, -2.188699], [54.133768, -2.188601]], [[54.133768, -2.188601], [54.133686, -2.188512]], [[54.133596, -2.188424], [54.133507, -2.188373]], [[54.133217, -2.188403], [54.133119, -2.188431]], [[54.133119, -2.188431], [54.133021, -2.188419]], [[54.133021, -2.188419], [54.132933, -2.188382]], [[54.132933, -2.188382], [54.132836, -2.188398]], [[54.132836, -2.188398], [54.132744, -2.188478]], [[54.132744, -2.188478], [54.132657, -2.188534]], [[54.132464, -2.188632], [54.132367, -2.188659]], [[54.132367, -2.188659], [54.132286, -2.188731]], [[54.132182, -2.188706], [54.132081, -2.188696]], [[54.132081, -2.188696], [54.131983, -2.188687]], [[54.131983, -2.188687], [54.131885, -2.188707]], [[54.131704, -2.188797], [54.131611, -2.188821]], [[54.130777, -2.188889], [54.13068, -2.188862]], [[54.13068, -2.188862], [54.13058, -2.188843]], [[54.13058, -2.188843], [54.130485, -2.188812]], [[54.13029, -2.18872], [54.130194, -2.1887]], [[54.130194, -2.1887], [54.1301, -2.188734]], [[54.1301, -2.188734], [54.13001, -2.188783]], [[54.13001, -2.188783], [54.12992, -2.188839]], [[54.12992, -2.188839], [54.12983, -2.188889]], [[54.12983, -2.188889], [54.129741, -2.188926]], [[54.129741, -2.188926], [54.12964, -2.188959]], [[54.12964, -2.188959], [54.129537, -2.188957]], [[54.129537, -2.188957], [54.129449, -2.188895]], [[54.129449, -2.188895], [54.129388, -2.188758]], [[54.129388, -2.188758], [54.129327, -2.188634]], [[54.12924, -2.188571], [54.12915, -2.188555]], [[54.12915, -2.188555], [54.129057, -2.188549]], [[54.128674, -2.18846], [54.128581, -2.18844]], [[54.128581, -2.18844], [54.128489, -2.188413]], [[54.127754, -2.188778], [54.127654, -2.188816]], [[54.127654, -2.188816], [54.127564, -2.188832]], [[54.127564, -2.188832], [54.127465, -2.188837]], [[54.127231, -2.189333], [54.127152, -2.189442]], [[54.127152, -2.189442], [54.12708, -2.189546]], [[54.126579, -2.189948], [54.126487, -2.189983]], [[54.125408, -2.190388], [54.125342, -2.190268]], [[54.125342, -2.190268], [54.12526, -2.19017]], [[54.12526, -2.19017], [54.125173, -2.190073]], [[54.125173, -2.190073], [54.125091, -2.189982]], [[54.125091, -2.189982], [54.125028, -2.189861]], [[54.12471, -2.189267], [54.124628, -2.189157]], [[54.124628, -2.189157], [54.124558, -2.189055]], [[54.124419, -2.188638], [54.124408, -2.188465]], [[54.124408, -2.188465], [54.124391, -2.188299]], [[54.124375, -2.188137], [54.124371, -2.18797]], [[54.124371, -2.18797], [54.124338, -2.187813]], [[54.124267, -2.187182], [54.124217, -2.187032]], [[54.124217, -2.187032], [54.124182, -2.186873]], [[54.124182, -2.186873], [54.124155, -2.186713]], [[54.123991, -2.185937], [54.123932, -2.185793]], [[54.123932, -2.185793], [54.123886, -2.185659]], [[54.123886, -2.185659], [54.123827, -2.18553]], [[54.123613, -2.184981], [54.123572, -2.18484]], [[54.123572, -2.18484], [54.123513, -2.184719]], [[54.123356, -2.184296], [54.123297, -2.184174]], [[54.123231, -2.184056], [54.123163, -2.183926]], [[54.123163, -2.183926], [54.123104, -2.1838]], [[54.123046, -2.183676], [54.122986, -2.183554]], [[54.122986, -2.183554], [54.122934, -2.18341]], [[54.122934, -2.18341], [54.12288, -2.183283]], [[54.122893, -2.183002], [54.122955, -2.182867]], [[54.122955, -2.182867], [54.123022, -2.182741]], [[54.123022, -2.182741], [54.12308, -2.182615]], [[54.12308, -2.182615], [54.123125, -2.182469]], [[54.123194, -2.182162], [54.12325, -2.182019]], [[54.123191, -2.181499], [54.123132, -2.181364]], [[54.123132, -2.181364], [54.123074, -2.181237]], [[54.123019, -2.181096], [54.122953, -2.180968]], [[54.122953, -2.180968], [54.122891, -2.180848]], [[54.122891, -2.180848], [54.122837, -2.180713]], [[54.122837, -2.180713], [54.122782, -2.180578]], [[54.122782, -2.180578], [54.122714, -2.180473]], [[54.122714, -2.180473], [54.122658, -2.18035]], [[54.122598, -2.18021], [54.122528, -2.180097]], [[54.122528, -2.180097], [54.12245, -2.179999]], [[54.122211, -2.179737], [54.122111, -2.179703]], [[54.121858, -2.179415], [54.121776, -2.179325]], [[54.121578, -2.178962], [54.121505, -2.178838]], [[54.121505, -2.178838], [54.12142, -2.178743]], [[54.120981, -2.178496], [54.120938, -2.178339]], [[54.120938, -2.178339], [54.120862, -2.178229]], [[54.120793, -2.17812], [54.120698, -2.17809]], [[54.120698, -2.17809], [54.120601, -2.178107]], [[54.120601, -2.178107], [54.120507, -2.178118]], [[54.120507, -2.178118], [54.120413, -2.178118]], [[54.120413, -2.178118], [54.120317, -2.178121]], [[54.120317, -2.178121], [54.120221, -2.178138]], [[54.120221, -2.178138], [54.120131, -2.178157]], [[54.119847, -2.178185], [54.119753, -2.17821]], [[54.119753, -2.17821], [54.11965, -2.178227]], [[54.11965, -2.178227], [54.119553, -2.178222]], [[54.119553, -2.178222], [54.11946, -2.178231]], [[54.11937, -2.178246], [54.119275, -2.178254]], [[54.118993, -2.178271], [54.1189, -2.178277]], [[54.118601, -2.178317], [54.118501, -2.178302]], [[54.118501, -2.178302], [54.118407, -2.17829]], [[54.118407, -2.17829], [54.11831, -2.178299]], [[54.11831, -2.178299], [54.118222, -2.17835]], [[54.118222, -2.17835], [54.118127, -2.1784]], [[54.118127, -2.1784], [54.118036, -2.178429]], [[54.117843, -2.178415], [54.117747, -2.17842]], [[54.117597, -2.178263], [54.117551, -2.178113]], [[54.117264, -2.177702], [54.11719, -2.17761]], [[54.11719, -2.17761], [54.117107, -2.177516]], [[54.117107, -2.177516], [54.11703, -2.177434]], [[54.116849, -2.17731], [54.116771, -2.17722]], [[54.116771, -2.17722], [54.116681, -2.177154]], [[54.116257, -2.176827], [54.116165, -2.176816]], [[54.115977, -2.17687], [54.115883, -2.176933]], [[54.115883, -2.176933], [54.115806, -2.177036]], [[54.113246, -2.176642], [54.113149, -2.176613]], [[54.112966, -2.176611], [54.112877, -2.176585]], [[54.112592, -2.176461], [54.112501, -2.176377]], [[54.112418, -2.17631], [54.112324, -2.176263]], [[54.11224, -2.176192], [54.112146, -2.176141]], [[54.111788, -2.175925], [54.111713, -2.175817]], [[54.111713, -2.175817], [54.111622, -2.175745]], [[54.111199, -2.175308], [54.11112, -2.175215]], [[54.11112, -2.175215], [54.111047, -2.175117]], [[54.1109, -2.174898], [54.110823, -2.174811]], [[54.110823, -2.174811], [54.110739, -2.174738]], [[54.109074, -2.175197], [54.108975, -2.175196]], [[54.108975, -2.175196], [54.108886, -2.175168]], [[54.108783, -2.175163], [54.108687, -2.175111]], [[54.108687, -2.175111], [54.108595, -2.17508]], [[54.108402, -2.175051], [54.108312, -2.175022]], [[54.108117, -2.174961], [54.10802, -2.174952]], [[54.107764, -2.174921], [54.107664, -2.174904]], [[54.107664, -2.174904], [54.107569, -2.174898]], [[54.107569, -2.174898], [54.107478, -2.174919]], [[54.107478, -2.174919], [54.107381, -2.174948]], [[54.107381, -2.174948], [54.107287, -2.174968]], [[54.105696, -2.17479], [54.105611, -2.17471]], [[54.105611, -2.17471], [54.105528, -2.174622]], [[54.105528, -2.174622], [54.105455, -2.174531]], [[54.105455, -2.174531], [54.105379, -2.174427]], [[54.105379, -2.174427], [54.105301, -2.174321]], [[54.105301, -2.174321], [54.105231, -2.174219]], [[54.105014, -2.173884], [54.104937, -2.173767]], [[54.104937, -2.173767], [54.104872, -2.173637]], [[54.104872, -2.173637], [54.104815, -2.173505]], [[54.104815, -2.173505], [54.104759, -2.173375]], [[54.104759, -2.173375], [54.10469, -2.173254]], [[54.104353, -2.17297], [54.104272, -2.172897]], [[54.104272, -2.172897], [54.104187, -2.172841]], [[54.104187, -2.172841], [54.104088, -2.1728]], [[54.103781, -2.172741], [54.10368, -2.172736]], [[54.10368, -2.172736], [54.103589, -2.17273]], [[54.103499, -2.172712], [54.103406, -2.17268]], [[54.103406, -2.17268], [54.10332, -2.172637]], [[54.10332, -2.172637], [54.103219, -2.1726]], [[54.103219, -2.1726], [54.10313, -2.172554]], [[54.10313, -2.172554], [54.103046, -2.17249]], [[54.103046, -2.17249], [54.10296, -2.172419]], [[54.10296, -2.172419], [54.102879, -2.172341]], [[54.102879, -2.172341], [54.102794, -2.172267]], [[54.102794, -2.172267], [54.10271, -2.172189]], [[54.102514, -2.17213], [54.10242, -2.172142]], [[54.10242, -2.172142], [54.102321, -2.172126]], [[54.10213, -2.17213], [54.102043, -2.17204]], [[54.102043, -2.17204], [54.101947, -2.172026]], [[54.101774, -2.171818], [54.101735, -2.17167]], [[54.101735, -2.17167], [54.101681, -2.171547]], [[54.101164, -2.17035], [54.101098, -2.170245]], [[54.10062, -2.168818], [54.100578, -2.16867]], [[54.100516, -2.168335], [54.100531, -2.168174]], [[54.100596, -2.168041], [54.100625, -2.16789]], [[54.100628, -2.167567], [54.100605, -2.167398]], [[54.100643, -2.167247], [54.100686, -2.167111]], [[54.100686, -2.167111], [54.10069, -2.166935]], [[54.100768, -2.166858], [54.100783, -2.166703]], [[54.100725, -2.166579], [54.100699, -2.166426]], [[54.100716, -2.165941], [54.100685, -2.165784]], [[54.100917, -2.164501], [54.100953, -2.164351]], [[54.101135, -2.163643], [54.101151, -2.163472]], [[54.101221, -2.16298], [54.101228, -2.162806]], [[54.101192, -2.162644], [54.101152, -2.162501]], [[54.100965, -2.162126], [54.100882, -2.162066]], [[54.100747, -2.161844], [54.100696, -2.161687]], [[54.100622, -2.16137], [54.100591, -2.161223]], [[54.100591, -2.161223], [54.100561, -2.161077]], [[54.100416, -2.160503], [54.100384, -2.160341]], [[54.100384, -2.160341], [54.100349, -2.160196]], [[54.100349, -2.160196], [54.100317, -2.160049]], [[54.100317, -2.160049], [54.100294, -2.159898]], [[54.099777, -2.158607], [54.099688, -2.158524]], [[54.099688, -2.158524], [54.099604, -2.158446]], [[54.099604, -2.158446], [54.099515, -2.158377]], [[54.099246, -2.158155], [54.099163, -2.158095]], [[54.099163, -2.158095], [54.099075, -2.158039]], [[54.099075, -2.158039], [54.098992, -2.157967]], [[54.098992, -2.157967], [54.0989, -2.157898]], [[54.0989, -2.157898], [54.09881, -2.157821]], [[54.09881, -2.157821], [54.098736, -2.157727]], [[54.098736, -2.157727], [54.09866, -2.157631]], [[54.09866, -2.157631], [54.098577, -2.157556]], [[54.098577, -2.157556], [54.098499, -2.157447]], [[54.09828, -2.157206], [54.098208, -2.157098]], [[54.098056, -2.1569], [54.097971, -2.1568]], [[54.097971, -2.1568], [54.097893, -2.15671]], [[54.097722, -2.156585], [54.097634, -2.156516]], [[54.097634, -2.156516], [54.097539, -2.156447]], [[54.097539, -2.156447], [54.097451, -2.15637]], [[54.097451, -2.15637], [54.097365, -2.156299]], [[54.097365, -2.156299], [54.097273, -2.156253]], [[54.097273, -2.156253], [54.09718, -2.156227]], [[54.09718, -2.156227], [54.097089, -2.156214]], [[54.096907, -2.156235], [54.096807, -2.156217]], [[54.096807, -2.156217], [54.096714, -2.156195]], [[54.096522, -2.156284], [54.096424, -2.156315]], [[54.096424, -2.156315], [54.09633, -2.156321]], [[54.09633, -2.156321], [54.09624, -2.156326]], [[54.09624, -2.156326], [54.096148, -2.15635]], [[54.095958, -2.156386], [54.095867, -2.15638]], [[54.095867, -2.15638], [54.095772, -2.156397]], [[54.095772, -2.156397], [54.095677, -2.156388]], [[54.095677, -2.156388], [54.095581, -2.156406]], [[54.095581, -2.156406], [54.095488, -2.156432]], [[54.095488, -2.156432], [54.095387, -2.156457]], [[54.095206, -2.156562], [54.095107, -2.156584]], [[54.095016, -2.156613], [54.094923, -2.156626]], [[54.094923, -2.156626], [54.09483, -2.156656]], [[54.09483, -2.156656], [54.094732, -2.156687]], [[54.094632, -2.156715], [54.094543, -2.156764]], [[54.094455, -2.1568], [54.094349, -2.156813]], [[54.094349, -2.156813], [54.09426, -2.156847]], [[54.09426, -2.156847], [54.094168, -2.156892]], [[54.094168, -2.156892], [54.09408, -2.156925]], [[54.093743, -2.156999], [54.093651, -2.157014]], [[54.093651, -2.157014], [54.093558, -2.157036]], [[54.09346, -2.157059], [54.093371, -2.157108]], [[54.093371, -2.157108], [54.093289, -2.157199]], [[54.092291, -2.159809], [54.09225, -2.159969]], [[54.09225, -2.159969], [54.092192, -2.160093]], [[54.091336, -2.163013], [54.091287, -2.163165]], [[54.091287, -2.163165], [54.091208, -2.163243]], [[54.091208, -2.163243], [54.091123, -2.163315]], [[54.091123, -2.163315], [54.091044, -2.163408]], [[54.090628, -2.16337], [54.090535, -2.163319]], [[54.090535, -2.163319], [54.090435, -2.163298]], [[54.090241, -2.163271], [54.090145, -2.163269]], [[54.090145, -2.163269], [54.090049, -2.163242]], [[54.090049, -2.163242], [54.089952, -2.163232]], [[54.089859, -2.163228], [54.089767, -2.16322]], [[54.088907, -2.163176], [54.088813, -2.163149]], [[54.088616, -2.163077], [54.08852, -2.163045]], [[54.08852, -2.163045], [54.088426, -2.163016]], [[54.088426, -2.163016], [54.088332, -2.163038]], [[54.088024, -2.163651], [54.088037, -2.163811]], [[54.088026, -2.164129], [54.088026, -2.164294]], [[54.088022, -2.16445], [54.088034, -2.164607]], [[54.087818, -2.16485], [54.087745, -2.164754]], [[54.087745, -2.164754], [54.087654, -2.164676]], [[54.087485, -2.164551], [54.087434, -2.16441]], [[54.086838, -2.164184], [54.086772, -2.164077]], [[54.086695, -2.163974], [54.086618, -2.163859]], [[54.086618, -2.163859], [54.086541, -2.163765]], [[54.086541, -2.163765], [54.08646, -2.16367]], [[54.086216, -2.163444], [54.08613, -2.163364]], [[54.08613, -2.163364], [54.086057, -2.163248]], [[54.085971, -2.163176], [54.085883, -2.163117]], [[54.085883, -2.163117], [54.085787, -2.163082]], [[54.085787, -2.163082], [54.085691, -2.163105]], [[54.084376, -2.164735], [54.084291, -2.164783]], [[54.084291, -2.164783], [54.084205, -2.16484]], [[54.084205, -2.16484], [54.084124, -2.164942]], [[54.08394, -2.165046], [54.083873, -2.165155]], [[54.083873, -2.165155], [54.083782, -2.165223]], [[54.083782, -2.165223], [54.083687, -2.165284]], [[54.083521, -2.165436], [54.083429, -2.165502]], [[54.083429, -2.165502], [54.083339, -2.165568]], [[54.082923, -2.165968], [54.082837, -2.166024]], [[54.080307, -2.166213], [54.080211, -2.166166]], [[54.077709, -2.163579], [54.077651, -2.163457]], [[54.077367, -2.163012], [54.077292, -2.162894]], [[54.077292, -2.162894], [54.077246, -2.162757]], [[54.077246, -2.162757], [54.077174, -2.162637]], [[54.077092, -2.162557], [54.077031, -2.162435]], [[54.077031, -2.162435], [54.076959, -2.162313]], [[54.076681, -2.161639], [54.076628, -2.161498]], [[54.076282, -2.160935], [54.076201, -2.160832]], [[54.076201, -2.160832], [54.076112, -2.160777]], [[54.075791, -2.160425], [54.075707, -2.160372]], [[54.07531, -2.159978], [54.075216, -2.159913]], [[54.07508, -2.159677], [54.07499, -2.159621]], [[54.07467, -2.159358], [54.074577, -2.159353]], [[54.073793, -2.158716], [54.073709, -2.158658]], [[54.073551, -2.158473], [54.073473, -2.15837]], [[54.072418, -2.161306], [54.072356, -2.161181]], [[54.071635, -2.159037], [54.07157, -2.158904]], [[54.071504, -2.158795], [54.071431, -2.1587]], [[54.071431, -2.1587], [54.071359, -2.158599]], [[54.071073, -2.158383], [54.070969, -2.158378]], [[54.070969, -2.158378], [54.07088, -2.158452]], [[54.070415, -2.158445], [54.070324, -2.158515]], [[54.070324, -2.158515], [54.070243, -2.158616]], [[54.070243, -2.158616], [54.070168, -2.158718]], [[54.069881, -2.158887], [54.069786, -2.158844]], [[54.069786, -2.158844], [54.069691, -2.158887]], [[54.069595, -2.158898], [54.069503, -2.158882]], [[54.069503, -2.158882], [54.06941, -2.158876]], [[54.069135, -2.158948], [54.069049, -2.158991]], [[54.069049, -2.158991], [54.06896, -2.159056]], [[54.068202, -2.159164], [54.068104, -2.159129]], [[54.068008, -2.159098], [54.06792, -2.159064]], [[54.067643, -2.159129], [54.067552, -2.159122]], [[54.067552, -2.159122], [54.06746, -2.159075]], [[54.06746, -2.159075], [54.067365, -2.159055]], [[54.067176, -2.159015], [54.067085, -2.159041]], [[54.066805, -2.159056], [54.066716, -2.159135]], [[54.066716, -2.159135], [54.066627, -2.159084]], [[54.066355, -2.158634], [54.066271, -2.15856]], [[54.066271, -2.15856], [54.066183, -2.158518]], [[54.066183, -2.158518], [54.066114, -2.158408]], [[54.066055, -2.158277], [54.065999, -2.158146]], [[54.065899, -2.15786], [54.065855, -2.157712]], [[54.065658, -2.157395], [54.065608, -2.157256]], [[54.065608, -2.157256], [54.065549, -2.157113]], [[54.065549, -2.157113], [54.065479, -2.156997]], [[54.065359, -2.15671], [54.065293, -2.15659]], [[54.065293, -2.15659], [54.065249, -2.156454]], [[54.065249, -2.156454], [54.065218, -2.156292]], [[54.065218, -2.156292], [54.065164, -2.156149]], [[54.064915, -2.156063], [54.064821, -2.156043]], [[54.064687, -2.1558], [54.064612, -2.155684]], [[54.064612, -2.155684], [54.064567, -2.155525]], [[54.064567, -2.155525], [54.06458, -2.15535]], [[54.06458, -2.15535], [54.064541, -2.155181]], [[54.064294, -2.154773], [54.064204, -2.154772]], [[54.064204, -2.154772], [54.064102, -2.154817]], [[54.064102, -2.154817], [54.064034, -2.154704]], [[54.063993, -2.154555], [54.063904, -2.154476]], [[54.06382, -2.154396], [54.063742, -2.154313]], [[54.063742, -2.154313], [54.063674, -2.154206]], [[54.063674, -2.154206], [54.063575, -2.154175]], [[54.062984, -2.153738], [54.062902, -2.153663]], [[54.062704, -2.153683], [54.062613, -2.153603]], [[54.062613, -2.153603], [54.062515, -2.153587]], [[54.062421, -2.153595], [54.062341, -2.153499]], [[54.062341, -2.153499], [54.062241, -2.153482]], [[54.061815, -2.15326], [54.061711, -2.153248]], [[54.061698, -2.153004], [54.061736, -2.152857]], [[54.061843, -2.152584], [54.061913, -2.152476]], [[54.061013, -2.152598], [54.060922, -2.152622]], [[54.060794, -2.152813], [54.060702, -2.152853]], [[54.060483, -2.152612], [54.060385, -2.152618]], [[54.060385, -2.152618], [54.060284, -2.152632]], [[54.060284, -2.152632], [54.06019, -2.152611]], [[54.06019, -2.152611], [54.060094, -2.152579]], [[54.059713, -2.152529], [54.05962, -2.15249]], [[54.05898, -2.152181], [54.0589, -2.152077]], [[54.058816, -2.151978], [54.058729, -2.151897]], [[54.058647, -2.151829], [54.058565, -2.151736]], [[54.058565, -2.151736], [54.058482, -2.151657]], [[54.058309, -2.151522], [54.058227, -2.151461]], [[54.058227, -2.151461], [54.058127, -2.15143]], [[54.058127, -2.15143], [54.058039, -2.151387]], [[54.05768, -2.15116], [54.057583, -2.151111]], [[54.057288, -2.150898], [54.05719, -2.150857]], [[54.057006, -2.15076], [54.056908, -2.150732]], [[54.056721, -2.150641], [54.056628, -2.15057]], [[54.056628, -2.15057], [54.056532, -2.150552]], [[54.048301, -2.151605], [54.048204, -2.151612]], [[54.048204, -2.151612], [54.048103, -2.151615]], [[54.048103, -2.151615], [54.048001, -2.151601]], [[54.047725, -2.151609], [54.04767, -2.151758]], [[54.04767, -2.151758], [54.047605, -2.151888]], [[54.047605, -2.151888], [54.047561, -2.15203]], [[54.047158, -2.152731], [54.047092, -2.152849]], [[54.047092, -2.152849], [54.047031, -2.152977]], [[54.046687, -2.153964], [54.046618, -2.154088]], [[54.045624, -2.154206], [54.045534, -2.154185]], [[54.045534, -2.154185], [54.045438, -2.154159]], [[54.043002, -2.153773], [54.04292, -2.153709]], [[54.04292, -2.153709], [54.042827, -2.153665]], [[54.042778, -2.153532], [54.042725, -2.153408]], [[54.042596, -2.153167], [54.042526, -2.153044]], [[54.042378, -2.152836], [54.04229, -2.152743]], [[54.04229, -2.152743], [54.042209, -2.152631]], [[54.041243, -2.151699], [54.041141, -2.151738]], [[54.041141, -2.151738], [54.041045, -2.151728]], [[54.040864, -2.151743], [54.040766, -2.151747]], [[54.040564, -2.151783], [54.040467, -2.1518]], [[54.040467, -2.1518], [54.040386, -2.151874]], [[54.039704, -2.152167], [54.039614, -2.15209]], [[54.039614, -2.15209], [54.039517, -2.152066]], [[54.03856, -2.151921], [54.038474, -2.151873]], [[54.036259, -2.152236], [54.036168, -2.152196]], [[54.029786, -2.148298], [54.029689, -2.148314]], [[54.029689, -2.148314], [54.02959, -2.148319]], [[54.029302, -2.148259], [54.029206, -2.148196]], [[54.029206, -2.148196], [54.029118, -2.148119]], [[54.028216, -2.147626], [54.028118, -2.147565]], [[54.028118, -2.147565], [54.028028, -2.147517]], [[54.027201, -2.147256], [54.027114, -2.147193]], [[54.026815, -2.147179], [54.026723, -2.147178]], [[54.026104, -2.147421], [54.026008, -2.147413]], [[54.02504, -2.14683], [54.024969, -2.146724]], [[54.024969, -2.146724], [54.024879, -2.146637]], [[54.024879, -2.146637], [54.024802, -2.146539]], [[54.024802, -2.146539], [54.024708, -2.146457]], [[54.023706, -2.145609], [54.023616, -2.145597]], [[54.023337, -2.145395], [54.023263, -2.145297]], [[54.022996, -2.144831], [54.022924, -2.144726]], [[54.021182, -2.142776], [54.021097, -2.142845]], [[54.020127, -2.142992], [54.020027, -2.142952]], [[54.020027, -2.142952], [54.019931, -2.142898]], [[54.018917, -2.142849], [54.018898, -2.143006]], [[54.018437, -2.143393], [54.018347, -2.14337]], [[54.017947, -2.143001], [54.01786, -2.142907]], [[54.01786, -2.142907], [54.017798, -2.142777]], [[54.017798, -2.142777], [54.017714, -2.142685]], [[54.017657, -2.142063], [54.017675, -2.141905]], [[54.017675, -2.141905], [54.017656, -2.141754]], [[54.017656, -2.141754], [54.01762, -2.14159]], [[54.01762, -2.14159], [54.017552, -2.141481]], [[54.017552, -2.141481], [54.017485, -2.141362]], [[54.017288, -2.140827], [54.017222, -2.140721]], [[54.017222, -2.140721], [54.017143, -2.140635]], [[54.016165, -2.139207], [54.016115, -2.139048]], [[54.016115, -2.139048], [54.016057, -2.138925]], [[54.015069, -2.138394], [54.014969, -2.138357]], [[54.014694, -2.138275], [54.014595, -2.138265]], [[54.01433, -2.138113], [54.014237, -2.138108]], [[54.014237, -2.138108], [54.014146, -2.138146]], [[54.008988, -2.131456], [54.008916, -2.131363]], [[54.006325, -2.130142], [54.006245, -2.130061]], [[54.006245, -2.130061], [54.006156, -2.13001]], [[54.005609, -2.129741], [54.005522, -2.129671]], [[54.002132, -2.127237], [54.002071, -2.127123]], [[54.001938, -2.12689], [54.001875, -2.126772]], [[54.00163, -2.126274], [54.001561, -2.126161]], [[54.001561, -2.126161], [54.001492, -2.126051]], [[54.000785, -2.125202], [54.000694, -2.125155]], [[54.000694, -2.125155], [54.000606, -2.125089]], [[54.000173, -2.124743], [54.000081, -2.124677]], [[53.998955, -2.12389], [53.998857, -2.123873]], [[53.998857, -2.123873], [53.998756, -2.123866]], [[53.998756, -2.123866], [53.998658, -2.123854]], [[53.995687, -2.121489], [53.995617, -2.121387]], [[53.9954, -2.121088], [53.995319, -2.120986]], [[53.995319, -2.120986], [53.995251, -2.120883]], [[53.995171, -2.120785], [53.995091, -2.120693]], [[53.994902, -2.120321], [53.994836, -2.120213]], [[53.994551, -2.119776], [53.994492, -2.119655]], [[53.992914, -2.118158], [53.992824, -2.118085]], [[53.992824, -2.118085], [53.992738, -2.117997]], [[53.992556, -2.117896], [53.992466, -2.117833]], [[53.991644, -2.117061], [53.99156, -2.116995]], [[53.990602, -2.116065], [53.990545, -2.115932]], [[53.990545, -2.115932], [53.990483, -2.115805]], [[53.99, -2.115044], [53.989914, -2.114981]], [[53.98986, -2.114672], [53.989759, -2.114644]], [[53.989698, -2.114519], [53.989649, -2.11437]], [[53.989649, -2.11437], [53.989577, -2.114261]], [[53.989577, -2.114261], [53.989489, -2.114203]], [[53.989489, -2.114203], [53.989428, -2.114077]], [[53.989145, -2.113628], [53.989076, -2.1135]], [[53.989076, -2.1135], [53.988994, -2.113394]], [[53.988994, -2.113394], [53.988919, -2.113284]], [[53.988841, -2.113185], [53.988771, -2.113085]], [[53.988701, -2.11297], [53.988652, -2.112825]], [[53.988498, -2.112623], [53.988428, -2.112511]], [[53.98821, -2.112002], [53.988191, -2.111846]], [[53.988191, -2.111846], [53.988117, -2.111739]], [[53.988117, -2.111739], [53.988101, -2.111567]], [[53.987459, -2.108231], [53.98738, -2.108152]], [[53.98738, -2.108152], [53.987294, -2.108077]], [[53.987294, -2.108077], [53.987212, -2.108013]], [[53.986276, -2.107202], [53.986188, -2.107152]], [[53.984356, -2.103529], [53.984283, -2.103626]], [[53.984283, -2.103626], [53.9842, -2.103691]], [[53.98441, -2.102713], [53.984443, -2.102551]], [[53.984443, -2.102551], [53.984486, -2.102397]], [[53.984546, -2.101767], [53.984608, -2.101641]], [[53.984678, -2.101325], [53.984716, -2.101172]], [[53.984716, -2.101172], [53.984771, -2.101033]], [[53.98486, -2.100991], [53.984941, -2.101069]], [[53.984941, -2.101069], [53.98502, -2.101161]], [[53.987451, -2.101931], [53.987532, -2.101856]], [[53.987612, -2.101775], [53.987708, -2.101723]], [[53.987708, -2.101723], [53.987796, -2.101642]], [[53.987785, -2.10147], [53.98776, -2.101322]], [[53.98764, -2.101415], [53.987552, -2.101326]], [[53.987552, -2.101326], [53.987457, -2.101284]], [[53.987457, -2.101284], [53.987362, -2.101319]], [[53.987189, -2.101626], [53.987188, -2.101793]], [[53.987185, -2.101892], [53.987196, -2.101711]], [[53.987196, -2.101711], [53.987191, -2.101557]], [[53.98742, -2.101049], [53.987443, -2.100887]], [[53.987409, -2.101159], [53.987338, -2.101305]], [[53.987084, -2.101889], [53.987126, -2.10173]], [[53.986969, -2.101986], [53.986878, -2.101979]], [[53.986496, -2.102581], [53.986428, -2.102722]], [[53.986428, -2.102722], [53.986359, -2.102824]], [[53.986359, -2.102824], [53.986304, -2.102949]], [[53.98622, -2.103575], [53.986207, -2.103746]], [[53.986161, -2.103899], [53.986123, -2.104056]], [[53.986123, -2.104056], [53.986104, -2.104211]], [[53.986104, -2.104211], [53.986106, -2.104373]], [[53.986106, -2.104373], [53.98604, -2.104514]], [[53.985971, -2.104638], [53.985896, -2.104743]], [[53.984653, -2.104623], [53.984641, -2.10446]], [[53.984344, -2.103653], [53.984265, -2.103546]], [[53.983824, -2.103951], [53.983891, -2.104059]], [[53.984371, -2.10365], [53.984464, -2.103685]], [[53.984464, -2.103685], [53.984554, -2.103698]], [[53.984824, -2.103557], [53.984916, -2.103548]], [[53.986688, -2.101554], [53.986711, -2.101406]], [[53.986867, -2.10196], [53.986961, -2.101991]], [[53.986961, -2.101991], [53.987032, -2.101867]], [[53.987032, -2.101867], [53.987081, -2.101732]], [[53.987171, -2.10144], [53.987266, -2.101375]], [[53.987346, -2.101304], [53.987441, -2.101296]], [[53.987441, -2.101296], [53.98753, -2.101346]], [[53.987624, -2.10135], [53.987718, -2.101311]], [[53.987718, -2.101311], [53.987813, -2.101308]], [[53.987306, -2.101324], [53.987222, -2.101424]], [[53.987222, -2.101424], [53.987167, -2.101555]], [[53.987167, -2.101555], [53.987184, -2.101726]], [[53.987184, -2.101726], [53.987152, -2.101876]], [[53.987169, -2.101659], [53.98721, -2.101514]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_13e878f21bc92ec741a7209be6e0b188 = L.polyline(
                [[[54.147437, -2.293929], [54.147484, -2.293775]], [[54.147484, -2.293775], [54.147507, -2.29362]], [[54.148458, -2.289131], [54.148444, -2.288946]], [[54.150987, -2.285169], [54.151079, -2.285105]], [[54.151079, -2.285105], [54.151175, -2.285056]], [[54.162444, -2.275566], [54.162535, -2.275506]], [[54.155556, -2.249354], [54.155466, -2.249433]], [[54.150499, -2.252305], [54.150399, -2.252363]], [[54.150399, -2.252363], [54.150299, -2.252399]], [[54.148995, -2.253489], [54.148894, -2.253583]], [[54.142823, -2.253664], [54.142731, -2.253678]], [[54.142731, -2.253678], [54.142629, -2.25367]], [[54.142629, -2.25367], [54.142533, -2.253642]], [[54.141578, -2.250281], [54.141535, -2.250129]], [[54.139524, -2.244448], [54.139507, -2.244283]], [[54.139507, -2.244283], [54.139482, -2.244129]], [[54.144021, -2.231036], [54.144103, -2.230944]], [[54.136633, -2.192853], [54.136596, -2.192698]], [[54.136596, -2.192698], [54.136542, -2.192555]], [[54.136542, -2.192555], [54.136476, -2.192429]], [[54.136308, -2.192043], [54.13633, -2.191891]], [[54.136131, -2.190733], [54.136066, -2.190608]], [[54.136066, -2.190608], [54.136007, -2.19048]], [[54.133686, -2.188512], [54.133596, -2.188424]], [[54.129327, -2.188634], [54.12924, -2.188571]], [[54.123297, -2.184174], [54.123231, -2.184056]], [[54.122111, -2.179703], [54.122022, -2.179629]], [[54.122022, -2.179629], [54.121937, -2.179531]], [[54.121937, -2.179531], [54.121858, -2.179415]], [[54.112501, -2.176377], [54.112418, -2.17631]], [[54.101681, -2.171547], [54.101643, -2.171394]], [[54.101098, -2.170245], [54.101039, -2.170121]], [[54.101039, -2.170121], [54.100985, -2.169983]], [[54.100985, -2.169983], [54.100955, -2.169838]], [[54.100858, -2.169537], [54.100819, -2.169396]], [[54.100578, -2.16867], [54.100539, -2.168508]], [[54.100539, -2.168508], [54.100516, -2.168335]], [[54.100531, -2.168174], [54.100596, -2.168041]], [[54.100605, -2.167398], [54.100643, -2.167247]], [[54.100699, -2.166426], [54.100716, -2.166257]], [[54.100801, -2.16528], [54.100877, -2.16516]], [[54.100877, -2.16516], [54.100888, -2.165]], [[54.100873, -2.164834], [54.10089, -2.164671]], [[54.101151, -2.163472], [54.101189, -2.16332]], [[54.101227, -2.163148], [54.101221, -2.16298]], [[54.101228, -2.162806], [54.101192, -2.162644]], [[54.101032, -2.162253], [54.100965, -2.162126]], [[54.100696, -2.161687], [54.100671, -2.16153]], [[54.100671, -2.16153], [54.100622, -2.16137]], [[54.094732, -2.156687], [54.094632, -2.156715]], [[54.093558, -2.157036], [54.09346, -2.157059]], [[54.088026, -2.164294], [54.088022, -2.16445]], [[54.086772, -2.164077], [54.086695, -2.163974]], [[54.086057, -2.163248], [54.085971, -2.163176]], [[54.075216, -2.159913], [54.075142, -2.159803]], [[54.075142, -2.159803], [54.07508, -2.159677]], [[54.071574, -2.160362], [54.071672, -2.160345]], [[54.071672, -2.160345], [54.071727, -2.160237]], [[54.068391, -2.159203], [54.068295, -2.159191]], [[54.068295, -2.159191], [54.068202, -2.159164]], [[54.068104, -2.159129], [54.068008, -2.159098]], [[54.065999, -2.158146], [54.065947, -2.158009]], [[54.065947, -2.158009], [54.065899, -2.15786]], [[54.064998, -2.155987], [54.064915, -2.156063]], [[54.064821, -2.156043], [54.06475, -2.155909]], [[54.064541, -2.155181], [54.064507, -2.155032]], [[54.064507, -2.155032], [54.064472, -2.154882]], [[54.064472, -2.154882], [54.064384, -2.154828]], [[54.064384, -2.154828], [54.064294, -2.154773]], [[54.064034, -2.154704], [54.063993, -2.154555]], [[54.063575, -2.154175], [54.063499, -2.154069]], [[54.061972, -2.153321], [54.061902, -2.153213]], [[54.061902, -2.153213], [54.061815, -2.15326]], [[54.061736, -2.152857], [54.061766, -2.152681]], [[54.061766, -2.152681], [54.061843, -2.152584]], [[54.060922, -2.152622], [54.060827, -2.152665]], [[54.060827, -2.152665], [54.060794, -2.152813]], [[54.0589, -2.152077], [54.058816, -2.151978]], [[54.046207, -2.154366], [54.046105, -2.15433]], [[54.046105, -2.15433], [54.046008, -2.154322]], [[54.016479, -2.139771], [54.016404, -2.139674]], [[53.995251, -2.120883], [53.995171, -2.120785]], [[53.990178, -2.115222], [53.990088, -2.115146]], [[53.990088, -2.115146], [53.99, -2.115044]], [[53.989914, -2.114981], [53.989897, -2.114824]], [[53.989897, -2.114824], [53.98986, -2.114672]], [[53.989759, -2.114644], [53.989698, -2.114519]], [[53.988919, -2.113284], [53.988841, -2.113185]], [[53.984653, -2.101492], [53.984678, -2.101325]], [[53.987191, -2.101557], [53.987199, -2.101382]], [[53.987199, -2.101382], [53.987253, -2.101256]], [[53.987253, -2.101256], [53.987335, -2.10114]], [[53.987335, -2.10114], [53.98742, -2.101049]], [[53.987187, -2.101564], [53.987168, -2.101725]], [[53.987047, -2.101885], [53.986969, -2.101986]], [[53.98604, -2.104514], [53.985971, -2.104638]], [[53.987266, -2.101375], [53.987346, -2.101304]], [[53.987682, -2.101325], [53.987591, -2.101359]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_453d4293d2a03922e1517a304899bbe1 = L.polyline(
                [[[54.147985, -2.29109], [54.148078, -2.291058]], [[54.158122, -2.279599], [54.158189, -2.279475]], [[54.162308, -2.275789], [54.162351, -2.275625]], [[54.162142, -2.266564], [54.162124, -2.266391]], [[54.162916, -2.252446], [54.162952, -2.252304]], [[54.157154, -2.24963], [54.157094, -2.249504]], [[54.154353, -2.250715], [54.154256, -2.250777]], [[54.153161, -2.251106], [54.153074, -2.251169]], [[54.153089, -2.251188], [54.152999, -2.251203]], [[54.152999, -2.251203], [54.152946, -2.25125]], [[54.152946, -2.25125], [54.152866, -2.251321]], [[54.152866, -2.251321], [54.152791, -2.251401]], [[54.152791, -2.251401], [54.152739, -2.25126]], [[54.152615, -2.251124], [54.152536, -2.251039]], [[54.151748, -2.251443], [54.151732, -2.251442]], [[54.151564, -2.251475], [54.151501, -2.25159]], [[54.14943, -2.253098], [54.149346, -2.253178]], [[54.148327, -2.254018], [54.148237, -2.253946]], [[54.142437, -2.253615], [54.142437, -2.253617]], [[54.14237, -2.253505], [54.142352, -2.25335]], [[54.140725, -2.246132], [54.140724, -2.246127]], [[54.140724, -2.246127], [54.140687, -2.245976]], [[54.140687, -2.245976], [54.140675, -2.245988]], [[54.143269, -2.218289], [54.143275, -2.218126]], [[54.144721, -2.20733], [54.14468, -2.207193]], [[54.143705, -2.203763], [54.143616, -2.203721]], [[54.143616, -2.203721], [54.143543, -2.203627]], [[54.110382, -2.174664], [54.11034, -2.174803]], [[54.101805, -2.172226], [54.101843, -2.17206]], [[54.101827, -2.17195], [54.101921, -2.171982]], [[54.101576, -2.171444], [54.101554, -2.171275]], [[54.101225, -2.164276], [54.101234, -2.164236]], [[54.101238, -2.164048], [54.101211, -2.163901]], [[54.093935, -2.156978], [54.093844, -2.156972]], [[54.091816, -2.162061], [54.091748, -2.16217]], [[54.079776, -2.167843], [54.079718, -2.167715]], [[54.079718, -2.167715], [54.079695, -2.167664]], [[54.078806, -2.16571], [54.078802, -2.165721]], [[54.07433, -2.159329], [54.074269, -2.159208]], [[54.072929, -2.159013], [54.072845, -2.159091]], [[54.072845, -2.159091], [54.072837, -2.159059]], [[54.072837, -2.159059], [54.072832, -2.159218]], [[54.07262, -2.161279], [54.072522, -2.161318]], [[54.071578, -2.160675], [54.071524, -2.16055]], [[54.071524, -2.16055], [54.071472, -2.160441]], [[54.071698, -2.159468], [54.071654, -2.159333]], [[54.07125, -2.158429], [54.071154, -2.158461]], [[54.070154, -2.158843], [54.070065, -2.158863]], [[54.062011, -2.152518], [54.062023, -2.152339]], [[54.061993, -2.152266], [54.062135, -2.152512]], [[54.062135, -2.152512], [54.062221, -2.152575]], [[54.062157, -2.152531], [54.062369, -2.15277]], [[54.062369, -2.15277], [54.062294, -2.152612]], [[54.061603, -2.152435], [54.061592, -2.15246]], [[54.061511, -2.152551], [54.061431, -2.152578]], [[54.060672, -2.152795], [54.060679, -2.15263]], [[54.055956, -2.15039], [54.055905, -2.150377]], [[54.053521, -2.14941], [54.053437, -2.149477]], [[54.053094, -2.150545], [54.053014, -2.150635]], [[54.051555, -2.152017], [54.0515, -2.152138]], [[54.032927, -2.149758], [54.032864, -2.149647]], [[54.029041, -2.148088], [54.028953, -2.148006]], [[54.028953, -2.148006], [54.028884, -2.147894]], [[54.023497, -2.145552], [54.023403, -2.145521]], [[54.020676, -2.142904], [54.020577, -2.142891]], [[54.018796, -2.143531], [54.01872, -2.143438]], [[54.01872, -2.143438], [54.018623, -2.143409]], [[54.013917, -2.137484], [54.013921, -2.137328]], [[54.009328, -2.132005], [54.009264, -2.13188]], [[54.002733, -2.128225], [54.002648, -2.12817]], [[53.999233, -2.124006], [53.999146, -2.123942]], [[53.985593, -2.106515], [53.985537, -2.106386]], [[53.985537, -2.106386], [53.985554, -2.106299]], [[53.985554, -2.106299], [53.985464, -2.106223]], [[53.984859, -2.105514], [53.984843, -2.105348]], [[53.98458, -2.103666], [53.984518, -2.103552]], [[53.98384, -2.104225], [53.983913, -2.104137]], [[53.983913, -2.104137], [53.983985, -2.104077]], [[53.983985, -2.104077], [53.984076, -2.104056]], [[53.987824, -2.10128], [53.987726, -2.101339]], [[53.987438, -2.100959], [53.9875, -2.101071]], [[53.987183, -2.101983], [53.987099, -2.102041]], [[53.986639, -2.101864], [53.986587, -2.101991]], [[53.983981, -2.104148], [53.983938, -2.104141]], [[53.983658, -2.104207], [53.98375, -2.10426]], [[53.983834, -2.104206], [53.983897, -2.104128]], [[53.983897, -2.104128], [53.983985, -2.104039]], [[53.985099, -2.103454], [53.985135, -2.10331]], [[53.985135, -2.10331], [53.985136, -2.10329]], [[53.98667, -2.101837], [53.986651, -2.101707]], [[53.986713, -2.101579], [53.986674, -2.101723]], [[53.986674, -2.101723], [53.986661, -2.101714]], [[53.986707, -2.101805], [53.986782, -2.101905]], [[53.987858, -2.10122], [53.98776, -2.101221]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_972b134f8c9f77734b2557f5021d903f = L.polyline(
                [[[54.160744, -2.276868], [54.160839, -2.276837]], [[54.148894, -2.253583], [54.148804, -2.253629]], [[54.100955, -2.169838], [54.10092, -2.16968]], [[54.10092, -2.16968], [54.100858, -2.169537]], [[54.10069, -2.166935], [54.100768, -2.166858]], [[54.100751, -2.166082], [54.100716, -2.165941]], [[54.100747, -2.165538], [54.100721, -2.165361]], [[54.100721, -2.165361], [54.100801, -2.16528]], [[54.100888, -2.165], [54.100873, -2.164834]], [[54.101189, -2.16332], [54.101227, -2.163148]], [[54.06475, -2.155909], [54.064687, -2.1558]], [[54.063499, -2.154069], [54.063424, -2.153967]], [[54.063424, -2.153967], [54.063359, -2.153847]], [[54.063165, -2.1538], [54.063082, -2.153691]], [[54.063082, -2.153691], [54.062984, -2.153738]], [[54.01658, -2.140253], [54.016573, -2.140085]], [[54.016533, -2.139917], [54.016479, -2.139771]], [[53.984608, -2.101641], [53.984653, -2.101492]], [[53.983891, -2.104059], [53.98383, -2.104174]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_cf9ce2a86f80d5cc3bbf7229b31a836a = L.polyline(
                [[[54.100716, -2.166257], [54.100751, -2.166082]], [[54.016573, -2.140085], [54.016533, -2.139917]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff8b00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            var poly_line_1bc5eaa8d86c8ed2b1de055f4a218d68 = L.polyline(
                [[[53.987255, -2.101422], [53.987187, -2.101564]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5d00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff5d00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_b6a36ceeb2126a3cb32022027442da2e);
        
    
            color_line_b6a36ceeb2126a3cb32022027442da2e.addTo(map_83037dc731cdb85670d1f634d414f1df);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-10---gargrave-to-colden" class="level3">
<h3 class="anchored" data-anchor-id="day-10---gargrave-to-colden">Day 10 - Gargrave to Colden</h3>
<p>Woken early around 05:00 by the wind and rain of <a href="https://www.metoffice.gov.uk/about-us/news-and-media/media-centre/weather-and-climate-news/2024/storm-lilian-named" target="_blank">Storm Lilian</a> passing through, it was pretty windy and on checking the satellite imagery it was due to rain heavily between 06:00 and 07:00 and decided to stay in bed and ride that out rather than take the tent down in the rain. Forecast was spot on and my tent was almost flattened by some <em>very</em> strong gusts about 06:30. Fortunately its design (an older version of the <a href="https://www.terra-nova.co.uk/products/zephyros-compact-1/" target="_blank">Wild Country Zephyros 1</a>) with a single pole meant it sprung back up pretty quickly and I weathered the storm ok. On rising it was clear that some of the other campers hadn’t fared so well. There was a camper van with the air-beam awning collapsed, but that was because they had been savvy enough to do it themselves <em>before</em> the wind took it away. Unfortunately the awning to the caravan of the guy I’d chatted to the previous night was nowhere to be seen.</p>
<p>After packing my kit up I set off to the Co-op to get supplies for the day but as I crossed the road I realised I hadn’t seen my wallet so checked my pockets and those of my rucksack and then realised I’d left it on the floor of the tent and packed it away inside! Wasted five minutes retrieving it from inside whilst next to the canal and packing it all back up again. This proved a bit of a waste of time as on arrival at the Co-op the lights were out and the door was shut with a sign on the window saying there had been a power cut and they weren’t open. I managed to get the attention of a member of staff and asked where the nearest place shop was. After establishing that I couldn’t hear a word she was saying through the shut door she cracked it open and advised me it was 10 minutes drive down the road in Skipton, clearly not paying any attention to the rucksack on my back and walking poles I was carrying!</p>
<p>I resigned myself to having to make a detour later on and set off for the day crossing open farmland and winding my way through a few country lanes where I encountered a tree that had been felled by the wind. Fortuantely it only slowed me down for a minute or so as I negotiated the branches and soon I found myself walking along a section of the canal where I came across a cool two-storey bridge.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948247526_172637363a_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcdSsJ" target="_blank">Tree Down</a></figcaption>
</figure>
</div>
<p>In <a href="https://en.wikipedia.org/wiki/Thornton_in_Craven" target="_blank">Thornton in Craven</a> I asked a gentleman who was rescuing his bin where the nearest shop was. Unfortunately there weren’t any shops in Thornton, the nearest was <a href="https://en.wikipedia.org/wiki/Earby" target="_blank">Earby</a> which was off-route, but I needed some food for the day so crossed a couple of fields, noticing that the Colne and Broughton/Skipton Road was closed due to another tree that had come down and there was a queue of lorries backing up into Earby as they had no way of turning around on the narrow lanes. <a href="https://en.wikipedia.org/wiki/Earby" target="_blank">Earby</a> had the usual Co-op and supplies for the day were purchased along with a “Yorkshire Slice” from a local bakery where I instantly regretted not buying my lunch from there instead of the Co-op.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53947349852_e3c414a8b3_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qc9gBA" target="_blank">Yorkshire Dales</a></figcaption>
</figure>
</div>
<p>I soon rejoined The Way and headed up to Pinhaw Beacon where there was a memorial to those who had died in the COVID19 Pandemic written to a Shakespeare sonnet. I was saddened to see some idiots had vandalised the tribute to the NHS at the end. Some people have no idea how fortunate they are to have free, world leading, health-care in this country.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948574234_408d2c7cca_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcfxzC" target="_blank">Coronavirus Sonnet</a></figcaption>
</figure>
</div>
<p>After dropping down into Lothersdale and out again I met a guy who was walking from Dover to Cape Wrath and was currently on day 20. He was a talker and regaled going through London rather than round it camping near some football stadium and many other facets of his 20 days to get to that point. Mindful of the time I wished him well and carried on as I still had a long way to go.</p>
<p>I’d hoped there would be a pub near The Way in Ikornshaw but alas no so up Green Hill I went. As I reached the edge of the moors there appeared to be a collection of extreme sheds dotted along the edge. Perhaps these were for game keepers but there were a lot of them. There was a guy working outside of one and he took the time to calm his dog as I passed but I didn’t think to ask him what the sheds were for or why there were so many.</p>
<p>The moorland opened up and I met a lady who was out for a run, we had a brief chat about how nice a day it was and she mentioned she had just passed another person who was hiking the Pennine Way and heading South, this was a surprise and I decided to quicken my pace and see if I could catch them up. On the top of the moor I met two ladies who were heading north independently, the second was suffering from a very sore knee which she suspected was due to the weight of her pack. I advised getting some poles if possible to help and carried on.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948515338_135950d543_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcff5b" target="_blank">Shooting Cabin</a></figcaption>
</figure>
</div>
<p>I dropped down and passing Ponden Reservoir then up and over to Within Heights where an abandoned farm was a possible an inspiration for Emily Bronte’s <em>Wuthering Heights</em>, a book I’ve never read and likely never will.</p>
<p>Good flagstones led to Walshaw Dean Reservoirs which were skirted round and Lower Gorple Reservoir passed quickly.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948254931_398ec8ecf3_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcdUEp" target="_blank">Walshaw Dean Lower Reservoir</a></figcaption>
</figure>
</div>
<p>Traversing the moor of Standing Stone Hill was straight forward and I soon dropped down into <a href="https://en.wikipedia.org/wiki/Colden,_West_Yorkshire" target="_blank">Colden</a> where I easily found the <a href="https://www.newdelightinn.co.uk/" target="_blank">The New Delight Inn</a> with the <a href="https://www.hebdenbridge-camping.co.uk/" target="_blank">Hebden Bridge Camping</a> adjacent. I wandered into the busy pub which had a lovely community vibe, lots of people milling around chatting and was asked if I was looking to camp for the night (I can’t think what gave that away!) and quickly directed to a lady sat with friends who happily took my £20 note and gave me a warm £10 she had extracted from her bra. The setup was simple as there was a small field next to the car park, flat at the bottom with toilets outside the pub and one person already camped there.</p>
<p>Heading over I dumped the pack and said hello to the other camper who happened to be the person the runner had met earlier in the day. His name was Mike and he was busy enjoying his dinner and avoiding the midges. We had a brief chat about how long we had been hiking and I left him to his dinner to pitch my tent before it got dark and return to the pub to get food and beer. The pub didn’t actually serve food, beyond the usual bar snacks of crisps and nuts which would often do me fine but tonight I needed something more substantial and was in luck as there was a takeaway in Hebden Bridge that delivered. Connected to the WiFi I placed my order and settled down with a pint to write up my notes for the past few days as I’d fallen behind. I was unfortunately quite tired, the light wasn’t great and I didn’t have my glasses which I find I’m needing more frequently these days, but I got some notes written before the pizza arrived which was delicious.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53947357187_e28afeaf6a_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qc9iN4" target="_blank">Takeaway Pizza Delivered</a></figcaption>
</figure>
</div>
<p>I had a big day planned as I wanted to pass Standing Edge where there wasn’t much accommodation, and push through to Crowden in a single big day which would leave me with “just” Bleaklow and Kinder to pass to get to Edale and so suitably satiated I headed to bed early. Thankfully the kids playing outside the pub whilst their parents drank and chatted didn’t use my tent for target practice this time.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-11-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-11-1" aria-controls="tabset-11-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-11-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-11-2" aria-controls="tabset-11-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-11-1" class="tab-pane active" aria-labelledby="tabset-11-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb21-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-23"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-7cdb954ed5fd44e16d2c" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-7cdb954ed5fd44e16d2c">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.101639,-2.101721,-2.101729,-2.101722,-2.101853,-2.101981,-2.102003,-2.101969,-2.101923,-2.101857,-2.101871,-2.101979,-2.101892,-2.101961,-2.101835,-2.101936,-2.102065,-2.102217,-2.102353,-2.102507,-2.102657,-2.102804,-2.102874,-2.102937,-2.103015,-2.103063,-2.10314,-2.103224,-2.103282,-2.103331,-2.10338,-2.10341,-2.103453,-2.103439,-2.103444,-2.103463,-2.103506,-2.103529,-2.103556,-2.103567,-2.103587,-2.103656,-2.103689,-2.10369,-2.103749,-2.103845,-2.103971,-2.104078,-2.104172,-2.104257,-2.104287,-2.104324,-2.104323,-2.104478,-2.104509,-2.104605,-2.10469,-2.104844,-2.104996,-2.105106,-2.10527,-2.105392,-2.105499,-2.105639,-2.105793,-2.105952,-2.106096,-2.106173,-2.10624,-2.10622,-2.106219,-2.106224,-2.106201,-2.10619,-2.106191,-2.106169,-2.106161,-2.106143,-2.106097,-2.106087,-2.106133,-2.106112,-2.106095,-2.106074,-2.106025,-2.105994,-2.105981,-2.105965,-2.105961,-2.105937,-2.105925,-2.105998,-2.106154,-2.106303,-2.106439,-2.106523,-2.106634,-2.106779,-2.106941,-2.107103,-2.107258,-2.107425,-2.107575,-2.107728,-2.107896,-2.108042,-2.10818,-2.108329,-2.108497,-2.10865,-2.108802,-2.108942,-2.109062,-2.10919,-2.10932,-2.109446,-2.109569,-2.109675,-2.109823,-2.109969,-2.110111,-2.110274,-2.11043,-2.11058,-2.110741,-2.110922,-2.111083,-2.111256,-2.111419,-2.111581,-2.111744,-2.111909,-2.112069,-2.112231,-2.112391,-2.112546,-2.1127,-2.112866,-2.113027,-2.113175,-2.113337,-2.11351,-2.113652,-2.113802,-2.113853,-2.113949,-2.113972,-2.114018,-2.114054,-2.114105,-2.114161,-2.114269,-2.114371,-2.114444,-2.114536,-2.114564,-2.114715,-2.114776,-2.114884,-2.114925,-2.11496,-2.115018,-2.115095,-2.115145,-2.115236,-2.115331,-2.115367,-2.115454,-2.115501,-2.115514,-2.115507,-2.11553,-2.115524,-2.115512,-2.115502,-2.115542,-2.115548,-2.11557,-2.115562,-2.115554,-2.115605,-2.115638,-2.115747,-2.115826,-2.115895,-2.116023,-2.116107,-2.116265,-2.116336,-2.116409,-2.116534,-2.116665,-2.116809,-2.116939,-2.117086,-2.117197,-2.117331,-2.117454,-2.117582,-2.1177,-2.1178,-2.11793,-2.11804,-2.118168,-2.118285,-2.118427,-2.118545,-2.118606,-2.118722,-2.118834,-2.118935,-2.119039,-2.119168,-2.119279,-2.119375,-2.119504,-2.119604,-2.119702,-2.11982,-2.119919,-2.120027,-2.120085,-2.120144,-2.120267,-2.120386,-2.120483,-2.120579,-2.120673,-2.120785,-2.120886,-2.120967,-2.121057,-2.121156,-2.121251,-2.12131,-2.121372,-2.121452,-2.121524,-2.121539,-2.121708,-2.121816,-2.121942,-2.121957,-2.122095,-2.122175,-2.122241,-2.122346,-2.122463,-2.122592,-2.122741,-2.12278,-2.122831,-2.122959,-2.122975,-2.123043,-2.123157,-2.123243,-2.123335,-2.123429,-2.123545,-2.12362,-2.123709,-2.123793,-2.123937,-2.124012,-2.124096,-2.124182,-2.124283,-2.124373,-2.124476,-2.124567,-2.124645,-2.124735,-2.124851,-2.124964,-2.12507,-2.125177,-2.12526,-2.125359,-2.125482,-2.125581,-2.125682,-2.125814,-2.125954,-2.126094,-2.126228,-2.12638,-2.126522,-2.126641,-2.126744,-2.126844,-2.126929,-2.127048,-2.12717,-2.127297,-2.127426,-2.127525,-2.127594,-2.127699,-2.127802,-2.127892,-2.12797,-2.128032,-2.128125,-2.12819,-2.128266,-2.12834,-2.128423,-2.128516,-2.128592,-2.128652,-2.128741,-2.128807,-2.128867,-2.128936,-2.129003,-2.129093,-2.129181,-2.129261,-2.129327,-2.129395,-2.129462,-2.129547,-2.129648,-2.129724,-2.129696,-2.129671,-2.129626,-2.129616,-2.129625,-2.129649,-2.129683,-2.129685,-2.12968,-2.129691,-2.129714,-2.129759,-2.129793,-2.12986,-2.129917,-2.12997,-2.130029,-2.130073,-2.130119,-2.130137,-2.130105,-2.130101,-2.130059,-2.130201,-2.130329,-2.130364,-2.130402,-2.130449,-2.130482,-2.130544,-2.130594,-2.130647,-2.13073,-2.130816,-2.130892,-2.130943,-2.130979,-2.131057,-2.131114,-2.131178,-2.131243,-2.131291,-2.131382,-2.1315,-2.131592,-2.131707,-2.131795,-2.131801,-2.131957,-2.132094,-2.132223,-2.132312,-2.13239,-2.132445,-2.132515,-2.132508,-2.132527,-2.132536,-2.13251,-2.13248,-2.132478,-2.132534,-2.132594,-2.13266,-2.132744,-2.132802,-2.132872,-2.132954,-2.132997,-2.133033,-2.133098,-2.133158,-2.133217,-2.133281,-2.133356,-2.133417,-2.133503,-2.133561,-2.133628,-2.13369,-2.133752,-2.133804,-2.133837,-2.1339,-2.13394,-2.134016,-2.134083,-2.134133,-2.134211,-2.134293,-2.134359,-2.134383,-2.134388,-2.13445,-2.134486,-2.134545,-2.13464,-2.13467,-2.134716,-2.134767,-2.134806,-2.134873,-2.134976,-2.134922,-2.134997,-2.135146,-2.135312,-2.135464,-2.135515,-2.135678,-2.135822,-2.135988,-2.136146,-2.136299,-2.136461,-2.136595,-2.136755,-2.136912,-2.137083,-2.13724,-2.137377,-2.137648,-2.137762,-2.137734,-2.137754,-2.137746,-2.137843,-2.137869,-2.137858,-2.137895,-2.137582,-2.137743,-2.137872,-2.13803,-2.138095,-2.138052,-2.138093,-2.138117,-2.1382,-2.138333,-2.138259,-2.138178,-2.138289,-2.138407,-2.138519,-2.13861,-2.138717,-2.138836,-2.138945,-2.139052,-2.139163,-2.139278,-2.13938,-2.139517,-2.139563,-2.139622,-2.139647,-2.139742,-2.139744,-2.139664,-2.139731,-2.139789,-2.139702,-2.139632,-2.139532,-2.139465,-2.139369,-2.139268,-2.13918,-2.139105,-2.139108,-2.139125,-2.139086,-2.139074,-2.13899,-2.138972,-2.13893,-2.138937,-2.138924,-2.138994,-2.139036,-2.138989,-2.139006,-2.1391,-2.139236,-2.13928,-2.139358,-2.139461,-2.139589,-2.139695,-2.139851,-2.140008,-2.140074,-2.140021,-2.139933,-2.139985,-2.140148,-2.140284,-2.14044,-2.140593,-2.140727,-2.140876,-2.140972,-2.141067,-2.141153,-2.141258,-2.141389,-2.141519,-2.14151,-2.141611,-2.14173,-2.141868,-2.141988,-2.142048,-2.142145,-2.142287,-2.142351,-2.14246,-2.142589,-2.142716,-2.142855,-2.142967,-2.143071,-2.143161,-2.143317,-2.143441,-2.1435,-2.143633,-2.143766,-2.143934,-2.143947,-2.143789,-2.143861,-2.143703,-2.143751,-2.143705,-2.143634,-2.143596,-2.143577,-2.143544,-2.143559,-2.143529,-2.143378,-2.143294,-2.14325,-2.143277,-2.143298,-2.143352,-2.143329,-2.14328,-2.143243,-2.143225,-2.143229,-2.143233,-2.143283,-2.143306,-2.143299,-2.143284,-2.143258,-2.143229,-2.143223,-2.143195,-2.143145,-2.143055,-2.143013,-2.142971,-2.142917,-2.142864,-2.142855,-2.142833,-2.14281,-2.142811,-2.142811,-2.14278,-2.142746,-2.142716,-2.142698,-2.142676,-2.142649,-2.142618,-2.142621,-2.142609,-2.142602,-2.142575,-2.142588,-2.142538,-2.142492,-2.14242,-2.142372,-2.142377,-2.142335,-2.142237,-2.142191,-2.142121,-2.142034,-2.141965,-2.141901,-2.141797,-2.141713,-2.141609,-2.141556,-2.1415,-2.141452,-2.141367,-2.141293,-2.14121,-2.141098,-2.141067,-2.141033,-2.140951,-2.140859,-2.140812,-2.140769,-2.140706,-2.140613,-2.14057,-2.140557,-2.140553,-2.140564,-2.140468,-2.140337,-2.140219,-2.140096,-2.140051,-2.140075,-2.140048,-2.140047,-2.140024,-2.139995,-2.139985,-2.139976,-2.139972,-2.139953,-2.139922,-2.139902,-2.139903,-2.139883,-2.139867,-2.139805,-2.139731,-2.139615,-2.13959,-2.139568,-2.139541,-2.139494,-2.139501,-2.139508,-2.139446,-2.139351,-2.139348,-2.139333,-2.139396,-2.139554,-2.13962,-2.139689,-2.139681,-2.13963,-2.139636,-2.139671,-2.139687,-2.139749,-2.139813,-2.139814,-2.139852,-2.139883,-2.139957,-2.139979,-2.140026,-2.140067,-2.140116,-2.140182,-2.140217,-2.140244,-2.140233,-2.140235,-2.140259,-2.140164,-2.140127,-2.140168,-2.140202,-2.140232,-2.140243,-2.140269,-2.140346,-2.140382,-2.140387,-2.140397,-2.140381,-2.140462,-2.14057,-2.140676,-2.140733,-2.140784,-2.140856,-2.140964,-2.141002,-2.141037,-2.141088,-2.1411,-2.141199,-2.141259,-2.141387,-2.14145,-2.141523,-2.141436,-2.141401,-2.141398,-2.141383,-2.141368,-2.141446,-2.14152,-2.141634,-2.141771,-2.141905,-2.14205,-2.142051,-2.142193,-2.142325,-2.142406,-2.142546,-2.142721,-2.142887,-2.142989,-2.143123,-2.14324,-2.143344,-2.143491,-2.14361,-2.14374,-2.143869,-2.144014,-2.144146,-2.144205,-2.144259,-2.144343,-2.144271,-2.144272,-2.144318,-2.144334,-2.144328,-2.144365,-2.144438,-2.144447,-2.144457,-2.144567,-2.144638,-2.144675,-2.144725,-2.144733,-2.144737,-2.144721,-2.144685,-2.144638,-2.144616,-2.144657,-2.144735,-2.144805,-2.144897,-2.144977,-2.144982,-2.14487,-2.144895,-2.144911,-2.144955,-2.144987,-2.144994,-2.144995,-2.145022,-2.145038,-2.14505,-2.145054,-2.145058,-2.145074,-2.145064,-2.145061,-2.145118,-2.145167,-2.145168,-2.14514,-2.14512,-2.145129,-2.145136,-2.14513,-2.145133,-2.145157,-2.145155,-2.145139,-2.145137,-2.145128,-2.14514,-2.145144,-2.145146,-2.145148,-2.145135,-2.145146,-2.145147,-2.14511,-2.145172,-2.145092,-2.145027,-2.144979,-2.144956,-2.144918,-2.144894,-2.144903,-2.144871,-2.144816,-2.144819,-2.144762,-2.144764,-2.144765,-2.144754,-2.144697,-2.144681,-2.144702,-2.144651,-2.144598,-2.144574,-2.144547,-2.144543,-2.144553,-2.144567,-2.144555,-2.14455,-2.144508,-2.144511,-2.144504,-2.144486,-2.144513,-2.144503,-2.144503,-2.1445,-2.144426,-2.144392,-2.144253,-2.144159,-2.144072,-2.143994,-2.143943,-2.143814,-2.14373,-2.143649,-2.14357,-2.143483,-2.143402,-2.143359,-2.143333,-2.143396,-2.143366,-2.14341,-2.143514,-2.143635,-2.143708,-2.143732,-2.143798,-2.143891,-2.143928,-2.144023,-2.144054,-2.144135,-2.144215,-2.144288,-2.144374,-2.144454,-2.144549,-2.144601,-2.144596,-2.14461,-2.144717,-2.144776,-2.144845,-2.144951,-2.144833,-2.144693,-2.144577,-2.144571,-2.144632,-2.144716,-2.144772,-2.144789,-2.144841,-2.14484,-2.14484,-2.144857,-2.144854,-2.144926,-2.145061,-2.145196,-2.145267,-2.145349,-2.145391,-2.145425,-2.145465,-2.145513,-2.145547,-2.145568,-2.145602,-2.145621,-2.145647,-2.1456,-2.145611,-2.145587,-2.145605,-2.145594,-2.145592,-2.145573,-2.145461,-2.145324,-2.145197,-2.145048,-2.144933,-2.14477,-2.144642,-2.144475,-2.144304,-2.144207,-2.144252,-2.144386,-2.144503,-2.144561,-2.144649,-2.144737,-2.144856,-2.145004,-2.145124,-2.145243,-2.145364,-2.145439,-2.145194,-2.145223,-2.145078,-2.145128,-2.145132,-2.145112,-2.145062,-2.145138,-2.145103,-2.145435,-2.145117,-2.145143,-2.145111,-2.145155,-2.14506,-2.144952,-2.144879,-2.144806,-2.144684,-2.1446,-2.144444,-2.144323,-2.144207,-2.144085,-2.144043,-2.144115,-2.144121,-2.144088,-2.144001,-2.144044,-2.144058,-2.144186,-2.144305,-2.144405,-2.144278,-2.144131,-2.144103,-2.144033,-2.143984,-2.143925,-2.143868,-2.143735,-2.143603,-2.143499,-2.143333,-2.1432,-2.143069,-2.142961,-2.142904,-2.142762,-2.142609,-2.142451,-2.142289,-2.142156,-2.142005,-2.141866,-2.141721,-2.141605,-2.141474,-2.14132,-2.141151,-2.141008,-2.140917,-2.14081,-2.140664,-2.14051,-2.140375,-2.140221,-2.140069,-2.1399,-2.139741,-2.139588,-2.139427,-2.139268,-2.139105,-2.138955,-2.138807,-2.138685,-2.138519,-2.138356,-2.1382,-2.138036,-2.137915,-2.137793,-2.137652,-2.137528,-2.137397,-2.137261,-2.137207,-2.13707,-2.137042,-2.136962,-2.136796,-2.136661,-2.136514,-2.136374,-2.136198,-2.13605,-2.135883,-2.135713,-2.135563,-2.135439,-2.135312,-2.135148,-2.135017,-2.134868,-2.134731,-2.134573,-2.134411,-2.13427,-2.134126,-2.133977,-2.133826,-2.133656,-2.133507,-2.133341,-2.133191,-2.133032,-2.13289,-2.13274,-2.132588,-2.132425,-2.132262,-2.132099,-2.131959,-2.131805,-2.131656,-2.131511,-2.131385,-2.131285,-2.131124,-2.131002,-2.130842,-2.130681,-2.130526,-2.130436,-2.130409,-2.130341,-2.130264,-2.130144,-2.130235,-2.130249,-2.130175,-2.130078,-2.129967,-2.129974,-2.130039,-2.130004,-2.12997,-2.129949,-2.129945,-2.129969,-2.130051,-2.129997,-2.130028,-2.130055,-2.13014,-2.130265,-2.130403,-2.130456,-2.130504,-2.130609,-2.13075,-2.13077,-2.130609,-2.130448,-2.130305,-2.130146,-2.12998,-2.129826,-2.129707,-2.129556,-2.129398,-2.129247,-2.129116,-2.128977,-2.128845,-2.128713,-2.12855,-2.128441,-2.128313,-2.128175,-2.128036,-2.127905,-2.12782,-2.127704,-2.127588,-2.127462,-2.127357,-2.127246,-2.127208,-2.127132,-2.127028,-2.126929,-2.126843,-2.126759,-2.126674,-2.12652,-2.126438,-2.126302,-2.126202,-2.126116,-2.125974,-2.125842,-2.12573,-2.125667,-2.125603,-2.125549,-2.125474,-2.125341,-2.125272,-2.125194,-2.125155,-2.125075,-2.125074,-2.125037,-2.124993,-2.12496,-2.124928,-2.124888,-2.124834,-2.124812,-2.12483,-2.124826,-2.124764,-2.124747,-2.124686,-2.124599,-2.124485,-2.124395,-2.124292,-2.124191,-2.12408,-2.123951,-2.123853,-2.123766,-2.12365,-2.123537,-2.123432,-2.123321,-2.123225,-2.12311,-2.122985,-2.122875,-2.122757,-2.122663,-2.12254,-2.122391,-2.122249,-2.122136,-2.122035,-2.121911,-2.121766,-2.121635,-2.121501,-2.121404,-2.121273,-2.121129,-2.120994,-2.120868,-2.12075,-2.120611,-2.120459,-2.120308,-2.120183,-2.120044,-2.119883,-2.119716,-2.119569,-2.119419,-2.11926,-2.119108,-2.118962,-2.118805,-2.118694,-2.11859,-2.118478,-2.118316,-2.118159,-2.118027,-2.117877,-2.117724,-2.117597,-2.117477,-2.117333,-2.11722,-2.117086,-2.116939,-2.116817,-2.116682,-2.116533,-2.116415,-2.116303,-2.116173,-2.116052,-2.115937,-2.115827,-2.11577,-2.11569,-2.115618,-2.115487,-2.115337,-2.115332,-2.115174,-2.115012,-2.11486,-2.114699,-2.114527,-2.114372,-2.11421,-2.114041,-2.113906,-2.113738,-2.113566,-2.113411,-2.113254,-2.113098,-2.11295,-2.112846,-2.112693,-2.112536,-2.112407,-2.112273,-2.112111,-2.111967,-2.111824,-2.111709,-2.111609,-2.111499,-2.111385,-2.111242,-2.11108,-2.110915,-2.110753,-2.110645,-2.110518,-2.11041,-2.110265,-2.110126,-2.109988,-2.109863,-2.109744,-2.109586,-2.109439,-2.109286,-2.109147,-2.109026,-2.108884,-2.108734,-2.108601,-2.108462,-2.108342,-2.108208,-2.108046,-2.107911,-2.10777,-2.107625,-2.10748,-2.107334,-2.107208,-2.107065,-2.106921,-2.106806,-2.106669,-2.106542,-2.106404,-2.106259,-2.106117,-2.105976,-2.10586,-2.105724,-2.105582,-2.10545,-2.105306,-2.105172,-2.105056,-2.104929,-2.104776,-2.104627,-2.104566,-2.104462,-2.104329,-2.10419,-2.104054,-2.103925,-2.103802,-2.103666,-2.103545,-2.103424,-2.103303,-2.103164,-2.103038,-2.10288,-2.102738,-2.102639,-2.102493,-2.102338,-2.102206,-2.10205,-2.101924,-2.101823,-2.101682,-2.101542,-2.101376,-2.101227,-2.101183,-2.101058,-2.100953,-2.100858,-2.100761,-2.100675,-2.100559,-2.100429,-2.100339,-2.10027,-2.100172,-2.100075,-2.099991,-2.099883,-2.099771,-2.099659,-2.099547,-2.099449,-2.099375,-2.099266,-2.099155,-2.099048,-2.098949,-2.098844,-2.098748,-2.098671,-2.098557,-2.09847,-2.098352,-2.098259,-2.098149,-2.098039,-2.09794,-2.09784,-2.097709,-2.097578,-2.097432,-2.097269,-2.097116,-2.096973,-2.096802,-2.096661,-2.096532,-2.096371,-2.09623,-2.096078,-2.095932,-2.095799,-2.095652,-2.095508,-2.095379,-2.095233,-2.095083,-2.094943,-2.094804,-2.094651,-2.094487,-2.094328,-2.094185,-2.094034,-2.093873,-2.093734,-2.093622,-2.093465,-2.093307,-2.093154,-2.092987,-2.092847,-2.092696,-2.092533,-2.092385,-2.092227,-2.092074,-2.091933,-2.091804,-2.091674,-2.091516,-2.09135,-2.091201,-2.091047,-2.090897,-2.090775,-2.090613,-2.090465,-2.090332,-2.090175,-2.090014,-2.089863,-2.089711,-2.08955,-2.089431,-2.089275,-2.089122,-2.088962,-2.088822,-2.088667,-2.088517,-2.088363,-2.08825,-2.088133,-2.088024,-2.087911,-2.087807,-2.087705,-2.087634,-2.087528,-2.087419,-2.087329,-2.087238,-2.087238,-2.087196,-2.087191,-2.087188,-2.087176,-2.087097,-2.086984,-2.086868,-2.086738,-2.086601,-2.086434,-2.08631,-2.086168,-2.085999,-2.085859,-2.085695,-2.085533,-2.085372,-2.08521,-2.085039,-2.084883,-2.084721,-2.084571,-2.084443,-2.084305,-2.084151,-2.084004,-2.083844,-2.083701,-2.083552,-2.083395,-2.08323,-2.083059,-2.082911,-2.082752,-2.082582,-2.082423,-2.082284,-2.082144,-2.082304,-2.082422,-2.082288,-2.082141,-2.081977,-2.081828,-2.081655,-2.081496,-2.081379,-2.081224,-2.081084,-2.080922,-2.08078,-2.080627,-2.080486,-2.080339,-2.080171,-2.080005,-2.079873,-2.079721,-2.079578,-2.079431,-2.079292,-2.079127,-2.078963,-2.078803,-2.078648,-2.078484,-2.078311,-2.078154,-2.078,-2.077865,-2.077736,-2.077622,-2.077481,-2.077339,-2.077171,-2.077013,-2.076853,-2.076687,-2.076524,-2.076366,-2.076195,-2.07604,-2.07589,-2.075728,-2.075556,-2.0754,-2.075247,-2.075097,-2.074968,-2.074828,-2.074676,-2.074503,-2.07435,-2.07422,-2.074067,-2.073911,-2.073765,-2.073626,-2.07348,-2.073315,-2.073155,-2.073014,-2.072863,-2.072709,-2.07255,-2.072401,-2.072249,-2.072111,-2.071977,-2.071826,-2.07168,-2.071525,-2.071358,-2.071193,-2.071041,-2.070919,-2.070835,-2.070782,-2.070697,-2.070607,-2.070526,-2.070474,-2.070341,-2.070249,-2.070169,-2.070088,-2.070007,-2.069924,-2.069831,-2.069775,-2.069717,-2.069642,-2.06954,-2.06944,-2.069307,-2.069169,-2.069049,-2.068925,-2.068788,-2.068649,-2.068635,-2.068516,-2.068365,-2.068211,-2.068064,-2.067907,-2.067761,-2.067618,-2.06746,-2.06731,-2.0672,-2.06706,-2.066915,-2.066747,-2.066593,-2.066444,-2.066283,-2.066113,-2.066016,-2.065849,-2.065676,-2.065514,-2.065348,-2.06518,-2.065018,-2.06484,-2.064689,-2.064514,-2.064401,-2.064296,-2.064243,-2.064292,-2.06427,-2.064242,-2.064219,-2.064198,-2.064186,-2.064144,-2.064128,-2.064092,-2.064035,-2.063945,-2.063943,-2.063949,-2.063941,-2.063908,-2.063858,-2.06384,-2.063827,-2.063814,-2.063807,-2.063816,-2.063804,-2.063821,-2.063838,-2.063848,-2.06384,-2.063784,-2.063667,-2.063639,-2.0636,-2.063557,-2.06354,-2.063619,-2.063643,-2.063645,-2.063744,-2.063733,-2.063669,-2.063606,-2.063608,-2.063649,-2.063618,-2.063578,-2.063583,-2.063561,-2.063523,-2.063547,-2.06356,-2.063523,-2.063462,-2.063362,-2.063264,-2.06316,-2.063099,-2.063023,-2.062929,-2.062829,-2.062753,-2.062686,-2.062629,-2.062582,-2.062552,-2.062463,-2.062416,-2.062365,-2.062336,-2.062324,-2.062311,-2.062319,-2.062281,-2.06222,-2.062264,-2.062376,-2.062402,-2.062553,-2.06272,-2.06286,-2.062914,-2.062927,-2.06294,-2.062935,-2.063001,-2.063014,-2.063105,-2.063151,-2.063103,-2.063099,-2.063147,-2.063251,-2.063347,-2.063443,-2.063436,-2.063478,-2.063614,-2.063778,-2.063946,-2.064114,-2.064267,-2.064426,-2.064564,-2.064726,-2.064877,-2.065023,-2.065162,-2.065324,-2.065472,-2.065617,-2.065777,-2.065909,-2.065836,-2.0657,-2.065577,-2.065409,-2.065256,-2.065158,-2.065267,-2.065223,-2.065078,-2.064957,-2.064819,-2.064687,-2.064565,-2.064524,-2.064466,-2.064428,-2.064404,-2.064415,-2.064334,-2.064314,-2.064251,-2.064187,-2.064104,-2.064062,-2.063993,-2.063953,-2.063932,-2.06393,-2.063864,-2.06381,-2.063753,-2.063703,-2.063679,-2.063585,-2.063522,-2.063457,-2.063387,-2.063323,-2.063223,-2.063156,-2.063113,-2.063091,-2.063048,-2.063016,-2.062996,-2.062977,-2.062943,-2.062915,-2.062905,-2.062896,-2.06287,-2.062822,-2.062834,-2.06281,-2.062796,-2.0628,-2.062812,-2.062819,-2.062807,-2.062827,-2.062847,-2.062891,-2.063013,-2.06312,-2.063246,-2.06321,-2.063113,-2.063002,-2.062903,-2.062829,-2.062806,-2.062771,-2.062773,-2.062747,-2.062713,-2.062648,-2.062584,-2.062513,-2.062422,-2.062436,-2.06236,-2.062316,-2.062278,-2.062217,-2.062179,-2.062143,-2.062072,-2.062021,-2.061924,-2.06187,-2.061805,-2.061752,-2.061756,-2.061645,-2.061552,-2.061394,-2.061267,-2.061111,-2.061034,-2.061081,-2.061106,-2.061062,-2.06113,-2.061127,-2.061104,-2.061126,-2.061149,-2.061092,-2.061073,-2.061052,-2.060957,-2.060878,-2.060797,-2.060725,-2.060575,-2.06055,-2.060603,-2.060461,-2.060411,-2.0604,-2.0604,-2.060408,-2.060261,-2.060116,-2.060017,-2.059891,-2.059823,-2.059757,-2.059662,-2.059582,-2.05953,-2.05948,-2.059494,-2.059413,-2.059298,-2.059166,-2.059056,-2.058963,-2.05883,-2.058699,-2.058607,-2.058488,-2.058371,-2.058282,-2.058138,-2.057994,-2.057919,-2.057795,-2.0577,-2.057609,-2.057522,-2.057385,-2.057312,-2.057379,-2.057515,-2.057629,-2.057728,-2.057817,-2.057918,-2.05802,-2.05809,-2.058174,-2.058302,-2.05845,-2.058599,-2.05869,-2.058848,-2.058914,-2.05892,-2.058937,-2.059015,-2.059085,-2.059165,-2.059224,-2.059365,-2.059452,-2.059574,-2.059669,-2.059795,-2.059892,-2.059934,-2.060087,-2.060236,-2.060399,-2.060565,-2.060636,-2.060629,-2.060578,-2.060505,-2.060487,-2.060466,-2.06043,-2.060392,-2.060313,-2.060275,-2.06032,-2.06033,-2.060294,-2.0603,-2.060272,-2.060238,-2.060212,-2.060171,-2.060189,-2.060179,-2.060186,-2.060165,-2.060152,-2.060126,-2.060061,-2.059958,-2.059886,-2.059874,-2.059843,-2.059834,-2.059834,-2.059817,-2.059775,-2.059741,-2.059714,-2.059675,-2.059644,-2.059641,-2.059744,-2.059648,-2.059614,-2.059477,-2.059486,-2.059395,-2.059339,-2.059308,-2.059282,-2.059151,-2.05902,-2.058872,-2.058739,-2.058615,-2.058487,-2.058318,-2.058218,-2.05814,-2.05802,-2.057945,-2.057816,-2.057664,-2.057586,-2.057503,-2.057406,-2.057273,-2.057144,-2.057089,-2.056981,-2.056834,-2.056719,-2.056607,-2.056521,-2.056444,-2.056459,-2.056316,-2.05621,-2.056102,-2.05599,-2.055885,-2.055786,-2.055685,-2.055574,-2.055452,-2.055372,-2.055328,-2.055379,-2.055385,-2.055345,-2.055273,-2.055241,-2.055226,-2.055253,-2.055175,-2.055071,-2.055037,-2.055054,-2.055014,-2.055037,-2.055053,-2.055081,-2.055071,-2.055027,-2.055094,-2.055163,-2.055127,-2.055084,-2.054943,-2.054877,-2.05481,-2.054682,-2.054523,-2.054375,-2.054211,-2.05405,-2.053883,-2.053742,-2.05358,-2.05354,-2.053661,-2.053728,-2.053761,-2.053856,-2.053882,-2.053936,-2.054019,-2.053998,-2.053866,-2.053742,-2.053598,-2.053467,-2.053348,-2.053277,-2.053201,-2.053132,-2.053078,-2.052988,-2.052856,-2.052798,-2.052785,-2.052726,-2.052642,-2.052699,-2.052795,-2.052925,-2.053025,-2.053139,-2.053256,-2.05339,-2.053527,-2.053625,-2.053742,-2.053875,-2.053938,-2.054065,-2.054204,-2.05429,-2.054377,-2.054473,-2.054546,-2.05456,-2.054485,-2.054406,-2.054331,-2.054251,-2.054172,-2.054074,-2.054021,-2.053953,-2.053877,-2.05381,-2.05373,-2.053647,-2.053655,-2.05366,-2.053667,-2.05359,-2.053569,-2.053588,-2.053584,-2.053544,-2.053501,-2.053432,-2.053372,-2.053292,-2.053205,-2.05308,-2.053068,-2.052973,-2.052843,-2.052798,-2.052729,-2.052837,-2.052884,-2.052791,-2.052798,-2.052928,-2.053077,-2.053173,-2.05328,-2.053416,-2.053536,-2.053595,-2.053738,-2.053884,-2.054044,-2.054219,-2.054387,-2.054525,-2.054679,-2.054632,-2.054575,-2.054675,-2.05462,-2.05466,-2.054673,-2.054628,-2.054624,-2.054688,-2.054841,-2.05471,-2.054538,-2.054385,-2.054234,-2.054086,-2.053929,-2.053772,-2.05361,-2.053453,-2.053305,-2.053219,-2.053224,-2.053072,-2.052955,-2.052942,-2.052879,-2.052867,-2.052794,-2.052737,-2.052731,-2.052717,-2.052643,-2.052571,-2.052504,-2.05248,-2.052465,-2.052453,-2.052462,-2.052439,-2.052388,-2.052345,-2.052293,-2.052278,-2.052293,-2.052271,-2.05226,-2.052242,-2.052249,-2.052208,-2.052195,-2.052204,-2.052181,-2.05222,-2.052295,-2.052448,-2.052605,-2.052734,-2.05285,-2.05295,-2.053064,-2.053145,-2.053145,-2.05316,-2.053141,-2.053186,-2.053226,-2.053265,-2.053316,-2.053272,-2.053293,-2.053365,-2.053396,-2.053415,-2.053482,-2.053484,-2.05352,-2.053535,-2.053615,-2.053633,-2.053683,-2.053673,-2.053679,-2.05371,-2.053702,-2.053708,-2.053711,-2.053785,-2.053859,-2.053915,-2.053955,-2.053964,-2.054021,-2.054019,-2.054039,-2.054105,-2.054157,-2.054168,-2.054213,-2.054182,-2.054226,-2.054301,-2.054402,-2.054503,-2.054599,-2.054708,-2.054769,-2.054811,-2.054873,-2.054998,-2.055011,-2.054895,-2.054754,-2.054597,-2.054434,-2.054321,-2.054176,-2.054023,-2.053851,-2.053696,-2.053554,-2.053451,-2.053316,-2.053168,-2.053039,-2.052905,-2.052809,-2.052669,-2.052516,-2.052372,-2.052242,-2.052101,-2.05197,-2.051854,-2.051714,-2.051591,-2.051455,-2.051284,-2.051116,-2.050963,-2.050808,-2.050639,-2.050485,-2.050335,-2.05018,-2.050032,-2.049876,-2.049708,-2.049569,-2.04941,-2.049242,-2.049103,-2.04896,-2.048821,-2.048698,-2.048554,-2.048421,-2.048303,-2.048162,-2.048092,-2.048,-2.04785,-2.047727,-2.047824,-2.04768,-2.04753,-2.047385,-2.047247,-2.04709,-2.046958,-2.046813,-2.046701,-2.0466,-2.046545,-2.046479,-2.046323,-2.046189,-2.046029,-2.045897,-2.045783,-2.045627,-2.045477,-2.045321,-2.045199,-2.045039,-2.044884,-2.044717,-2.044566,-2.044421,-2.044271,-2.044124,-2.043973,-2.043926,-2.043979,-2.044082,-2.044215,-2.044336,-2.044447,-2.044502,-2.0445,-2.044514,-2.044557,-2.044589,-2.044653,-2.044735,-2.044833,-2.044968,-2.045122,-2.045187,-2.045267,-2.045386,-2.045509,-2.045625,-2.045711,-2.045799,-2.04583,-2.045904,-2.046004,-2.046023,-2.045975,-2.046021,-2.046171,-2.046131,-2.046288,-2.046443,-2.0466,-2.046755,-2.046866,-2.04701,-2.047057,-2.047074,-2.04719,-2.047197,-2.047344,-2.047386,-2.047424,-2.047472,-2.047582,-2.047691,-2.047792,-2.04787,-2.047978,-2.047968,-2.048022,-2.048138,-2.048204,-2.048252,-2.048349,-2.048397,-2.048413,-2.048512,-2.048586,-2.048599,-2.048642,-2.048614,-2.048566,-2.0485,-2.048468,-2.048414,-2.048313,-2.048258,-2.048164,-2.048075,-2.048002,-2.047928,-2.047846,-2.047754,-2.047621,-2.047527,-2.04743,-2.047401,-2.047415,-2.047481,-2.04756,-2.047664,-2.047769,-2.047881,-2.047943,-2.048044,-2.048156,-2.048286,-2.048292,-2.048256,-2.048287,-2.048397,-2.048543,-2.048587,-2.048577,-2.048565,-2.04853,-2.048576,-2.048544,-2.048515,-2.048442,-2.048375,-2.048391,-2.048331,-2.048257,-2.048231,-2.048137,-2.048082,-2.047976,-2.047953,-2.047874,-2.047774,-2.047669,-2.047606,-2.047521,-2.047468,-2.04739,-2.047404,-2.04747,-2.047421,-2.047407,-2.047519,-2.047596,-2.047698,-2.047707,-2.047715,-2.047752,-2.047759,-2.047806,-2.047792,-2.047765,-2.047759,-2.047663,-2.047594,-2.047605,-2.047505,-2.047382,-2.047265,-2.047122,-2.046966,-2.046905,-2.046793,-2.04671,-2.046643,-2.046539,-2.046512,-2.046356,-2.046214,-2.0461,-2.045936,-2.045781,-2.04562,-2.045481,-2.045318,-2.045164,-2.045011,-2.044873,-2.044743,-2.044635,-2.044553,-2.044499,-2.044454,-2.044424,-2.044367,-2.044357,-2.044279,-2.044205,-2.044094,-2.044033,-2.044008,-2.043932,-2.043932,-2.044013,-2.044052,-2.043974,-2.043997,-2.043948,-2.044019,-2.044036,-2.044032,-2.044018,-2.044056,-2.044023,-2.043948,-2.043923,-2.04386,-2.043811,-2.043874,-2.043912,-2.043911,-2.043927,-2.043908,-2.043836,-2.04374,-2.04362,-2.043514,-2.04339,-2.043285,-2.04313,-2.042999,-2.042853,-2.04274,-2.04259,-2.042415,-2.042259,-2.042105,-2.04195,-2.041818,-2.041712,-2.041578,-2.04146,-2.041348,-2.04121,-2.041127,-2.041024,-2.040937,-2.040881,-2.040805,-2.040721,-2.040677,-2.040729,-2.040726,-2.040757,-2.040835,-2.040859,-2.040823,-2.04084,-2.040873,-2.040849,-2.040823,-2.040786,-2.040776,-2.040773,-2.040753,-2.040752,-2.040761,-2.040742,-2.04069,-2.040664,-2.040632,-2.040622,-2.040679,-2.040658,-2.040569,-2.040525,-2.040532,-2.040551,-2.040643,-2.04071,-2.040825,-2.040915,-2.04094,-2.040955,-2.040968,-2.041001,-2.040982,-2.040933,-2.040933,-2.040942,-2.040855,-2.040805,-2.040839,-2.040888,-2.040853,-2.040861,-2.040803,-2.040826,-2.040804,-2.04074,-2.040759,-2.040782,-2.040797,-2.040757,-2.040661,-2.040661,-2.040624,-2.04061,-2.040588,-2.040561,-2.040532,-2.04049,-2.040577,-2.04072,-2.04085,-2.040926,-2.040982,-2.040974,-2.040974,-2.040859,-2.04075,-2.040655,-2.040542,-2.040417,-2.040292,-2.04015,-2.039998,-2.039845,-2.039709,-2.039598,-2.039486,-2.039375,-2.039271,-2.039139,-2.039002,-2.038869,-2.038749,-2.038626,-2.038496,-2.038373,-2.038377,-2.038247,-2.038105,-2.037971,-2.037865,-2.037769,-2.037623,-2.037504,-2.037358,-2.037193,-2.037045,-2.036895,-2.036739,-2.036589,-2.036445,-2.036319,-2.036217,-2.036099,-2.035971,-2.035841,-2.035701,-2.035573,-2.035407,-2.035305,-2.035191,-2.035062,-2.034927,-2.034758,-2.034597,-2.034481,-2.034341,-2.034217,-2.03406,-2.033911,-2.033761,-2.033645,-2.033531,-2.033385,-2.033255,-2.033094,-2.032963,-2.032843,-2.032717,-2.032587,-2.032481,-2.032401,-2.032306,-2.032226,-2.03216,-2.032065,-2.031986,-2.031894,-2.0318,-2.031722,-2.031602,-2.031501,-2.031412,-2.031378,-2.031264,-2.031144,-2.031046,-2.030903,-2.030793,-2.030752,-2.030779,-2.030662,-2.030564,-2.030484,-2.030426,-2.030268,-2.030233,-2.030201,-2.030138,-2.02999,-2.02988,-2.029767,-2.029662,-2.029624,-2.029546,-2.029439,-2.029364,-2.029273,-2.029234,-2.029137,-2.029102,-2.029096,-2.028993,-2.028865,-2.028733,-2.02864,-2.028572,-2.02844,-2.028384,-2.028274,-2.028161,-2.028077,-2.028034,-2.027922,-2.027848,-2.027768,-2.027691,-2.027566,-2.027466,-2.027324,-2.027233,-2.02717,-2.027174,-2.027077,-2.026974,-2.026893,-2.026792,-2.026681,-2.026595,-2.026521,-2.026422,-2.026338,-2.026294,-2.026227,-2.02612,-2.026012,-2.025914,-2.025805,-2.025716,-2.025701,-2.025593,-2.02551,-2.02542,-2.025314,-2.025233,-2.025155,-2.025045,-2.024952,-2.024875,-2.024766,-2.024664,-2.024577,-2.024477,-2.024372,-2.024253,-2.024155,-2.024305,-2.024211,-2.024093,-2.02398,-2.023831,-2.023692,-2.023557,-2.023424,-2.023428,-2.023504,-2.023663,-2.023796,-2.02374,-2.023635,-2.02353,-2.023404,-2.023334,-2.023347,-2.023436,-2.023603,-2.023724,-2.02385,-2.023976,-2.024072,-2.02419,-2.024254,-2.024088,-2.023943,-2.023798,-2.02364,-2.023482,-2.023355,-2.02325,-2.0231,-2.022964,-2.022844,-2.022709,-2.022589,-2.022467,-2.022335,-2.022189,-2.022084,-2.021944,-2.021805,-2.021685,-2.021556,-2.021395,-2.021265,-2.021114,-2.020952,-2.020803,-2.020662,-2.020534,-2.020359,-2.020252,-2.020169,-2.020301,-2.020035,-2.019923,-2.019822,-2.019749,-2.019682,-2.019639,-2.019688,-2.019654,-2.01959,-2.019447,-2.019402,-2.019357,-2.019326,-2.019304,-2.019351,-2.01942,-2.019339,-2.019354,-2.019272,-2.019136,-2.019028,-2.018873,-2.018751,-2.018603,-2.018728,-2.018895,-2.01905,-2.019171,-2.019242,-2.019409,-2.01958,-2.019751,-2.019909,-2.020049,-2.020023,-2.019983,-2.019861,-2.019852,-2.019853,-2.019931,-2.020083,-2.020243,-2.020381,-2.020549,-2.020707,-2.020834,-2.020821,-2.020956,-2.021013,-2.021138,-2.021219,-2.021321,-2.021425,-2.021539,-2.021645,-2.021726,-2.021696,-2.021757,-2.021897,-2.021952,-2.022077,-2.02223,-2.022269,-2.022145,-2.022009,-2.021868,-2.021719,-2.021569,-2.021419,-2.021284,-2.021136,-2.020985,-2.020917,-2.020954,-2.020984,-2.020995,-2.021025,-2.020993,-2.020978,-2.020941,-2.020877,-2.020762,-2.02063,-2.020516,-2.020506,-2.020486,-2.020587,-2.020593,-2.020434,-2.020434,-2.02054,-2.0204,-2.020309,-2.02037,-2.02042,-2.020381,-2.020364,-2.020434,-2.020445,-2.020478,-2.020626,-2.020507,-2.020557,-2.020689,-2.020803,-2.02094,-2.020836,-2.020677,-2.020601,-2.020511,-2.020449,-2.020302,-2.020123,-2.019989,-2.019843,-2.019684,-2.019524,-2.019352,-2.019195,-2.019041,-2.018968,-2.018865,-2.018788,-2.018723,-2.018596,-2.018462,-2.018412,-2.018291,-2.018125,-2.018055,-2.01791,-2.01778,-2.017733,-2.017561,-2.017436,-2.017287,-2.017156,-2.017024,-2.016877,-2.016728,-2.016577,-2.016435,-2.016282,-2.016141,-2.01602,-2.015871,-2.015758,-2.015625,-2.015479,-2.015309,-2.015148,-2.014985,-2.014871,-2.014809,-2.014737,-2.014653,-2.014593,-2.014442,-2.014445,-2.014355,-2.014323,-2.014222,-2.014264,-2.014169,-2.01406,-2.013953,-2.013803,-2.013706,-2.01359,-2.013469,-2.013322,-2.013166,-2.013008,-2.012855,-2.012702,-2.012553,-2.012418,-2.012266,-2.012128,-2.011987,-2.011848,-2.011716,-2.011577,-2.011422,-2.011254,-2.011111,-2.010953,-2.01079,-2.010621,-2.01049,-2.010368,-2.010263,-2.010152,-2.010016,-2.009872,-2.009755,-2.009603,-2.009445,-2.009294,-2.009123,-2.008971,-2.008859,-2.00871,-2.008586,-2.008473,-2.00831,-2.008151,-2.007986,-2.007816,-2.007712,-2.007643,-2.007562,-2.007413,-2.007338,-2.007161,-2.007016,-2.006922,-2.006959,-2.006852,-2.006735,-2.006689,-2.006596,-2.006509,-2.006484,-2.006466,-2.006513,-2.006409,-2.006346,-2.006258,-2.006334,-2.006284,-2.006272,-2.006234,-2.006156,-2.006151,-2.006092,-2.006064,-2.006042,-2.006079,-2.006158,-2.006219,-2.006195,-2.006167,-2.006066,-2.005979,-2.005919,-2.005798,-2.005658,-2.005547,-2.00551,-2.005356,-2.005199,-2.005048,-2.004908,-2.004748,-2.004595,-2.004433,-2.004274,-2.004121,-2.004207,-2.004245,-2.004397,-2.004552,-2.004601,-2.004753,-2.004894,-2.005032,-2.005133,-2.005032,-2.005062,-2.005034,-2.005024,-2.00497,-2.004991,-2.00494,-2.004981,-2.004904,-2.004903,-2.004978,-2.004977,-2.005005,-2.004937,-2.005037,-2.005052,-2.00505,-2.004915,-2.005032,-2.004951,-2.005038,-2.00519,-2.005236,-2.005164,-2.005089,-2.004989,-2.004881,-2.004771,-2.004821,-2.004841,-2.004739,-2.004662,-2.004594,-2.004508,-2.004543,-2.00461,-2.004758,-2.004916,-2.00507,-2.005235,-2.005389,-2.005541,-2.005692,-2.005853,-2.00601,-2.006147,-2.006304,-2.006474,-2.006615,-2.006767,-2.006933,-2.007075,-2.007217,-2.007361,-2.007458,-2.00757,-2.007706,-2.00785,-2.008007,-2.008162,-2.008298,-2.008433,-2.008576,-2.008737,-2.008887,-2.009034,-2.009161,-2.00931,-2.00946,-2.009607,-2.009646,-2.009811,-2.009932,-2.010066,-2.010207,-2.010345,-2.010448,-2.010598,-2.010726,-2.010894,-2.011049,-2.011205,-2.011369,-2.011534,-2.011691,-2.011845,-2.012001,-2.01216,-2.012314,-2.012465,-2.012598,-2.012765,-2.012919,-2.013072,-2.013219,-2.013382,-2.013538,-2.01369,-2.013826,-2.013976,-2.014136,-2.014278,-2.01444,-2.014586,-2.014741,-2.014899,-2.015049,-2.015202,-2.015337,-2.01545,-2.015616,-2.015775,-2.015927,-2.016097,-2.01626,-2.016416,-2.016575,-2.016741,-2.016898,-2.017044,-2.017216,-2.017366,-2.017514,-2.017677,-2.017845,-2.017996,-2.018169,-2.018332,-2.018464,-2.018605,-2.018763,-2.018888,-2.019013,-2.019151,-2.019286,-2.019399,-2.01954,-2.019665,-2.019813,-2.019955,-2.020067,-2.020175,-2.020304,-2.020416,-2.020542,-2.020672,-2.020811,-2.020958,-2.021092,-2.021232,-2.021381,-2.021525,-2.021671,-2.021808,-2.021969,-2.022134,-2.022284,-2.022427,-2.022574,-2.022719,-2.02286,-2.023002,-2.023083,-2.023149,-2.023207,-2.02329,-2.023444,-2.023588,-2.023748,-2.023876,-2.024011,-2.024117,-2.024259,-2.024399,-2.024565,-2.024715,-2.024831,-2.024934,-2.025031,-2.025172,-2.025314,-2.025431,-2.025551,-2.025671,-2.025755,-2.02586,-2.025965,-2.026031,-2.026141,-2.026194,-2.02621,-2.026247,-2.026379,-2.026504,-2.026578,-2.026631,-2.026679,-2.026697,-2.026735,-2.026732,-2.026741,-2.026816,-2.026825,-2.026865,-2.02696,-2.027026,-2.027093,-2.027198,-2.027278,-2.027404,-2.027526,-2.027653,-2.0277,-2.027745,-2.027798,-2.027875,-2.027996,-2.028077,-2.028127,-2.028279,-2.028406,-2.028522,-2.028635,-2.028759,-2.028867,-2.028965,-2.029045,-2.029147,-2.029227,-2.029327,-2.029404,-2.029478,-2.029567,-2.029659,-2.029697,-2.02979,-2.029877,-2.029936,-2.030049,-2.03014,-2.030259,-2.03037,-2.030461,-2.030441,-2.030326,-2.030189,-2.030115,-2.030122,-2.030181,-2.030255,-2.030264,-2.030165,-2.030123,-2.030058,-2.030001,-2.02994,-2.029945,-2.029912,-2.029887,-2.02993,-2.029949,-2.029857,-2.02972,-2.029619,-2.029555,-2.029563,-2.029617,-2.029523,-2.029455,-2.029435,-2.029538,-2.02959,-2.02972,-2.029835,-2.029921,-2.029955,-2.029996,-2.030056,-2.030117,-2.030135,-2.030227,-2.030291,-2.030369,-2.030392,-2.030479,-2.030511,-2.030544,-2.030617,-2.030713,-2.030839,-2.030958,-2.031067,-2.031172,-2.031287,-2.031403,-2.03151,-2.031594,-2.031654,-2.031756,-2.031896,-2.031976,-2.031982,-2.032053,-2.032175,-2.032288,-2.032391,-2.032503,-2.032611,-2.032748,-2.032864,-2.032935,-2.033001,-2.033068,-2.033178,-2.033291,-2.033398,-2.033486,-2.033585,-2.033673,-2.03382,-2.033931,-2.034037,-2.034127,-2.034252,-2.034353,-2.034477,-2.034627,-2.034768,-2.034864,-2.034998,-2.035155,-2.035223,-2.03521,-2.035177,-2.035142,-2.035223,-2.035294,-2.035343,-2.035454,-2.035546,-2.035642,-2.035774,-2.035905,-2.036034,-2.036176,-2.036288,-2.036379,-2.036499,-2.036617,-2.036758,-2.036891,-2.037022,-2.037172,-2.037316,-2.037457,-2.037593,-2.037733,-2.037868,-2.037994,-2.038133,-2.038281,-2.038429,-2.038559,-2.038644,-2.038743,-2.03884,-2.038985,-2.039127,-2.039258,-2.039405,-2.039527,-2.039682,-2.039799,-2.039935,-2.040078,-2.040197,-2.040329,-2.040454,-2.040578,-2.040718,-2.04087,-2.040966,-2.0411,-2.041251,-2.041412,-2.041533,-2.041664,-2.041806,-2.041957,-2.042083,-2.042202,-2.042278,-2.042403,-2.042534,-2.042564,-2.042682,-2.042753,-2.042903,-2.043031,-2.043133,-2.043259,-2.043331,-2.043472,-2.043621,-2.043721,-2.043885,-2.044036,-2.044199,-2.044352,-2.044491,-2.04465,-2.044781,-2.044928,-2.04508,-2.045187,-2.045323,-2.045439,-2.045531,-2.045635,-2.045755,-2.045868,-2.046005,-2.046151,-2.046308,-2.046445,-2.046588,-2.046734,-2.046861,-2.046996,-2.047109,-2.047251,-2.047413,-2.047559,-2.047709,-2.047833,-2.047922,-2.048008,-2.048115,-2.048103,-2.048081,-2.048061,-2.048047,-2.048021,-2.04805,-2.048038,-2.048073,-2.048098,-2.048193,-2.04831,-2.048369,-2.048453,-2.048602,-2.048743,-2.048886,-2.049008,-2.049087,-2.049156,-2.049226,-2.049307,-2.049372,-2.049459,-2.04951,-2.049592,-2.049668,-2.049675,-2.049727,-2.049751,-2.049813,-2.04987,-2.049922,-2.049955,-2.050004,-2.050046,-2.050095,-2.050168,-2.050283,-2.050397,-2.050512,-2.050604,-2.050713,-2.050829,-2.050902,-2.050968,-2.051058,-2.051159,-2.051265,-2.051378,-2.05148,-2.051585,-2.051733,-2.051882,-2.05204,-2.052191,-2.052322,-2.052469,-2.052632,-2.05277,-2.052911,-2.053049,-2.053175,-2.053333,-2.053469,-2.053615,-2.053759,-2.053915,-2.054049,-2.054153,-2.054287,-2.054442,-2.0546,-2.054756,-2.054864,-2.055021,-2.055169,-2.055315,-2.055469,-2.055632,-2.055804,-2.055958,-2.056121,-2.056282,-2.056418,-2.056573,-2.056729,-2.056878,-2.057036,-2.057202,-2.057347,-2.057496,-2.057647,-2.057794,-2.057938,-2.058084,-2.058227,-2.058363,-2.058516,-2.058656,-2.058778,-2.058905,-2.059009,-2.059122,-2.059229,-2.059346,-2.059466,-2.059604,-2.059696,-2.059783,-2.05987,-2.059882,-2.059901,-2.059975,-2.06006,-2.060155,-2.060251,-2.060344,-2.06042,-2.060485,-2.060616,-2.060704,-2.060813,-2.060898,-2.061006,-2.061045,-2.061149,-2.061307,-2.061465,-2.061612,-2.061749,-2.061838,-2.061924,-2.06201,-2.062089,-2.062192,-2.062282,-2.062405,-2.062495,-2.062578,-2.062699,-2.062765,-2.062785,-2.062884,-2.062986,-2.063091,-2.063195,-2.063347,-2.063477,-2.063616,-2.063762,-2.06389,-2.064028,-2.064168,-2.064296,-2.064441,-2.064576,-2.06465,-2.064789,-2.064915,-2.065056,-2.065205,-2.065354,-2.065483,-2.065624,-2.065753,-2.065892,-2.065955,-2.06612,-2.066272,-2.066371,-2.066512,-2.066659,-2.066816,-2.066965,-2.067,-2.067132,-2.067285,-2.067454,-2.067599,-2.067726,-2.067767,-2.067859,-2.067991,-2.068097,-2.068205,-2.068311,-2.068425,-2.068546,-2.068675,-2.068793,-2.068915,-2.069029,-2.06914,-2.069246,-2.069359,-2.069473,-2.069574,-2.069659,-2.069739,-2.069817,-2.069891,-2.069975,-2.070044,-2.07013,-2.070201,-2.070275,-2.07034,-2.070394,-2.070462,-2.070557,-2.070591,-2.070581,-2.070595,-2.070655,-2.070753,-2.070867,-2.070981,-2.071084,-2.071163,-2.071249,-2.071327,-2.071409,-2.071496,-2.071575,-2.071662,-2.071742,-2.071809,-2.071888,-2.071946,-2.071992,-2.072048,-2.072102,-2.072169,-2.072266,-2.072391,-2.072537,-2.072674,-2.072803,-2.072966,-2.073053,-2.073204,-2.073364,-2.073536,-2.07368,-2.073812,-2.073972,-2.074132,-2.074287,-2.074446,-2.074617,-2.07476,-2.074879,-2.075031,-2.075197,-2.075349,-2.075499,-2.075647,-2.075798,-2.075923,-2.076074,-2.076219,-2.076379,-2.076528,-2.076691,-2.076846,-2.076979,-2.07714,-2.077303,-2.077451,-2.077591,-2.077763,-2.07791,-2.07807,-2.078218,-2.078364,-2.078516,-2.078662,-2.078804,-2.078957,-2.079105,-2.079251,-2.079409,-2.079547,-2.07973,-2.079852,-2.079986,-2.080138,-2.080271,-2.080421,-2.080574,-2.080729,-2.080884,-2.081046,-2.081208,-2.081348,-2.081505,-2.081633,-2.081763,-2.08181,-2.081942,-2.082018,-2.08217,-2.082156,-2.082048,-2.081964,-2.081895,-2.081825,-2.081802,-2.081695,-2.081663,-2.081684,-2.081707,-2.081718,-2.081759,-2.081779,-2.081727,-2.081681,-2.08159,-2.081511,-2.081445,-2.08134,-2.081297,-2.081219,-2.081189,-2.081125,-2.081118,-2.081081,-2.081131,-2.081128,-2.081068,-2.081051,-2.081039,-2.081053,-2.081063,-2.081063,-2.081059,-2.081038,-2.081045,-2.080988,-2.080925,-2.080853,-2.080784,-2.080728,-2.08066,-2.080574,-2.080561,-2.080554,-2.080569,-2.080634,-2.080713,-2.080814,-2.080941,-2.081084,-2.081231,-2.081393,-2.081543,-2.081696,-2.08185,-2.081999,-2.082151,-2.082308,-2.082466,-2.082617,-2.082768,-2.082913,-2.08307,-2.08322,-2.083374,-2.083515,-2.083637,-2.083787,-2.083943,-2.084107,-2.084261,-2.084422,-2.084553,-2.084696,-2.084846,-2.084993,-2.085147,-2.085301,-2.085435,-2.085577,-2.085719,-2.085862,-2.086015,-2.086132,-2.086274,-2.086392,-2.086506,-2.086584,-2.086642,-2.08661,-2.086544,-2.086499,-2.086475,-2.086431,-2.086424,-2.086389,-2.086368,-2.086335,-2.08631,-2.086281,-2.086256,-2.086235,-2.086207,-2.086176,-2.086139,-2.08613,-2.086069,-2.086023,-2.086014,-2.086105,-2.086089,-2.086065,-2.086013,-2.086005,-2.086009,-2.085936,-2.085871,-2.085808,-2.085786,-2.085754,-2.085726,-2.085673,-2.08562,-2.085547,-2.08556,-2.085509,-2.085413,-2.085273,-2.085111,-2.084957,-2.084786,-2.084624,-2.084466,-2.084309,-2.084146,-2.083982,-2.083828,-2.083657,-2.083505,-2.083334,-2.083176,-2.082997,-2.082844,-2.082685,-2.082525,-2.082372,-2.082261,-2.082308,-2.082424,-2.082513,-2.082609,-2.082694,-2.082748,-2.082702,-2.08273,-2.082678,-2.082682,-2.082681,-2.082674,-2.082638,-2.082648,-2.08264,-2.082621,-2.082596,-2.08258,-2.082515,-2.082451,-2.082434,-2.082445,-2.082441,-2.082452,-2.082475,-2.082457,-2.082441,-2.082457,-2.082446,-2.08244,-2.082379,-2.082303,-2.082251,-2.082256,-2.082243,-2.082272,-2.082288,-2.082248,-2.08224,-2.082246,-2.08223,-2.082252,-2.082141,-2.081981,-2.081824,-2.081653,-2.081486,-2.081325,-2.081163,-2.081005,-2.080838,-2.080696,-2.080549,-2.080384,-2.080233,-2.080078,-2.079915,-2.079757,-2.079601,-2.079442,-2.079295,-2.079135,-2.078974,-2.078824,-2.078665,-2.078495,-2.078333,-2.078204,-2.078076,-2.077929,-2.077781,-2.077668,-2.07753,-2.077395,-2.077243,-2.077091,-2.07694,-2.076788,-2.076619,-2.076465,-2.076337,-2.076177,-2.076025,-2.075865,-2.075719,-2.075564,-2.075407,-2.07527,-2.07518,-2.075052,-2.07492,-2.074769,-2.074611,-2.074449,-2.074312,-2.074229,-2.074079,-2.073927,-2.073771,-2.073653,-2.073518,-2.0734,-2.073252,-2.073086,-2.072915,-2.072761,-2.072626,-2.072469,-2.072311,-2.072157,-2.071991,-2.07184,-2.071681,-2.071519,-2.071363,-2.071208,-2.071071,-2.070929,-2.070775,-2.070611,-2.070455,-2.070288,-2.070128,-2.069987,-2.069843,-2.06968,-2.069518,-2.06936,-2.069205,-2.069047,-2.068924,-2.068833,-2.068694,-2.068546,-2.068452,-2.068355,-2.068202,-2.06805,-2.067915,-2.067816,-2.067719,-2.067613,-2.067509,-2.06741,-2.067326,-2.067234,-2.067099,-2.066964,-2.066838,-2.066704,-2.066553,-2.066403,-2.066253,-2.066123,-2.06599,-2.065845,-2.065695,-2.065588,-2.065459,-2.065345,-2.065232,-2.065081,-2.064948,-2.064845,-2.064719,-2.064661,-2.06463,-2.064552,-2.064459,-2.064304,-2.064168,-2.064038,-2.063901,-2.063755,-2.063609,-2.063442,-2.063281,-2.063186,-2.063224,-2.063349,-2.06333,-2.063262,-2.06309,-2.062948,-2.062893,-2.062827,-2.062825,-2.062795,-2.06269,-2.062627,-2.062532,-2.062439,-2.062325,-2.062222,-2.062124,-2.062039,-2.061979,-2.061876,-2.061736,-2.061598,-2.061512,-2.061411,-2.061365,-2.061307,-2.061183,-2.061069,-2.060967,-2.060867,-2.060747,-2.060628,-2.060508,-2.060383,-2.06026,-2.06015,-2.060033,-2.059928,-2.059798,-2.059686,-2.059601,-2.059491,-2.059395,-2.05929,-2.0592,-2.059128,-2.059071,-2.059068,-2.059013,-2.058921,-2.059044,-2.058963,-2.058871,-2.058934,-2.05893,-2.0589,-2.058874,-2.058754,-2.058598,-2.058518,-2.05844,-2.0584,-2.058281,-2.058155,-2.058053,-2.057922,-2.057808,-2.057723,-2.057662,-2.057554,-2.057462,-2.057368,-2.057241,-2.057159,-2.05702,-2.056915,-2.05677,-2.056664,-2.056605,-2.056552,-2.056483,-2.056427,-2.056319,-2.056254,-2.056198,-2.056138,-2.05604,-2.055935,-2.055848,-2.055765,-2.0557,-2.055635,-2.055553,-2.055492,-2.055477,-2.055378,-2.055325,-2.055227,-2.055123,-2.055051,-2.054953,-2.054862,-2.054802,-2.05478,-2.054653,-2.054545,-2.054536,-2.054418,-2.054377,-2.054301,-2.054221,-2.054138,-2.054041,-2.053904,-2.053788,-2.053758,-2.053698,-2.053647,-2.053536,-2.05352,-2.05342,-2.053333,-2.053243,-2.053159,-2.053116,-2.052991,-2.052878,-2.052759,-2.052678,-2.052654,-2.052657,-2.052635,-2.052641,-2.052694,-2.052742,-2.05282,-2.052911,-2.053027,-2.053049,-2.053124,-2.053233,-2.053321,-2.0534,-2.053464,-2.053564,-2.053641,-2.05373,-2.053783,-2.05373,-2.053788,-2.053918,-2.054068,-2.054212,-2.054209,-2.054188,-2.054195,-2.054274,-2.054429,-2.054571,-2.054659,-2.054728,-2.054835,-2.054867,-2.054908,-2.055001,-2.055013,-2.05508,-2.055172,-2.055136,-2.054988,-2.054862,-2.054999,-2.055157,-2.055314,-2.055161,-2.055136,-2.054971,-2.054809,-2.054641,-2.054484,-2.054326,-2.054157,-2.054001,-2.053834,-2.053665,-2.053507,-2.053355,-2.05319,-2.053027,-2.052877,-2.052888,-2.05293,-2.052853,-2.052832,-2.052813,-2.052848,-2.052805,-2.052793,-2.052815,-2.052817,-2.05277,-2.052674,-2.052798,-2.05296,-2.053103,-2.053244,-2.053389,-2.053519,-2.053659,-2.05379,-2.053941,-2.054099,-2.054237,-2.054372,-2.05446,-2.054591,-2.054748,-2.054895,-2.054912,-2.055018,-2.055183,-2.055312,-2.055423,-2.05553,-2.055655,-2.05578,-2.055898,-2.056021,-2.056122,-2.056151,-2.056319,-2.056417,-2.056509,-2.056641,-2.056777,-2.056908,-2.057028,-2.057158,-2.057266,-2.057404,-2.057536,-2.057635,-2.057815,-2.057991,-2.058138,-2.058156,-2.058248,-2.058274,-2.058513,-2.058664,-2.058679,-2.058672,-2.058717,-2.058814,-2.058845,-2.058863,-2.058878,-2.058892,-2.058843,-2.058901,-2.058987,-2.058929,-2.058798,-2.058723,-2.058648,-2.058658,-2.058725,-2.058618,-2.05856,-2.05842,-2.05826,-2.058179,-2.058235,-2.058388,-2.058369,-2.058459,-2.0586,-2.05874],"lat":[53.987112,53.987226,53.987125,53.987133,53.987074,53.987057,53.986956,53.986858,53.986769,53.986684,53.986592,53.986587,53.986666,53.986657,53.986599,53.986594,53.986531,53.986517,53.986476,53.986455,53.986428,53.986399,53.98631,53.986223,53.986137,53.986039,53.985957,53.985877,53.985787,53.985692,53.985601,53.985511,53.985425,53.98533,53.985233,53.985131,53.985031,53.984931,53.984831,53.984739,53.984645,53.984553,53.984459,53.984361,53.984271,53.9842,53.984134,53.984066,53.983986,53.98391,53.983812,53.98372,53.983634,53.983632,53.983605,53.983526,53.98344,53.983401,53.983358,53.983288,53.983242,53.983174,53.983104,53.983067,53.983033,53.983014,53.982969,53.98289,53.982807,53.982717,53.982625,53.982532,53.982442,53.982345,53.982254,53.982152,53.982061,53.981961,53.981868,53.981772,53.981764,53.981675,53.981576,53.981479,53.981393,53.981303,53.981205,53.98111,53.98101,53.980917,53.980822,53.980738,53.980713,53.980683,53.980639,53.980576,53.980511,53.980468,53.980431,53.980413,53.980393,53.98037,53.980344,53.980306,53.980287,53.980254,53.980206,53.980152,53.980114,53.980086,53.98004,53.979981,53.979913,53.97985,53.979797,53.979743,53.979679,53.979614,53.979558,53.979515,53.979462,53.979469,53.979455,53.979426,53.979403,53.979404,53.979404,53.979404,53.979383,53.979386,53.979378,53.979365,53.979354,53.979336,53.979325,53.979326,53.979296,53.979296,53.979299,53.979248,53.979223,53.979212,53.979212,53.979172,53.979084,53.979001,53.978894,53.9788,53.978703,53.978613,53.978525,53.978451,53.978384,53.978298,53.978226,53.978183,53.978148,53.978063,53.97798,53.977876,53.977772,53.977688,53.977603,53.977517,53.977429,53.977344,53.97725,53.977173,53.977087,53.976993,53.976898,53.976794,53.976702,53.976608,53.976518,53.976429,53.976331,53.976238,53.97614,53.97604,53.975941,53.975834,53.975754,53.975665,53.975575,53.975524,53.975439,53.975403,53.975313,53.975231,53.975165,53.975104,53.975048,53.974984,53.974934,53.974856,53.974806,53.974734,53.974686,53.974618,53.974535,53.974471,53.974408,53.974348,53.974283,53.974233,53.974165,53.974079,53.974016,53.973944,53.973862,53.97378,53.973724,53.973659,53.973589,53.973525,53.973451,53.973373,53.973307,53.973238,53.973175,53.973163,53.973079,53.973006,53.972942,53.972864,53.972794,53.972715,53.972641,53.972571,53.972489,53.972401,53.972328,53.972252,53.972165,53.972073,53.971994,53.971901,53.971894,53.971892,53.971821,53.971745,53.97169,53.971633,53.971544,53.971454,53.971381,53.971308,53.971241,53.9712,53.971106,53.971008,53.970955,53.970912,53.970823,53.970746,53.970662,53.970581,53.970502,53.97043,53.970339,53.970257,53.970176,53.97013,53.97005,53.969966,53.969889,53.969818,53.969729,53.969649,53.969572,53.96949,53.969407,53.969348,53.969271,53.969202,53.969129,53.969047,53.968966,53.968903,53.968828,53.968757,53.968693,53.96865,53.968605,53.968541,53.968512,53.96845,53.968385,53.968316,53.968247,53.968167,53.968094,53.968027,53.967967,53.967911,53.967841,53.967753,53.967682,53.967607,53.96753,53.967439,53.967353,53.967271,53.967188,53.967107,53.967022,53.966942,53.966861,53.966774,53.966683,53.9666,53.966511,53.966415,53.966331,53.966245,53.966161,53.966075,53.965985,53.965902,53.965812,53.965731,53.965655,53.965583,53.965496,53.965407,53.965309,53.965214,53.965122,53.965026,53.96493,53.96483,53.964727,53.96463,53.964537,53.964444,53.964347,53.964254,53.964162,53.964067,53.963974,53.963879,53.963787,53.963689,53.963598,53.963507,53.963413,53.963314,53.963279,53.963215,53.963122,53.963027,53.962934,53.962845,53.962754,53.962669,53.962583,53.962502,53.962422,53.962338,53.962243,53.962145,53.962059,53.961971,53.961883,53.961799,53.961706,53.961622,53.961555,53.961482,53.961408,53.96132,53.96129,53.961307,53.96126,53.961209,53.96113,53.961042,53.960942,53.960861,53.960765,53.960666,53.960572,53.960467,53.960366,53.960265,53.960174,53.960083,53.96,53.959911,53.959826,53.959746,53.959662,53.959573,53.959476,53.959393,53.959308,53.959212,53.959123,53.959034,53.958947,53.958872,53.958786,53.958697,53.95861,53.958524,53.958436,53.958347,53.958265,53.958171,53.958091,53.958007,53.95792,53.957836,53.95775,53.957668,53.957574,53.957511,53.957424,53.957334,53.957245,53.957167,53.957072,53.956981,53.956882,53.956784,53.956692,53.956616,53.956554,53.956637,53.956659,53.956649,53.95667,53.956717,53.956722,53.956758,53.956792,53.956816,53.95682,53.956847,53.956903,53.956925,53.956937,53.956911,53.956923,53.956973,53.956907,53.956871,53.956775,53.95668,53.956586,53.956498,53.956409,53.956312,53.956264,53.95582,53.955786,53.955715,53.95566,53.955567,53.955478,53.955378,53.955287,53.955191,53.955134,53.955043,53.955052,53.954988,53.954913,53.954852,53.954774,53.9547,53.954639,53.954589,53.954522,53.954457,53.954381,53.954296,53.954282,53.954191,53.954094,53.953993,53.953916,53.953895,53.953811,53.953721,53.953723,53.95364,53.953543,53.953469,53.953385,53.953299,53.953223,53.953135,53.953046,53.952955,53.952859,53.952771,53.952745,53.95266,53.952568,53.952474,53.952384,53.95229,53.952194,53.952104,53.952006,53.951906,53.951832,53.951772,53.951675,53.951592,53.951519,53.95146,53.95138,53.951359,53.951319,53.951404,53.951439,53.951354,53.951263,53.951225,53.951168,53.951138,53.95112,53.951075,53.951023,53.950931,53.950851,53.950773,53.950695,53.950627,53.950558,53.950458,53.950381,53.950318,53.950272,53.950207,53.950121,53.950047,53.95001,53.949918,53.949837,53.949772,53.949707,53.949665,53.94959,53.949523,53.949449,53.949484,53.949426,53.949335,53.949274,53.949229,53.949234,53.949246,53.949225,53.949169,53.949128,53.949038,53.948947,53.948866,53.948778,53.948684,53.948588,53.948497,53.948419,53.948394,53.948309,53.948219,53.948119,53.948018,53.947928,53.947833,53.947746,53.947647,53.947557,53.947459,53.947367,53.947271,53.947174,53.947077,53.946982,53.946878,53.946779,53.94668,53.946588,53.946492,53.946408,53.946318,53.946217,53.946131,53.946042,53.945948,53.945848,53.945747,53.945651,53.94555,53.945459,53.945358,53.945262,53.945172,53.945076,53.944986,53.944897,53.944804,53.944705,53.944606,53.944513,53.944416,53.944339,53.944251,53.94416,53.944069,53.94404,53.94395,53.943881,53.94379,53.943707,53.943624,53.943546,53.943464,53.943392,53.943316,53.943265,53.943166,53.943077,53.94299,53.942906,53.942814,53.942722,53.942659,53.942568,53.942476,53.942394,53.942311,53.942216,53.942124,53.942042,53.941941,53.941851,53.941746,53.94165,53.941546,53.941474,53.941409,53.94135,53.941282,53.941192,53.941103,53.941013,53.940918,53.940826,53.940734,53.940643,53.940536,53.940441,53.940344,53.940249,53.940151,53.940056,53.939963,53.939873,53.939784,53.9397,53.939641,53.93955,53.939461,53.93936,53.939267,53.939182,53.939088,53.939004,53.938933,53.938839,53.938748,53.938664,53.938633,53.938549,53.938461,53.93837,53.93827,53.938174,53.938086,53.937989,53.937906,53.93782,53.937724,53.937631,53.937538,53.937454,53.937364,53.937273,53.937176,53.93709,53.937002,53.936914,53.936817,53.936719,53.936628,53.936534,53.936454,53.936359,53.93627,53.936182,53.936084,53.93599,53.9359,53.935814,53.935726,53.935628,53.935535,53.935437,53.935356,53.935279,53.935208,53.935118,53.935024,53.934932,53.934868,53.93477,53.934668,53.934567,53.93447,53.934401,53.934311,53.934251,53.934161,53.934071,53.933987,53.933956,53.933862,53.93376,53.933661,53.933571,53.93349,53.933415,53.933358,53.9333,53.933263,53.933281,53.933235,53.933173,53.933094,53.933048,53.933049,53.933015,53.932937,53.93289,53.932828,53.932757,53.932702,53.932631,53.932572,53.932522,53.932471,53.932417,53.932319,53.932224,53.932191,53.932099,53.93201,53.931915,53.931821,53.93172,53.931629,53.931547,53.931457,53.931361,53.931354,53.931272,53.931178,53.931085,53.930984,53.930891,53.930791,53.93069,53.930599,53.930498,53.930396,53.930317,53.930218,53.93014,53.930052,53.929951,53.929968,53.929869,53.929777,53.929686,53.929595,53.929496,53.929394,53.929296,53.929201,53.92911,53.92902,53.928922,53.928823,53.928731,53.928634,53.928548,53.928454,53.928355,53.928267,53.928176,53.928077,53.927982,53.927885,53.927784,53.927687,53.927582,53.927483,53.927387,53.927292,53.927194,53.927095,53.926997,53.926907,53.926812,53.926718,53.926623,53.926532,53.926439,53.926363,53.926279,53.926189,53.926097,53.926002,53.925912,53.925814,53.925725,53.925632,53.925536,53.925449,53.925357,53.925259,53.925168,53.925076,53.924981,53.924887,53.924797,53.92471,53.924609,53.924512,53.92442,53.924327,53.924235,53.924134,53.924039,53.923944,53.923843,53.923743,53.923642,53.92354,53.92344,53.923345,53.923255,53.923175,53.923085,53.923028,53.922952,53.922871,53.922791,53.922698,53.92262,53.922541,53.922453,53.922371,53.922283,53.922206,53.922117,53.922021,53.921933,53.921843,53.921752,53.92167,53.921615,53.921529,53.921438,53.92135,53.921278,53.921186,53.921103,53.921009,53.920919,53.920829,53.920741,53.920656,53.920568,53.920485,53.920387,53.920289,53.920188,53.92012,53.920033,53.919948,53.919872,53.919793,53.919752,53.919692,53.919592,53.919501,53.91942,53.919326,53.919234,53.919145,53.919052,53.918953,53.91886,53.918763,53.918683,53.918632,53.918578,53.918484,53.918407,53.918314,53.918219,53.918132,53.918037,53.917942,53.917843,53.917752,53.917662,53.917562,53.917473,53.917379,53.917282,53.917188,53.917089,53.916982,53.91688,53.916816,53.916761,53.916697,53.916668,53.916597,53.916555,53.916503,53.916495,53.916505,53.916422,53.916324,53.91627,53.916206,53.916116,53.916041,53.915966,53.915899,53.915858,53.915786,53.915707,53.915647,53.915598,53.915652,53.915706,53.915738,53.915866,53.915852,53.915752,53.915661,53.915983,53.915945,53.915876,53.915874,53.915782,53.915692,53.915751,53.915849,53.915945,53.916036,53.916134,53.916199,53.916283,53.916308,53.916234,53.916168,53.91611,53.916091,53.916009,53.915911,53.91591,53.916002,53.916091,53.916079,53.916137,53.916201,53.91627,53.916323,53.916366,53.916454,53.916546,53.916651,53.916737,53.916831,53.916891,53.916948,53.917033,53.917055,53.917103,53.917158,53.917232,53.917304,53.917356,53.917402,53.917428,53.917427,53.917377,53.917353,53.917298,53.91725,53.917178,53.917126,53.917106,53.917087,53.917043,53.91697,53.9169,53.916861,53.916826,53.916762,53.916718,53.9167,53.9167,53.916692,53.916726,53.916723,53.916712,53.916684,53.916665,53.916618,53.916559,53.916568,53.916549,53.916574,53.916586,53.91666,53.916741,53.916793,53.916868,53.916926,53.916984,53.916991,53.917055,53.91709,53.917194,53.917201,53.917256,53.917306,53.917351,53.917381,53.917421,53.917457,53.917457,53.917484,53.917554,53.917621,53.917619,53.917674,53.917712,53.917763,53.917773,53.917796,53.91783,53.917874,53.917893,53.917917,53.91793,53.917965,53.917939,53.917896,53.917858,53.917815,53.917769,53.917742,53.91771,53.917711,53.917725,53.917773,53.917797,53.917819,53.917847,53.917913,53.917987,53.917999,53.918064,53.918072,53.918087,53.918058,53.91814,53.918233,53.918324,53.918405,53.918433,53.918513,53.918604,53.918685,53.918757,53.918827,53.918852,53.918952,53.919048,53.919148,53.919243,53.919332,53.919428,53.919505,53.919599,53.919687,53.919778,53.919854,53.919924,53.919972,53.920069,53.920166,53.920233,53.920277,53.92033,53.920315,53.920339,53.920377,53.920396,53.920404,53.920394,53.92047,53.920489,53.920526,53.920567,53.920612,53.920668,53.920721,53.920773,53.920804,53.920873,53.920942,53.920996,53.921045,53.921106,53.921186,53.921254,53.921326,53.921377,53.921458,53.92153,53.921623,53.921703,53.921771,53.921842,53.921928,53.922017,53.922099,53.92214,53.922223,53.922282,53.922361,53.922439,53.922485,53.922539,53.922615,53.922709,53.922804,53.922896,53.922982,53.923033,53.923121,53.923202,53.923298,53.923376,53.923391,53.923486,53.923579,53.923671,53.923762,53.923855,53.923943,53.924034,53.924127,53.924222,53.924294,53.924383,53.924466,53.924547,53.924612,53.924694,53.92477,53.924842,53.924918,53.924892,53.924964,53.925053,53.925117,53.925195,53.925277,53.925352,53.925426,53.925492,53.925562,53.925638,53.925707,53.92578,53.925835,53.925875,53.925921,53.925987,53.926069,53.926123,53.926181,53.926236,53.926298,53.926373,53.926432,53.92648,53.926537,53.9266,53.926662,53.926721,53.926752,53.926779,53.926835,53.926872,53.926856,53.926846,53.926812,53.926775,53.926746,53.926707,53.926669,53.92665,53.926712,53.926783,53.926848,53.92687,53.926887,53.92694,53.926975,53.927004,53.927055,53.927111,53.927167,53.927228,53.927287,53.927333,53.927399,53.927456,53.9275,53.927577,53.927649,53.927712,53.927779,53.927841,53.927905,53.927992,53.92808,53.928162,53.928221,53.928256,53.928249,53.928275,53.928302,53.928345,53.928341,53.928356,53.92836,53.92838,53.928386,53.928429,53.928418,53.928411,53.92841,53.928447,53.928415,53.928376,53.928352,53.928339,53.928301,53.928249,53.928201,53.928205,53.928158,53.928108,53.928036,53.92796,53.927896,53.927824,53.92779,53.927759,53.927739,53.927709,53.927632,53.927576,53.927502,53.927451,53.927406,53.927359,53.927301,53.927225,53.927187,53.927138,53.927083,53.927028,53.926963,53.926924,53.926884,53.926818,53.926753,53.926697,53.92663,53.926595,53.926544,53.926496,53.926441,53.926401,53.926355,53.926296,53.926244,53.926195,53.926122,53.926069,53.925995,53.925944,53.9259,53.925854,53.925813,53.925744,53.925695,53.925646,53.925577,53.925518,53.925456,53.925386,53.925324,53.925297,53.925262,53.925171,53.925092,53.925027,53.924976,53.924919,53.924854,53.924792,53.924748,53.92469,53.92463,53.924575,53.924518,53.924462,53.924426,53.92438,53.924352,53.924318,53.92429,53.924238,53.924192,53.92414,53.924072,53.924023,53.92398,53.923972,53.92394,53.923849,53.923784,53.923711,53.923627,53.923542,53.923452,53.923388,53.923321,53.923247,53.923164,53.923094,53.923014,53.922937,53.922857,53.922788,53.922712,53.922641,53.922565,53.922475,53.922404,53.922328,53.922255,53.922181,53.922101,53.92203,53.921941,53.921863,53.921776,53.921706,53.92162,53.921545,53.92148,53.921402,53.921323,53.921262,53.921205,53.921161,53.921122,53.921075,53.921039,53.921029,53.920983,53.92093,53.920899,53.920852,53.920823,53.920784,53.920739,53.920697,53.920644,53.920589,53.920549,53.920521,53.920472,53.920432,53.920405,53.920379,53.920334,53.920296,53.920271,53.920242,53.920199,53.92014,53.92012,53.920077,53.920042,53.920024,53.919979,53.919956,53.919929,53.919902,53.919875,53.919831,53.919787,53.919735,53.919679,53.919658,53.919659,53.919633,53.919592,53.919572,53.919515,53.919484,53.919434,53.91939,53.919367,53.919338,53.919301,53.91928,53.919257,53.919198,53.919196,53.91918,53.919203,53.919251,53.91928,53.919304,53.919341,53.919414,53.919478,53.919549,53.919611,53.919681,53.919763,53.919846,53.919922,53.919999,53.920077,53.920154,53.920253,53.920344,53.920437,53.920531,53.920632,53.920721,53.920794,53.920865,53.920914,53.920953,53.920963,53.920938,53.920978,53.920995,53.921033,53.921036,53.921021,53.921031,53.921026,53.921008,53.920987,53.920969,53.920999,53.921033,53.921074,53.921107,53.921155,53.921192,53.921227,53.921253,53.921293,53.92128,53.921278,53.921243,53.921245,53.921234,53.921261,53.921219,53.921181,53.921207,53.921265,53.921211,53.921177,53.921162,53.921141,53.921137,53.921094,53.921029,53.920981,53.920944,53.920925,53.920876,53.920843,53.920803,53.920777,53.92076,53.920731,53.920671,53.920628,53.920593,53.92056,53.920519,53.92051,53.920499,53.920498,53.920482,53.920451,53.920456,53.920419,53.920395,53.920348,53.920281,53.920218,53.920158,53.920102,53.92009,53.92005,53.920033,53.920012,53.920018,53.919991,53.920008,53.920002,53.919979,53.919974,53.919978,53.919955,53.919924,53.919958,53.920014,53.920067,53.920113,53.920116,53.920133,53.920188,53.920219,53.920205,53.920233,53.920271,53.920315,53.920335,53.920369,53.920414,53.920444,53.920479,53.920497,53.920531,53.920574,53.920615,53.92066,53.920705,53.920753,53.920779,53.920814,53.920835,53.920858,53.920801,53.92072,53.920627,53.920545,53.920458,53.920375,53.920322,53.920272,53.920192,53.920107,53.920028,53.919946,53.919866,53.919785,53.919697,53.919601,53.919516,53.919438,53.919366,53.919296,53.919245,53.919186,53.919124,53.91907,53.919029,53.919025,53.918966,53.918918,53.91888,53.91883,53.918792,53.918752,53.918715,53.918676,53.918639,53.918555,53.918498,53.918445,53.918455,53.91843,53.918399,53.918411,53.918414,53.918337,53.918319,53.918312,53.918289,53.918267,53.91826,53.918246,53.918241,53.918217,53.918199,53.918127,53.918048,53.917955,53.91786,53.917759,53.917663,53.917565,53.917464,53.917363,53.917269,53.917171,53.917073,53.916977,53.916887,53.916792,53.9167,53.916605,53.916507,53.91642,53.916319,53.916218,53.916111,53.916011,53.91591,53.91582,53.915724,53.91562,53.915531,53.915436,53.915352,53.91528,53.915191,53.915095,53.915008,53.914912,53.914834,53.914742,53.914734,53.914658,53.914556,53.914458,53.914371,53.914272,53.914185,53.914093,53.913991,53.913889,53.913785,53.913684,53.913584,53.91348,53.913379,53.913294,53.913199,53.913117,53.913046,53.912962,53.912881,53.912803,53.912735,53.912644,53.912557,53.912463,53.912372,53.912267,53.912193,53.912107,53.912008,53.91192,53.911821,53.911723,53.911632,53.911536,53.911443,53.911353,53.911279,53.911243,53.91126,53.91126,53.911206,53.91112,53.911024,53.910931,53.91084,53.910752,53.910656,53.910584,53.91049,53.910397,53.910301,53.910206,53.910138,53.910061,53.909976,53.909886,53.909785,53.909734,53.909751,53.909735,53.909724,53.909719,53.909689,53.909648,53.909633,53.909597,53.909555,53.909516,53.909491,53.909446,53.909399,53.909368,53.909317,53.909237,53.909184,53.90912,53.909132,53.90912,53.909055,53.908992,53.908947,53.908905,53.908843,53.908788,53.908738,53.908676,53.908615,53.908527,53.908437,53.908347,53.908248,53.908166,53.908077,53.907988,53.907906,53.90783,53.907733,53.90765,53.907562,53.907467,53.907389,53.907302,53.907208,53.907124,53.907036,53.906993,53.906912,53.906824,53.906728,53.906647,53.906561,53.906487,53.906396,53.906301,53.90621,53.906121,53.906029,53.90594,53.905841,53.905739,53.905643,53.905542,53.905442,53.905352,53.905263,53.90517,53.905077,53.904982,53.904888,53.904796,53.904695,53.904596,53.904504,53.904414,53.904319,53.90425,53.904175,53.904105,53.90415,53.904233,53.904295,53.904378,53.904461,53.90456,53.904656,53.904573,53.904476,53.904386,53.904288,53.904197,53.904102,53.904026,53.903933,53.90385,53.903755,53.903657,53.90357,53.903473,53.903381,53.903295,53.90321,53.903129,53.903041,53.902954,53.902867,53.902772,53.902696,53.902662,53.902628,53.902577,53.90255,53.902517,53.902428,53.902338,53.902243,53.902158,53.902068,53.901972,53.901878,53.901787,53.901702,53.901606,53.901592,53.90151,53.901433,53.901345,53.901264,53.901292,53.901197,53.901125,53.901087,53.901051,53.900958,53.900866,53.900845,53.900805,53.900762,53.900688,53.900626,53.90054,53.90045,53.900373,53.900291,53.900204,53.900112,53.900049,53.899962,53.899889,53.899832,53.899757,53.899681,53.899624,53.899573,53.899502,53.899429,53.899369,53.899293,53.899244,53.899198,53.89911,53.899045,53.898973,53.898893,53.898811,53.898768,53.898682,53.898667,53.898624,53.898552,53.898479,53.898395,53.898326,53.898247,53.898166,53.898082,53.898025,53.897988,53.897941,53.897866,53.897844,53.897756,53.897665,53.897576,53.897498,53.897413,53.897327,53.897238,53.897188,53.897103,53.897029,53.896955,53.896901,53.89682,53.89673,53.896701,53.896728,53.89675,53.896742,53.896698,53.896604,53.896541,53.896458,53.896364,53.896275,53.896186,53.896089,53.896001,53.895907,53.895812,53.895719,53.895629,53.89553,53.895439,53.89534,53.895249,53.895153,53.895064,53.89497,53.89487,53.894771,53.894674,53.89458,53.894499,53.894419,53.894325,53.894232,53.894141,53.89404,53.893944,53.893852,53.893763,53.893672,53.893582,53.893494,53.8934,53.893306,53.893303,53.893214,53.893124,53.893067,53.892962,53.892878,53.89279,53.892699,53.892605,53.892556,53.892504,53.892456,53.892396,53.89234,53.89228,53.892289,53.892359,53.892438,53.892497,53.892501,53.89255,53.892535,53.892451,53.892374,53.892304,53.892249,53.89218,53.892093,53.892019,53.89196,53.891887,53.891816,53.891731,53.891642,53.8916,53.89156,53.891495,53.891424,53.891348,53.891279,53.891193,53.891125,53.891058,53.891002,53.890911,53.890876,53.890783,53.890683,53.890584,53.890496,53.890405,53.890315,53.890225,53.890147,53.890065,53.88997,53.889874,53.889779,53.889689,53.889596,53.889503,53.889413,53.889323,53.889233,53.889149,53.889127,53.889213,53.889173,53.889089,53.889,53.888943,53.888935,53.888966,53.888966,53.888953,53.888983,53.889016,53.889018,53.888929,53.888866,53.888781,53.888683,53.888594,53.888498,53.888413,53.888337,53.888268,53.888181,53.888112,53.888075,53.88801,53.887948,53.887866,53.88778,53.887687,53.887603,53.887528,53.887459,53.887367,53.887272,53.887182,53.887094,53.887084,53.887,53.88694,53.886868,53.886794,53.886725,53.88667,53.886618,53.886537,53.886477,53.886406,53.886322,53.886266,53.886216,53.886136,53.886058,53.885977,53.885898,53.88581,53.885729,53.885648,53.885557,53.885468,53.885389,53.885305,53.885211,53.88513,53.885049,53.884961,53.884872,53.884795,53.884695,53.884604,53.884511,53.884428,53.884335,53.884265,53.884175,53.884084,53.883989,53.883899,53.88381,53.883725,53.883642,53.883573,53.883554,53.883472,53.883418,53.883323,53.883271,53.883198,53.883104,53.883018,53.882923,53.882866,53.882819,53.882748,53.882682,53.882625,53.882565,53.882476,53.882435,53.882405,53.882377,53.882381,53.882353,53.882313,53.882281,53.882181,53.882095,53.882036,53.881951,53.881863,53.881778,53.881692,53.881591,53.881523,53.881548,53.881493,53.881492,53.881506,53.881496,53.881471,53.881443,53.881473,53.881491,53.881527,53.881546,53.881459,53.881395,53.881366,53.881296,53.8812,53.881112,53.881101,53.881015,53.880933,53.880841,53.880745,53.880665,53.88058,53.880496,53.880406,53.880309,53.880216,53.880121,53.88003,53.879939,53.879847,53.879762,53.879672,53.87958,53.879485,53.879383,53.879287,53.879189,53.879099,53.879005,53.878913,53.878815,53.87873,53.878641,53.878619,53.87862,53.878569,53.878501,53.878472,53.878408,53.878323,53.87823,53.878132,53.878041,53.87795,53.877862,53.877774,53.877686,53.877599,53.877504,53.877417,53.877327,53.87723,53.877149,53.877054,53.876963,53.876871,53.876792,53.876699,53.87661,53.876519,53.876529,53.876434,53.876338,53.87624,53.876174,53.876093,53.876008,53.875919,53.875825,53.875731,53.875644,53.875543,53.875452,53.875364,53.875271,53.875179,53.875086,53.874991,53.874965,53.874885,53.874804,53.87473,53.874647,53.874573,53.874486,53.874387,53.874297,53.874241,53.874145,53.874087,53.874038,53.87402,53.87403,53.874097,53.874135,53.874162,53.874172,53.874135,53.874083,53.874015,53.873963,53.873919,53.873867,53.873809,53.873738,53.873699,53.873679,53.873626,53.873565,53.873513,53.873467,53.873409,53.873367,53.873299,53.873252,53.873247,53.873248,53.873249,53.873258,53.873264,53.873268,53.873281,53.873303,53.873332,53.873343,53.873372,53.87342,53.873456,53.87345,53.873409,53.873349,53.873296,53.873241,53.87319,53.873138,53.87308,53.873025,53.872939,53.872863,53.872834,53.872797,53.872726,53.872697,53.872679,53.872634,53.87259,53.872589,53.872543,53.872494,53.872432,53.872364,53.872332,53.872413,53.872395,53.87244,53.872461,53.8724,53.872337,53.872359,53.872334,53.872341,53.87234,53.872336,53.872345,53.872327,53.872285,53.872241,53.87222,53.872183,53.872163,53.87214,53.872052,53.871979,53.87192,53.871862,53.87179,53.871693,53.871602,53.871504,53.871417,53.871327,53.871233,53.871156,53.871079,53.871022,53.870979,53.870892,53.870811,53.870746,53.870687,53.870628,53.870544,53.870464,53.870374,53.870295,53.870219,53.870124,53.870038,53.869952,53.869929,53.869942,53.869907,53.869875,53.869865,53.869851,53.869788,53.869752,53.869663,53.869559,53.869492,53.869392,53.869349,53.869254,53.869162,53.869068,53.868996,53.868921,53.868849,53.868768,53.868698,53.868608,53.868514,53.868443,53.868359,53.868271,53.868199,53.868107,53.868007,53.867934,53.867852,53.867761,53.867671,53.867574,53.867482,53.867392,53.867302,53.86721,53.86714,53.867051,53.866972,53.866887,53.866803,53.866723,53.866643,53.866598,53.866537,53.866453,53.86637,53.86628,53.866183,53.866094,53.86601,53.865942,53.865872,53.86581,53.865765,53.865693,53.865617,53.865576,53.86548,53.865383,53.865294,53.865227,53.865179,53.86509,53.865,53.864906,53.864814,53.864761,53.864668,53.864571,53.864491,53.864409,53.864315,53.864227,53.864145,53.86405,53.863966,53.863873,53.863796,53.863699,53.863617,53.863548,53.863471,53.863384,53.863298,53.863205,53.863121,53.86303,53.862944,53.862851,53.862757,53.862686,53.862596,53.862518,53.862426,53.862332,53.862237,53.862144,53.862051,53.861957,53.861867,53.861771,53.86169,53.861603,53.861509,53.861438,53.86138,53.861319,53.861282,53.861243,53.861154,53.861088,53.861007,53.860923,53.860858,53.860766,53.860748,53.860695,53.860633,53.860629,53.860625,53.860609,53.860572,53.860562,53.860581,53.860561,53.860507,53.860457,53.860392,53.86031,53.860223,53.860131,53.860034,53.859941,53.859844,53.859758,53.859674,53.859606,53.859517,53.859421,53.859339,53.859239,53.859157,53.859068,53.858982,53.858882,53.858793,53.858704,53.858608,53.858513,53.858422,53.858334,53.858246,53.858167,53.858068,53.857981,53.857893,53.857811,53.857721,53.85763,53.857532,53.857437,53.857348,53.857278,53.857207,53.85714,53.85707,53.857003,53.856969,53.856907,53.856873,53.856811,53.856772,53.856771,53.856802,53.856814,53.85678,53.856725,53.856658,53.856615,53.85655,53.856483,53.856435,53.856355,53.856288,53.856206,53.856115,53.856028,53.855952,53.855854,53.855761,53.855661,53.85557,53.855486,53.855395,53.855306,53.855208,53.855119,53.855029,53.854931,53.854835,53.854738,53.854644,53.85455,53.854456,53.854355,53.854257,53.854172,53.854073,53.853972,53.853868,53.853773,53.85368,53.853598,53.853501,53.853409,53.853319,53.853238,53.853151,53.853089,53.853006,53.852914,53.852818,53.852724,53.852627,53.852537,53.852448,53.852356,53.852258,53.852174,53.852084,53.851982,53.851896,53.851808,53.851717,53.851618,53.851528,53.851437,53.85135,53.851354,53.851258,53.851159,53.851069,53.850994,53.850899,53.850808,53.850714,53.850624,53.850533,53.850442,53.85035,53.850275,53.850239,53.850187,53.850106,53.850019,53.849925,53.849829,53.849753,53.849673,53.849591,53.849523,53.849451,53.849383,53.849335,53.849293,53.849244,53.849182,53.84911,53.849038,53.848968,53.848893,53.848833,53.848776,53.848714,53.848658,53.8486,53.848546,53.848486,53.848473,53.848407,53.848354,53.848303,53.848238,53.848163,53.848115,53.848058,53.848024,53.848019,53.847973,53.847956,53.847927,53.847885,53.847852,53.847801,53.847728,53.847659,53.847602,53.847548,53.8475,53.847441,53.84742,53.847352,53.847278,53.847221,53.847166,53.847155,53.847153,53.847087,53.847024,53.846972,53.846969,53.846935,53.846916,53.846836,53.84677,53.846721,53.846672,53.846646,53.846578,53.846516,53.846461,53.846405,53.846328,53.846245,53.846162,53.846078,53.845995,53.845918,53.845837,53.845764,53.845685,53.845601,53.845538,53.84547,53.845383,53.845292,53.845221,53.845154,53.845077,53.845028,53.844964,53.844874,53.844783,53.84472,53.844646,53.844564,53.844471,53.84445,53.844362,53.84427,53.844181,53.844149,53.844083,53.844008,53.84394,53.843852,53.843767,53.843685,53.843595,53.843521,53.843433,53.843351,53.843259,53.843164,53.84309,53.843036,53.842969,53.842897,53.842815,53.842753,53.842668,53.842587,53.842511,53.842423,53.84233,53.842265,53.842171,53.84209,53.842002,53.841922,53.841853,53.84181,53.841732,53.84165,53.841558,53.84148,53.841408,53.841317,53.841235,53.841168,53.841087,53.841006,53.840927,53.840842,53.840754,53.840664,53.840582,53.840507,53.840418,53.840354,53.840277,53.840205,53.840125,53.840043,53.839965,53.839892,53.83981,53.839732,53.839661,53.839577,53.839489,53.839416,53.839343,53.839268,53.839191,53.839112,53.839045,53.838966,53.838968,53.838879,53.838807,53.838738,53.838699,53.838647,53.838589,53.838527,53.838436,53.838387,53.838367,53.838312,53.838222,53.838151,53.838071,53.83801,53.837925,53.83783,53.837748,53.837742,53.837671,53.837611,53.837548,53.837473,53.83741,53.837323,53.837307,53.837343,53.837376,53.837412,53.837449,53.83752,53.837594,53.837623,53.837665,53.837734,53.837787,53.837848,53.837908,53.837959,53.838002,53.838067,53.838113,53.83817,53.838241,53.838302,53.838336,53.838397,53.83844,53.838461,53.838491,53.838533,53.83859,53.838572,53.838497,53.838415,53.838438,53.837944,53.837851,53.837764,53.837666,53.837578,53.837478,53.837391,53.837283,53.837196,53.837142,53.837069,53.836977,53.836882,53.836791,53.836705,53.836624,53.836535,53.836551,53.836473,53.836416,53.836346,53.836314,53.836255,53.836229,53.83617,53.836169,53.836134,53.836069,53.835988,53.835973,53.835996,53.835968,53.835997,53.836034,53.835937,53.83585,53.835794,53.835711,53.835609,53.835579,53.83555,53.835516,53.835474,53.83545,53.835416,53.835356,53.835266,53.835219,53.835132,53.835062,53.834985,53.834916,53.834843,53.834774,53.834701,53.834624,53.834535,53.83445,53.834396,53.834303,53.834233,53.834222,53.834184,53.834125,53.834082,53.834038,53.834,53.833963,53.833925,53.833882,53.833855,53.833829,53.833744,53.833652,53.833559,53.833525,53.83343,53.833335,53.833235,53.833147,53.83306,53.832986,53.832936,53.832861,53.832768,53.832757,53.832844,53.832863,53.832887,53.832886,53.83274,53.832697,53.832632,53.832545,53.832449,53.832352,53.832254,53.832169,53.832074,53.831985,53.831929,53.831978,53.832068,53.832011,53.831941,53.831895,53.831825,53.831839,53.831753,53.831664,53.831582,53.831543,53.831529,53.831484,53.831436,53.831398,53.83144,53.831455,53.831458,53.831428,53.831347,53.83127,53.831186,53.8311,53.831038,53.830984,53.830937,53.830859,53.830844,53.830762,53.830719,53.830668,53.830739,53.830712,53.830655,53.830619,53.830569,53.83051,53.830463,53.830411,53.830372,53.830313,53.830271,53.830236,53.830178,53.830125,53.830057,53.830007,53.829957,53.829964,53.829977,53.829968,53.829893,53.829794,53.829701,53.829615,53.829528,53.829414,53.829304,53.829226,53.829129,53.82904,53.828979,53.828909,53.82884,53.828775,53.828748,53.828662,53.828602,53.828669,53.828732,53.828742,53.828761,53.828761,53.828778,53.828809,53.828854,53.828905,53.828966,53.829025,53.829088,53.829146,53.829192,53.829197,53.829209,53.829259,53.829256,53.829284,53.829312,53.829376,53.829443,53.829511,53.829578,53.829621,53.829669,53.829733,53.829776,53.829783,53.82982,53.829827,53.82988,53.829956,53.829989,53.830046,53.830107,53.830134,53.830099,53.830105,53.830096,53.830026,53.829943,53.829864,53.829904,53.829825,53.829833,53.8298,53.829727,53.829633,53.829553,53.829466,53.829365,53.829273,53.829186,53.829097,53.829006,53.828907,53.828836,53.828749,53.82867,53.828586,53.828499,53.82841,53.828319,53.828229,53.828191,53.827777,53.827683,53.827593,53.827498,53.827408,53.827324,53.82723,53.827227,53.827154,53.827076,53.826993,53.826914,53.826867,53.826803,53.826709,53.826737,53.826742,53.826728,53.826781,53.826769,53.826756,53.826766,53.826764,53.826727,53.826649,53.826623,53.826617,53.826587,53.82658,53.826572,53.826522,53.826458,53.826388,53.826306,53.826214,53.826121,53.826042,53.825953,53.82586,53.825774,53.825685,53.825607,53.825509,53.825429,53.825338,53.825243,53.825182,53.825111,53.825038,53.824938,53.824842,53.82478,53.824699,53.82472,53.824697,53.824605,53.824519,53.824427,53.824353,53.824285,53.824214,53.824128,53.824037,53.823961,53.82387,53.823785,53.823707,53.823632,53.823547,53.823521,53.823527,53.823541,53.823534,53.823517,53.823505,53.823464,53.823433,53.823455,53.823416,53.823408,53.823398,53.82336,53.823344,53.823316,53.823278,53.82323,53.823186,53.823109,53.823043,53.822986,53.822954,53.82293,53.822899,53.822849,53.822794,53.822741,53.822718,53.822702,53.822677,53.822611,53.82257,53.822524,53.822488,53.822472,53.822458,53.8224,53.822342,53.822297,53.822246,53.822201,53.822243,53.822293,53.822303,53.82234,53.822358,53.822342,53.822309,53.82234,53.822389,53.822371,53.82236,53.822366,53.822323,53.822279,53.82227,53.822263,53.822263,53.82224,53.822223,53.822206,53.822174,53.822122,53.822087,53.822056,53.822007,53.821976,53.821928,53.8219,53.821875,53.821856,53.821831,53.821788,53.82172,53.821706,53.821692,53.821689,53.821693,53.821708,53.821725,53.82174,53.821751,53.82175,53.821722,53.821715,53.821697,53.821657,53.821648,53.82165,53.82169,53.821686,53.821669,53.821617,53.821562,53.82152,53.821463,53.821409,53.821362,53.821313,53.821248,53.821184,53.821127,53.821085,53.821033,53.820965,53.820894,53.820845,53.820781,53.820729,53.820679,53.820631,53.820585,53.82053,53.820474,53.820423,53.820383,53.820339,53.820289,53.820262,53.820231,53.820178,53.820141,53.820094,53.820053,53.820013,53.819963,53.819885,53.8198,53.819707,53.819631,53.819592,53.81954,53.819508,53.819458,53.819409,53.819341,53.819297,53.819254,53.819236,53.819209,53.819149,53.819074,53.818996,53.818959,53.818913,53.81885,53.818782,53.818716,53.818634,53.818553,53.818482,53.818399,53.818323,53.818228,53.818132,53.818032,53.817981,53.817918,53.81784,53.817753,53.817664,53.817569,53.81748,53.817382,53.81728,53.8172,53.817106,53.817012,53.816932,53.816848,53.816755,53.816677,53.816593,53.816527,53.81647,53.816421,53.816335,53.816247,53.816162,53.816084,53.816026,53.815945,53.815858,53.81583,53.815773,53.815713,53.815643,53.815587,53.81551,53.815439,53.815355,53.815285,53.815197,53.815116,53.815032,53.814951,53.814877,53.814798,53.814811,53.814729,53.814647,53.814584,53.814517,53.814433,53.814365,53.814291,53.814205,53.814111,53.814034,53.813989,53.813899,53.813801,53.813706,53.813617,53.813527,53.813442,53.813349,53.813255,53.813172,53.813072,53.812973,53.812882,53.812793,53.812699,53.812606,53.812534,53.812476,53.812402,53.812314,53.812223,53.812137,53.812058,53.811966,53.811875,53.811799,53.811708,53.811645,53.811572,53.81149,53.811392,53.811299,53.811216,53.811127,53.811032,53.810952,53.810858,53.81078,53.810691,53.81061,53.810521,53.81043,53.810345,53.810271,53.8102,53.810131,53.810062,53.809984,53.809923,53.809854,53.809778,53.809699,53.809606,53.809539,53.809478,53.809396,53.809306,53.80922,53.809155,53.809083,53.809005,53.808933,53.808866,53.808814,53.808754,53.808669,53.808584,53.808499,53.808428,53.808353,53.808281,53.808206,53.808125,53.808042,53.808008,53.807936,53.807861,53.807774,53.807716,53.807634,53.807579,53.807533,53.807484,53.8074,53.807356,53.807321,53.807236,53.807137,53.807046,53.806957,53.806874,53.806788,53.806704,53.806628,53.806543,53.806471,53.806412,53.806352,53.806286,53.806231,53.806153,53.806071,53.806005,53.805947,53.805912,53.805867,53.805808,53.805757,53.805706,53.805666,53.805617,53.805571,53.805517,53.805466,53.805421,53.805394,53.805373,53.805318,53.805237,53.805161,53.805077,53.80503,53.80499,53.804942,53.804894,53.804829,53.804789,53.804731,53.804679,53.804628,53.804564,53.804507,53.804452,53.8044,53.804353,53.804318,53.804244,53.804193,53.804154,53.804131,53.80407,53.804009,53.803976,53.80394,53.803885,53.803808,53.803718,53.803662,53.803602,53.803509,53.803445,53.803356,53.803312,53.803246,53.803175,53.803111,53.803065,53.803002,53.802956,53.802885,53.802854,53.802814,53.802784,53.802738,53.802699,53.802653,53.802607,53.802563,53.802524,53.802458,53.802398,53.802328,53.802247,53.80217,53.802102,53.802032,53.801972,53.80194,53.801904,53.801862,53.801805,53.801757,53.80169,53.801641,53.80158,53.801531,53.801509,53.801463,53.801427,53.80137,53.801297,53.80122,53.801145,53.801045,53.800948,53.800854,53.800763,53.800671,53.800576,53.800485,53.800397,53.800306,53.800233,53.800171,53.800077,53.799997,53.799969,53.799935,53.799895,53.799826,53.799742,53.799648,53.799558,53.799475,53.799387,53.799312,53.799225,53.799143,53.799064,53.79897,53.798883,53.798786,53.798697,53.798606,53.798512,53.79842,53.798329,53.79824,53.798143,53.79806,53.797998,53.797936,53.79787,53.797791,53.797727,53.797661,53.797572,53.797489,53.797413,53.797339,53.797266,53.797199,53.797119,53.797044,53.797008,53.796978,53.796946,53.796899,53.796842,53.796804,53.796789,53.796742,53.796701,53.796647,53.796586,53.796561,53.796502,53.796474,53.796428,53.796408,53.796362,53.796287,53.796237,53.79622,53.796203,53.796174,53.79611,53.796123,53.796158,53.796191,53.796185,53.796172,53.796161,53.796152,53.796174,53.796182,53.796127,53.79609,53.796068,53.796032,53.795995,53.795969,53.795921,53.795868,53.79583,53.795799,53.795768,53.795713,53.795679,53.795637,53.795593,53.795541,53.795471,53.795417,53.795345,53.795285,53.795215,53.795142,53.795075,53.795019,53.794941,53.794854,53.794777,53.794684,53.794583,53.794491,53.794405,53.794324,53.794241,53.794153,53.794073,53.793992,53.793933,53.793849,53.793784,53.793703,53.793632,53.793541,53.793461,53.793465,53.793445,53.793399,53.79335,53.793271,53.79319,53.793106,53.793028,53.792946,53.792872,53.792806,53.792728,53.792645,53.792578,53.792492,53.792402,53.792333,53.792261,53.792183,53.792101,53.792111,53.792164,53.79221,53.792258,53.792308,53.79236,53.792419,53.792469,53.792521,53.792565,53.79259,53.79263,53.792689,53.792733,53.792764,53.792787,53.792839,53.79288,53.792934,53.79297,53.793053,53.793052,53.79306,53.79314,53.793196,53.793248,53.793281,53.793331,53.793425,53.793479,53.793536,53.793522,53.793553,53.793617,53.793707,53.793781,53.793718,53.793653,53.793589,53.793524,53.79346,53.793389,53.793321,53.793252,53.793184,53.793114,53.79305,53.792983,53.792919,53.792853,53.792773,53.79269,53.792611,53.792521,53.792439,53.792353,53.792263,53.792175,53.792091,53.792,53.791918,53.791822,53.791727,53.791652,53.791559,53.791459,53.791364,53.791271,53.791182,53.791112,53.791036,53.790968,53.790888,53.790801,53.790722,53.790643,53.790555,53.790476,53.790398,53.790316,53.790232,53.790149,53.790059,53.789966,53.78988,53.789793,53.789702,53.789624,53.789568,53.789518,53.789471,53.789418,53.789395,53.789311,53.789254,53.789234,53.789241,53.789194,53.789126,53.789098,53.789069,53.78903,53.788999,53.789008,53.788975,53.788917,53.788906,53.788919,53.788919,53.788901,53.788877,53.788819,53.788754,53.788698,53.788643,53.788623,53.788602,53.7886,53.788601,53.788536,53.788506,53.788472,53.788434,53.788399,53.78838,53.788352,53.78833,53.788273,53.78822,53.788189,53.788161,53.788124,53.788094,53.788068,53.788038,53.788072,53.788126,53.788114,53.788059,53.788007,53.787963,53.787916,53.787863,53.787813,53.787771,53.787734,53.787708,53.787681,53.787642,53.787637,53.787587,53.787521,53.787434,53.787369,53.78728,53.787261,53.78721,53.787141,53.787052,53.786967,53.786885,53.786795,53.786711,53.786615,53.786515,53.786416,53.786325,53.786229,53.786139,53.78605,53.785957,53.785866,53.785784,53.785692,53.785616,53.785528,53.785437,53.78534,53.785251,53.785151,53.785052,53.784967,53.784863,53.784768,53.784675,53.784577,53.784486,53.784389,53.784291,53.784198,53.784105,53.784009,53.783913,53.783824,53.783742,53.783655,53.783569,53.78348,53.783396,53.783304,53.78321,53.783118,53.783034,53.782953,53.782878,53.782816,53.78278,53.782752,53.782725,53.782712,53.782701,53.782684,53.782663,53.782624,53.782585,53.782545,53.782503,53.782465,53.782435,53.782403,53.782356,53.782341,53.782302,53.782249,53.782211,53.782187,53.782144,53.782104,53.782067,53.782014,53.781968,53.781942,53.781919,53.781881,53.781841,53.781784,53.781729,53.78169,53.781643,53.7816,53.781536,53.781472,53.781397,53.781335,53.781244,53.781159,53.781062,53.780971,53.780871,53.780781,53.780687,53.78059,53.780496,53.780404,53.780303,53.780205,53.780108,53.780015,53.779921,53.779832,53.779733,53.779638,53.779535,53.779435,53.779345,53.779252,53.779179,53.779086,53.778987,53.778901,53.778806,53.778716,53.77862,53.77853,53.778433,53.778335,53.778236,53.778134,53.778034,53.777944,53.777856,53.777766,53.777672,53.7776,53.777557,53.777523,53.777516,53.77752,53.777539,53.777571,53.777601,53.777626,53.777617,53.777605,53.777598,53.777593,53.777586,53.777592,53.777586,53.77759,53.777556,53.777543,53.777558,53.777487,53.777399,53.777334,53.777246,53.777173,53.777093,53.777003,53.776915,53.776824,53.776738,53.776637,53.776537,53.776441,53.776365,53.776271,53.776177,53.776082,53.775989,53.775892,53.775807,53.775712,53.775614,53.775517,53.775427,53.775335,53.775237,53.77514,53.775043,53.774951,53.774857,53.774767,53.77468,53.774587,53.774494,53.774399,53.774306,53.774207,53.774109,53.774016,53.773926,53.77383,53.77373,53.773673,53.773608,53.773611,53.773595,53.773598,53.773612,53.773602,53.773614,53.773629,53.773612,53.773574,53.773546,53.773531,53.773522,53.773545,53.773544,53.773516,53.773498,53.77347,53.773444,53.773437,53.773429,53.773412,53.773396,53.773388,53.77339,53.773337,53.773287,53.77323,53.7732,53.773268,53.77322,53.773173,53.773139,53.773103,53.773076,53.773037,53.773037,53.773022,53.772954,53.77292,53.772905,53.772912,53.772886,53.772846,53.772818,53.772757,53.772677,53.772614,53.772569,53.772554,53.772542,53.772519,53.772479,53.772396,53.772358,53.772361,53.77234,53.772267,53.772213,53.772142,53.772111,53.772098,53.772109,53.772064,53.772024,53.772029,53.772036,53.772024,53.772025,53.772006,53.77197,53.771957,53.771926,53.771896,53.771853,53.771816,53.771802,53.771779,53.771766,53.771749,53.771714,53.77166,53.771627,53.771597,53.77156,53.771559,53.771528,53.771495,53.771435,53.771351,53.771295,53.771245,53.771166,53.771092,53.771051,53.771003,53.770943,53.770875,53.770799,53.770733,53.770666,53.770591,53.770511,53.770429,53.770372,53.77032,53.770258,53.770207,53.770166,53.770134,53.770085,53.770037,53.769977,53.769944,53.769912,53.769835,53.769766,53.769696,53.769626,53.769586,53.769542,53.76946,53.769392,53.769304,53.769214,53.769131,53.769052,53.769025,53.768973,53.768912,53.768856,53.768811,53.768772,53.768786,53.768751,53.768671,53.768582,53.768524,53.76843,53.768344,53.768332,53.768296,53.768203,53.768115,53.768016,53.767924,53.767849,53.767755,53.767676,53.767596,53.76753,53.767453,53.767376,53.767289,53.767195,53.767127,53.767073,53.767018,53.766938,53.766863,53.766769,53.766684,53.766614,53.766544,53.766464,53.766386,53.766327,53.766262,53.766194,53.766134,53.766073,53.766011,53.765943,53.765874,53.76582,53.765747,53.765664,53.765592,53.765516,53.765443,53.765367,53.765279,53.765195,53.765089,53.764992,53.764914,53.764852,53.764766,53.764683,53.764595,53.764499,53.764397,53.764306,53.76424,53.764225,53.764148,53.764067,53.763979,53.763917,53.763851,53.763779,53.763721,53.763644,53.763559,53.763472,53.763404,53.763331,53.763259,53.763193,53.763111,53.76306,53.763027,53.762982,53.762911,53.762818,53.762729,53.762646,53.76255,53.762466,53.762382,53.762282,53.76219,53.762117,53.762039,53.761956,53.761878,53.761792,53.761711,53.76162,53.761537,53.761446,53.761374,53.761277,53.761192,53.761113,53.761031,53.760956,53.760871,53.760781,53.760686,53.760626,53.760548,53.760516,53.760448,53.760356,53.760264,53.760176,53.760087,53.760009,53.759965,53.759901,53.75981,53.759728,53.759632,53.759568,53.759473,53.759386,53.759297,53.759223,53.75914,53.759049,53.758993,53.758928,53.758851,53.758767,53.758673,53.758575,53.758477,53.758386,53.758298,53.758209,53.758124,53.758037,53.757979,53.757886,53.757806,53.757731,53.757653,53.757565,53.757484,53.757414,53.757332,53.757244,53.757159,53.757073,53.756978,53.756923,53.756886,53.756841,53.756743,53.756647,53.756552,53.756499,53.756476,53.756424,53.756359,53.756279,53.756208,53.756118,53.756028,53.755953,53.755857,53.755798,53.755718,53.755626,53.75559,53.755531,53.755486,53.755494,53.755504,53.755496,53.755502,53.755496,53.755476,53.75547,53.755472,53.755434,53.755432,53.755418,53.755406,53.755394,53.755376,53.755366,53.755345,53.755363,53.755323,53.755218,53.755127,53.755043,53.754945,53.754843,53.754749,53.75466,53.754562,53.754467,53.754376,53.754289,53.754217,53.754157,53.754153,53.754103,53.754062,53.754011,53.753964,53.753917,53.753868,53.753831,53.753802,53.753739,53.753694,53.753603,53.753549,53.753524,53.753503,53.753402,53.753335,53.753343,53.753285,53.753213,53.75314,53.753089,53.753022,53.752965,53.752895,53.752807,53.752715,53.752669,53.752585,53.752508,53.75246,53.752413,53.752352,53.752273,53.752205,53.752133,53.752077,53.752031,53.751955,53.751952,53.751961,53.751934,53.751839,53.751758,53.751663,53.751495,53.751468,53.751377,53.751283,53.751196,53.75111,53.75101,53.750907,53.750812,53.75072,53.750635,53.750549,53.75047,53.750383,53.750323,53.750236,53.750157,53.750063,53.750086,53.750012,53.749928,53.749879,53.749868,53.749789,53.749704,53.749684,53.749634,53.749542,53.749479,53.749465]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[53.749465,53.987226],"lng":[-2.145647,-2.004121]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-11-2" class="tab-pane" aria-labelledby="tabset-11-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb22" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb22-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-23"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_b979875dc2d9101d1fd69450033d2411 {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_b979875dc2d9101d1fd69450033d2411&quot; ></div>
        
</body>
<script>
    
    
            var map_b979875dc2d9101d1fd69450033d2411 = L.map(
                &quot;map_b979875dc2d9101d1fd69450033d2411&quot;,
                {
                    center: [53.8707129377668, -2.075210701640081],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_d407ffc2e0ba5ccb3efe250913cc9636 = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_d407ffc2e0ba5ccb3efe250913cc9636.addTo(map_b979875dc2d9101d1fd69450033d2411);
        
    
            var tile_layer_36efef6e0724809f68ede7d678b7feb2 = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_36efef6e0724809f68ede7d678b7feb2.addTo(map_b979875dc2d9101d1fd69450033d2411);
        
    
            var color_line_f1882247f837c24a4eecbcee801a8bee = L.featureGroup(
                {
}
            );
        
    
            var poly_line_0abf1f2a9ecf128d7244e87a485ae122 = L.polyline(
                [[[53.987112, -2.101639], [53.987226, -2.101721]], [[53.987226, -2.101721], [53.987125, -2.101729]], [[53.954094, -2.139622], [53.953993, -2.139647]], [[53.915876, -2.145435], [53.915874, -2.145117]], [[53.915874, -2.145117], [53.915782, -2.145143]], [[53.915945, -2.144952], [53.916036, -2.144879]], [[53.916036, -2.144879], [53.916134, -2.144806]], [[53.837851, -2.019923], [53.837764, -2.019822]], [[53.837764, -2.019822], [53.837666, -2.019749]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_6cceb225ae35ddcc75dee1e37c191119 = L.polyline(
                [[[53.987125, -2.101729], [53.987133, -2.101722]], [[53.987074, -2.101853], [53.987057, -2.101981]], [[53.987057, -2.101981], [53.986956, -2.102003]], [[53.986592, -2.101871], [53.986587, -2.101979]], [[53.986531, -2.102065], [53.986517, -2.102217]], [[53.983526, -2.104605], [53.98344, -2.10469]], [[53.981772, -2.106087], [53.981764, -2.106133]], [[53.981764, -2.106133], [53.981675, -2.106112]], [[53.980639, -2.106439], [53.980576, -2.106523]], [[53.980576, -2.106523], [53.980511, -2.106634]], [[53.975439, -2.116107], [53.975403, -2.116265]], [[53.971745, -2.121942], [53.97169, -2.121957]], [[53.96132, -2.131795], [53.96129, -2.131801]], [[53.961307, -2.131957], [53.96126, -2.132094]], [[53.957511, -2.134388], [53.957424, -2.13445]], [[53.956637, -2.134997], [53.956659, -2.135146]], [[53.956722, -2.135678], [53.956758, -2.135822]], [[53.956871, -2.137762], [53.956775, -2.137734]], [[53.956312, -2.137858], [53.956264, -2.137895]], [[53.954639, -2.138836], [53.954589, -2.138945]], [[53.954282, -2.139517], [53.954191, -2.139563]], [[53.951404, -2.140074], [53.951439, -2.140021]], [[53.951354, -2.139933], [53.951263, -2.139985]], [[53.949128, -2.143703], [53.949038, -2.143751]], [[53.948419, -2.143529], [53.948394, -2.143378]], [[53.948394, -2.143378], [53.948309, -2.143294]], [[53.944069, -2.142372], [53.94404, -2.142377]], [[53.94404, -2.142377], [53.94395, -2.142335]], [[53.943546, -2.141965], [53.943464, -2.141901]], [[53.943316, -2.141713], [53.943265, -2.141609]], [[53.943166, -2.141556], [53.943077, -2.1415]], [[53.939088, -2.139508], [53.939004, -2.139446]], [[53.933987, -2.141436], [53.933956, -2.141401]], [[53.933862, -2.141398], [53.93376, -2.141383]], [[53.933263, -2.14205], [53.933281, -2.142051]], [[53.933281, -2.142051], [53.933235, -2.142193]], [[53.931361, -2.144457], [53.931354, -2.144567]], [[53.931272, -2.144638], [53.931178, -2.144675]], [[53.915598, -2.145439], [53.915652, -2.145194]], [[53.915706, -2.145223], [53.915738, -2.145078]], [[53.91611, -2.144085], [53.916091, -2.144043]], [[53.916009, -2.144115], [53.915911, -2.144121]], [[53.915911, -2.144121], [53.91591, -2.144088]], [[53.916091, -2.144044], [53.916079, -2.144058]], [[53.916137, -2.144186], [53.916201, -2.144305]], [[53.916984, -2.137261], [53.916991, -2.137207]], [[53.91709, -2.137042], [53.917194, -2.136962]], [[53.918433, -2.130144], [53.918513, -2.130235]], [[53.920315, -2.130609], [53.920339, -2.130448]], [[53.923298, -2.125155], [53.923376, -2.125075]], [[53.923391, -2.125074], [53.923486, -2.125037]], [[53.924034, -2.124812], [53.924127, -2.12483]], [[53.924127, -2.12483], [53.924222, -2.124826]], [[53.924222, -2.124826], [53.924294, -2.124764]], [[53.924294, -2.124764], [53.924383, -2.124747]], [[53.924694, -2.124395], [53.92477, -2.124292]], [[53.924918, -2.12408], [53.924892, -2.123951]], [[53.924892, -2.123951], [53.924964, -2.123853]], [[53.92665, -2.118805], [53.926712, -2.118694]], [[53.928275, -2.115174], [53.928302, -2.115012]], [[53.928376, -2.11295], [53.928352, -2.112846]], [[53.928301, -2.112536], [53.928249, -2.112407]], [[53.928249, -2.112407], [53.928201, -2.112273]], [[53.92012, -2.093465], [53.920077, -2.093307]], [[53.920978, -2.086168], [53.920995, -2.085999]], [[53.921033, -2.084443], [53.921074, -2.084305]], [[53.921207, -2.082304], [53.921265, -2.082422]], [[53.921265, -2.082422], [53.921211, -2.082288]], [[53.919029, -2.068649], [53.919025, -2.068635]], [[53.919025, -2.068635], [53.918966, -2.068516]], [[53.914742, -2.063643], [53.914734, -2.063645]], [[53.911279, -2.062376], [53.911243, -2.062402]], [[53.911243, -2.062402], [53.91126, -2.062553]], [[53.90912, -2.065256], [53.909055, -2.065158]], [[53.909055, -2.065158], [53.908992, -2.065267]], [[53.908992, -2.065267], [53.908947, -2.065223]], [[53.908905, -2.065078], [53.908843, -2.064957]], [[53.908676, -2.064565], [53.908615, -2.064524]], [[53.908615, -2.064524], [53.908527, -2.064466]], [[53.908527, -2.064466], [53.908437, -2.064428]], [[53.908437, -2.064428], [53.908347, -2.064404]], [[53.908347, -2.064404], [53.908248, -2.064415]], [[53.908248, -2.064415], [53.908166, -2.064334]], [[53.908166, -2.064334], [53.908077, -2.064314]], [[53.908077, -2.064314], [53.907988, -2.064251]], [[53.907988, -2.064251], [53.907906, -2.064187]], [[53.907906, -2.064187], [53.90783, -2.064104]], [[53.907467, -2.063932], [53.907389, -2.06393]], [[53.907389, -2.06393], [53.907302, -2.063864]], [[53.904105, -2.063246], [53.90415, -2.06321]], [[53.902696, -2.061645], [53.902662, -2.061552]], [[53.902628, -2.061394], [53.902577, -2.061267]], [[53.90255, -2.061111], [53.902517, -2.061034]], [[53.902517, -2.061034], [53.902428, -2.061081]], [[53.901606, -2.061073], [53.901592, -2.061052]], [[53.90151, -2.060957], [53.901433, -2.060878]], [[53.901197, -2.06055], [53.901125, -2.060603]], [[53.901051, -2.060411], [53.900958, -2.0604]], [[53.900805, -2.060261], [53.900762, -2.060116]], [[53.900112, -2.05948], [53.900049, -2.059494]], [[53.900049, -2.059494], [53.899962, -2.059413]], [[53.898667, -2.057379], [53.898624, -2.057515]], [[53.896742, -2.060565], [53.896698, -2.060636]], [[53.893306, -2.059641], [53.893303, -2.059744]], [[53.892497, -2.05802], [53.892501, -2.057945]], [[53.89255, -2.057816], [53.892535, -2.057664]], [[53.8916, -2.056459], [53.89156, -2.056316]], [[53.890911, -2.055372], [53.890876, -2.055328]], [[53.889149, -2.055163], [53.889127, -2.055127]], [[53.888337, -2.054019], [53.888268, -2.053998]], [[53.887084, -2.052699], [53.887, -2.052795]], [[53.88581, -2.05456], [53.885729, -2.054485]], [[53.884335, -2.053569], [53.884265, -2.053588]], [[53.884265, -2.053588], [53.884175, -2.053584]], [[53.883573, -2.05308], [53.883554, -2.053068]], [[53.882435, -2.053738], [53.882405, -2.053884]], [[53.882036, -2.054675], [53.881951, -2.05462]], [[53.881951, -2.05462], [53.881863, -2.05466]], [[53.881863, -2.05466], [53.881778, -2.054673]], [[53.881778, -2.054673], [53.881692, -2.054628]], [[53.881692, -2.054628], [53.881591, -2.054624]], [[53.881591, -2.054624], [53.881523, -2.054688]], [[53.881523, -2.054688], [53.881548, -2.054841]], [[53.8812, -2.052942], [53.881112, -2.052879]], [[53.880841, -2.052731], [53.880745, -2.052717]], [[53.880121, -2.052462], [53.88003, -2.052439]], [[53.87862, -2.052605], [53.878569, -2.052734]], [[53.878569, -2.052734], [53.878501, -2.05285]], [[53.878501, -2.05285], [53.878472, -2.05295]], [[53.878472, -2.05295], [53.878408, -2.053064]], [[53.87795, -2.053186], [53.877862, -2.053226]], [[53.877862, -2.053226], [53.877774, -2.053265]], [[53.877774, -2.053265], [53.877686, -2.053316]], [[53.876093, -2.053785], [53.876008, -2.053859]], [[53.874991, -2.054182], [53.874965, -2.054226]], [[53.874965, -2.054226], [53.874885, -2.054301]], [[53.872797, -2.047727], [53.872726, -2.047824]], [[53.872726, -2.047824], [53.872697, -2.04768]], [[53.872332, -2.046545], [53.872413, -2.046479]], [[53.872337, -2.045783], [53.872359, -2.045627]], [[53.872359, -2.045627], [53.872334, -2.045477]], [[53.872334, -2.045477], [53.872341, -2.045321]], [[53.872341, -2.045321], [53.87234, -2.045199]], [[53.87234, -2.045199], [53.872336, -2.045039]], [[53.872336, -2.045039], [53.872345, -2.044884]], [[53.872163, -2.043973], [53.87214, -2.043926]], [[53.87214, -2.043926], [53.872052, -2.043979]], [[53.87192, -2.044215], [53.871862, -2.044336]], [[53.871862, -2.044336], [53.87179, -2.044447]], [[53.869929, -2.046171], [53.869942, -2.046131]], [[53.869942, -2.046131], [53.869907, -2.046288]], [[53.866643, -2.047846], [53.866598, -2.047754]], [[53.866598, -2.047754], [53.866537, -2.047621]], [[53.866537, -2.047621], [53.866453, -2.047527]], [[53.86581, -2.047881], [53.865765, -2.047943]], [[53.865765, -2.047943], [53.865693, -2.048044]], [[53.865617, -2.048156], [53.865576, -2.048286]], [[53.865576, -2.048286], [53.86548, -2.048292]], [[53.864814, -2.04853], [53.864761, -2.048576]], [[53.85135, -2.04074], [53.851354, -2.040759]], [[53.851258, -2.040782], [53.851159, -2.040797]], [[53.848486, -2.038373], [53.848473, -2.038377]], [[53.848407, -2.038247], [53.848354, -2.038105]], [[53.843433, -2.029234], [53.843351, -2.029137]], [[53.840754, -2.026294], [53.840664, -2.026227]], [[53.840277, -2.025716], [53.840205, -2.025701]], [[53.838968, -2.024305], [53.838879, -2.024211]], [[53.838436, -2.023428], [53.838387, -2.023504]], [[53.837069, -2.019402], [53.836977, -2.019357]], [[53.836535, -2.019339], [53.836551, -2.019354]], [[53.836473, -2.019272], [53.836416, -2.019136]], [[53.835579, -2.019931], [53.83555, -2.020083]], [[53.834222, -2.02223], [53.834184, -2.022269]], [[53.834184, -2.022269], [53.834125, -2.022145]], [[53.833559, -2.020984], [53.833525, -2.020995]], [[53.833525, -2.020995], [53.83343, -2.021025]], [[53.832768, -2.020506], [53.832757, -2.020486]], [[53.83274, -2.02054], [53.832697, -2.0204]], [[53.831978, -2.020507], [53.832068, -2.020557]], [[53.830984, -2.018462], [53.830937, -2.018412]], [[53.830937, -2.018412], [53.830859, -2.018291]], [[53.830668, -2.01778], [53.830739, -2.017733]], [[53.827324, -2.006219], [53.82723, -2.006195]], [[53.826649, -2.004207], [53.826623, -2.004245]], [[53.826587, -2.004552], [53.82658, -2.004601]], [[53.82658, -2.004601], [53.826572, -2.004753]], [[53.826121, -2.005034], [53.826042, -2.005024]], [[53.826042, -2.005024], [53.825953, -2.00497]], [[53.825774, -2.00494], [53.825685, -2.004981]], [[53.825685, -2.004981], [53.825607, -2.004904]], [[53.825509, -2.004903], [53.825429, -2.004978]], [[53.825429, -2.004978], [53.825338, -2.004977]], [[53.825338, -2.004977], [53.825243, -2.005005]], [[53.825243, -2.005005], [53.825182, -2.004937]], [[53.825038, -2.005052], [53.824938, -2.00505]], [[53.824842, -2.004915], [53.82478, -2.005032]], [[53.824699, -2.004951], [53.82472, -2.005038]], [[53.822488, -2.009607], [53.822472, -2.009646]], [[53.822458, -2.009811], [53.8224, -2.009932]], [[53.822243, -2.010598], [53.822293, -2.010726]], [[53.815945, -2.028077], [53.815858, -2.028127]], [[53.815858, -2.028127], [53.81583, -2.028279]], [[53.815773, -2.028406], [53.815713, -2.028522]], [[53.815713, -2.028522], [53.815643, -2.028635]], [[53.815355, -2.029045], [53.815285, -2.029147]], [[53.814798, -2.029659], [53.814811, -2.029697]], [[53.814729, -2.02979], [53.814647, -2.029877]], [[53.808584, -2.033001], [53.808499, -2.033068]], [[53.787261, -2.08217], [53.78721, -2.082156]], [[53.776365, -2.082638], [53.776271, -2.082648]], [[53.763027, -2.056915], [53.762982, -2.05677]], [[53.760548, -2.054545], [53.760516, -2.054536]], [[53.760448, -2.054418], [53.760356, -2.054377]], [[53.756359, -2.054659], [53.756279, -2.054728]], [[53.756028, -2.054908], [53.755953, -2.055001]], [[53.755857, -2.055013], [53.755798, -2.05508]], [[53.755798, -2.05508], [53.755718, -2.055172]], [[53.755496, -2.055161], [53.755502, -2.055136]], [[53.750012, -2.058618], [53.749928, -2.05856]], [[53.749684, -2.058388], [53.749634, -2.058369]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_71a687a73183d612c18ef3e37bc7b0f7 = L.polyline(
                [[[53.987133, -2.101722], [53.987074, -2.101853]], [[53.983634, -2.104323], [53.983632, -2.104478]], [[53.979212, -2.113652], [53.979172, -2.113802]], [[53.978183, -2.114564], [53.978148, -2.114715]], [[53.971892, -2.121708], [53.971821, -2.121816]], [[53.97169, -2.121957], [53.971633, -2.122095]], [[53.970912, -2.122975], [53.970823, -2.123043]], [[53.956554, -2.134922], [53.956637, -2.134997]], [[53.956264, -2.137895], [53.95582, -2.137582]], [[53.955052, -2.138178], [53.954988, -2.138289]], [[53.953895, -2.139744], [53.953811, -2.139664]], [[53.949246, -2.143947], [53.949225, -2.143789]], [[53.949225, -2.143789], [53.949169, -2.143861]], [[53.949169, -2.143861], [53.949128, -2.143703]], [[53.943265, -2.141609], [53.943166, -2.141556]], [[53.939182, -2.139501], [53.939088, -2.139508]], [[53.932191, -2.144343], [53.932099, -2.144271]], [[53.931354, -2.144567], [53.931272, -2.144638]], [[53.915652, -2.145194], [53.915706, -2.145223]], [[53.915945, -2.145103], [53.915876, -2.145435]], [[53.918827, -2.129967], [53.918852, -2.129974]], [[53.92033, -2.13077], [53.920315, -2.130609]], [[53.923376, -2.125075], [53.923391, -2.125074]], [[53.928256, -2.115337], [53.928249, -2.115332]], [[53.928339, -2.112693], [53.928301, -2.112536]], [[53.92014, -2.093622], [53.92012, -2.093465]], [[53.920938, -2.08631], [53.920978, -2.086168]], [[53.920322, -2.070474], [53.920272, -2.070341]], [[53.908947, -2.065223], [53.908905, -2.065078]], [[53.907036, -2.063703], [53.906993, -2.063679]], [[53.906993, -2.063679], [53.906912, -2.063585]], [[53.902662, -2.061552], [53.902628, -2.061394]], [[53.901125, -2.060603], [53.901087, -2.060461]], [[53.901087, -2.060461], [53.901051, -2.060411]], [[53.900866, -2.0604], [53.900845, -2.060408]], [[53.896698, -2.060636], [53.896604, -2.060629]], [[53.896604, -2.060629], [53.896541, -2.060578]], [[53.892501, -2.057945], [53.89255, -2.057816]], [[53.890876, -2.055328], [53.890783, -2.055379]], [[53.889127, -2.055127], [53.889213, -2.055084]], [[53.883554, -2.053068], [53.883472, -2.052973]], [[53.881395, -2.053224], [53.881366, -2.053072]], [[53.881112, -2.052879], [53.881101, -2.052867]], [[53.881015, -2.052794], [53.880933, -2.052737]], [[53.880933, -2.052737], [53.880841, -2.052731]], [[53.876519, -2.053673], [53.876529, -2.053679]], [[53.872364, -2.0466], [53.872332, -2.046545]], [[53.836551, -2.019354], [53.836473, -2.019272]], [[53.832863, -2.020593], [53.832887, -2.020434]], [[53.832887, -2.020434], [53.832886, -2.020434]], [[53.82723, -2.006195], [53.827227, -2.006167]], [[53.826623, -2.004245], [53.826617, -2.004397]], [[53.825182, -2.004937], [53.825111, -2.005037]], [[53.825111, -2.005037], [53.825038, -2.005052]], [[53.824938, -2.00505], [53.824842, -2.004915]], [[53.822201, -2.010448], [53.822243, -2.010598]], [[53.814584, -2.029936], [53.814517, -2.030049]], [[53.803065, -2.043331], [53.803002, -2.043472]], [[53.773673, -2.082252], [53.773608, -2.082141]], [[53.750086, -2.058725], [53.750012, -2.058618]], [[53.749634, -2.058369], [53.749542, -2.058459]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_57ebd98370895ac2ca1fe99d004477a8 = L.polyline(
                [[[53.986956, -2.102003], [53.986858, -2.101969]], [[53.986769, -2.101923], [53.986684, -2.101857]], [[53.986684, -2.101857], [53.986592, -2.101871]], [[53.985957, -2.10314], [53.985877, -2.103224]], [[53.985877, -2.103224], [53.985787, -2.103282]], [[53.98372, -2.104324], [53.983634, -2.104323]], [[53.980738, -2.105998], [53.980713, -2.106154]], [[53.980683, -2.106303], [53.980639, -2.106439]], [[53.980511, -2.106634], [53.980468, -2.106779]], [[53.980086, -2.10865], [53.98004, -2.108802]], [[53.979462, -2.110111], [53.979469, -2.110274]], [[53.979469, -2.110274], [53.979455, -2.11043]], [[53.979354, -2.112069], [53.979336, -2.112231]], [[53.979336, -2.112231], [53.979325, -2.112391]], [[53.979299, -2.113027], [53.979248, -2.113175]], [[53.979212, -2.11351], [53.979212, -2.113652]], [[53.979172, -2.113802], [53.979084, -2.113853]], [[53.978226, -2.114536], [53.978183, -2.114564]], [[53.978148, -2.114715], [53.978063, -2.114776]], [[53.977087, -2.115501], [53.976993, -2.115514]], [[53.976993, -2.115514], [53.976898, -2.115507]], [[53.976518, -2.115502], [53.976429, -2.115542]], [[53.976429, -2.115542], [53.976331, -2.115548]], [[53.975524, -2.116023], [53.975439, -2.116107]], [[53.974016, -2.118722], [53.973944, -2.118834]], [[53.973175, -2.120027], [53.973163, -2.120085]], [[53.973163, -2.120085], [53.973079, -2.120144]], [[53.971901, -2.121524], [53.971894, -2.121539]], [[53.971821, -2.121816], [53.971745, -2.121942]], [[53.971633, -2.122095], [53.971544, -2.122175]], [[53.970955, -2.122959], [53.970912, -2.122975]], [[53.970823, -2.123043], [53.970746, -2.123157]], [[53.968693, -2.125814], [53.96865, -2.125954]], [[53.96865, -2.125954], [53.968605, -2.126094]], [[53.967911, -2.127426], [53.967841, -2.127525]], [[53.967841, -2.127525], [53.967753, -2.127594]], [[53.965583, -2.129648], [53.965496, -2.129724]], [[53.965496, -2.129724], [53.965407, -2.129696]], [[53.962754, -2.130544], [53.962669, -2.130594]], [[53.962669, -2.130594], [53.962583, -2.130647]], [[53.962583, -2.130647], [53.962502, -2.13073]], [[53.961555, -2.1315], [53.961482, -2.131592]], [[53.958947, -2.133417], [53.958872, -2.133503]], [[53.958524, -2.133752], [53.958436, -2.133804]], [[53.958436, -2.133804], [53.958347, -2.133837]], [[53.958171, -2.13394], [53.958091, -2.134016]], [[53.95792, -2.134133], [53.957836, -2.134211]], [[53.957836, -2.134211], [53.95775, -2.134293]], [[53.95775, -2.134293], [53.957668, -2.134359]], [[53.957668, -2.134359], [53.957574, -2.134383]], [[53.957574, -2.134383], [53.957511, -2.134388]], [[53.957424, -2.13445], [53.957334, -2.134486]], [[53.956616, -2.134976], [53.956554, -2.134922]], [[53.95667, -2.135464], [53.956717, -2.135515]], [[53.956937, -2.136912], [53.956911, -2.137083]], [[53.956907, -2.137648], [53.956871, -2.137762]], [[53.955043, -2.138259], [53.955052, -2.138178]], [[53.954852, -2.138519], [53.954774, -2.13861]], [[53.954589, -2.138945], [53.954522, -2.139052]], [[53.954296, -2.13938], [53.954282, -2.139517]], [[53.953916, -2.139742], [53.953895, -2.139744]], [[53.953811, -2.139664], [53.953721, -2.139731]], [[53.953721, -2.139731], [53.953723, -2.139789]], [[53.952955, -2.139108], [53.952859, -2.139125]], [[53.952771, -2.139086], [53.952745, -2.139074]], [[53.952745, -2.139074], [53.95266, -2.13899]], [[53.949234, -2.143934], [53.949246, -2.143947]], [[53.949038, -2.143751], [53.948947, -2.143705]], [[53.948497, -2.143559], [53.948419, -2.143529]], [[53.948309, -2.143294], [53.948219, -2.14325]], [[53.947928, -2.143352], [53.947833, -2.143329]], [[53.946588, -2.143195], [53.946492, -2.143145]], [[53.946492, -2.143145], [53.946408, -2.143055]], [[53.944416, -2.142588], [53.944339, -2.142538]], [[53.944339, -2.142538], [53.944251, -2.142492]], [[53.94379, -2.142191], [53.943707, -2.142121]], [[53.943707, -2.142121], [53.943624, -2.142034]], [[53.943624, -2.142034], [53.943546, -2.141965]], [[53.943464, -2.141901], [53.943392, -2.141797]], [[53.943392, -2.141797], [53.943316, -2.141713]], [[53.942568, -2.141067], [53.942476, -2.141033]], [[53.94165, -2.140553], [53.941546, -2.140564]], [[53.939267, -2.139494], [53.939182, -2.139501]], [[53.939004, -2.139446], [53.938933, -2.139351]], [[53.938933, -2.139351], [53.938839, -2.139348]], [[53.937364, -2.139979], [53.937273, -2.140026]], [[53.937273, -2.140026], [53.937176, -2.140067]], [[53.936534, -2.140259], [53.936454, -2.140164]], [[53.936454, -2.140164], [53.936359, -2.140127]], [[53.932224, -2.144259], [53.932191, -2.144343]], [[53.932099, -2.144271], [53.93201, -2.144272]], [[53.931457, -2.144447], [53.931361, -2.144457]], [[53.929951, -2.144982], [53.929968, -2.14487]], [[53.929968, -2.14487], [53.929869, -2.144895]], [[53.926189, -2.144979], [53.926097, -2.144956]], [[53.923255, -2.1445], [53.923175, -2.144426]], [[53.923175, -2.144426], [53.923085, -2.144392]], [[53.921933, -2.143396], [53.921843, -2.143366]], [[53.921843, -2.143366], [53.921752, -2.14341]], [[53.91591, -2.144088], [53.916002, -2.144001]], [[53.917232, -2.142961], [53.917304, -2.142904]], [[53.917304, -2.142904], [53.917356, -2.142762]], [[53.916926, -2.137397], [53.916984, -2.137261]], [[53.916991, -2.137207], [53.917055, -2.13707]], [[53.917055, -2.13707], [53.91709, -2.137042]], [[53.918405, -2.130264], [53.918433, -2.130144]], [[53.918513, -2.130235], [53.918604, -2.130249]], [[53.918685, -2.130175], [53.918757, -2.130078]], [[53.918757, -2.130078], [53.918827, -2.129967]], [[53.918952, -2.130039], [53.919048, -2.130004]], [[53.919243, -2.129949], [53.919332, -2.129945]], [[53.919332, -2.129945], [53.919428, -2.129969]], [[53.919428, -2.129969], [53.919505, -2.130051]], [[53.919778, -2.130055], [53.919854, -2.13014]], [[53.919854, -2.13014], [53.919924, -2.130265]], [[53.920277, -2.13075], [53.92033, -2.13077]], [[53.920339, -2.130448], [53.920377, -2.130305]], [[53.920377, -2.130305], [53.920396, -2.130146]], [[53.920404, -2.12998], [53.920394, -2.129826]], [[53.920721, -2.128845], [53.920773, -2.128713]], [[53.920773, -2.128713], [53.920804, -2.12855]], [[53.921326, -2.127588], [53.921377, -2.127462]], [[53.921377, -2.127462], [53.921458, -2.127357]], [[53.921458, -2.127357], [53.92153, -2.127246]], [[53.92153, -2.127246], [53.921623, -2.127208]], [[53.922223, -2.126438], [53.922282, -2.126302]], [[53.922282, -2.126302], [53.922361, -2.126202]], [[53.922439, -2.126116], [53.922485, -2.125974]], [[53.922896, -2.125549], [53.922982, -2.125474]], [[53.923121, -2.125272], [53.923202, -2.125194]], [[53.923202, -2.125194], [53.923298, -2.125155]], [[53.923579, -2.124993], [53.923671, -2.12496]], [[53.923671, -2.12496], [53.923762, -2.124928]], [[53.923762, -2.124928], [53.923855, -2.124888]], [[53.923855, -2.124888], [53.923943, -2.124834]], [[53.923943, -2.124834], [53.924034, -2.124812]], [[53.924383, -2.124747], [53.924466, -2.124686]], [[53.924612, -2.124485], [53.924694, -2.124395]], [[53.92477, -2.124292], [53.924842, -2.124191]], [[53.924842, -2.124191], [53.924918, -2.12408]], [[53.926835, -2.120183], [53.926872, -2.120044]], [[53.926872, -2.120044], [53.926856, -2.119883]], [[53.926856, -2.119883], [53.926846, -2.119716]], [[53.926846, -2.119716], [53.926812, -2.119569]], [[53.926812, -2.119569], [53.926775, -2.119419]], [[53.926775, -2.119419], [53.926746, -2.11926]], [[53.926746, -2.11926], [53.926707, -2.119108]], [[53.926707, -2.119108], [53.926669, -2.118962]], [[53.926669, -2.118962], [53.92665, -2.118805]], [[53.926712, -2.118694], [53.926783, -2.11859]], [[53.92687, -2.118316], [53.926887, -2.118159]], [[53.926887, -2.118159], [53.92694, -2.118027]], [[53.928221, -2.115487], [53.928256, -2.115337]], [[53.928447, -2.113254], [53.928415, -2.113098]], [[53.928415, -2.113098], [53.928376, -2.11295]], [[53.928201, -2.112273], [53.928205, -2.112111]], [[53.928205, -2.112111], [53.928158, -2.111967]], [[53.928158, -2.111967], [53.928108, -2.111824]], [[53.928108, -2.111824], [53.928036, -2.111709]], [[53.92438, -2.102738], [53.924352, -2.102639]], [[53.924352, -2.102639], [53.924318, -2.102493]], [[53.924072, -2.101823], [53.924023, -2.101682]], [[53.923972, -2.101376], [53.92394, -2.101227]], [[53.92394, -2.101227], [53.923849, -2.101183]], [[53.923849, -2.101183], [53.923784, -2.101058]], [[53.923784, -2.101058], [53.923711, -2.100953]], [[53.923247, -2.100339], [53.923164, -2.10027]], [[53.922857, -2.099883], [53.922788, -2.099771]], [[53.922101, -2.098844], [53.92203, -2.098748]], [[53.92203, -2.098748], [53.921941, -2.098671]], [[53.920242, -2.093873], [53.920199, -2.093734]], [[53.920199, -2.093734], [53.92014, -2.093622]], [[53.920953, -2.086601], [53.920963, -2.086434]], [[53.920963, -2.086434], [53.920938, -2.08631]], [[53.920999, -2.084571], [53.921033, -2.084443]], [[53.921074, -2.084305], [53.921107, -2.084151]], [[53.921211, -2.082288], [53.921177, -2.082141]], [[53.920014, -2.074968], [53.920067, -2.074828]], [[53.920067, -2.074828], [53.920113, -2.074676]], [[53.920858, -2.071041], [53.920801, -2.070919]], [[53.920627, -2.070782], [53.920545, -2.070697]], [[53.920375, -2.070526], [53.920322, -2.070474]], [[53.920272, -2.070341], [53.920192, -2.070249]], [[53.917955, -2.064243], [53.91786, -2.064292]], [[53.914658, -2.063744], [53.914556, -2.063733]], [[53.908843, -2.064957], [53.908788, -2.064819]], [[53.908738, -2.064687], [53.908676, -2.064565]], [[53.90783, -2.064104], [53.907733, -2.064062]], [[53.907733, -2.064062], [53.90765, -2.063993]], [[53.90765, -2.063993], [53.907562, -2.063953]], [[53.907562, -2.063953], [53.907467, -2.063932]], [[53.907302, -2.063864], [53.907208, -2.06381]], [[53.907124, -2.063753], [53.907036, -2.063703]], [[53.906912, -2.063585], [53.906824, -2.063522]], [[53.90415, -2.06321], [53.904233, -2.063113]], [[53.904656, -2.062771], [53.904573, -2.062773]], [[53.904573, -2.062773], [53.904476, -2.062747]], [[53.902577, -2.061267], [53.90255, -2.061111]], [[53.902243, -2.061062], [53.902158, -2.06113]], [[53.902158, -2.06113], [53.902068, -2.061127]], [[53.902068, -2.061127], [53.901972, -2.061104]], [[53.901972, -2.061104], [53.901878, -2.061126]], [[53.901878, -2.061126], [53.901787, -2.061149]], [[53.901787, -2.061149], [53.901702, -2.061092]], [[53.901702, -2.061092], [53.901606, -2.061073]], [[53.901345, -2.060797], [53.901264, -2.060725]], [[53.901264, -2.060725], [53.901292, -2.060575]], [[53.901292, -2.060575], [53.901197, -2.06055]], [[53.900958, -2.0604], [53.900866, -2.0604]], [[53.900762, -2.060116], [53.900688, -2.060017]], [[53.90054, -2.059823], [53.90045, -2.059757]], [[53.900291, -2.059582], [53.900204, -2.05953]], [[53.900204, -2.05953], [53.900112, -2.05948]], [[53.899244, -2.058138], [53.899198, -2.057994]], [[53.898893, -2.057609], [53.898811, -2.057522]], [[53.898682, -2.057312], [53.898667, -2.057379]], [[53.898624, -2.057515], [53.898552, -2.057629]], [[53.898552, -2.057629], [53.898479, -2.057728]], [[53.898479, -2.057728], [53.898395, -2.057817]], [[53.898326, -2.057918], [53.898247, -2.05802]], [[53.898247, -2.05802], [53.898166, -2.05809]], [[53.898166, -2.05809], [53.898082, -2.058174]], [[53.898082, -2.058174], [53.898025, -2.058302]], [[53.897188, -2.059365], [53.897103, -2.059452]], [[53.896901, -2.059795], [53.89682, -2.059892]], [[53.896701, -2.060087], [53.896728, -2.060236]], [[53.896728, -2.060236], [53.89675, -2.060399]], [[53.89675, -2.060399], [53.896742, -2.060565]], [[53.896541, -2.060578], [53.896458, -2.060505]], [[53.895719, -2.06033], [53.895629, -2.060294]], [[53.894674, -2.060152], [53.89458, -2.060126]], [[53.89458, -2.060126], [53.894499, -2.060061]], [[53.893303, -2.059744], [53.893214, -2.059648]], [[53.893067, -2.059477], [53.892962, -2.059486]], [[53.892962, -2.059486], [53.892878, -2.059395]], [[53.89234, -2.058615], [53.89228, -2.058487]], [[53.89228, -2.058487], [53.892289, -2.058318]], [[53.892535, -2.057664], [53.892451, -2.057586]], [[53.891642, -2.056444], [53.8916, -2.056459]], [[53.890783, -2.055379], [53.890683, -2.055385]], [[53.889213, -2.055084], [53.889173, -2.054943]], [[53.888943, -2.054682], [53.888935, -2.054523]], [[53.889018, -2.05358], [53.888929, -2.05354]], [[53.888929, -2.05354], [53.888866, -2.053661]], [[53.888866, -2.053661], [53.888781, -2.053728]], [[53.888781, -2.053728], [53.888683, -2.053761]], [[53.888413, -2.053936], [53.888337, -2.054019]], [[53.887094, -2.052642], [53.887084, -2.052699]], [[53.887, -2.052795], [53.88694, -2.052925]], [[53.886216, -2.054204], [53.886136, -2.05429]], [[53.885898, -2.054546], [53.88581, -2.05456]], [[53.885729, -2.054485], [53.885648, -2.054406]], [[53.884428, -2.05359], [53.884335, -2.053569]], [[53.884175, -2.053584], [53.884084, -2.053544]], [[53.884084, -2.053544], [53.883989, -2.053501]], [[53.883323, -2.052798], [53.883271, -2.052729]], [[53.883271, -2.052729], [53.883198, -2.052837]], [[53.882565, -2.053536], [53.882476, -2.053595]], [[53.882476, -2.053595], [53.882435, -2.053738]], [[53.882313, -2.054525], [53.882281, -2.054679]], [[53.882281, -2.054679], [53.882181, -2.054632]], [[53.882095, -2.054575], [53.882036, -2.054675]], [[53.881548, -2.054841], [53.881493, -2.05471]], [[53.881527, -2.053453], [53.881546, -2.053305]], [[53.881546, -2.053305], [53.881459, -2.053219]], [[53.881459, -2.053219], [53.881395, -2.053224]], [[53.881366, -2.053072], [53.881296, -2.052955]], [[53.881296, -2.052955], [53.8812, -2.052942]], [[53.880745, -2.052717], [53.880665, -2.052643]], [[53.88058, -2.052571], [53.880496, -2.052504]], [[53.880496, -2.052504], [53.880406, -2.05248]], [[53.880406, -2.05248], [53.880309, -2.052465]], [[53.880309, -2.052465], [53.880216, -2.052453]], [[53.880216, -2.052453], [53.880121, -2.052462]], [[53.88003, -2.052439], [53.879939, -2.052388]], [[53.879847, -2.052345], [53.879762, -2.052293]], [[53.879762, -2.052293], [53.879672, -2.052278]], [[53.878815, -2.052181], [53.87873, -2.05222]], [[53.87873, -2.05222], [53.878641, -2.052295]], [[53.878641, -2.052295], [53.878619, -2.052448]], [[53.878619, -2.052448], [53.87862, -2.052605]], [[53.878408, -2.053064], [53.878323, -2.053145]], [[53.878323, -2.053145], [53.87823, -2.053145]], [[53.87823, -2.053145], [53.878132, -2.05316]], [[53.878132, -2.05316], [53.878041, -2.053141]], [[53.878041, -2.053141], [53.87795, -2.053186]], [[53.877686, -2.053316], [53.877599, -2.053272]], [[53.877599, -2.053272], [53.877504, -2.053293]], [[53.877417, -2.053365], [53.877327, -2.053396]], [[53.877054, -2.053484], [53.876963, -2.05352]], [[53.876963, -2.05352], [53.876871, -2.053535]], [[53.876871, -2.053535], [53.876792, -2.053615]], [[53.876792, -2.053615], [53.876699, -2.053633]], [[53.876699, -2.053633], [53.87661, -2.053683]], [[53.87661, -2.053683], [53.876519, -2.053673]], [[53.876434, -2.05371], [53.876338, -2.053702]], [[53.87624, -2.053708], [53.876174, -2.053711]], [[53.875919, -2.053915], [53.875825, -2.053955]], [[53.874038, -2.054754], [53.87402, -2.054597]], [[53.87402, -2.054597], [53.87403, -2.054434]], [[53.872939, -2.048092], [53.872863, -2.048]], [[53.872863, -2.048], [53.872834, -2.04785]], [[53.872834, -2.04785], [53.872797, -2.047727]], [[53.872697, -2.04768], [53.872679, -2.04753]], [[53.872589, -2.04709], [53.872543, -2.046958]], [[53.872543, -2.046958], [53.872494, -2.046813]], [[53.872494, -2.046813], [53.872432, -2.046701]], [[53.872432, -2.046701], [53.872364, -2.0466]], [[53.872413, -2.046479], [53.872395, -2.046323]], [[53.872395, -2.046323], [53.87244, -2.046189]], [[53.87244, -2.046189], [53.872461, -2.046029]], [[53.8724, -2.045897], [53.872337, -2.045783]], [[53.872345, -2.044884], [53.872327, -2.044717]], [[53.87222, -2.044271], [53.872183, -2.044124]], [[53.872183, -2.044124], [53.872163, -2.043973]], [[53.871979, -2.044082], [53.87192, -2.044215]], [[53.87179, -2.044447], [53.871693, -2.044502]], [[53.871504, -2.044514], [53.871417, -2.044557]], [[53.871417, -2.044557], [53.871327, -2.044589]], [[53.871327, -2.044589], [53.871233, -2.044653]], [[53.871233, -2.044653], [53.871156, -2.044735]], [[53.871156, -2.044735], [53.871079, -2.044833]], [[53.871079, -2.044833], [53.871022, -2.044968]], [[53.870628, -2.045625], [53.870544, -2.045711]], [[53.870544, -2.045711], [53.870464, -2.045799]], [[53.870464, -2.045799], [53.870374, -2.04583]], [[53.870374, -2.04583], [53.870295, -2.045904]], [[53.870295, -2.045904], [53.870219, -2.046004]], [[53.870219, -2.046004], [53.870124, -2.046023]], [[53.869907, -2.046288], [53.869875, -2.046443]], [[53.869752, -2.04701], [53.869663, -2.047057]], [[53.869349, -2.047344], [53.869254, -2.047386]], [[53.869254, -2.047386], [53.869162, -2.047424]], [[53.869162, -2.047424], [53.869068, -2.047472]], [[53.868921, -2.047691], [53.868849, -2.047792]], [[53.868849, -2.047792], [53.868768, -2.04787]], [[53.868768, -2.04787], [53.868698, -2.047978]], [[53.868514, -2.048022], [53.868443, -2.048138]], [[53.868443, -2.048138], [53.868359, -2.048204]], [[53.868359, -2.048204], [53.868271, -2.048252]], [[53.868271, -2.048252], [53.868199, -2.048349]], [[53.868199, -2.048349], [53.868107, -2.048397]], [[53.868007, -2.048413], [53.867934, -2.048512]], [[53.867934, -2.048512], [53.867852, -2.048586]], [[53.867392, -2.0485], [53.867302, -2.048468]], [[53.867302, -2.048468], [53.86721, -2.048414]], [[53.86721, -2.048414], [53.86714, -2.048313]], [[53.86714, -2.048313], [53.867051, -2.048258]], [[53.867051, -2.048258], [53.866972, -2.048164]], [[53.866453, -2.047527], [53.86637, -2.04743]], [[53.86628, -2.047401], [53.866183, -2.047415]], [[53.866183, -2.047415], [53.866094, -2.047481]], [[53.866094, -2.047481], [53.86601, -2.04756]], [[53.86601, -2.04756], [53.865942, -2.047664]], [[53.865942, -2.047664], [53.865872, -2.047769]], [[53.865872, -2.047769], [53.86581, -2.047881]], [[53.865693, -2.048044], [53.865617, -2.048156]], [[53.865294, -2.048287], [53.865227, -2.048397]], [[53.865227, -2.048397], [53.865179, -2.048543]], [[53.864906, -2.048565], [53.864814, -2.04853]], [[53.864761, -2.048576], [53.864668, -2.048544]], [[53.863966, -2.048137], [53.863873, -2.048082]], [[53.863205, -2.047468], [53.863121, -2.04739]], [[53.863121, -2.04739], [53.86303, -2.047404]], [[53.86303, -2.047404], [53.862944, -2.04747]], [[53.862757, -2.047407], [53.862686, -2.047519]], [[53.862686, -2.047519], [53.862596, -2.047596]], [[53.862596, -2.047596], [53.862518, -2.047698]], [[53.862518, -2.047698], [53.862426, -2.047707]], [[53.862426, -2.047707], [53.862332, -2.047715]], [[53.862332, -2.047715], [53.862237, -2.047752]], [[53.862237, -2.047752], [53.862144, -2.047759]], [[53.862144, -2.047759], [53.862051, -2.047806]], [[53.862051, -2.047806], [53.861957, -2.047792]], [[53.861957, -2.047792], [53.861867, -2.047765]], [[53.861867, -2.047765], [53.861771, -2.047759]], [[53.861771, -2.047759], [53.86169, -2.047663]], [[53.86169, -2.047663], [53.861603, -2.047594]], [[53.861603, -2.047594], [53.861509, -2.047605]], [[53.861509, -2.047605], [53.861438, -2.047505]], [[53.861438, -2.047505], [53.86138, -2.047382]], [[53.86138, -2.047382], [53.861319, -2.047265]], [[53.861319, -2.047265], [53.861282, -2.047122]], [[53.861282, -2.047122], [53.861243, -2.046966]], [[53.861007, -2.04671], [53.860923, -2.046643]], [[53.860923, -2.046643], [53.860858, -2.046539]], [[53.860858, -2.046539], [53.860766, -2.046512]], [[53.860695, -2.046214], [53.860633, -2.0461]], [[53.860633, -2.0461], [53.860629, -2.045936]], [[53.860629, -2.045936], [53.860625, -2.045781]], [[53.860572, -2.045481], [53.860562, -2.045318]], [[53.860562, -2.045318], [53.860581, -2.045164]], [[53.860581, -2.045164], [53.860561, -2.045011]], [[53.860561, -2.045011], [53.860507, -2.044873]], [[53.860507, -2.044873], [53.860457, -2.044743]], [[53.860223, -2.044499], [53.860131, -2.044454]], [[53.860131, -2.044454], [53.860034, -2.044424]], [[53.860034, -2.044424], [53.859941, -2.044367]], [[53.859941, -2.044367], [53.859844, -2.044357]], [[53.859844, -2.044357], [53.859758, -2.044279]], [[53.859758, -2.044279], [53.859674, -2.044205]], [[53.859517, -2.044033], [53.859421, -2.044008]], [[53.859421, -2.044008], [53.859339, -2.043932]], [[53.859157, -2.044013], [53.859068, -2.044052]], [[53.859068, -2.044052], [53.858982, -2.043974]], [[53.858982, -2.043974], [53.858882, -2.043997]], [[53.858882, -2.043997], [53.858793, -2.043948]], [[53.858704, -2.044019], [53.858608, -2.044036]], [[53.856873, -2.042853], [53.856811, -2.04274]], [[53.856811, -2.04274], [53.856772, -2.04259]], [[53.856483, -2.041348], [53.856435, -2.04121]], [[53.852356, -2.040933], [53.852258, -2.040942]], [[53.850019, -2.040982], [53.849925, -2.040974]], [[53.848968, -2.039375], [53.848893, -2.039271]], [[53.847927, -2.036739], [53.847885, -2.036589]], [[53.847885, -2.036589], [53.847852, -2.036445]], [[53.847548, -2.035841], [53.8475, -2.035701]], [[53.8475, -2.035701], [53.847441, -2.035573]], [[53.846405, -2.032587], [53.846328, -2.032481]], [[53.846328, -2.032481], [53.846245, -2.032401]], [[53.843521, -2.029273], [53.843433, -2.029234]], [[53.84309, -2.028993], [53.843036, -2.028865]], [[53.842668, -2.028384], [53.842587, -2.028274]], [[53.84209, -2.027768], [53.842002, -2.027691]], [[53.842002, -2.027691], [53.841922, -2.027566]], [[53.841558, -2.027174], [53.84148, -2.027077]], [[53.840664, -2.026227], [53.840582, -2.02612]], [[53.840205, -2.025701], [53.840125, -2.025593]], [[53.838966, -2.024155], [53.838968, -2.024305]], [[53.838527, -2.023424], [53.838436, -2.023428]], [[53.838387, -2.023504], [53.838367, -2.023663]], [[53.838151, -2.023635], [53.838071, -2.02353]], [[53.838415, -2.020169], [53.838438, -2.020301]], [[53.838438, -2.020301], [53.837944, -2.020035]], [[53.837142, -2.019447], [53.837069, -2.019402]], [[53.836977, -2.019357], [53.836882, -2.019326]], [[53.836882, -2.019326], [53.836791, -2.019304]], [[53.836791, -2.019304], [53.836705, -2.019351]], [[53.836705, -2.019351], [53.836624, -2.01942]], [[53.836624, -2.01942], [53.836535, -2.019339]], [[53.836416, -2.019136], [53.836346, -2.019028]], [[53.836346, -2.019028], [53.836314, -2.018873]], [[53.836314, -2.018873], [53.836255, -2.018751]], [[53.836255, -2.018751], [53.836229, -2.018603]], [[53.835997, -2.019909], [53.836034, -2.020049]], [[53.836034, -2.020049], [53.835937, -2.020023]], [[53.835794, -2.019861], [53.835711, -2.019852]], [[53.835711, -2.019852], [53.835609, -2.019853]], [[53.835609, -2.019853], [53.835579, -2.019931]], [[53.835516, -2.020243], [53.835474, -2.020381]], [[53.835356, -2.020834], [53.835266, -2.020821]], [[53.835266, -2.020821], [53.835219, -2.020956]], [[53.834701, -2.021645], [53.834624, -2.021726]], [[53.834624, -2.021726], [53.834535, -2.021696]], [[53.834535, -2.021696], [53.83445, -2.021757]], [[53.83445, -2.021757], [53.834396, -2.021897]], [[53.834396, -2.021897], [53.834303, -2.021952]], [[53.833829, -2.020985], [53.833744, -2.020917]], [[53.833744, -2.020917], [53.833652, -2.020954]], [[53.833652, -2.020954], [53.833559, -2.020984]], [[53.833235, -2.020978], [53.833147, -2.020941]], [[53.833147, -2.020941], [53.83306, -2.020877]], [[53.832936, -2.02063], [53.832861, -2.020516]], [[53.832861, -2.020516], [53.832768, -2.020506]], [[53.832545, -2.02037], [53.832449, -2.02042]], [[53.832254, -2.020364], [53.832169, -2.020434]], [[53.832169, -2.020434], [53.832074, -2.020445]], [[53.832074, -2.020445], [53.831985, -2.020478]], [[53.831985, -2.020478], [53.831929, -2.020626]], [[53.831929, -2.020626], [53.831978, -2.020507]], [[53.832068, -2.020557], [53.832011, -2.020689]], [[53.831458, -2.019195], [53.831428, -2.019041]], [[53.831038, -2.018596], [53.830984, -2.018462]], [[53.830859, -2.018291], [53.830844, -2.018125]], [[53.830739, -2.017733], [53.830712, -2.017561]], [[53.828979, -2.014264], [53.828909, -2.014169]], [[53.830096, -2.007816], [53.830026, -2.007712]], [[53.830026, -2.007712], [53.829943, -2.007643]], [[53.829864, -2.007562], [53.829904, -2.007413]], [[53.829904, -2.007413], [53.829825, -2.007338]], [[53.829833, -2.007161], [53.8298, -2.007016]], [[53.8298, -2.007016], [53.829727, -2.006922]], [[53.82867, -2.006258], [53.828586, -2.006334]], [[53.82841, -2.006272], [53.828319, -2.006234]], [[53.828191, -2.006151], [53.827777, -2.006092]], [[53.827777, -2.006092], [53.827683, -2.006064]], [[53.827683, -2.006064], [53.827593, -2.006042]], [[53.827593, -2.006042], [53.827498, -2.006079]], [[53.827498, -2.006079], [53.827408, -2.006158]], [[53.827408, -2.006158], [53.827324, -2.006219]], [[53.827227, -2.006167], [53.827154, -2.006066]], [[53.826766, -2.004433], [53.826764, -2.004274]], [[53.826617, -2.004397], [53.826587, -2.004552]], [[53.826572, -2.004753], [53.826522, -2.004894]], [[53.826522, -2.004894], [53.826458, -2.005032]], [[53.826306, -2.005032], [53.826214, -2.005062]], [[53.826214, -2.005062], [53.826121, -2.005034]], [[53.825953, -2.00497], [53.82586, -2.004991]], [[53.82586, -2.004991], [53.825774, -2.00494]], [[53.825607, -2.004904], [53.825509, -2.004903]], [[53.82478, -2.005032], [53.824699, -2.004951]], [[53.82472, -2.005038], [53.824697, -2.00519]], [[53.823707, -2.004508], [53.823632, -2.004543]], [[53.823632, -2.004543], [53.823547, -2.00461]], [[53.823521, -2.004758], [53.823527, -2.004916]], [[53.823527, -2.004916], [53.823541, -2.00507]], [[53.823505, -2.005541], [53.823464, -2.005692]], [[53.823464, -2.005692], [53.823433, -2.005853]], [[53.823433, -2.005853], [53.823455, -2.00601]], [[53.823455, -2.00601], [53.823416, -2.006147]], [[53.823416, -2.006147], [53.823408, -2.006304]], [[53.822246, -2.010345], [53.822201, -2.010448]], [[53.822323, -2.012465], [53.822279, -2.012598]], [[53.822174, -2.01369], [53.822122, -2.013826]], [[53.822122, -2.013826], [53.822087, -2.013976]], [[53.822087, -2.013976], [53.822056, -2.014136]], [[53.819409, -2.024011], [53.819341, -2.024117]], [[53.819341, -2.024117], [53.819297, -2.024259]], [[53.819297, -2.024259], [53.819254, -2.024399]], [[53.819209, -2.024715], [53.819149, -2.024831]], [[53.819149, -2.024831], [53.819074, -2.024934]], [[53.818959, -2.025172], [53.818913, -2.025314]], [[53.81784, -2.026578], [53.817753, -2.026631]], [[53.817753, -2.026631], [53.817664, -2.026679]], [[53.817664, -2.026679], [53.817569, -2.026697]], [[53.817569, -2.026697], [53.81748, -2.026735]], [[53.816527, -2.027404], [53.81647, -2.027526]], [[53.81647, -2.027526], [53.816421, -2.027653]], [[53.816421, -2.027653], [53.816335, -2.0277]], [[53.816335, -2.0277], [53.816247, -2.027745]], [[53.816247, -2.027745], [53.816162, -2.027798]], [[53.816162, -2.027798], [53.816084, -2.027875]], [[53.816026, -2.027996], [53.815945, -2.028077]], [[53.81583, -2.028279], [53.815773, -2.028406]], [[53.815643, -2.028635], [53.815587, -2.028759]], [[53.815587, -2.028759], [53.81551, -2.028867]], [[53.81551, -2.028867], [53.815439, -2.028965]], [[53.815439, -2.028965], [53.815355, -2.029045]], [[53.815285, -2.029147], [53.815197, -2.029227]], [[53.814877, -2.029567], [53.814798, -2.029659]], [[53.814647, -2.029877], [53.814584, -2.029936]], [[53.814517, -2.030049], [53.814433, -2.03014]], [[53.813617, -2.030255], [53.813527, -2.030264]], [[53.812882, -2.029912], [53.812793, -2.029887]], [[53.812606, -2.029949], [53.812534, -2.029857]], [[53.811875, -2.029435], [53.811799, -2.029538]], [[53.811799, -2.029538], [53.811708, -2.02959]], [[53.811708, -2.02959], [53.811645, -2.02972]], [[53.811645, -2.02972], [53.811572, -2.029835]], [[53.81149, -2.029921], [53.811392, -2.029955]], [[53.811392, -2.029955], [53.811299, -2.029996]], [[53.811216, -2.030056], [53.811127, -2.030117]], [[53.811127, -2.030117], [53.811032, -2.030135]], [[53.811032, -2.030135], [53.810952, -2.030227]], [[53.810952, -2.030227], [53.810858, -2.030291]], [[53.810858, -2.030291], [53.81078, -2.030369]], [[53.810521, -2.030511], [53.81043, -2.030544]], [[53.808499, -2.033068], [53.808428, -2.033178]], [[53.807137, -2.03521], [53.807046, -2.035177]], [[53.8044, -2.040578], [53.804353, -2.040718]], [[53.804353, -2.040718], [53.804318, -2.04087]], [[53.803509, -2.042564], [53.803445, -2.042682]], [[53.803445, -2.042682], [53.803356, -2.042753]], [[53.803111, -2.043259], [53.803065, -2.043331]], [[53.803002, -2.043472], [53.802956, -2.043621]], [[53.802563, -2.044928], [53.802524, -2.04508]], [[53.801641, -2.046996], [53.80158, -2.047109]], [[53.80158, -2.047109], [53.801531, -2.047251]], [[53.801531, -2.047251], [53.801509, -2.047413]], [[53.801509, -2.047413], [53.801463, -2.047559]], [[53.801463, -2.047559], [53.801427, -2.047709]], [[53.801427, -2.047709], [53.80137, -2.047833]], [[53.80137, -2.047833], [53.801297, -2.047922]], [[53.801297, -2.047922], [53.80122, -2.048008]], [[53.80122, -2.048008], [53.801145, -2.048115]], [[53.801145, -2.048115], [53.801045, -2.048103]], [[53.797266, -2.051265], [53.797199, -2.051378]], [[53.797199, -2.051378], [53.797119, -2.05148]], [[53.796287, -2.054153], [53.796237, -2.054287]], [[53.796237, -2.054287], [53.79622, -2.054442]], [[53.796174, -2.054756], [53.79611, -2.054864]], [[53.793992, -2.060485], [53.793933, -2.060616]], [[53.793933, -2.060616], [53.793849, -2.060704]], [[53.793849, -2.060704], [53.793784, -2.060813]], [[53.793465, -2.061307], [53.793445, -2.061465]], [[53.792101, -2.063195], [53.792111, -2.063347]], [[53.792111, -2.063347], [53.792164, -2.063477]], [[53.792565, -2.064576], [53.79259, -2.06465]], [[53.79259, -2.06465], [53.79263, -2.064789]], [[53.79297, -2.065892], [53.793053, -2.065955]], [[53.793053, -2.065955], [53.793052, -2.06612]], [[53.79306, -2.066272], [53.79314, -2.066371]], [[53.793522, -2.067454], [53.793553, -2.067599]], [[53.793553, -2.067599], [53.793617, -2.067726]], [[53.788072, -2.079409], [53.788126, -2.079547]], [[53.78721, -2.082156], [53.787141, -2.082048]], [[53.786885, -2.081825], [53.786795, -2.081802]], [[53.786795, -2.081802], [53.786711, -2.081695]], [[53.780781, -2.086475], [53.780687, -2.086431]], [[53.780687, -2.086431], [53.78059, -2.086424]], [[53.776915, -2.082702], [53.776824, -2.08273]], [[53.776441, -2.082674], [53.776365, -2.082638]], [[53.775427, -2.082441], [53.775335, -2.082452]], [[53.775335, -2.082452], [53.775237, -2.082475]], [[53.774951, -2.082457], [53.774857, -2.082446]], [[53.774857, -2.082446], [53.774767, -2.08244]], [[53.774494, -2.082251], [53.774399, -2.082256]], [[53.774399, -2.082256], [53.774306, -2.082243]], [[53.773926, -2.08224], [53.77383, -2.082246]], [[53.77383, -2.082246], [53.77373, -2.08223]], [[53.77373, -2.08223], [53.773673, -2.082252]], [[53.773608, -2.082141], [53.773611, -2.081981]], [[53.772267, -2.073653], [53.772213, -2.073518]], [[53.772213, -2.073518], [53.772142, -2.0734]], [[53.772142, -2.0734], [53.772111, -2.073252]], [[53.769304, -2.064661], [53.769214, -2.06463]], [[53.769214, -2.06463], [53.769131, -2.064552]], [[53.76843, -2.06333], [53.768344, -2.063262]], [[53.767289, -2.062039], [53.767195, -2.061979]], [[53.767195, -2.061979], [53.767127, -2.061876]], [[53.764148, -2.058518], [53.764067, -2.05844]], [[53.764067, -2.05844], [53.763979, -2.0584]], [[53.763979, -2.0584], [53.763917, -2.058281]], [[53.763721, -2.057922], [53.763644, -2.057808]], [[53.76306, -2.05702], [53.763027, -2.056915]], [[53.762982, -2.05677], [53.762911, -2.056664]], [[53.762911, -2.056664], [53.762818, -2.056605]], [[53.758673, -2.052654], [53.758575, -2.052657]], [[53.758575, -2.052657], [53.758477, -2.052635]], [[53.758477, -2.052635], [53.758386, -2.052641]], [[53.757886, -2.053049], [53.757806, -2.053124]], [[53.756552, -2.054195], [53.756499, -2.054274]], [[53.756499, -2.054274], [53.756476, -2.054429]], [[53.756424, -2.054571], [53.756359, -2.054659]], [[53.756279, -2.054728], [53.756208, -2.054835]], [[53.756208, -2.054835], [53.756118, -2.054867]], [[53.756118, -2.054867], [53.756028, -2.054908]], [[53.755953, -2.055001], [53.755857, -2.055013]], [[53.755718, -2.055172], [53.755626, -2.055136]], [[53.755496, -2.054971], [53.755476, -2.054809]], [[53.754945, -2.052832], [53.754843, -2.052813]], [[53.750063, -2.058658], [53.750086, -2.058725]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_42e827e87399747b513a131868dfab3c = L.polyline(
                [[[53.986858, -2.101969], [53.986769, -2.101923]], [[53.986455, -2.102507], [53.986428, -2.102657]], [[53.986428, -2.102657], [53.986399, -2.102804]], [[53.986399, -2.102804], [53.98631, -2.102874]], [[53.98631, -2.102874], [53.986223, -2.102937]], [[53.986223, -2.102937], [53.986137, -2.103015]], [[53.986137, -2.103015], [53.986039, -2.103063]], [[53.986039, -2.103063], [53.985957, -2.10314]], [[53.985787, -2.103282], [53.985692, -2.103331]], [[53.985692, -2.103331], [53.985601, -2.10338]], [[53.985511, -2.10341], [53.985425, -2.103453]], [[53.985425, -2.103453], [53.98533, -2.103439]], [[53.98533, -2.103439], [53.985233, -2.103444]], [[53.984645, -2.103587], [53.984553, -2.103656]], [[53.984553, -2.103656], [53.984459, -2.103689]], [[53.984134, -2.103971], [53.984066, -2.104078]], [[53.984066, -2.104078], [53.983986, -2.104172]], [[53.983986, -2.104172], [53.98391, -2.104257]], [[53.98391, -2.104257], [53.983812, -2.104287]], [[53.983812, -2.104287], [53.98372, -2.104324]], [[53.98344, -2.10469], [53.983401, -2.104844]], [[53.983014, -2.105952], [53.982969, -2.106096]], [[53.982969, -2.106096], [53.98289, -2.106173]], [[53.982625, -2.106219], [53.982532, -2.106224]], [[53.982254, -2.106191], [53.982152, -2.106169]], [[53.982152, -2.106169], [53.982061, -2.106161]], [[53.982061, -2.106161], [53.981961, -2.106143]], [[53.981675, -2.106112], [53.981576, -2.106095]], [[53.981576, -2.106095], [53.981479, -2.106074]], [[53.981479, -2.106074], [53.981393, -2.106025]], [[53.981393, -2.106025], [53.981303, -2.105994]], [[53.981303, -2.105994], [53.981205, -2.105981]], [[53.980822, -2.105925], [53.980738, -2.105998]], [[53.980713, -2.106154], [53.980683, -2.106303]], [[53.980468, -2.106779], [53.980431, -2.106941]], [[53.980206, -2.10818], [53.980152, -2.108329]], [[53.98004, -2.108802], [53.979981, -2.108942]], [[53.979797, -2.10932], [53.979743, -2.109446]], [[53.979743, -2.109446], [53.979679, -2.109569]], [[53.979679, -2.109569], [53.979614, -2.109675]], [[53.979515, -2.109969], [53.979462, -2.110111]], [[53.979404, -2.111256], [53.979383, -2.111419]], [[53.979383, -2.111419], [53.979386, -2.111581]], [[53.979386, -2.111581], [53.979378, -2.111744]], [[53.979378, -2.111744], [53.979365, -2.111909]], [[53.979365, -2.111909], [53.979354, -2.112069]], [[53.979325, -2.112391], [53.979326, -2.112546]], [[53.979326, -2.112546], [53.979296, -2.1127]], [[53.979296, -2.1127], [53.979296, -2.112866]], [[53.979296, -2.112866], [53.979299, -2.113027]], [[53.979248, -2.113175], [53.979223, -2.113337]], [[53.978525, -2.114161], [53.978451, -2.114269]], [[53.978451, -2.114269], [53.978384, -2.114371]], [[53.978384, -2.114371], [53.978298, -2.114444]], [[53.97725, -2.115367], [53.977173, -2.115454]], [[53.977173, -2.115454], [53.977087, -2.115501]], [[53.976898, -2.115507], [53.976794, -2.11553]], [[53.976608, -2.115512], [53.976518, -2.115502]], [[53.976331, -2.115548], [53.976238, -2.11557]], [[53.976238, -2.11557], [53.97614, -2.115562]], [[53.97614, -2.115562], [53.97604, -2.115554]], [[53.97604, -2.115554], [53.975941, -2.115605]], [[53.975403, -2.116265], [53.975313, -2.116336]], [[53.974618, -2.1177], [53.974535, -2.1178]], [[53.974535, -2.1178], [53.974471, -2.11793]], [[53.974408, -2.11804], [53.974348, -2.118168]], [[53.974348, -2.118168], [53.974283, -2.118285]], [[53.974079, -2.118606], [53.974016, -2.118722]], [[53.973307, -2.11982], [53.973238, -2.119919]], [[53.972864, -2.120483], [53.972794, -2.120579]], [[53.972641, -2.120785], [53.972571, -2.120886]], [[53.972571, -2.120886], [53.972489, -2.120967]], [[53.972489, -2.120967], [53.972401, -2.121057]], [[53.972328, -2.121156], [53.972252, -2.121251]], [[53.971241, -2.122592], [53.9712, -2.122741]], [[53.970662, -2.123243], [53.970581, -2.123335]], [[53.970581, -2.123335], [53.970502, -2.123429]], [[53.97043, -2.123545], [53.970339, -2.12362]], [[53.970176, -2.123793], [53.97013, -2.123937]], [[53.969966, -2.124096], [53.969889, -2.124182]], [[53.969889, -2.124182], [53.969818, -2.124283]], [[53.969649, -2.124476], [53.969572, -2.124567]], [[53.968757, -2.125682], [53.968693, -2.125814]], [[53.968512, -2.12638], [53.96845, -2.126522]], [[53.96845, -2.126522], [53.968385, -2.126641]], [[53.968385, -2.126641], [53.968316, -2.126744]], [[53.968027, -2.12717], [53.967967, -2.127297]], [[53.967967, -2.127297], [53.967911, -2.127426]], [[53.967753, -2.127594], [53.967682, -2.127699]], [[53.967682, -2.127699], [53.967607, -2.127802]], [[53.967607, -2.127802], [53.96753, -2.127892]], [[53.967353, -2.128032], [53.967271, -2.128125]], [[53.967271, -2.128125], [53.967188, -2.12819]], [[53.967107, -2.128266], [53.967022, -2.12834]], [[53.967022, -2.12834], [53.966942, -2.128423]], [[53.966942, -2.128423], [53.966861, -2.128516]], [[53.9666, -2.128741], [53.966511, -2.128807]], [[53.966245, -2.129003], [53.966161, -2.129093]], [[53.966161, -2.129093], [53.966075, -2.129181]], [[53.966075, -2.129181], [53.965985, -2.129261]], [[53.965985, -2.129261], [53.965902, -2.129327]], [[53.965731, -2.129462], [53.965655, -2.129547]], [[53.965655, -2.129547], [53.965583, -2.129648]], [[53.965407, -2.129696], [53.965309, -2.129671]], [[53.965309, -2.129671], [53.965214, -2.129626]], [[53.96493, -2.129649], [53.96483, -2.129683]], [[53.96483, -2.129683], [53.964727, -2.129685]], [[53.964727, -2.129685], [53.96463, -2.12968]], [[53.964537, -2.129691], [53.964444, -2.129714]], [[53.964444, -2.129714], [53.964347, -2.129759]], [[53.964347, -2.129759], [53.964254, -2.129793]], [[53.964254, -2.129793], [53.964162, -2.12986]], [[53.963787, -2.130073], [53.963689, -2.130119]], [[53.963689, -2.130119], [53.963598, -2.130137]], [[53.963598, -2.130137], [53.963507, -2.130105]], [[53.963507, -2.130105], [53.963413, -2.130101]], [[53.963279, -2.130201], [53.963215, -2.130329]], [[53.963215, -2.130329], [53.963122, -2.130364]], [[53.963027, -2.130402], [53.962934, -2.130449]], [[53.962934, -2.130449], [53.962845, -2.130482]], [[53.962845, -2.130482], [53.962754, -2.130544]], [[53.962502, -2.13073], [53.962422, -2.130816]], [[53.962338, -2.130892], [53.962243, -2.130943]], [[53.962059, -2.131057], [53.961971, -2.131114]], [[53.961799, -2.131243], [53.961706, -2.131291]], [[53.961706, -2.131291], [53.961622, -2.131382]], [[53.961622, -2.131382], [53.961555, -2.1315]], [[53.961482, -2.131592], [53.961408, -2.131707]], [[53.961408, -2.131707], [53.96132, -2.131795]], [[53.96126, -2.132094], [53.961209, -2.132223]], [[53.961209, -2.132223], [53.96113, -2.132312]], [[53.96113, -2.132312], [53.961042, -2.13239]], [[53.960861, -2.132515], [53.960765, -2.132508]], [[53.960765, -2.132508], [53.960666, -2.132527]], [[53.960666, -2.132527], [53.960572, -2.132536]], [[53.959911, -2.132744], [53.959826, -2.132802]], [[53.959826, -2.132802], [53.959746, -2.132872]], [[53.959393, -2.133098], [53.959308, -2.133158]], [[53.959123, -2.133281], [53.959034, -2.133356]], [[53.959034, -2.133356], [53.958947, -2.133417]], [[53.958872, -2.133503], [53.958786, -2.133561]], [[53.95861, -2.13369], [53.958524, -2.133752]], [[53.958347, -2.133837], [53.958265, -2.1339]], [[53.958265, -2.1339], [53.958171, -2.13394]], [[53.958091, -2.134016], [53.958007, -2.134083]], [[53.958007, -2.134083], [53.95792, -2.134133]], [[53.957334, -2.134486], [53.957245, -2.134545]], [[53.957245, -2.134545], [53.957167, -2.13464]], [[53.957167, -2.13464], [53.957072, -2.13467]], [[53.957072, -2.13467], [53.956981, -2.134716]], [[53.956981, -2.134716], [53.956882, -2.134767]], [[53.956882, -2.134767], [53.956784, -2.134806]], [[53.956784, -2.134806], [53.956692, -2.134873]], [[53.956792, -2.135988], [53.956816, -2.136146]], [[53.956816, -2.136146], [53.95682, -2.136299]], [[53.956925, -2.136755], [53.956937, -2.136912]], [[53.956775, -2.137734], [53.95668, -2.137754]], [[53.956409, -2.137869], [53.956312, -2.137858]], [[53.955478, -2.138052], [53.955378, -2.138093]], [[53.955378, -2.138093], [53.955287, -2.138117]], [[53.954988, -2.138289], [53.954913, -2.138407]], [[53.954913, -2.138407], [53.954852, -2.138519]], [[53.9547, -2.138717], [53.954639, -2.138836]], [[53.954522, -2.139052], [53.954457, -2.139163]], [[53.954457, -2.139163], [53.954381, -2.139278]], [[53.954381, -2.139278], [53.954296, -2.13938]], [[53.952859, -2.139125], [53.952771, -2.139086]], [[53.95266, -2.13899], [53.952568, -2.138972]], [[53.952568, -2.138972], [53.952474, -2.13893]], [[53.952474, -2.13893], [53.952384, -2.138937]], [[53.952384, -2.138937], [53.95229, -2.138924]], [[53.951319, -2.140008], [53.951404, -2.140074]], [[53.95112, -2.140593], [53.951075, -2.140727]], [[53.950773, -2.141153], [53.950695, -2.141258]], [[53.950558, -2.141519], [53.950458, -2.14151]], [[53.950458, -2.14151], [53.950381, -2.141611]], [[53.950047, -2.142145], [53.95001, -2.142287]], [[53.95001, -2.142287], [53.949918, -2.142351]], [[53.949335, -2.1435], [53.949274, -2.143633]], [[53.949274, -2.143633], [53.949229, -2.143766]], [[53.948219, -2.14325], [53.948119, -2.143277]], [[53.948119, -2.143277], [53.948018, -2.143298]], [[53.948018, -2.143298], [53.947928, -2.143352]], [[53.947833, -2.143329], [53.947746, -2.14328]], [[53.947746, -2.14328], [53.947647, -2.143243]], [[53.947647, -2.143243], [53.947557, -2.143225]], [[53.947557, -2.143225], [53.947459, -2.143229]], [[53.947459, -2.143229], [53.947367, -2.143233]], [[53.947367, -2.143233], [53.947271, -2.143283]], [[53.947271, -2.143283], [53.947174, -2.143306]], [[53.947174, -2.143306], [53.947077, -2.143299]], [[53.947077, -2.143299], [53.946982, -2.143284]], [[53.946779, -2.143229], [53.94668, -2.143223]], [[53.94668, -2.143223], [53.946588, -2.143195]], [[53.946408, -2.143055], [53.946318, -2.143013]], [[53.94555, -2.142811], [53.945459, -2.14278]], [[53.945459, -2.14278], [53.945358, -2.142746]], [[53.944251, -2.142492], [53.94416, -2.14242]], [[53.94416, -2.14242], [53.944069, -2.142372]], [[53.94395, -2.142335], [53.943881, -2.142237]], [[53.943881, -2.142237], [53.94379, -2.142191]], [[53.943077, -2.1415], [53.94299, -2.141452]], [[53.94299, -2.141452], [53.942906, -2.141367]], [[53.942906, -2.141367], [53.942814, -2.141293]], [[53.942476, -2.141033], [53.942394, -2.140951]], [[53.942216, -2.140812], [53.942124, -2.140769]], [[53.941746, -2.140557], [53.94165, -2.140553]], [[53.941546, -2.140564], [53.941474, -2.140468]], [[53.941474, -2.140468], [53.941409, -2.140337]], [[53.941409, -2.140337], [53.94135, -2.140219]], [[53.941103, -2.140075], [53.941013, -2.140048]], [[53.941013, -2.140048], [53.940918, -2.140047]], [[53.940918, -2.140047], [53.940826, -2.140024]], [[53.940826, -2.140024], [53.940734, -2.139995]], [[53.939963, -2.139883], [53.939873, -2.139867]], [[53.9397, -2.139731], [53.939641, -2.139615]], [[53.939641, -2.139615], [53.93955, -2.13959]], [[53.93955, -2.13959], [53.939461, -2.139568]], [[53.938839, -2.139348], [53.938748, -2.139333]], [[53.938748, -2.139333], [53.938664, -2.139396]], [[53.938664, -2.139396], [53.938633, -2.139554]], [[53.938633, -2.139554], [53.938549, -2.13962]], [[53.937906, -2.139749], [53.93782, -2.139813]], [[53.93782, -2.139813], [53.937724, -2.139814]], [[53.937724, -2.139814], [53.937631, -2.139852]], [[53.937631, -2.139852], [53.937538, -2.139883]], [[53.937538, -2.139883], [53.937454, -2.139957]], [[53.937454, -2.139957], [53.937364, -2.139979]], [[53.937176, -2.140067], [53.93709, -2.140116]], [[53.936628, -2.140235], [53.936534, -2.140259]], [[53.93599, -2.140243], [53.9359, -2.140269]], [[53.9359, -2.140269], [53.935814, -2.140346]], [[53.935118, -2.140733], [53.935024, -2.140784]], [[53.934932, -2.140856], [53.934868, -2.140964]], [[53.934868, -2.140964], [53.93477, -2.141002]], [[53.934311, -2.141259], [53.934251, -2.141387]], [[53.933358, -2.141771], [53.9333, -2.141905]], [[53.9333, -2.141905], [53.933263, -2.14205]], [[53.932757, -2.143344], [53.932702, -2.143491]], [[53.932702, -2.143491], [53.932631, -2.14361]], [[53.932631, -2.14361], [53.932572, -2.14374]], [[53.932572, -2.14374], [53.932522, -2.143869]], [[53.932522, -2.143869], [53.932471, -2.144014]], [[53.932471, -2.144014], [53.932417, -2.144146]], [[53.932417, -2.144146], [53.932319, -2.144205]], [[53.931915, -2.144318], [53.931821, -2.144334]], [[53.931821, -2.144334], [53.93172, -2.144328]], [[53.931178, -2.144675], [53.931085, -2.144725]], [[53.931085, -2.144725], [53.930984, -2.144733]], [[53.930984, -2.144733], [53.930891, -2.144737]], [[53.928731, -2.145064], [53.928634, -2.145061]], [[53.928634, -2.145061], [53.928548, -2.145118]], [[53.928267, -2.14514], [53.928176, -2.14512]], [[53.928176, -2.14512], [53.928077, -2.145129]], [[53.926812, -2.145135], [53.926718, -2.145146]], [[53.926718, -2.145146], [53.926623, -2.145147]], [[53.926623, -2.145147], [53.926532, -2.14511]], [[53.926532, -2.14511], [53.926439, -2.145172]], [[53.926439, -2.145172], [53.926363, -2.145092]], [[53.926363, -2.145092], [53.926279, -2.145027]], [[53.926279, -2.145027], [53.926189, -2.144979]], [[53.926097, -2.144956], [53.926002, -2.144918]], [[53.926002, -2.144918], [53.925912, -2.144894]], [[53.925912, -2.144894], [53.925814, -2.144903]], [[53.925725, -2.144871], [53.925632, -2.144816]], [[53.925632, -2.144816], [53.925536, -2.144819]], [[53.925536, -2.144819], [53.925449, -2.144762]], [[53.925357, -2.144764], [53.925259, -2.144765]], [[53.925259, -2.144765], [53.925168, -2.144754]], [[53.925168, -2.144754], [53.925076, -2.144697]], [[53.925076, -2.144697], [53.924981, -2.144681]], [[53.924981, -2.144681], [53.924887, -2.144702]], [[53.924887, -2.144702], [53.924797, -2.144651]], [[53.924797, -2.144651], [53.92471, -2.144598]], [[53.92471, -2.144598], [53.924609, -2.144574]], [[53.924609, -2.144574], [53.924512, -2.144547]], [[53.924512, -2.144547], [53.92442, -2.144543]], [[53.92442, -2.144543], [53.924327, -2.144553]], [[53.924327, -2.144553], [53.924235, -2.144567]], [[53.924235, -2.144567], [53.924134, -2.144555]], [[53.924134, -2.144555], [53.924039, -2.14455]], [[53.924039, -2.14455], [53.923944, -2.144508]], [[53.923944, -2.144508], [53.923843, -2.144511]], [[53.923843, -2.144511], [53.923743, -2.144504]], [[53.92344, -2.144503], [53.923345, -2.144503]], [[53.923345, -2.144503], [53.923255, -2.1445]], [[53.923085, -2.144392], [53.923028, -2.144253]], [[53.923028, -2.144253], [53.922952, -2.144159]], [[53.922952, -2.144159], [53.922871, -2.144072]], [[53.922871, -2.144072], [53.922791, -2.143994]], [[53.922791, -2.143994], [53.922698, -2.143943]], [[53.922117, -2.143359], [53.922021, -2.143333]], [[53.922021, -2.143333], [53.921933, -2.143396]], [[53.921752, -2.14341], [53.92167, -2.143514]], [[53.92167, -2.143514], [53.921615, -2.143635]], [[53.921615, -2.143635], [53.921529, -2.143708]], [[53.921529, -2.143708], [53.921438, -2.143732]], [[53.921438, -2.143732], [53.92135, -2.143798]], [[53.92135, -2.143798], [53.921278, -2.143891]], [[53.921278, -2.143891], [53.921186, -2.143928]], [[53.920741, -2.144288], [53.920656, -2.144374]], [[53.919948, -2.144845], [53.919872, -2.144951]], [[53.919326, -2.144772], [53.919234, -2.144789]], [[53.919234, -2.144789], [53.919145, -2.144841]], [[53.918683, -2.144926], [53.918632, -2.145061]], [[53.918632, -2.145061], [53.918578, -2.145196]], [[53.918484, -2.145267], [53.918407, -2.145349]], [[53.918407, -2.145349], [53.918314, -2.145391]], [[53.918314, -2.145391], [53.918219, -2.145425]], [[53.918219, -2.145425], [53.918132, -2.145465]], [[53.917752, -2.145602], [53.917662, -2.145621]], [[53.917662, -2.145621], [53.917562, -2.145647]], [[53.917562, -2.145647], [53.917473, -2.1456]], [[53.917473, -2.1456], [53.917379, -2.145611]], [[53.917188, -2.145605], [53.917089, -2.145594]], [[53.916555, -2.14477], [53.916503, -2.144642]], [[53.916503, -2.144642], [53.916495, -2.144475]], [[53.916324, -2.144252], [53.91627, -2.144386]], [[53.915786, -2.145124], [53.915707, -2.145243]], [[53.915707, -2.145243], [53.915647, -2.145364]], [[53.915752, -2.145112], [53.915661, -2.145062]], [[53.915692, -2.145111], [53.915751, -2.145155]], [[53.916201, -2.144305], [53.91627, -2.144405]], [[53.917055, -2.143333], [53.917103, -2.1432]], [[53.917298, -2.141866], [53.91725, -2.141721]], [[53.917178, -2.141605], [53.917126, -2.141474]], [[53.91697, -2.140917], [53.9169, -2.14081]], [[53.9167, -2.140069], [53.9167, -2.1399]], [[53.9167, -2.1399], [53.916692, -2.139741]], [[53.916692, -2.139741], [53.916726, -2.139588]], [[53.916712, -2.139268], [53.916684, -2.139105]], [[53.916684, -2.139105], [53.916665, -2.138955]], [[53.916665, -2.138955], [53.916618, -2.138807]], [[53.916618, -2.138807], [53.916559, -2.138685]], [[53.916549, -2.138356], [53.916574, -2.1382]], [[53.916868, -2.137528], [53.916926, -2.137397]], [[53.917421, -2.13605], [53.917457, -2.135883]], [[53.917712, -2.134868], [53.917763, -2.134731]], [[53.917796, -2.134411], [53.91783, -2.13427]], [[53.917874, -2.134126], [53.917893, -2.133977]], [[53.917893, -2.133977], [53.917917, -2.133826]], [[53.917917, -2.133826], [53.91793, -2.133656]], [[53.91793, -2.133656], [53.917965, -2.133507]], [[53.917965, -2.133507], [53.917939, -2.133341]], [[53.917858, -2.133032], [53.917815, -2.13289]], [[53.917815, -2.13289], [53.917769, -2.13274]], [[53.917769, -2.13274], [53.917742, -2.132588]], [[53.917742, -2.132588], [53.91771, -2.132425]], [[53.917819, -2.131656], [53.917847, -2.131511]], [[53.918058, -2.130526], [53.91814, -2.130436]], [[53.91814, -2.130436], [53.918233, -2.130409]], [[53.918604, -2.130249], [53.918685, -2.130175]], [[53.919148, -2.12997], [53.919243, -2.129949]], [[53.919505, -2.130051], [53.919599, -2.129997]], [[53.919599, -2.129997], [53.919687, -2.130028]], [[53.919687, -2.130028], [53.919778, -2.130055]], [[53.919924, -2.130265], [53.919972, -2.130403]], [[53.919972, -2.130403], [53.920069, -2.130456]], [[53.920069, -2.130456], [53.920166, -2.130504]], [[53.920166, -2.130504], [53.920233, -2.130609]], [[53.920396, -2.130146], [53.920404, -2.12998]], [[53.920394, -2.129826], [53.92047, -2.129707]], [[53.92047, -2.129707], [53.920489, -2.129556]], [[53.920489, -2.129556], [53.920526, -2.129398]], [[53.920526, -2.129398], [53.920567, -2.129247]], [[53.920567, -2.129247], [53.920612, -2.129116]], [[53.920612, -2.129116], [53.920668, -2.128977]], [[53.920668, -2.128977], [53.920721, -2.128845]], [[53.920804, -2.12855], [53.920873, -2.128441]], [[53.920873, -2.128441], [53.920942, -2.128313]], [[53.920942, -2.128313], [53.920996, -2.128175]], [[53.920996, -2.128175], [53.921045, -2.128036]], [[53.921045, -2.128036], [53.921106, -2.127905]], [[53.921106, -2.127905], [53.921186, -2.12782]], [[53.921186, -2.12782], [53.921254, -2.127704]], [[53.921254, -2.127704], [53.921326, -2.127588]], [[53.921623, -2.127208], [53.921703, -2.127132]], [[53.921703, -2.127132], [53.921771, -2.127028]], [[53.921771, -2.127028], [53.921842, -2.126929]], [[53.921842, -2.126929], [53.921928, -2.126843]], [[53.921928, -2.126843], [53.922017, -2.126759]], [[53.922017, -2.126759], [53.922099, -2.126674]], [[53.922099, -2.126674], [53.92214, -2.12652]], [[53.92214, -2.12652], [53.922223, -2.126438]], [[53.922361, -2.126202], [53.922439, -2.126116]], [[53.922485, -2.125974], [53.922539, -2.125842]], [[53.922539, -2.125842], [53.922615, -2.12573]], [[53.922615, -2.12573], [53.922709, -2.125667]], [[53.922804, -2.125603], [53.922896, -2.125549]], [[53.922982, -2.125474], [53.923033, -2.125341]], [[53.923033, -2.125341], [53.923121, -2.125272]], [[53.923486, -2.125037], [53.923579, -2.124993]], [[53.924466, -2.124686], [53.924547, -2.124599]], [[53.924547, -2.124599], [53.924612, -2.124485]], [[53.924964, -2.123853], [53.925053, -2.123766]], [[53.925117, -2.12365], [53.925195, -2.123537]], [[53.925352, -2.123321], [53.925426, -2.123225]], [[53.925426, -2.123225], [53.925492, -2.12311]], [[53.925492, -2.12311], [53.925562, -2.122985]], [[53.925562, -2.122985], [53.925638, -2.122875]], [[53.925638, -2.122875], [53.925707, -2.122757]], [[53.925707, -2.122757], [53.92578, -2.122663]], [[53.925835, -2.12254], [53.925875, -2.122391]], [[53.925875, -2.122391], [53.925921, -2.122249]], [[53.925921, -2.122249], [53.925987, -2.122136]], [[53.926123, -2.121911], [53.926181, -2.121766]], [[53.926181, -2.121766], [53.926236, -2.121635]], [[53.926236, -2.121635], [53.926298, -2.121501]], [[53.926298, -2.121501], [53.926373, -2.121404]], [[53.92648, -2.121129], [53.926537, -2.120994]], [[53.926537, -2.120994], [53.9266, -2.120868]], [[53.9266, -2.120868], [53.926662, -2.12075]], [[53.926662, -2.12075], [53.926721, -2.120611]], [[53.926721, -2.120611], [53.926752, -2.120459]], [[53.926752, -2.120459], [53.926779, -2.120308]], [[53.926779, -2.120308], [53.926835, -2.120183]], [[53.926848, -2.118478], [53.92687, -2.118316]], [[53.92694, -2.118027], [53.926975, -2.117877]], [[53.926975, -2.117877], [53.927004, -2.117724]], [[53.927004, -2.117724], [53.927055, -2.117597]], [[53.927055, -2.117597], [53.927111, -2.117477]], [[53.927111, -2.117477], [53.927167, -2.117333]], [[53.927167, -2.117333], [53.927228, -2.11722]], [[53.927228, -2.11722], [53.927287, -2.117086]], [[53.927287, -2.117086], [53.927333, -2.116939]], [[53.927333, -2.116939], [53.927399, -2.116817]], [[53.927399, -2.116817], [53.927456, -2.116682]], [[53.927456, -2.116682], [53.9275, -2.116533]], [[53.9275, -2.116533], [53.927577, -2.116415]], [[53.927577, -2.116415], [53.927649, -2.116303]], [[53.927649, -2.116303], [53.927712, -2.116173]], [[53.927712, -2.116173], [53.927779, -2.116052]], [[53.927779, -2.116052], [53.927841, -2.115937]], [[53.927841, -2.115937], [53.927905, -2.115827]], [[53.927905, -2.115827], [53.927992, -2.11577]], [[53.927992, -2.11577], [53.92808, -2.11569]], [[53.92808, -2.11569], [53.928162, -2.115618]], [[53.928162, -2.115618], [53.928221, -2.115487]], [[53.928302, -2.115012], [53.928345, -2.11486]], [[53.928345, -2.11486], [53.928341, -2.114699]], [[53.928341, -2.114699], [53.928356, -2.114527]], [[53.928356, -2.114527], [53.92836, -2.114372]], [[53.92836, -2.114372], [53.92838, -2.11421]], [[53.92838, -2.11421], [53.928386, -2.114041]], [[53.928386, -2.114041], [53.928429, -2.113906]], [[53.928429, -2.113906], [53.928418, -2.113738]], [[53.928418, -2.113738], [53.928411, -2.113566]], [[53.928411, -2.113566], [53.92841, -2.113411]], [[53.92841, -2.113411], [53.928447, -2.113254]], [[53.928036, -2.111709], [53.92796, -2.111609]], [[53.92796, -2.111609], [53.927896, -2.111499]], [[53.927502, -2.11041], [53.927451, -2.110265]], [[53.927451, -2.110265], [53.927406, -2.110126]], [[53.927301, -2.109863], [53.927225, -2.109744]], [[53.926963, -2.109026], [53.926924, -2.108884]], [[53.926924, -2.108884], [53.926884, -2.108734]], [[53.926818, -2.108601], [53.926753, -2.108462]], [[53.92663, -2.108208], [53.926595, -2.108046]], [[53.926595, -2.108046], [53.926544, -2.107911]], [[53.926544, -2.107911], [53.926496, -2.10777]], [[53.926496, -2.10777], [53.926441, -2.107625]], [[53.926441, -2.107625], [53.926401, -2.10748]], [[53.926401, -2.10748], [53.926355, -2.107334]], [[53.926355, -2.107334], [53.926296, -2.107208]], [[53.926296, -2.107208], [53.926244, -2.107065]], [[53.926195, -2.106921], [53.926122, -2.106806]], [[53.926122, -2.106806], [53.926069, -2.106669]], [[53.926069, -2.106669], [53.925995, -2.106542]], [[53.9259, -2.106259], [53.925854, -2.106117]], [[53.925854, -2.106117], [53.925813, -2.105976]], [[53.925813, -2.105976], [53.925744, -2.10586]], [[53.925744, -2.10586], [53.925695, -2.105724]], [[53.925695, -2.105724], [53.925646, -2.105582]], [[53.925646, -2.105582], [53.925577, -2.10545]], [[53.925577, -2.10545], [53.925518, -2.105306]], [[53.925386, -2.105056], [53.925324, -2.104929]], [[53.925324, -2.104929], [53.925297, -2.104776]], [[53.925297, -2.104776], [53.925262, -2.104627]], [[53.925262, -2.104627], [53.925171, -2.104566]], [[53.925171, -2.104566], [53.925092, -2.104462]], [[53.924919, -2.104054], [53.924854, -2.103925]], [[53.924854, -2.103925], [53.924792, -2.103802]], [[53.924792, -2.103802], [53.924748, -2.103666]], [[53.924748, -2.103666], [53.92469, -2.103545]], [[53.92469, -2.103545], [53.92463, -2.103424]], [[53.92463, -2.103424], [53.924575, -2.103303]], [[53.924575, -2.103303], [53.924518, -2.103164]], [[53.924518, -2.103164], [53.924462, -2.103038]], [[53.924462, -2.103038], [53.924426, -2.10288]], [[53.924426, -2.10288], [53.92438, -2.102738]], [[53.924318, -2.102493], [53.92429, -2.102338]], [[53.92429, -2.102338], [53.924238, -2.102206]], [[53.924238, -2.102206], [53.924192, -2.10205]], [[53.92414, -2.101924], [53.924072, -2.101823]], [[53.924023, -2.101682], [53.92398, -2.101542]], [[53.92398, -2.101542], [53.923972, -2.101376]], [[53.923711, -2.100953], [53.923627, -2.100858]], [[53.923627, -2.100858], [53.923542, -2.100761]], [[53.923388, -2.100559], [53.923321, -2.100429]], [[53.923321, -2.100429], [53.923247, -2.100339]], [[53.923164, -2.10027], [53.923094, -2.100172]], [[53.923094, -2.100172], [53.923014, -2.100075]], [[53.923014, -2.100075], [53.922937, -2.099991]], [[53.922937, -2.099991], [53.922857, -2.099883]], [[53.922788, -2.099771], [53.922712, -2.099659]], [[53.922712, -2.099659], [53.922641, -2.099547]], [[53.922641, -2.099547], [53.922565, -2.099449]], [[53.922565, -2.099449], [53.922475, -2.099375]], [[53.922475, -2.099375], [53.922404, -2.099266]], [[53.922404, -2.099266], [53.922328, -2.099155]], [[53.922328, -2.099155], [53.922255, -2.099048]], [[53.922255, -2.099048], [53.922181, -2.098949]], [[53.922181, -2.098949], [53.922101, -2.098844]], [[53.921941, -2.098671], [53.921863, -2.098557]], [[53.921863, -2.098557], [53.921776, -2.09847]], [[53.921776, -2.09847], [53.921706, -2.098352]], [[53.921706, -2.098352], [53.92162, -2.098259]], [[53.92162, -2.098259], [53.921545, -2.098149]], [[53.921545, -2.098149], [53.92148, -2.098039]], [[53.92148, -2.098039], [53.921402, -2.09794]], [[53.921262, -2.097709], [53.921205, -2.097578]], [[53.921205, -2.097578], [53.921161, -2.097432]], [[53.92093, -2.096532], [53.920899, -2.096371]], [[53.920899, -2.096371], [53.920852, -2.09623]], [[53.920784, -2.095932], [53.920739, -2.095799]], [[53.920644, -2.095508], [53.920589, -2.095379]], [[53.920589, -2.095379], [53.920549, -2.095233]], [[53.920405, -2.094651], [53.920379, -2.094487]], [[53.920271, -2.094034], [53.920242, -2.093873]], [[53.920077, -2.093307], [53.920042, -2.093154]], [[53.920042, -2.093154], [53.920024, -2.092987]], [[53.919929, -2.092533], [53.919902, -2.092385]], [[53.919902, -2.092385], [53.919875, -2.092227]], [[53.919875, -2.092227], [53.919831, -2.092074]], [[53.919831, -2.092074], [53.919787, -2.091933]], [[53.919787, -2.091933], [53.919735, -2.091804]], [[53.919735, -2.091804], [53.919679, -2.091674]], [[53.919679, -2.091674], [53.919658, -2.091516]], [[53.919658, -2.091516], [53.919659, -2.09135]], [[53.919659, -2.09135], [53.919633, -2.091201]], [[53.919633, -2.091201], [53.919592, -2.091047]], [[53.919592, -2.091047], [53.919572, -2.090897]], [[53.919572, -2.090897], [53.919515, -2.090775]], [[53.919515, -2.090775], [53.919484, -2.090613]], [[53.919484, -2.090613], [53.919434, -2.090465]], [[53.919434, -2.090465], [53.91939, -2.090332]], [[53.91939, -2.090332], [53.919367, -2.090175]], [[53.919367, -2.090175], [53.919338, -2.090014]], [[53.919338, -2.090014], [53.919301, -2.089863]], [[53.919301, -2.089863], [53.91928, -2.089711]], [[53.91928, -2.089711], [53.919257, -2.08955]], [[53.919257, -2.08955], [53.919198, -2.089431]], [[53.919196, -2.089275], [53.91918, -2.089122]], [[53.91918, -2.089122], [53.919203, -2.088962]], [[53.919251, -2.088822], [53.91928, -2.088667]], [[53.91928, -2.088667], [53.919304, -2.088517]], [[53.919304, -2.088517], [53.919341, -2.088363]], [[53.919341, -2.088363], [53.919414, -2.08825]], [[53.919414, -2.08825], [53.919478, -2.088133]], [[53.919478, -2.088133], [53.919549, -2.088024]], [[53.919549, -2.088024], [53.919611, -2.087911]], [[53.919763, -2.087705], [53.919846, -2.087634]], [[53.919846, -2.087634], [53.919922, -2.087528]], [[53.919922, -2.087528], [53.919999, -2.087419]], [[53.919999, -2.087419], [53.920077, -2.087329]], [[53.920077, -2.087329], [53.920154, -2.087238]], [[53.920154, -2.087238], [53.920253, -2.087238]], [[53.920253, -2.087238], [53.920344, -2.087196]], [[53.920344, -2.087196], [53.920437, -2.087191]], [[53.920437, -2.087191], [53.920531, -2.087188]], [[53.920531, -2.087188], [53.920632, -2.087176]], [[53.920632, -2.087176], [53.920721, -2.087097]], [[53.920721, -2.087097], [53.920794, -2.086984]], [[53.920794, -2.086984], [53.920865, -2.086868]], [[53.920865, -2.086868], [53.920914, -2.086738]], [[53.920914, -2.086738], [53.920953, -2.086601]], [[53.920995, -2.085999], [53.921033, -2.085859]], [[53.921033, -2.085859], [53.921036, -2.085695]], [[53.921036, -2.085695], [53.921021, -2.085533]], [[53.921021, -2.085533], [53.921031, -2.085372]], [[53.921031, -2.085372], [53.921026, -2.08521]], [[53.921026, -2.08521], [53.921008, -2.085039]], [[53.921008, -2.085039], [53.920987, -2.084883]], [[53.920987, -2.084883], [53.920969, -2.084721]], [[53.920969, -2.084721], [53.920999, -2.084571]], [[53.921107, -2.084151], [53.921155, -2.084004]], [[53.92128, -2.08323], [53.921278, -2.083059]], [[53.921278, -2.083059], [53.921243, -2.082911]], [[53.921245, -2.082752], [53.921234, -2.082582]], [[53.921181, -2.082144], [53.921207, -2.082304]], [[53.921177, -2.082141], [53.921162, -2.081977]], [[53.921162, -2.081977], [53.921141, -2.081828]], [[53.921141, -2.081828], [53.921137, -2.081655]], [[53.921137, -2.081655], [53.921094, -2.081496]], [[53.921094, -2.081496], [53.921029, -2.081379]], [[53.920843, -2.080627], [53.920803, -2.080486]], [[53.920519, -2.079292], [53.92051, -2.079127]], [[53.92051, -2.079127], [53.920499, -2.078963]], [[53.920498, -2.078803], [53.920482, -2.078648]], [[53.920482, -2.078648], [53.920451, -2.078484]], [[53.920419, -2.078154], [53.920395, -2.078]], [[53.920395, -2.078], [53.920348, -2.077865]], [[53.920348, -2.077865], [53.920281, -2.077736]], [[53.920281, -2.077736], [53.920218, -2.077622]], [[53.920218, -2.077622], [53.920158, -2.077481]], [[53.920033, -2.076853], [53.920012, -2.076687]], [[53.920018, -2.076524], [53.919991, -2.076366]], [[53.920002, -2.07604], [53.919979, -2.07589]], [[53.919974, -2.075728], [53.919978, -2.075556]], [[53.919978, -2.075556], [53.919955, -2.0754]], [[53.919955, -2.0754], [53.919924, -2.075247]], [[53.920113, -2.074676], [53.920116, -2.074503]], [[53.920116, -2.074503], [53.920133, -2.07435]], [[53.920133, -2.07435], [53.920188, -2.07422]], [[53.920188, -2.07422], [53.920219, -2.074067]], [[53.920219, -2.074067], [53.920205, -2.073911]], [[53.920205, -2.073911], [53.920233, -2.073765]], [[53.920233, -2.073765], [53.920271, -2.073626]], [[53.920271, -2.073626], [53.920315, -2.07348]], [[53.920315, -2.07348], [53.920335, -2.073315]], [[53.920335, -2.073315], [53.920369, -2.073155]], [[53.920479, -2.072709], [53.920497, -2.07255]], [[53.920497, -2.07255], [53.920531, -2.072401]], [[53.920615, -2.072111], [53.92066, -2.071977]], [[53.92066, -2.071977], [53.920705, -2.071826]], [[53.920705, -2.071826], [53.920753, -2.07168]], [[53.920753, -2.07168], [53.920779, -2.071525]], [[53.920779, -2.071525], [53.920814, -2.071358]], [[53.920814, -2.071358], [53.920835, -2.071193]], [[53.920835, -2.071193], [53.920858, -2.071041]], [[53.920801, -2.070919], [53.92072, -2.070835]], [[53.92072, -2.070835], [53.920627, -2.070782]], [[53.920545, -2.070697], [53.920458, -2.070607]], [[53.920192, -2.070249], [53.920107, -2.070169]], [[53.920107, -2.070169], [53.920028, -2.070088]], [[53.920028, -2.070088], [53.919946, -2.070007]], [[53.919946, -2.070007], [53.919866, -2.069924]], [[53.919866, -2.069924], [53.919785, -2.069831]], [[53.919785, -2.069831], [53.919697, -2.069775]], [[53.919697, -2.069775], [53.919601, -2.069717]], [[53.919601, -2.069717], [53.919516, -2.069642]], [[53.919516, -2.069642], [53.919438, -2.06954]], [[53.918966, -2.068516], [53.918918, -2.068365]], [[53.918715, -2.067618], [53.918676, -2.06746]], [[53.91843, -2.066593], [53.918399, -2.066444]], [[53.918337, -2.066016], [53.918319, -2.065849]], [[53.918319, -2.065849], [53.918312, -2.065676]], [[53.918267, -2.065348], [53.91826, -2.06518]], [[53.91826, -2.06518], [53.918246, -2.065018]], [[53.918246, -2.065018], [53.918241, -2.06484]], [[53.918048, -2.064296], [53.917955, -2.064243]], [[53.91786, -2.064292], [53.917759, -2.06427]], [[53.917759, -2.06427], [53.917663, -2.064242]], [[53.917663, -2.064242], [53.917565, -2.064219]], [[53.917269, -2.064144], [53.917171, -2.064128]], [[53.916792, -2.063943], [53.9167, -2.063949]], [[53.916319, -2.06384], [53.916218, -2.063827]], [[53.915724, -2.063821], [53.91562, -2.063838]], [[53.91562, -2.063838], [53.915531, -2.063848]], [[53.915531, -2.063848], [53.915436, -2.06384]], [[53.914912, -2.06354], [53.914834, -2.063619]], [[53.914834, -2.063619], [53.914742, -2.063643]], [[53.914272, -2.063608], [53.914185, -2.063649]], [[53.914185, -2.063649], [53.914093, -2.063618]], [[53.913584, -2.063547], [53.91348, -2.06356]], [[53.912962, -2.063099], [53.912881, -2.063023]], [[53.912881, -2.063023], [53.912803, -2.062929]], [[53.912803, -2.062929], [53.912735, -2.062829]], [[53.912735, -2.062829], [53.912644, -2.062753]], [[53.912644, -2.062753], [53.912557, -2.062686]], [[53.912557, -2.062686], [53.912463, -2.062629]], [[53.912463, -2.062629], [53.912372, -2.062582]], [[53.912193, -2.062463], [53.912107, -2.062416]], [[53.911821, -2.062324], [53.911723, -2.062311]], [[53.911723, -2.062311], [53.911632, -2.062319]], [[53.911353, -2.062264], [53.911279, -2.062376]], [[53.91126, -2.062553], [53.91126, -2.06272]], [[53.910656, -2.063014], [53.910584, -2.063105]], [[53.910584, -2.063105], [53.91049, -2.063151]], [[53.910397, -2.063103], [53.910301, -2.063099]], [[53.910301, -2.063099], [53.910206, -2.063147]], [[53.910206, -2.063147], [53.910138, -2.063251]], [[53.909724, -2.064114], [53.909719, -2.064267]], [[53.909719, -2.064267], [53.909689, -2.064426]], [[53.909689, -2.064426], [53.909648, -2.064564]], [[53.909648, -2.064564], [53.909633, -2.064726]], [[53.909368, -2.065777], [53.909317, -2.065909]], [[53.909317, -2.065909], [53.909237, -2.065836]], [[53.909237, -2.065836], [53.909184, -2.0657]], [[53.909184, -2.0657], [53.90912, -2.065577]], [[53.90912, -2.065577], [53.909132, -2.065409]], [[53.909132, -2.065409], [53.90912, -2.065256]], [[53.908788, -2.064819], [53.908738, -2.064687]], [[53.907208, -2.06381], [53.907124, -2.063753]], [[53.906824, -2.063522], [53.906728, -2.063457]], [[53.906728, -2.063457], [53.906647, -2.063387]], [[53.906647, -2.063387], [53.906561, -2.063323]], [[53.90621, -2.063091], [53.906121, -2.063048]], [[53.906121, -2.063048], [53.906029, -2.063016]], [[53.906029, -2.063016], [53.90594, -2.062996]], [[53.905542, -2.062905], [53.905442, -2.062896]], [[53.905442, -2.062896], [53.905352, -2.06287]], [[53.905352, -2.06287], [53.905263, -2.062822]], [[53.904796, -2.062812], [53.904695, -2.062819]], [[53.904695, -2.062819], [53.904596, -2.062807]], [[53.904596, -2.062807], [53.904504, -2.062827]], [[53.904504, -2.062827], [53.904414, -2.062847]], [[53.904414, -2.062847], [53.904319, -2.062891]], [[53.904319, -2.062891], [53.90425, -2.063013]], [[53.90425, -2.063013], [53.904175, -2.06312]], [[53.904175, -2.06312], [53.904105, -2.063246]], [[53.904295, -2.063002], [53.904378, -2.062903]], [[53.904378, -2.062903], [53.904461, -2.062829]], [[53.904461, -2.062829], [53.90456, -2.062806]], [[53.90456, -2.062806], [53.904656, -2.062771]], [[53.903933, -2.062436], [53.90385, -2.06236]], [[53.90385, -2.06236], [53.903755, -2.062316]], [[53.903473, -2.062179], [53.903381, -2.062143]], [[53.903381, -2.062143], [53.903295, -2.062072]], [[53.903295, -2.062072], [53.90321, -2.062021]], [[53.902867, -2.061752], [53.902772, -2.061756]], [[53.902772, -2.061756], [53.902696, -2.061645]], [[53.902428, -2.061081], [53.902338, -2.061106]], [[53.902338, -2.061106], [53.902243, -2.061062]], [[53.901433, -2.060878], [53.901345, -2.060797]], [[53.900688, -2.060017], [53.900626, -2.059891]], [[53.900626, -2.059891], [53.90054, -2.059823]], [[53.90045, -2.059757], [53.900373, -2.059662]], [[53.900373, -2.059662], [53.900291, -2.059582]], [[53.899962, -2.059413], [53.899889, -2.059298]], [[53.899889, -2.059298], [53.899832, -2.059166]], [[53.899832, -2.059166], [53.899757, -2.059056]], [[53.899624, -2.05883], [53.899573, -2.058699]], [[53.899369, -2.058371], [53.899293, -2.058282]], [[53.899293, -2.058282], [53.899244, -2.058138]], [[53.899198, -2.057994], [53.89911, -2.057919]], [[53.89911, -2.057919], [53.899045, -2.057795]], [[53.899045, -2.057795], [53.898973, -2.0577]], [[53.898973, -2.0577], [53.898893, -2.057609]], [[53.898811, -2.057522], [53.898768, -2.057385]], [[53.898395, -2.057817], [53.898326, -2.057918]], [[53.898025, -2.058302], [53.897988, -2.05845]], [[53.897988, -2.05845], [53.897941, -2.058599]], [[53.897941, -2.058599], [53.897866, -2.05869]], [[53.897866, -2.05869], [53.897844, -2.058848]], [[53.897844, -2.058848], [53.897756, -2.058914]], [[53.897576, -2.058937], [53.897498, -2.059015]], [[53.897498, -2.059015], [53.897413, -2.059085]], [[53.897413, -2.059085], [53.897327, -2.059165]], [[53.897327, -2.059165], [53.897238, -2.059224]], [[53.897238, -2.059224], [53.897188, -2.059365]], [[53.897103, -2.059452], [53.897029, -2.059574]], [[53.897029, -2.059574], [53.896955, -2.059669]], [[53.896955, -2.059669], [53.896901, -2.059795]], [[53.89682, -2.059892], [53.89673, -2.059934]], [[53.89673, -2.059934], [53.896701, -2.060087]], [[53.896458, -2.060505], [53.896364, -2.060487]], [[53.896364, -2.060487], [53.896275, -2.060466]], [[53.896275, -2.060466], [53.896186, -2.06043]], [[53.896186, -2.06043], [53.896089, -2.060392]], [[53.895907, -2.060275], [53.895812, -2.06032]], [[53.895812, -2.06032], [53.895719, -2.06033]], [[53.895629, -2.060294], [53.89553, -2.0603]], [[53.895153, -2.060171], [53.895064, -2.060189]], [[53.895064, -2.060189], [53.89497, -2.060179]], [[53.89497, -2.060179], [53.89487, -2.060186]], [[53.89487, -2.060186], [53.894771, -2.060165]], [[53.894771, -2.060165], [53.894674, -2.060152]], [[53.894499, -2.060061], [53.894419, -2.059958]], [[53.894232, -2.059874], [53.894141, -2.059843]], [[53.893672, -2.059741], [53.893582, -2.059714]], [[53.893582, -2.059714], [53.893494, -2.059675]], [[53.8934, -2.059644], [53.893306, -2.059641]], [[53.893214, -2.059648], [53.893124, -2.059614]], [[53.893124, -2.059614], [53.893067, -2.059477]], [[53.892878, -2.059395], [53.89279, -2.059339]], [[53.892699, -2.059308], [53.892605, -2.059282]], [[53.892605, -2.059282], [53.892556, -2.059151]], [[53.892396, -2.058739], [53.89234, -2.058615]], [[53.892289, -2.058318], [53.892359, -2.058218]], [[53.892359, -2.058218], [53.892438, -2.05814]], [[53.892438, -2.05814], [53.892497, -2.05802]], [[53.892304, -2.057406], [53.892249, -2.057273]], [[53.892249, -2.057273], [53.89218, -2.057144]], [[53.89218, -2.057144], [53.892093, -2.057089]], [[53.892093, -2.057089], [53.892019, -2.056981]], [[53.890496, -2.055273], [53.890405, -2.055241]], [[53.890405, -2.055241], [53.890315, -2.055226]], [[53.890315, -2.055226], [53.890225, -2.055253]], [[53.890225, -2.055253], [53.890147, -2.055175]], [[53.890147, -2.055175], [53.890065, -2.055071]], [[53.890065, -2.055071], [53.88997, -2.055037]], [[53.889874, -2.055054], [53.889779, -2.055014]], [[53.889779, -2.055014], [53.889689, -2.055037]], [[53.889596, -2.055053], [53.889503, -2.055081]], [[53.889503, -2.055081], [53.889413, -2.055071]], [[53.889233, -2.055094], [53.889149, -2.055163]], [[53.888935, -2.054523], [53.888966, -2.054375]], [[53.888966, -2.054375], [53.888966, -2.054211]], [[53.888966, -2.054211], [53.888953, -2.05405]], [[53.888983, -2.053883], [53.889016, -2.053742]], [[53.889016, -2.053742], [53.889018, -2.05358]], [[53.888683, -2.053761], [53.888594, -2.053856]], [[53.888498, -2.053882], [53.888413, -2.053936]], [[53.887866, -2.053277], [53.88778, -2.053201]], [[53.88778, -2.053201], [53.887687, -2.053132]], [[53.887687, -2.053132], [53.887603, -2.053078]], [[53.887603, -2.053078], [53.887528, -2.052988]], [[53.887367, -2.052798], [53.887272, -2.052785]], [[53.88694, -2.052925], [53.886868, -2.053025]], [[53.886725, -2.053256], [53.88667, -2.05339]], [[53.88667, -2.05339], [53.886618, -2.053527]], [[53.886618, -2.053527], [53.886537, -2.053625]], [[53.886537, -2.053625], [53.886477, -2.053742]], [[53.886322, -2.053938], [53.886266, -2.054065]], [[53.886266, -2.054065], [53.886216, -2.054204]], [[53.886136, -2.05429], [53.886058, -2.054377]], [[53.886058, -2.054377], [53.885977, -2.054473]], [[53.885977, -2.054473], [53.885898, -2.054546]], [[53.885648, -2.054406], [53.885557, -2.054331]], [[53.885557, -2.054331], [53.885468, -2.054251]], [[53.885468, -2.054251], [53.885389, -2.054172]], [[53.885389, -2.054172], [53.885305, -2.054074]], [[53.885305, -2.054074], [53.885211, -2.054021]], [[53.885211, -2.054021], [53.88513, -2.053953]], [[53.88513, -2.053953], [53.885049, -2.053877]], [[53.885049, -2.053877], [53.884961, -2.05381]], [[53.884961, -2.05381], [53.884872, -2.05373]], [[53.884872, -2.05373], [53.884795, -2.053647]], [[53.884795, -2.053647], [53.884695, -2.053655]], [[53.884695, -2.053655], [53.884604, -2.05366]], [[53.884604, -2.05366], [53.884511, -2.053667]], [[53.884511, -2.053667], [53.884428, -2.05359]], [[53.883989, -2.053501], [53.883899, -2.053432]], [[53.883899, -2.053432], [53.88381, -2.053372]], [[53.88381, -2.053372], [53.883725, -2.053292]], [[53.883725, -2.053292], [53.883642, -2.053205]], [[53.883642, -2.053205], [53.883573, -2.05308]], [[53.883472, -2.052973], [53.883418, -2.052843]], [[53.883198, -2.052837], [53.883104, -2.052884]], [[53.883104, -2.052884], [53.883018, -2.052791]], [[53.882866, -2.052928], [53.882819, -2.053077]], [[53.882819, -2.053077], [53.882748, -2.053173]], [[53.882625, -2.053416], [53.882565, -2.053536]], [[53.882405, -2.053884], [53.882377, -2.054044]], [[53.882181, -2.054632], [53.882095, -2.054575]], [[53.881493, -2.05471], [53.881492, -2.054538]], [[53.881471, -2.054086], [53.881443, -2.053929]], [[53.880665, -2.052643], [53.88058, -2.052571]], [[53.879939, -2.052388], [53.879847, -2.052345]], [[53.879672, -2.052278], [53.87958, -2.052293]], [[53.87958, -2.052293], [53.879485, -2.052271]], [[53.879485, -2.052271], [53.879383, -2.05226]], [[53.879383, -2.05226], [53.879287, -2.052242]], [[53.879287, -2.052242], [53.879189, -2.052249]], [[53.879189, -2.052249], [53.879099, -2.052208]], [[53.879099, -2.052208], [53.879005, -2.052195]], [[53.879005, -2.052195], [53.878913, -2.052204]], [[53.877504, -2.053293], [53.877417, -2.053365]], [[53.877327, -2.053396], [53.87723, -2.053415]], [[53.87723, -2.053415], [53.877149, -2.053482]], [[53.877149, -2.053482], [53.877054, -2.053484]], [[53.876338, -2.053702], [53.87624, -2.053708]], [[53.876008, -2.053859], [53.875919, -2.053915]], [[53.875825, -2.053955], [53.875731, -2.053964]], [[53.875731, -2.053964], [53.875644, -2.054021]], [[53.875086, -2.054213], [53.874991, -2.054182]], [[53.874573, -2.054708], [53.874486, -2.054769]], [[53.874297, -2.054873], [53.874241, -2.054998]], [[53.874241, -2.054998], [53.874145, -2.055011]], [[53.874145, -2.055011], [53.874087, -2.054895]], [[53.874087, -2.054895], [53.874038, -2.054754]], [[53.87403, -2.054434], [53.874097, -2.054321]], [[53.874097, -2.054321], [53.874135, -2.054176]], [[53.874135, -2.054176], [53.874162, -2.054023]], [[53.874162, -2.054023], [53.874172, -2.053851]], [[53.874172, -2.053851], [53.874135, -2.053696]], [[53.874015, -2.053451], [53.873963, -2.053316]], [[53.873963, -2.053316], [53.873919, -2.053168]], [[53.873919, -2.053168], [53.873867, -2.053039]], [[53.873867, -2.053039], [53.873809, -2.052905]], [[53.873809, -2.052905], [53.873738, -2.052809]], [[53.873565, -2.052242], [53.873513, -2.052101]], [[53.873409, -2.051854], [53.873367, -2.051714]], [[53.873367, -2.051714], [53.873299, -2.051591]], [[53.873299, -2.051591], [53.873252, -2.051455]], [[53.873252, -2.051455], [53.873247, -2.051284]], [[53.873258, -2.050808], [53.873264, -2.050639]], [[53.873264, -2.050639], [53.873268, -2.050485]], [[53.873268, -2.050485], [53.873281, -2.050335]], [[53.873281, -2.050335], [53.873303, -2.05018]], [[53.873303, -2.05018], [53.873332, -2.050032]], [[53.873332, -2.050032], [53.873343, -2.049876]], [[53.873343, -2.049876], [53.873372, -2.049708]], [[53.873409, -2.049103], [53.873349, -2.04896]], [[53.873349, -2.04896], [53.873296, -2.048821]], [[53.873296, -2.048821], [53.873241, -2.048698]], [[53.873241, -2.048698], [53.87319, -2.048554]], [[53.87319, -2.048554], [53.873138, -2.048421]], [[53.87308, -2.048303], [53.873025, -2.048162]], [[53.873025, -2.048162], [53.872939, -2.048092]], [[53.872679, -2.04753], [53.872634, -2.047385]], [[53.872634, -2.047385], [53.87259, -2.047247]], [[53.87259, -2.047247], [53.872589, -2.04709]], [[53.872461, -2.046029], [53.8724, -2.045897]], [[53.872327, -2.044717], [53.872285, -2.044566]], [[53.872285, -2.044566], [53.872241, -2.044421]], [[53.872241, -2.044421], [53.87222, -2.044271]], [[53.872052, -2.043979], [53.871979, -2.044082]], [[53.871693, -2.044502], [53.871602, -2.0445]], [[53.871602, -2.0445], [53.871504, -2.044514]], [[53.871022, -2.044968], [53.870979, -2.045122]], [[53.870979, -2.045122], [53.870892, -2.045187]], [[53.870892, -2.045187], [53.870811, -2.045267]], [[53.870811, -2.045267], [53.870746, -2.045386]], [[53.870746, -2.045386], [53.870687, -2.045509]], [[53.870687, -2.045509], [53.870628, -2.045625]], [[53.870124, -2.046023], [53.870038, -2.045975]], [[53.870038, -2.045975], [53.869952, -2.046021]], [[53.869952, -2.046021], [53.869929, -2.046171]], [[53.869875, -2.046443], [53.869865, -2.0466]], [[53.869865, -2.0466], [53.869851, -2.046755]], [[53.869851, -2.046755], [53.869788, -2.046866]], [[53.869788, -2.046866], [53.869752, -2.04701]], [[53.869663, -2.047057], [53.869559, -2.047074]], [[53.869492, -2.04719], [53.869392, -2.047197]], [[53.869392, -2.047197], [53.869349, -2.047344]], [[53.869068, -2.047472], [53.868996, -2.047582]], [[53.868996, -2.047582], [53.868921, -2.047691]], [[53.868698, -2.047978], [53.868608, -2.047968]], [[53.868608, -2.047968], [53.868514, -2.048022]], [[53.868107, -2.048397], [53.868007, -2.048413]], [[53.867852, -2.048586], [53.867761, -2.048599]], [[53.867761, -2.048599], [53.867671, -2.048642]], [[53.867671, -2.048642], [53.867574, -2.048614]], [[53.867574, -2.048614], [53.867482, -2.048566]], [[53.867482, -2.048566], [53.867392, -2.0485]], [[53.866972, -2.048164], [53.866887, -2.048075]], [[53.866887, -2.048075], [53.866803, -2.048002]], [[53.866803, -2.048002], [53.866723, -2.047928]], [[53.866723, -2.047928], [53.866643, -2.047846]], [[53.86637, -2.04743], [53.86628, -2.047401]], [[53.86548, -2.048292], [53.865383, -2.048256]], [[53.865383, -2.048256], [53.865294, -2.048287]], [[53.865179, -2.048543], [53.86509, -2.048587]], [[53.864668, -2.048544], [53.864571, -2.048515]], [[53.864571, -2.048515], [53.864491, -2.048442]], [[53.864491, -2.048442], [53.864409, -2.048375]], [[53.864409, -2.048375], [53.864315, -2.048391]], [[53.864315, -2.048391], [53.864227, -2.048331]], [[53.864227, -2.048331], [53.864145, -2.048257]], [[53.864145, -2.048257], [53.86405, -2.048231]], [[53.86405, -2.048231], [53.863966, -2.048137]], [[53.863873, -2.048082], [53.863796, -2.047976]], [[53.863796, -2.047976], [53.863699, -2.047953]], [[53.863699, -2.047953], [53.863617, -2.047874]], [[53.863384, -2.047606], [53.863298, -2.047521]], [[53.863298, -2.047521], [53.863205, -2.047468]], [[53.862944, -2.04747], [53.862851, -2.047421]], [[53.862851, -2.047421], [53.862757, -2.047407]], [[53.861243, -2.046966], [53.861154, -2.046905]], [[53.861088, -2.046793], [53.861007, -2.04671]], [[53.860766, -2.046512], [53.860748, -2.046356]], [[53.860748, -2.046356], [53.860695, -2.046214]], [[53.860625, -2.045781], [53.860609, -2.04562]], [[53.860609, -2.04562], [53.860572, -2.045481]], [[53.860457, -2.044743], [53.860392, -2.044635]], [[53.860392, -2.044635], [53.86031, -2.044553]], [[53.86031, -2.044553], [53.860223, -2.044499]], [[53.859674, -2.044205], [53.859606, -2.044094]], [[53.859606, -2.044094], [53.859517, -2.044033]], [[53.859339, -2.043932], [53.859239, -2.043932]], [[53.859239, -2.043932], [53.859157, -2.044013]], [[53.858793, -2.043948], [53.858704, -2.044019]], [[53.858608, -2.044036], [53.858513, -2.044032]], [[53.858513, -2.044032], [53.858422, -2.044018]], [[53.858422, -2.044018], [53.858334, -2.044056]], [[53.858334, -2.044056], [53.858246, -2.044023]], [[53.858246, -2.044023], [53.858167, -2.043948]], [[53.858167, -2.043948], [53.858068, -2.043923]], [[53.858068, -2.043923], [53.857981, -2.04386]], [[53.857981, -2.04386], [53.857893, -2.043811]], [[53.857893, -2.043811], [53.857811, -2.043874]], [[53.857811, -2.043874], [53.857721, -2.043912]], [[53.857721, -2.043912], [53.85763, -2.043911]], [[53.85763, -2.043911], [53.857532, -2.043927]], [[53.857532, -2.043927], [53.857437, -2.043908]], [[53.857437, -2.043908], [53.857348, -2.043836]], [[53.857207, -2.04362], [53.85714, -2.043514]], [[53.85714, -2.043514], [53.85707, -2.04339]], [[53.85707, -2.04339], [53.857003, -2.043285]], [[53.857003, -2.043285], [53.856969, -2.04313]], [[53.856969, -2.04313], [53.856907, -2.042999]], [[53.856907, -2.042999], [53.856873, -2.042853]], [[53.856772, -2.04259], [53.856771, -2.042415]], [[53.856802, -2.042259], [53.856814, -2.042105]], [[53.856814, -2.042105], [53.85678, -2.04195]], [[53.856658, -2.041712], [53.856615, -2.041578]], [[53.856615, -2.041578], [53.85655, -2.04146]], [[53.85655, -2.04146], [53.856483, -2.041348]], [[53.856435, -2.04121], [53.856355, -2.041127]], [[53.856355, -2.041127], [53.856288, -2.041024]], [[53.856288, -2.041024], [53.856206, -2.040937]], [[53.856206, -2.040937], [53.856115, -2.040881]], [[53.856115, -2.040881], [53.856028, -2.040805]], [[53.855952, -2.040721], [53.855854, -2.040677]], [[53.855854, -2.040677], [53.855761, -2.040729]], [[53.855761, -2.040729], [53.855661, -2.040726]], [[53.855486, -2.040835], [53.855395, -2.040859]], [[53.855395, -2.040859], [53.855306, -2.040823]], [[53.855306, -2.040823], [53.855208, -2.04084]], [[53.855208, -2.04084], [53.855119, -2.040873]], [[53.855029, -2.040849], [53.854931, -2.040823]], [[53.854931, -2.040823], [53.854835, -2.040786]], [[53.854835, -2.040786], [53.854738, -2.040776]], [[53.854738, -2.040776], [53.854644, -2.040773]], [[53.854456, -2.040752], [53.854355, -2.040761]], [[53.854355, -2.040761], [53.854257, -2.040742]], [[53.854257, -2.040742], [53.854172, -2.04069]], [[53.854172, -2.04069], [53.854073, -2.040664]], [[53.854073, -2.040664], [53.853972, -2.040632]], [[53.853972, -2.040632], [53.853868, -2.040622]], [[53.853868, -2.040622], [53.853773, -2.040679]], [[53.853501, -2.040525], [53.853409, -2.040532]], [[53.853409, -2.040532], [53.853319, -2.040551]], [[53.853319, -2.040551], [53.853238, -2.040643]], [[53.853151, -2.04071], [53.853089, -2.040825]], [[53.853089, -2.040825], [53.853006, -2.040915]], [[53.853006, -2.040915], [53.852914, -2.04094]], [[53.852914, -2.04094], [53.852818, -2.040955]], [[53.852818, -2.040955], [53.852724, -2.040968]], [[53.852724, -2.040968], [53.852627, -2.041001]], [[53.852627, -2.041001], [53.852537, -2.040982]], [[53.852537, -2.040982], [53.852448, -2.040933]], [[53.852448, -2.040933], [53.852356, -2.040933]], [[53.852258, -2.040942], [53.852174, -2.040855]], [[53.851982, -2.040839], [53.851896, -2.040888]], [[53.851896, -2.040888], [53.851808, -2.040853]], [[53.851808, -2.040853], [53.851717, -2.040861]], [[53.851717, -2.040861], [53.851618, -2.040803]], [[53.851618, -2.040803], [53.851528, -2.040826]], [[53.851528, -2.040826], [53.851437, -2.040804]], [[53.851437, -2.040804], [53.85135, -2.04074]], [[53.851159, -2.040797], [53.851069, -2.040757]], [[53.850808, -2.040624], [53.850714, -2.04061]], [[53.850106, -2.040926], [53.850019, -2.040982]], [[53.849925, -2.040974], [53.849829, -2.040974]], [[53.849829, -2.040974], [53.849753, -2.040859]], [[53.849591, -2.040655], [53.849523, -2.040542]], [[53.849451, -2.040417], [53.849383, -2.040292]], [[53.849383, -2.040292], [53.849335, -2.04015]], [[53.849244, -2.039845], [53.849182, -2.039709]], [[53.849182, -2.039709], [53.84911, -2.039598]], [[53.84911, -2.039598], [53.849038, -2.039486]], [[53.849038, -2.039486], [53.848968, -2.039375]], [[53.848893, -2.039271], [53.848833, -2.039139]], [[53.848833, -2.039139], [53.848776, -2.039002]], [[53.848776, -2.039002], [53.848714, -2.038869]], [[53.848714, -2.038869], [53.848658, -2.038749]], [[53.848658, -2.038749], [53.8486, -2.038626]], [[53.8486, -2.038626], [53.848546, -2.038496]], [[53.848546, -2.038496], [53.848486, -2.038373]], [[53.848303, -2.037971], [53.848238, -2.037865]], [[53.848238, -2.037865], [53.848163, -2.037769]], [[53.848163, -2.037769], [53.848115, -2.037623]], [[53.848115, -2.037623], [53.848058, -2.037504]], [[53.848058, -2.037504], [53.848024, -2.037358]], [[53.848024, -2.037358], [53.848019, -2.037193]], [[53.848019, -2.037193], [53.847973, -2.037045]], [[53.847973, -2.037045], [53.847956, -2.036895]], [[53.847956, -2.036895], [53.847927, -2.036739]], [[53.847852, -2.036445], [53.847801, -2.036319]], [[53.847801, -2.036319], [53.847728, -2.036217]], [[53.847728, -2.036217], [53.847659, -2.036099]], [[53.847659, -2.036099], [53.847602, -2.035971]], [[53.847602, -2.035971], [53.847548, -2.035841]], [[53.847441, -2.035573], [53.84742, -2.035407]], [[53.847278, -2.035191], [53.847221, -2.035062]], [[53.847221, -2.035062], [53.847166, -2.034927]], [[53.846972, -2.034217], [53.846969, -2.03406]], [[53.846969, -2.03406], [53.846935, -2.033911]], [[53.846935, -2.033911], [53.846916, -2.033761]], [[53.846916, -2.033761], [53.846836, -2.033645]], [[53.846721, -2.033385], [53.846672, -2.033255]], [[53.846672, -2.033255], [53.846646, -2.033094]], [[53.846516, -2.032843], [53.846461, -2.032717]], [[53.846461, -2.032717], [53.846405, -2.032587]], [[53.846245, -2.032401], [53.846162, -2.032306]], [[53.846162, -2.032306], [53.846078, -2.032226]], [[53.846078, -2.032226], [53.845995, -2.03216]], [[53.845995, -2.03216], [53.845918, -2.032065]], [[53.845918, -2.032065], [53.845837, -2.031986]], [[53.845837, -2.031986], [53.845764, -2.031894]], [[53.845764, -2.031894], [53.845685, -2.0318]], [[53.845292, -2.031378], [53.845221, -2.031264]], [[53.844964, -2.030793], [53.844874, -2.030752]], [[53.844874, -2.030752], [53.844783, -2.030779]], [[53.844783, -2.030779], [53.84472, -2.030662]], [[53.84472, -2.030662], [53.844646, -2.030564]], [[53.844471, -2.030426], [53.84445, -2.030268]], [[53.844149, -2.02999], [53.844083, -2.02988]], [[53.844083, -2.02988], [53.844008, -2.029767]], [[53.844008, -2.029767], [53.84394, -2.029662]], [[53.843595, -2.029364], [53.843521, -2.029273]], [[53.843164, -2.029096], [53.84309, -2.028993]], [[53.843036, -2.028865], [53.842969, -2.028733]], [[53.842897, -2.02864], [53.842815, -2.028572]], [[53.842815, -2.028572], [53.842753, -2.02844]], [[53.842753, -2.02844], [53.842668, -2.028384]], [[53.842587, -2.028274], [53.842511, -2.028161]], [[53.84233, -2.028034], [53.842265, -2.027922]], [[53.842265, -2.027922], [53.842171, -2.027848]], [[53.842171, -2.027848], [53.84209, -2.027768]], [[53.841853, -2.027466], [53.84181, -2.027324]], [[53.84181, -2.027324], [53.841732, -2.027233]], [[53.84148, -2.027077], [53.841408, -2.026974]], [[53.841087, -2.026595], [53.841006, -2.026521]], [[53.841006, -2.026521], [53.840927, -2.026422]], [[53.840927, -2.026422], [53.840842, -2.026338]], [[53.840842, -2.026338], [53.840754, -2.026294]], [[53.840582, -2.02612], [53.840507, -2.026012]], [[53.840507, -2.026012], [53.840418, -2.025914]], [[53.840418, -2.025914], [53.840354, -2.025805]], [[53.840354, -2.025805], [53.840277, -2.025716]], [[53.839965, -2.02542], [53.839892, -2.025314]], [[53.839892, -2.025314], [53.83981, -2.025233]], [[53.83981, -2.025233], [53.839732, -2.025155]], [[53.839732, -2.025155], [53.839661, -2.025045]], [[53.839661, -2.025045], [53.839577, -2.024952]], [[53.839577, -2.024952], [53.839489, -2.024875]], [[53.839489, -2.024875], [53.839416, -2.024766]], [[53.839416, -2.024766], [53.839343, -2.024664]], [[53.839343, -2.024664], [53.839268, -2.024577]], [[53.839268, -2.024577], [53.839191, -2.024477]], [[53.839191, -2.024477], [53.839112, -2.024372]], [[53.839112, -2.024372], [53.839045, -2.024253]], [[53.839045, -2.024253], [53.838966, -2.024155]], [[53.838367, -2.023663], [53.838312, -2.023796]], [[53.838312, -2.023796], [53.838222, -2.02374]], [[53.838222, -2.02374], [53.838151, -2.023635]], [[53.838071, -2.02353], [53.83801, -2.023404]], [[53.83801, -2.023404], [53.837925, -2.023334]], [[53.837925, -2.023334], [53.83783, -2.023347]], [[53.837611, -2.02385], [53.837548, -2.023976]], [[53.837548, -2.023976], [53.837473, -2.024072]], [[53.837473, -2.024072], [53.83741, -2.02419]], [[53.83741, -2.02419], [53.837323, -2.024254]], [[53.837323, -2.024254], [53.837307, -2.024088]], [[53.837307, -2.024088], [53.837343, -2.023943]], [[53.837343, -2.023943], [53.837376, -2.023798]], [[53.837376, -2.023798], [53.837412, -2.02364]], [[53.837412, -2.02364], [53.837449, -2.023482]], [[53.837449, -2.023482], [53.83752, -2.023355]], [[53.837734, -2.022844], [53.837787, -2.022709]], [[53.837787, -2.022709], [53.837848, -2.022589]], [[53.838067, -2.022084], [53.838113, -2.021944]], [[53.838113, -2.021944], [53.83817, -2.021805]], [[53.838397, -2.021265], [53.83844, -2.021114]], [[53.83844, -2.021114], [53.838461, -2.020952]], [[53.838461, -2.020952], [53.838491, -2.020803]], [[53.838491, -2.020803], [53.838533, -2.020662]], [[53.837478, -2.019639], [53.837391, -2.019688]], [[53.836229, -2.018603], [53.83617, -2.018728]], [[53.836134, -2.01905], [53.836069, -2.019171]], [[53.835937, -2.020023], [53.83585, -2.019983]], [[53.83585, -2.019983], [53.835794, -2.019861]], [[53.83555, -2.020083], [53.835516, -2.020243]], [[53.835474, -2.020381], [53.83545, -2.020549]], [[53.83545, -2.020549], [53.835416, -2.020707]], [[53.835416, -2.020707], [53.835356, -2.020834]], [[53.835219, -2.020956], [53.835132, -2.021013]], [[53.835132, -2.021013], [53.835062, -2.021138]], [[53.835062, -2.021138], [53.834985, -2.021219]], [[53.834916, -2.021321], [53.834843, -2.021425]], [[53.834843, -2.021425], [53.834774, -2.021539]], [[53.834774, -2.021539], [53.834701, -2.021645]], [[53.834303, -2.021952], [53.834233, -2.022077]], [[53.834233, -2.022077], [53.834222, -2.02223]], [[53.834038, -2.021868], [53.834, -2.021719]], [[53.834, -2.021719], [53.833963, -2.021569]], [[53.833963, -2.021569], [53.833925, -2.021419]], [[53.833925, -2.021419], [53.833882, -2.021284]], [[53.833882, -2.021284], [53.833855, -2.021136]], [[53.833855, -2.021136], [53.833829, -2.020985]], [[53.83343, -2.021025], [53.833335, -2.020993]], [[53.833335, -2.020993], [53.833235, -2.020978]], [[53.83306, -2.020877], [53.832986, -2.020762]], [[53.832986, -2.020762], [53.832936, -2.02063]], [[53.832632, -2.020309], [53.832545, -2.02037]], [[53.832352, -2.020381], [53.832254, -2.020364]], [[53.831582, -2.020449], [53.831543, -2.020302]], [[53.831543, -2.020302], [53.831529, -2.020123]], [[53.831529, -2.020123], [53.831484, -2.019989]], [[53.831455, -2.019352], [53.831458, -2.019195]], [[53.831428, -2.019041], [53.831347, -2.018968]], [[53.83127, -2.018865], [53.831186, -2.018788]], [[53.8311, -2.018723], [53.831038, -2.018596]], [[53.830719, -2.01791], [53.830668, -2.01778]], [[53.83051, -2.017024], [53.830463, -2.016877]], [[53.830463, -2.016877], [53.830411, -2.016728]], [[53.830411, -2.016728], [53.830372, -2.016577]], [[53.830271, -2.016282], [53.830236, -2.016141]], [[53.830236, -2.016141], [53.830178, -2.01602]], [[53.830178, -2.01602], [53.830125, -2.015871]], [[53.830125, -2.015871], [53.830057, -2.015758]], [[53.830057, -2.015758], [53.830007, -2.015625]], [[53.830007, -2.015625], [53.829957, -2.015479]], [[53.829968, -2.014985], [53.829893, -2.014871]], [[53.82904, -2.014222], [53.828979, -2.014264]], [[53.828809, -2.012553], [53.828854, -2.012418]], [[53.828854, -2.012418], [53.828905, -2.012266]], [[53.829192, -2.011577], [53.829197, -2.011422]], [[53.829197, -2.011422], [53.829209, -2.011254]], [[53.829256, -2.010953], [53.829284, -2.01079]], [[53.829511, -2.010263], [53.829578, -2.010152]], [[53.829669, -2.009872], [53.829733, -2.009755]], [[53.829733, -2.009755], [53.829776, -2.009603]], [[53.829989, -2.00871], [53.830046, -2.008586]], [[53.830105, -2.007986], [53.830096, -2.007816]], [[53.829943, -2.007643], [53.829864, -2.007562]], [[53.829825, -2.007338], [53.829833, -2.007161]], [[53.829727, -2.006922], [53.829633, -2.006959]], [[53.829006, -2.006466], [53.828907, -2.006513]], [[53.828907, -2.006513], [53.828836, -2.006409]], [[53.828749, -2.006346], [53.82867, -2.006258]], [[53.828586, -2.006334], [53.828499, -2.006284]], [[53.828499, -2.006284], [53.82841, -2.006272]], [[53.828319, -2.006234], [53.828229, -2.006156]], [[53.828229, -2.006156], [53.828191, -2.006151]], [[53.827076, -2.005979], [53.826993, -2.005919]], [[53.826993, -2.005919], [53.826914, -2.005798]], [[53.826867, -2.005658], [53.826803, -2.005547]], [[53.826803, -2.005547], [53.826709, -2.00551]], [[53.826756, -2.004595], [53.826766, -2.004433]], [[53.826764, -2.004274], [53.826727, -2.004121]], [[53.826727, -2.004121], [53.826649, -2.004207]], [[53.826388, -2.005133], [53.826306, -2.005032]], [[53.824285, -2.004881], [53.824214, -2.004771]], [[53.824214, -2.004771], [53.824128, -2.004821]], [[53.824037, -2.004841], [53.823961, -2.004739]], [[53.823961, -2.004739], [53.82387, -2.004662]], [[53.82387, -2.004662], [53.823785, -2.004594]], [[53.823785, -2.004594], [53.823707, -2.004508]], [[53.823547, -2.00461], [53.823521, -2.004758]], [[53.823541, -2.00507], [53.823534, -2.005235]], [[53.823534, -2.005235], [53.823517, -2.005389]], [[53.823517, -2.005389], [53.823505, -2.005541]], [[53.823408, -2.006304], [53.823398, -2.006474]], [[53.823344, -2.006767], [53.823316, -2.006933]], [[53.823316, -2.006933], [53.823278, -2.007075]], [[53.823278, -2.007075], [53.82323, -2.007217]], [[53.82323, -2.007217], [53.823186, -2.007361]], [[53.823186, -2.007361], [53.823109, -2.007458]], [[53.823109, -2.007458], [53.823043, -2.00757]], [[53.823043, -2.00757], [53.822986, -2.007706]], [[53.822986, -2.007706], [53.822954, -2.00785]], [[53.822954, -2.00785], [53.82293, -2.008007]], [[53.82293, -2.008007], [53.822899, -2.008162]], [[53.822899, -2.008162], [53.822849, -2.008298]], [[53.822718, -2.008737], [53.822702, -2.008887]], [[53.822702, -2.008887], [53.822677, -2.009034]], [[53.822611, -2.009161], [53.82257, -2.00931]], [[53.82257, -2.00931], [53.822524, -2.00946]], [[53.822524, -2.00946], [53.822488, -2.009607]], [[53.8224, -2.009932], [53.822342, -2.010066]], [[53.822342, -2.010066], [53.822297, -2.010207]], [[53.822297, -2.010207], [53.822246, -2.010345]], [[53.822293, -2.010726], [53.822303, -2.010894]], [[53.822303, -2.010894], [53.82234, -2.011049]], [[53.82234, -2.011049], [53.822358, -2.011205]], [[53.822358, -2.011205], [53.822342, -2.011369]], [[53.822366, -2.012314], [53.822323, -2.012465]], [[53.822279, -2.012598], [53.82227, -2.012765]], [[53.822263, -2.012919], [53.822263, -2.013072]], [[53.822263, -2.013072], [53.82224, -2.013219]], [[53.82224, -2.013219], [53.822223, -2.013382]], [[53.822223, -2.013382], [53.822206, -2.013538]], [[53.822206, -2.013538], [53.822174, -2.01369]], [[53.822056, -2.014136], [53.822007, -2.014278]], [[53.822007, -2.014278], [53.821976, -2.01444]], [[53.821976, -2.01444], [53.821928, -2.014586]], [[53.821928, -2.014586], [53.8219, -2.014741]], [[53.8219, -2.014741], [53.821875, -2.014899]], [[53.821856, -2.015049], [53.821831, -2.015202]], [[53.821831, -2.015202], [53.821788, -2.015337]], [[53.82172, -2.01545], [53.821706, -2.015616]], [[53.821706, -2.015616], [53.821692, -2.015775]], [[53.821692, -2.015775], [53.821689, -2.015927]], [[53.821689, -2.015927], [53.821693, -2.016097]], [[53.821693, -2.016097], [53.821708, -2.01626]], [[53.821708, -2.01626], [53.821725, -2.016416]], [[53.821725, -2.016416], [53.82174, -2.016575]], [[53.82174, -2.016575], [53.821751, -2.016741]], [[53.821751, -2.016741], [53.82175, -2.016898]], [[53.82175, -2.016898], [53.821722, -2.017044]], [[53.821697, -2.017366], [53.821657, -2.017514]], [[53.821657, -2.017514], [53.821648, -2.017677]], [[53.821648, -2.017677], [53.82165, -2.017845]], [[53.82165, -2.017845], [53.82169, -2.017996]], [[53.821669, -2.018332], [53.821617, -2.018464]], [[53.821617, -2.018464], [53.821562, -2.018605]], [[53.821562, -2.018605], [53.82152, -2.018763]], [[53.82152, -2.018763], [53.821463, -2.018888]], [[53.821463, -2.018888], [53.821409, -2.019013]], [[53.821409, -2.019013], [53.821362, -2.019151]], [[53.821362, -2.019151], [53.821313, -2.019286]], [[53.821313, -2.019286], [53.821248, -2.019399]], [[53.821127, -2.019665], [53.821085, -2.019813]], [[53.821085, -2.019813], [53.821033, -2.019955]], [[53.821033, -2.019955], [53.820965, -2.020067]], [[53.820845, -2.020304], [53.820781, -2.020416]], [[53.820781, -2.020416], [53.820729, -2.020542]], [[53.820729, -2.020542], [53.820679, -2.020672]], [[53.820631, -2.020811], [53.820585, -2.020958]], [[53.820585, -2.020958], [53.82053, -2.021092]], [[53.82053, -2.021092], [53.820474, -2.021232]], [[53.820383, -2.021525], [53.820339, -2.021671]], [[53.820339, -2.021671], [53.820289, -2.021808]], [[53.820289, -2.021808], [53.820262, -2.021969]], [[53.820262, -2.021969], [53.820231, -2.022134]], [[53.820094, -2.022574], [53.820053, -2.022719]], [[53.820053, -2.022719], [53.820013, -2.02286]], [[53.820013, -2.02286], [53.819963, -2.023002]], [[53.819963, -2.023002], [53.819885, -2.023083]], [[53.819885, -2.023083], [53.8198, -2.023149]], [[53.8198, -2.023149], [53.819707, -2.023207]], [[53.819707, -2.023207], [53.819631, -2.02329]], [[53.819631, -2.02329], [53.819592, -2.023444]], [[53.819592, -2.023444], [53.81954, -2.023588]], [[53.81954, -2.023588], [53.819508, -2.023748]], [[53.819508, -2.023748], [53.819458, -2.023876]], [[53.819458, -2.023876], [53.819409, -2.024011]], [[53.819254, -2.024399], [53.819236, -2.024565]], [[53.819236, -2.024565], [53.819209, -2.024715]], [[53.819074, -2.024934], [53.818996, -2.025031]], [[53.818996, -2.025031], [53.818959, -2.025172]], [[53.818913, -2.025314], [53.81885, -2.025431]], [[53.81885, -2.025431], [53.818782, -2.025551]], [[53.818782, -2.025551], [53.818716, -2.025671]], [[53.818716, -2.025671], [53.818634, -2.025755]], [[53.818553, -2.02586], [53.818482, -2.025965]], [[53.818482, -2.025965], [53.818399, -2.026031]], [[53.818399, -2.026031], [53.818323, -2.026141]], [[53.818323, -2.026141], [53.818228, -2.026194]], [[53.818228, -2.026194], [53.818132, -2.02621]], [[53.818132, -2.02621], [53.818032, -2.026247]], [[53.818032, -2.026247], [53.817981, -2.026379]], [[53.817981, -2.026379], [53.817918, -2.026504]], [[53.817918, -2.026504], [53.81784, -2.026578]], [[53.81748, -2.026735], [53.817382, -2.026732]], [[53.81728, -2.026741], [53.8172, -2.026816]], [[53.8172, -2.026816], [53.817106, -2.026825]], [[53.817106, -2.026825], [53.817012, -2.026865]], [[53.817012, -2.026865], [53.816932, -2.02696]], [[53.816932, -2.02696], [53.816848, -2.027026]], [[53.816848, -2.027026], [53.816755, -2.027093]], [[53.816755, -2.027093], [53.816677, -2.027198]], [[53.816677, -2.027198], [53.816593, -2.027278]], [[53.816593, -2.027278], [53.816527, -2.027404]], [[53.816084, -2.027875], [53.816026, -2.027996]], [[53.815197, -2.029227], [53.815116, -2.029327]], [[53.815116, -2.029327], [53.815032, -2.029404]], [[53.814951, -2.029478], [53.814877, -2.029567]], [[53.814365, -2.030259], [53.814291, -2.03037]], [[53.814205, -2.030461], [53.814111, -2.030441]], [[53.814111, -2.030441], [53.814034, -2.030326]], [[53.813706, -2.030181], [53.813617, -2.030255]], [[53.813527, -2.030264], [53.813442, -2.030165]], [[53.812973, -2.029945], [53.812882, -2.029912]], [[53.812793, -2.029887], [53.812699, -2.02993]], [[53.812699, -2.02993], [53.812606, -2.029949]], [[53.812534, -2.029857], [53.812476, -2.02972]], [[53.812476, -2.02972], [53.812402, -2.029619]], [[53.812402, -2.029619], [53.812314, -2.029555]], [[53.812314, -2.029555], [53.812223, -2.029563]], [[53.812223, -2.029563], [53.812137, -2.029617]], [[53.812137, -2.029617], [53.812058, -2.029523]], [[53.811966, -2.029455], [53.811875, -2.029435]], [[53.811572, -2.029835], [53.81149, -2.029921]], [[53.811299, -2.029996], [53.811216, -2.030056]], [[53.81078, -2.030369], [53.810691, -2.030392]], [[53.810691, -2.030392], [53.81061, -2.030479]], [[53.81061, -2.030479], [53.810521, -2.030511]], [[53.81043, -2.030544], [53.810345, -2.030617]], [[53.810345, -2.030617], [53.810271, -2.030713]], [[53.810271, -2.030713], [53.8102, -2.030839]], [[53.810062, -2.031067], [53.809984, -2.031172]], [[53.809984, -2.031172], [53.809923, -2.031287]], [[53.809606, -2.031654], [53.809539, -2.031756]], [[53.809539, -2.031756], [53.809478, -2.031896]], [[53.809478, -2.031896], [53.809396, -2.031976]], [[53.809396, -2.031976], [53.809306, -2.031982]], [[53.80922, -2.032053], [53.809155, -2.032175]], [[53.809155, -2.032175], [53.809083, -2.032288]], [[53.808933, -2.032503], [53.808866, -2.032611]], [[53.808866, -2.032611], [53.808814, -2.032748]], [[53.808754, -2.032864], [53.808669, -2.032935]], [[53.808669, -2.032935], [53.808584, -2.033001]], [[53.808428, -2.033178], [53.808353, -2.033291]], [[53.808353, -2.033291], [53.808281, -2.033398]], [[53.808281, -2.033398], [53.808206, -2.033486]], [[53.808206, -2.033486], [53.808125, -2.033585]], [[53.808125, -2.033585], [53.808042, -2.033673]], [[53.808042, -2.033673], [53.808008, -2.03382]], [[53.808008, -2.03382], [53.807936, -2.033931]], [[53.807936, -2.033931], [53.807861, -2.034037]], [[53.807774, -2.034127], [53.807716, -2.034252]], [[53.807716, -2.034252], [53.807634, -2.034353]], [[53.807634, -2.034353], [53.807579, -2.034477]], [[53.807579, -2.034477], [53.807533, -2.034627]], [[53.8074, -2.034864], [53.807356, -2.034998]], [[53.807356, -2.034998], [53.807321, -2.035155]], [[53.807236, -2.035223], [53.807137, -2.03521]], [[53.807046, -2.035177], [53.806957, -2.035142]], [[53.806874, -2.035223], [53.806788, -2.035294]], [[53.806788, -2.035294], [53.806704, -2.035343]], [[53.806704, -2.035343], [53.806628, -2.035454]], [[53.806286, -2.036034], [53.806231, -2.036176]], [[53.806231, -2.036176], [53.806153, -2.036288]], [[53.805947, -2.036617], [53.805912, -2.036758]], [[53.805912, -2.036758], [53.805867, -2.036891]], [[53.805867, -2.036891], [53.805808, -2.037022]], [[53.805666, -2.037457], [53.805617, -2.037593]], [[53.805617, -2.037593], [53.805571, -2.037733]], [[53.805571, -2.037733], [53.805517, -2.037868]], [[53.805466, -2.037994], [53.805421, -2.038133]], [[53.805237, -2.038644], [53.805161, -2.038743]], [[53.805077, -2.03884], [53.80503, -2.038985]], [[53.80503, -2.038985], [53.80499, -2.039127]], [[53.80499, -2.039127], [53.804942, -2.039258]], [[53.804942, -2.039258], [53.804894, -2.039405]], [[53.804894, -2.039405], [53.804829, -2.039527]], [[53.804829, -2.039527], [53.804789, -2.039682]], [[53.804789, -2.039682], [53.804731, -2.039799]], [[53.804731, -2.039799], [53.804679, -2.039935]], [[53.804679, -2.039935], [53.804628, -2.040078]], [[53.804628, -2.040078], [53.804564, -2.040197]], [[53.804564, -2.040197], [53.804507, -2.040329]], [[53.804507, -2.040329], [53.804452, -2.040454]], [[53.804452, -2.040454], [53.8044, -2.040578]], [[53.804318, -2.04087], [53.804244, -2.040966]], [[53.804244, -2.040966], [53.804193, -2.0411]], [[53.804193, -2.0411], [53.804154, -2.041251]], [[53.804154, -2.041251], [53.804131, -2.041412]], [[53.804131, -2.041412], [53.80407, -2.041533]], [[53.80407, -2.041533], [53.804009, -2.041664]], [[53.804009, -2.041664], [53.803976, -2.041806]], [[53.803976, -2.041806], [53.80394, -2.041957]], [[53.80394, -2.041957], [53.803885, -2.042083]], [[53.803885, -2.042083], [53.803808, -2.042202]], [[53.803808, -2.042202], [53.803718, -2.042278]], [[53.803718, -2.042278], [53.803662, -2.042403]], [[53.803662, -2.042403], [53.803602, -2.042534]], [[53.803602, -2.042534], [53.803509, -2.042564]], [[53.803356, -2.042753], [53.803312, -2.042903]], [[53.803312, -2.042903], [53.803246, -2.043031]], [[53.803246, -2.043031], [53.803175, -2.043133]], [[53.802956, -2.043621], [53.802885, -2.043721]], [[53.802885, -2.043721], [53.802854, -2.043885]], [[53.802854, -2.043885], [53.802814, -2.044036]], [[53.802814, -2.044036], [53.802784, -2.044199]], [[53.802784, -2.044199], [53.802738, -2.044352]], [[53.802738, -2.044352], [53.802699, -2.044491]], [[53.802653, -2.04465], [53.802607, -2.044781]], [[53.802607, -2.044781], [53.802563, -2.044928]], [[53.802524, -2.04508], [53.802458, -2.045187]], [[53.802458, -2.045187], [53.802398, -2.045323]], [[53.802247, -2.045531], [53.80217, -2.045635]], [[53.80217, -2.045635], [53.802102, -2.045755]], [[53.802102, -2.045755], [53.802032, -2.045868]], [[53.80194, -2.046151], [53.801904, -2.046308]], [[53.801904, -2.046308], [53.801862, -2.046445]], [[53.801862, -2.046445], [53.801805, -2.046588]], [[53.801805, -2.046588], [53.801757, -2.046734]], [[53.801757, -2.046734], [53.80169, -2.046861]], [[53.80169, -2.046861], [53.801641, -2.046996]], [[53.801045, -2.048103], [53.800948, -2.048081]], [[53.800763, -2.048047], [53.800671, -2.048021]], [[53.800671, -2.048021], [53.800576, -2.04805]], [[53.800576, -2.04805], [53.800485, -2.048038]], [[53.800233, -2.048193], [53.800171, -2.04831]], [[53.800171, -2.04831], [53.800077, -2.048369]], [[53.800077, -2.048369], [53.799997, -2.048453]], [[53.799997, -2.048453], [53.799969, -2.048602]], [[53.799969, -2.048602], [53.799935, -2.048743]], [[53.799935, -2.048743], [53.799895, -2.048886]], [[53.799648, -2.049156], [53.799558, -2.049226]], [[53.799558, -2.049226], [53.799475, -2.049307]], [[53.799475, -2.049307], [53.799387, -2.049372]], [[53.799312, -2.049459], [53.799225, -2.04951]], [[53.799225, -2.04951], [53.799143, -2.049592]], [[53.799143, -2.049592], [53.799064, -2.049668]], [[53.799064, -2.049668], [53.79897, -2.049675]], [[53.79897, -2.049675], [53.798883, -2.049727]], [[53.798883, -2.049727], [53.798786, -2.049751]], [[53.798786, -2.049751], [53.798697, -2.049813]], [[53.798697, -2.049813], [53.798606, -2.04987]], [[53.79842, -2.049955], [53.798329, -2.050004]], [[53.798329, -2.050004], [53.79824, -2.050046]], [[53.79824, -2.050046], [53.798143, -2.050095]], [[53.797998, -2.050283], [53.797936, -2.050397]], [[53.79787, -2.050512], [53.797791, -2.050604]], [[53.797791, -2.050604], [53.797727, -2.050713]], [[53.797727, -2.050713], [53.797661, -2.050829]], [[53.797661, -2.050829], [53.797572, -2.050902]], [[53.797339, -2.051159], [53.797266, -2.051265]], [[53.797119, -2.05148], [53.797044, -2.051585]], [[53.797044, -2.051585], [53.797008, -2.051733]], [[53.797008, -2.051733], [53.796978, -2.051882]], [[53.796978, -2.051882], [53.796946, -2.05204]], [[53.796842, -2.052322], [53.796804, -2.052469]], [[53.796804, -2.052469], [53.796789, -2.052632]], [[53.796789, -2.052632], [53.796742, -2.05277]], [[53.796742, -2.05277], [53.796701, -2.052911]], [[53.796701, -2.052911], [53.796647, -2.053049]], [[53.796647, -2.053049], [53.796586, -2.053175]], [[53.796586, -2.053175], [53.796561, -2.053333]], [[53.796561, -2.053333], [53.796502, -2.053469]], [[53.796502, -2.053469], [53.796474, -2.053615]], [[53.796474, -2.053615], [53.796428, -2.053759]], [[53.796428, -2.053759], [53.796408, -2.053915]], [[53.796408, -2.053915], [53.796362, -2.054049]], [[53.796362, -2.054049], [53.796287, -2.054153]], [[53.79622, -2.054442], [53.796203, -2.0546]], [[53.796203, -2.0546], [53.796174, -2.054756]], [[53.79611, -2.054864], [53.796123, -2.055021]], [[53.796158, -2.055169], [53.796191, -2.055315]], [[53.796191, -2.055315], [53.796185, -2.055469]], [[53.796172, -2.055632], [53.796161, -2.055804]], [[53.796161, -2.055804], [53.796152, -2.055958]], [[53.796152, -2.055958], [53.796174, -2.056121]], [[53.796174, -2.056121], [53.796182, -2.056282]], [[53.796182, -2.056282], [53.796127, -2.056418]], [[53.796127, -2.056418], [53.79609, -2.056573]], [[53.795799, -2.057794], [53.795768, -2.057938]], [[53.795768, -2.057938], [53.795713, -2.058084]], [[53.795713, -2.058084], [53.795679, -2.058227]], [[53.795679, -2.058227], [53.795637, -2.058363]], [[53.795637, -2.058363], [53.795593, -2.058516]], [[53.795593, -2.058516], [53.795541, -2.058656]], [[53.795541, -2.058656], [53.795471, -2.058778]], [[53.795471, -2.058778], [53.795417, -2.058905]], [[53.795345, -2.059009], [53.795285, -2.059122]], [[53.795285, -2.059122], [53.795215, -2.059229]], [[53.795215, -2.059229], [53.795142, -2.059346]], [[53.795075, -2.059466], [53.795019, -2.059604]], [[53.795019, -2.059604], [53.794941, -2.059696]], [[53.794854, -2.059783], [53.794777, -2.05987]], [[53.794777, -2.05987], [53.794684, -2.059882]], [[53.794684, -2.059882], [53.794583, -2.059901]], [[53.794583, -2.059901], [53.794491, -2.059975]], [[53.794491, -2.059975], [53.794405, -2.06006]], [[53.794405, -2.06006], [53.794324, -2.060155]], [[53.794324, -2.060155], [53.794241, -2.060251]], [[53.794241, -2.060251], [53.794153, -2.060344]], [[53.794073, -2.06042], [53.793992, -2.060485]], [[53.793784, -2.060813], [53.793703, -2.060898]], [[53.793703, -2.060898], [53.793632, -2.061006]], [[53.793632, -2.061006], [53.793541, -2.061045]], [[53.793461, -2.061149], [53.793465, -2.061307]], [[53.793445, -2.061465], [53.793399, -2.061612]], [[53.79335, -2.061749], [53.793271, -2.061838]], [[53.793271, -2.061838], [53.79319, -2.061924]], [[53.79319, -2.061924], [53.793106, -2.06201]], [[53.793106, -2.06201], [53.793028, -2.062089]], [[53.793028, -2.062089], [53.792946, -2.062192]], [[53.792946, -2.062192], [53.792872, -2.062282]], [[53.792872, -2.062282], [53.792806, -2.062405]], [[53.792806, -2.062405], [53.792728, -2.062495]], [[53.792728, -2.062495], [53.792645, -2.062578]], [[53.792645, -2.062578], [53.792578, -2.062699]], [[53.792578, -2.062699], [53.792492, -2.062765]], [[53.792333, -2.062884], [53.792261, -2.062986]], [[53.792261, -2.062986], [53.792183, -2.063091]], [[53.792183, -2.063091], [53.792101, -2.063195]], [[53.792164, -2.063477], [53.79221, -2.063616]], [[53.79221, -2.063616], [53.792258, -2.063762]], [[53.792258, -2.063762], [53.792308, -2.06389]], [[53.792308, -2.06389], [53.79236, -2.064028]], [[53.79236, -2.064028], [53.792419, -2.064168]], [[53.792419, -2.064168], [53.792469, -2.064296]], [[53.792469, -2.064296], [53.792521, -2.064441]], [[53.792521, -2.064441], [53.792565, -2.064576]], [[53.79263, -2.064789], [53.792689, -2.064915]], [[53.792839, -2.065483], [53.79288, -2.065624]], [[53.79288, -2.065624], [53.792934, -2.065753]], [[53.792934, -2.065753], [53.79297, -2.065892]], [[53.793052, -2.06612], [53.79306, -2.066272]], [[53.79314, -2.066371], [53.793196, -2.066512]], [[53.793196, -2.066512], [53.793248, -2.066659]], [[53.793248, -2.066659], [53.793281, -2.066816]], [[53.793281, -2.066816], [53.793331, -2.066965]], [[53.793331, -2.066965], [53.793425, -2.067]], [[53.793479, -2.067132], [53.793536, -2.067285]], [[53.793536, -2.067285], [53.793522, -2.067454]], [[53.793617, -2.067726], [53.793707, -2.067767]], [[53.793707, -2.067767], [53.793781, -2.067859]], [[53.793781, -2.067859], [53.793718, -2.067991]], [[53.793653, -2.068097], [53.793589, -2.068205]], [[53.793589, -2.068205], [53.793524, -2.068311]], [[53.793524, -2.068311], [53.79346, -2.068425]], [[53.79346, -2.068425], [53.793389, -2.068546]], [[53.793389, -2.068546], [53.793321, -2.068675]], [[53.793321, -2.068675], [53.793252, -2.068793]], [[53.793252, -2.068793], [53.793184, -2.068915]], [[53.793184, -2.068915], [53.793114, -2.069029]], [[53.793114, -2.069029], [53.79305, -2.06914]], [[53.79305, -2.06914], [53.792983, -2.069246]], [[53.792983, -2.069246], [53.792919, -2.069359]], [[53.792611, -2.069739], [53.792521, -2.069817]], [[53.792521, -2.069817], [53.792439, -2.069891]], [[53.792175, -2.07013], [53.792091, -2.070201]], [[53.791727, -2.070462], [53.791652, -2.070557]], [[53.791652, -2.070557], [53.791559, -2.070591]], [[53.791559, -2.070591], [53.791459, -2.070581]], [[53.791459, -2.070581], [53.791364, -2.070595]], [[53.790968, -2.071084], [53.790888, -2.071163]], [[53.790888, -2.071163], [53.790801, -2.071249]], [[53.790801, -2.071249], [53.790722, -2.071327]], [[53.790722, -2.071327], [53.790643, -2.071409]], [[53.790643, -2.071409], [53.790555, -2.071496]], [[53.790555, -2.071496], [53.790476, -2.071575]], [[53.78988, -2.072048], [53.789793, -2.072102]], [[53.789793, -2.072102], [53.789702, -2.072169]], [[53.789702, -2.072169], [53.789624, -2.072266]], [[53.789418, -2.072803], [53.789395, -2.072966]], [[53.789395, -2.072966], [53.789311, -2.073053]], [[53.788901, -2.075499], [53.788877, -2.075647]], [[53.7886, -2.076691], [53.788601, -2.076846]], [[53.788601, -2.076846], [53.788536, -2.076979]], [[53.788038, -2.079251], [53.788072, -2.079409]], [[53.788126, -2.079547], [53.788114, -2.07973]], [[53.787521, -2.081763], [53.787434, -2.08181]], [[53.787434, -2.08181], [53.787369, -2.081942]], [[53.787369, -2.081942], [53.78728, -2.082018]], [[53.78728, -2.082018], [53.787261, -2.08217]], [[53.786711, -2.081695], [53.786615, -2.081663]], [[53.786615, -2.081663], [53.786515, -2.081684]], [[53.786515, -2.081684], [53.786416, -2.081707]], [[53.786139, -2.081779], [53.78605, -2.081727]], [[53.78605, -2.081727], [53.785957, -2.081681]], [[53.785616, -2.08134], [53.785528, -2.081297]], [[53.785528, -2.081297], [53.785437, -2.081219]], [[53.785437, -2.081219], [53.78534, -2.081189]], [[53.785151, -2.081118], [53.785052, -2.081081]], [[53.785052, -2.081081], [53.784967, -2.081131]], [[53.784967, -2.081131], [53.784863, -2.081128]], [[53.784675, -2.081051], [53.784577, -2.081039]], [[53.784577, -2.081039], [53.784486, -2.081053]], [[53.784486, -2.081053], [53.784389, -2.081063]], [[53.784389, -2.081063], [53.784291, -2.081063]], [[53.784291, -2.081063], [53.784198, -2.081059]], [[53.784198, -2.081059], [53.784105, -2.081038]], [[53.784105, -2.081038], [53.784009, -2.081045]], [[53.783824, -2.080925], [53.783742, -2.080853]], [[53.783742, -2.080853], [53.783655, -2.080784]], [[53.783655, -2.080784], [53.783569, -2.080728]], [[53.783569, -2.080728], [53.78348, -2.08066]], [[53.78348, -2.08066], [53.783396, -2.080574]], [[53.783396, -2.080574], [53.783304, -2.080561]], [[53.783304, -2.080561], [53.78321, -2.080554]], [[53.78321, -2.080554], [53.783118, -2.080569]], [[53.783034, -2.080634], [53.782953, -2.080713]], [[53.782953, -2.080713], [53.782878, -2.080814]], [[53.78278, -2.081084], [53.782752, -2.081231]], [[53.782752, -2.081231], [53.782725, -2.081393]], [[53.782725, -2.081393], [53.782712, -2.081543]], [[53.782712, -2.081543], [53.782701, -2.081696]], [[53.782701, -2.081696], [53.782684, -2.08185]], [[53.782684, -2.08185], [53.782663, -2.081999]], [[53.782663, -2.081999], [53.782624, -2.082151]], [[53.782624, -2.082151], [53.782585, -2.082308]], [[53.782465, -2.082768], [53.782435, -2.082913]], [[53.782435, -2.082913], [53.782403, -2.08307]], [[53.782403, -2.08307], [53.782356, -2.08322]], [[53.782341, -2.083374], [53.782302, -2.083515]], [[53.782302, -2.083515], [53.782249, -2.083637]], [[53.782211, -2.083787], [53.782187, -2.083943]], [[53.782104, -2.084261], [53.782067, -2.084422]], [[53.782067, -2.084422], [53.782014, -2.084553]], [[53.781942, -2.084846], [53.781919, -2.084993]], [[53.781919, -2.084993], [53.781881, -2.085147]], [[53.781335, -2.086506], [53.781244, -2.086584]], [[53.781159, -2.086642], [53.781062, -2.08661]], [[53.78059, -2.086424], [53.780496, -2.086389]], [[53.780404, -2.086368], [53.780303, -2.086335]], [[53.779832, -2.086207], [53.779733, -2.086176]], [[53.779733, -2.086176], [53.779638, -2.086139]], [[53.779638, -2.086139], [53.779535, -2.08613]], [[53.779252, -2.086014], [53.779179, -2.086105]], [[53.779179, -2.086105], [53.779086, -2.086089]], [[53.778901, -2.086013], [53.778806, -2.086005]], [[53.778806, -2.086005], [53.778716, -2.086009]], [[53.778335, -2.085786], [53.778236, -2.085754]], [[53.778236, -2.085754], [53.778134, -2.085726]], [[53.777766, -2.08556], [53.777672, -2.085509]], [[53.777672, -2.085509], [53.7776, -2.085413]], [[53.777557, -2.085273], [53.777523, -2.085111]], [[53.777523, -2.085111], [53.777516, -2.084957]], [[53.777516, -2.084957], [53.77752, -2.084786]], [[53.77752, -2.084786], [53.777539, -2.084624]], [[53.777571, -2.084466], [53.777601, -2.084309]], [[53.777605, -2.083828], [53.777598, -2.083657]], [[53.777598, -2.083657], [53.777593, -2.083505]], [[53.777593, -2.083505], [53.777586, -2.083334]], [[53.777586, -2.083334], [53.777592, -2.083176]], [[53.777556, -2.082685], [53.777543, -2.082525]], [[53.777543, -2.082525], [53.777558, -2.082372]], [[53.777558, -2.082372], [53.777487, -2.082261]], [[53.777487, -2.082261], [53.777399, -2.082308]], [[53.777399, -2.082308], [53.777334, -2.082424]], [[53.777246, -2.082513], [53.777173, -2.082609]], [[53.777173, -2.082609], [53.777093, -2.082694]], [[53.777093, -2.082694], [53.777003, -2.082748]], [[53.777003, -2.082748], [53.776915, -2.082702]], [[53.776824, -2.08273], [53.776738, -2.082678]], [[53.776738, -2.082678], [53.776637, -2.082682]], [[53.776637, -2.082682], [53.776537, -2.082681]], [[53.776537, -2.082681], [53.776441, -2.082674]], [[53.776271, -2.082648], [53.776177, -2.08264]], [[53.776177, -2.08264], [53.776082, -2.082621]], [[53.776082, -2.082621], [53.775989, -2.082596]], [[53.775989, -2.082596], [53.775892, -2.08258]], [[53.775892, -2.08258], [53.775807, -2.082515]], [[53.775712, -2.082451], [53.775614, -2.082434]], [[53.775614, -2.082434], [53.775517, -2.082445]], [[53.775517, -2.082445], [53.775427, -2.082441]], [[53.775237, -2.082475], [53.77514, -2.082457]], [[53.77514, -2.082457], [53.775043, -2.082441]], [[53.775043, -2.082441], [53.774951, -2.082457]], [[53.774767, -2.08244], [53.77468, -2.082379]], [[53.77468, -2.082379], [53.774587, -2.082303]], [[53.774587, -2.082303], [53.774494, -2.082251]], [[53.774306, -2.082243], [53.774207, -2.082272]], [[53.774207, -2.082272], [53.774109, -2.082288]], [[53.774109, -2.082288], [53.774016, -2.082248]], [[53.774016, -2.082248], [53.773926, -2.08224]], [[53.773595, -2.081824], [53.773598, -2.081653]], [[53.773612, -2.081486], [53.773602, -2.081325]], [[53.773602, -2.081325], [53.773614, -2.081163]], [[53.773614, -2.081163], [53.773629, -2.081005]], [[53.773531, -2.080384], [53.773522, -2.080233]], [[53.773522, -2.080233], [53.773545, -2.080078]], [[53.773545, -2.080078], [53.773544, -2.079915]], [[53.773544, -2.079915], [53.773516, -2.079757]], [[53.773516, -2.079757], [53.773498, -2.079601]], [[53.773498, -2.079601], [53.77347, -2.079442]], [[53.77347, -2.079442], [53.773444, -2.079295]], [[53.773444, -2.079295], [53.773437, -2.079135]], [[53.773412, -2.078824], [53.773396, -2.078665]], [[53.773396, -2.078665], [53.773388, -2.078495]], [[53.77339, -2.078333], [53.773337, -2.078204]], [[53.773337, -2.078204], [53.773287, -2.078076]], [[53.773287, -2.078076], [53.77323, -2.077929]], [[53.77323, -2.077929], [53.7732, -2.077781]], [[53.7732, -2.077781], [53.773268, -2.077668]], [[53.773268, -2.077668], [53.77322, -2.07753]], [[53.77322, -2.07753], [53.773173, -2.077395]], [[53.773173, -2.077395], [53.773139, -2.077243]], [[53.773139, -2.077243], [53.773103, -2.077091]], [[53.773103, -2.077091], [53.773076, -2.07694]], [[53.773076, -2.07694], [53.773037, -2.076788]], [[53.773022, -2.076465], [53.772954, -2.076337]], [[53.772954, -2.076337], [53.77292, -2.076177]], [[53.772818, -2.075407], [53.772757, -2.07527]], [[53.772569, -2.07492], [53.772554, -2.074769]], [[53.772554, -2.074769], [53.772542, -2.074611]], [[53.772542, -2.074611], [53.772519, -2.074449]], [[53.772479, -2.074312], [53.772396, -2.074229]], [[53.772396, -2.074229], [53.772358, -2.074079]], [[53.772358, -2.074079], [53.772361, -2.073927]], [[53.772361, -2.073927], [53.77234, -2.073771]], [[53.77234, -2.073771], [53.772267, -2.073653]], [[53.772111, -2.073252], [53.772098, -2.073086]], [[53.772098, -2.073086], [53.772109, -2.072915]], [[53.772109, -2.072915], [53.772064, -2.072761]], [[53.772064, -2.072761], [53.772024, -2.072626]], [[53.772024, -2.072626], [53.772029, -2.072469]], [[53.772036, -2.072311], [53.772024, -2.072157]], [[53.772024, -2.072157], [53.772025, -2.071991]], [[53.772025, -2.071991], [53.772006, -2.07184]], [[53.772006, -2.07184], [53.77197, -2.071681]], [[53.771957, -2.071519], [53.771926, -2.071363]], [[53.771926, -2.071363], [53.771896, -2.071208]], [[53.771896, -2.071208], [53.771853, -2.071071]], [[53.771853, -2.071071], [53.771816, -2.070929]], [[53.771816, -2.070929], [53.771802, -2.070775]], [[53.771802, -2.070775], [53.771779, -2.070611]], [[53.771749, -2.070288], [53.771714, -2.070128]], [[53.771714, -2.070128], [53.77166, -2.069987]], [[53.77166, -2.069987], [53.771627, -2.069843]], [[53.771627, -2.069843], [53.771597, -2.06968]], [[53.77156, -2.069518], [53.771559, -2.06936]], [[53.771559, -2.06936], [53.771528, -2.069205]], [[53.771528, -2.069205], [53.771495, -2.069047]], [[53.771295, -2.068694], [53.771245, -2.068546]], [[53.771166, -2.068452], [53.771092, -2.068355]], [[53.771092, -2.068355], [53.771051, -2.068202]], [[53.770875, -2.067816], [53.770799, -2.067719]], [[53.770799, -2.067719], [53.770733, -2.067613]], [[53.770733, -2.067613], [53.770666, -2.067509]], [[53.770666, -2.067509], [53.770591, -2.06741]], [[53.770591, -2.06741], [53.770511, -2.067326]], [[53.770372, -2.067099], [53.77032, -2.066964]], [[53.77032, -2.066964], [53.770258, -2.066838]], [[53.770258, -2.066838], [53.770207, -2.066704]], [[53.770207, -2.066704], [53.770166, -2.066553]], [[53.770166, -2.066553], [53.770134, -2.066403]], [[53.769977, -2.06599], [53.769944, -2.065845]], [[53.769944, -2.065845], [53.769912, -2.065695]], [[53.769912, -2.065695], [53.769835, -2.065588]], [[53.769835, -2.065588], [53.769766, -2.065459]], [[53.769766, -2.065459], [53.769696, -2.065345]], [[53.769696, -2.065345], [53.769626, -2.065232]], [[53.769542, -2.064948], [53.76946, -2.064845]], [[53.76946, -2.064845], [53.769392, -2.064719]], [[53.768973, -2.064168], [53.768912, -2.064038]], [[53.768912, -2.064038], [53.768856, -2.063901]], [[53.768856, -2.063901], [53.768811, -2.063755]], [[53.768811, -2.063755], [53.768772, -2.063609]], [[53.768772, -2.063609], [53.768786, -2.063442]], [[53.768524, -2.063349], [53.76843, -2.06333]], [[53.768344, -2.063262], [53.768332, -2.06309]], [[53.768115, -2.062827], [53.768016, -2.062825]], [[53.768016, -2.062825], [53.767924, -2.062795]], [[53.767924, -2.062795], [53.767849, -2.06269]], [[53.76753, -2.062325], [53.767453, -2.062222]], [[53.767453, -2.062222], [53.767376, -2.062124]], [[53.767376, -2.062124], [53.767289, -2.062039]], [[53.767127, -2.061876], [53.767073, -2.061736]], [[53.767073, -2.061736], [53.767018, -2.061598]], [[53.767018, -2.061598], [53.766938, -2.061512]], [[53.766938, -2.061512], [53.766863, -2.061411]], [[53.766863, -2.061411], [53.766769, -2.061365]], [[53.766464, -2.060967], [53.766386, -2.060867]], [[53.766386, -2.060867], [53.766327, -2.060747]], [[53.766262, -2.060628], [53.766194, -2.060508]], [[53.766194, -2.060508], [53.766134, -2.060383]], [[53.765943, -2.060033], [53.765874, -2.059928]], [[53.765874, -2.059928], [53.76582, -2.059798]], [[53.76582, -2.059798], [53.765747, -2.059686]], [[53.765747, -2.059686], [53.765664, -2.059601]], [[53.765592, -2.059491], [53.765516, -2.059395]], [[53.765516, -2.059395], [53.765443, -2.05929]], [[53.765443, -2.05929], [53.765367, -2.0592]], [[53.765367, -2.0592], [53.765279, -2.059128]], [[53.765279, -2.059128], [53.765195, -2.059071]], [[53.765089, -2.059068], [53.764992, -2.059013]], [[53.764992, -2.059013], [53.764914, -2.058921]], [[53.764914, -2.058921], [53.764852, -2.059044]], [[53.764595, -2.058934], [53.764499, -2.05893]], [[53.764499, -2.05893], [53.764397, -2.0589]], [[53.764397, -2.0589], [53.764306, -2.058874]], [[53.764306, -2.058874], [53.76424, -2.058754]], [[53.76424, -2.058754], [53.764225, -2.058598]], [[53.764225, -2.058598], [53.764148, -2.058518]], [[53.763917, -2.058281], [53.763851, -2.058155]], [[53.763851, -2.058155], [53.763779, -2.058053]], [[53.763779, -2.058053], [53.763721, -2.057922]], [[53.763644, -2.057808], [53.763559, -2.057723]], [[53.763404, -2.057554], [53.763331, -2.057462]], [[53.763259, -2.057368], [53.763193, -2.057241]], [[53.763193, -2.057241], [53.763111, -2.057159]], [[53.763111, -2.057159], [53.76306, -2.05702]], [[53.762818, -2.056605], [53.762729, -2.056552]], [[53.761878, -2.055765], [53.761792, -2.0557]], [[53.761792, -2.0557], [53.761711, -2.055635]], [[53.761711, -2.055635], [53.76162, -2.055553]], [[53.76162, -2.055553], [53.761537, -2.055492]], [[53.761537, -2.055492], [53.761446, -2.055477]], [[53.761277, -2.055325], [53.761192, -2.055227]], [[53.760871, -2.054862], [53.760781, -2.054802]], [[53.760781, -2.054802], [53.760686, -2.05478]], [[53.760356, -2.054377], [53.760264, -2.054301]], [[53.760264, -2.054301], [53.760176, -2.054221]], [[53.760087, -2.054138], [53.760009, -2.054041]], [[53.760009, -2.054041], [53.759965, -2.053904]], [[53.759965, -2.053904], [53.759901, -2.053788]], [[53.759901, -2.053788], [53.75981, -2.053758]], [[53.759632, -2.053647], [53.759568, -2.053536]], [[53.759223, -2.053243], [53.75914, -2.053159]], [[53.75914, -2.053159], [53.759049, -2.053116]], [[53.758767, -2.052678], [53.758673, -2.052654]], [[53.758386, -2.052641], [53.758298, -2.052694]], [[53.758298, -2.052694], [53.758209, -2.052742]], [[53.758209, -2.052742], [53.758124, -2.05282]], [[53.758124, -2.05282], [53.758037, -2.052911]], [[53.758037, -2.052911], [53.757979, -2.053027]], [[53.757979, -2.053027], [53.757886, -2.053049]], [[53.757806, -2.053124], [53.757731, -2.053233]], [[53.757731, -2.053233], [53.757653, -2.053321]], [[53.757653, -2.053321], [53.757565, -2.0534]], [[53.757565, -2.0534], [53.757484, -2.053464]], [[53.757484, -2.053464], [53.757414, -2.053564]], [[53.757414, -2.053564], [53.757332, -2.053641]], [[53.757332, -2.053641], [53.757244, -2.05373]], [[53.757244, -2.05373], [53.757159, -2.053783]], [[53.756886, -2.054068], [53.756841, -2.054212]], [[53.756841, -2.054212], [53.756743, -2.054209]], [[53.756743, -2.054209], [53.756647, -2.054188]], [[53.756476, -2.054429], [53.756424, -2.054571]], [[53.755626, -2.055136], [53.75559, -2.054988]], [[53.75559, -2.054988], [53.755531, -2.054862]], [[53.755531, -2.054862], [53.755486, -2.054999]], [[53.755486, -2.054999], [53.755494, -2.055157]], [[53.755494, -2.055157], [53.755504, -2.055314]], [[53.755504, -2.055314], [53.755496, -2.055161]], [[53.755432, -2.054157], [53.755418, -2.054001]], [[53.755363, -2.053027], [53.755323, -2.052877]], [[53.755323, -2.052877], [53.755218, -2.052888]], [[53.755218, -2.052888], [53.755127, -2.05293]], [[53.755043, -2.052853], [53.754945, -2.052832]], [[53.754843, -2.052813], [53.754749, -2.052848]], [[53.754749, -2.052848], [53.75466, -2.052805]], [[53.75466, -2.052805], [53.754562, -2.052793]], [[53.754562, -2.052793], [53.754467, -2.052815]], [[53.754467, -2.052815], [53.754376, -2.052817]], [[53.754376, -2.052817], [53.754289, -2.05277]], [[53.754103, -2.053103], [53.754062, -2.053244]], [[53.753917, -2.053659], [53.753868, -2.05379]], [[53.753868, -2.05379], [53.753831, -2.053941]], [[53.753831, -2.053941], [53.753802, -2.054099]], [[53.753335, -2.055018], [53.753343, -2.055183]], [[53.753343, -2.055183], [53.753285, -2.055312]], [[53.753089, -2.055655], [53.753022, -2.05578]], [[53.752807, -2.056122], [53.752715, -2.056151]], [[53.752715, -2.056151], [53.752669, -2.056319]], [[53.752585, -2.056417], [53.752508, -2.056509]], [[53.752413, -2.056777], [53.752352, -2.056908]], [[53.751196, -2.058717], [53.75111, -2.058814]], [[53.75111, -2.058814], [53.75101, -2.058845]], [[53.75047, -2.058987], [53.750383, -2.058929]], [[53.750236, -2.058723], [53.750157, -2.058648]], [[53.750157, -2.058648], [53.750063, -2.058658]], [[53.749928, -2.05856], [53.749879, -2.05842]], [[53.749879, -2.05842], [53.749868, -2.05826]], [[53.749868, -2.05826], [53.749789, -2.058179]], [[53.749789, -2.058179], [53.749704, -2.058235]], [[53.749704, -2.058235], [53.749684, -2.058388]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_acc16843c982fc6e9531040eae0a41d5 = L.polyline(
                [[[53.986587, -2.101979], [53.986666, -2.101892]], [[53.986666, -2.101892], [53.986657, -2.101961]], [[53.986657, -2.101961], [53.986599, -2.101835]], [[53.986599, -2.101835], [53.986594, -2.101936]], [[53.986594, -2.101936], [53.986531, -2.102065]], [[53.983632, -2.104478], [53.983605, -2.104509]], [[53.983605, -2.104509], [53.983526, -2.104605]], [[53.971894, -2.121539], [53.971892, -2.121708]], [[53.96129, -2.131801], [53.961307, -2.131957]], [[53.956717, -2.135515], [53.956722, -2.135678]], [[53.951439, -2.140021], [53.951354, -2.139933]], [[53.933956, -2.141401], [53.933862, -2.141398]], [[53.915852, -2.145132], [53.915752, -2.145112]], [[53.915751, -2.145155], [53.915849, -2.14506]], [[53.916091, -2.144043], [53.916009, -2.144115]], [[53.916079, -2.144058], [53.916137, -2.144186]], [[53.918852, -2.129974], [53.918952, -2.130039]], [[53.928249, -2.115332], [53.928275, -2.115174]], [[53.928352, -2.112846], [53.928339, -2.112693]], [[53.914734, -2.063645], [53.914658, -2.063744]], [[53.901592, -2.061052], [53.90151, -2.060957]], [[53.900845, -2.060408], [53.900805, -2.060261]], [[53.881101, -2.052867], [53.881015, -2.052794]], [[53.876529, -2.053679], [53.876434, -2.05371]], [[53.876174, -2.053711], [53.876093, -2.053785]], [[53.851354, -2.040759], [53.851258, -2.040782]], [[53.848473, -2.038377], [53.848407, -2.038247]], [[53.832757, -2.020486], [53.832844, -2.020587]], [[53.832844, -2.020587], [53.832863, -2.020593]], [[53.832886, -2.020434], [53.83274, -2.02054]], [[53.822472, -2.009646], [53.822458, -2.009811]], [[53.814811, -2.029697], [53.814729, -2.02979]], [[53.760516, -2.054536], [53.760448, -2.054418]], [[53.755502, -2.055136], [53.755496, -2.054971]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_1bc80ca6ecd0a193358481a4b4aa27ee = L.polyline(
                [[[53.986517, -2.102217], [53.986476, -2.102353]], [[53.986476, -2.102353], [53.986455, -2.102507]], [[53.985601, -2.10338], [53.985511, -2.10341]], [[53.985233, -2.103444], [53.985131, -2.103463]], [[53.985131, -2.103463], [53.985031, -2.103506]], [[53.985031, -2.103506], [53.984931, -2.103529]], [[53.984931, -2.103529], [53.984831, -2.103556]], [[53.984831, -2.103556], [53.984739, -2.103567]], [[53.984739, -2.103567], [53.984645, -2.103587]], [[53.984459, -2.103689], [53.984361, -2.10369]], [[53.984361, -2.10369], [53.984271, -2.103749]], [[53.984271, -2.103749], [53.9842, -2.103845]], [[53.9842, -2.103845], [53.984134, -2.103971]], [[53.983288, -2.105106], [53.983242, -2.10527]], [[53.983242, -2.10527], [53.983174, -2.105392]], [[53.983174, -2.105392], [53.983104, -2.105499]], [[53.983104, -2.105499], [53.983067, -2.105639]], [[53.983067, -2.105639], [53.983033, -2.105793]], [[53.983033, -2.105793], [53.983014, -2.105952]], [[53.98289, -2.106173], [53.982807, -2.10624]], [[53.982807, -2.10624], [53.982717, -2.10622]], [[53.982717, -2.10622], [53.982625, -2.106219]], [[53.982532, -2.106224], [53.982442, -2.106201]], [[53.982442, -2.106201], [53.982345, -2.10619]], [[53.982345, -2.10619], [53.982254, -2.106191]], [[53.981961, -2.106143], [53.981868, -2.106097]], [[53.981868, -2.106097], [53.981772, -2.106087]], [[53.981205, -2.105981], [53.98111, -2.105965]], [[53.98111, -2.105965], [53.98101, -2.105961]], [[53.98101, -2.105961], [53.980917, -2.105937]], [[53.980917, -2.105937], [53.980822, -2.105925]], [[53.980431, -2.106941], [53.980413, -2.107103]], [[53.980413, -2.107103], [53.980393, -2.107258]], [[53.980393, -2.107258], [53.98037, -2.107425]], [[53.98037, -2.107425], [53.980344, -2.107575]], [[53.980344, -2.107575], [53.980306, -2.107728]], [[53.980306, -2.107728], [53.980287, -2.107896]], [[53.980287, -2.107896], [53.980254, -2.108042]], [[53.980254, -2.108042], [53.980206, -2.10818]], [[53.980152, -2.108329], [53.980114, -2.108497]], [[53.979981, -2.108942], [53.979913, -2.109062]], [[53.979913, -2.109062], [53.97985, -2.10919]], [[53.97985, -2.10919], [53.979797, -2.10932]], [[53.979614, -2.109675], [53.979558, -2.109823]], [[53.979558, -2.109823], [53.979515, -2.109969]], [[53.979455, -2.11043], [53.979426, -2.11058]], [[53.979426, -2.11058], [53.979403, -2.110741]], [[53.979403, -2.110741], [53.979404, -2.110922]], [[53.979404, -2.111083], [53.979404, -2.111256]], [[53.979223, -2.113337], [53.979212, -2.11351]], [[53.979084, -2.113853], [53.979001, -2.113949]], [[53.978613, -2.114105], [53.978525, -2.114161]], [[53.978298, -2.114444], [53.978226, -2.114536]], [[53.978063, -2.114776], [53.97798, -2.114884]], [[53.97798, -2.114884], [53.977876, -2.114925]], [[53.977344, -2.115331], [53.97725, -2.115367]], [[53.975941, -2.115605], [53.975834, -2.115638]], [[53.975754, -2.115747], [53.975665, -2.115826]], [[53.975313, -2.116336], [53.975231, -2.116409]], [[53.975231, -2.116409], [53.975165, -2.116534]], [[53.975165, -2.116534], [53.975104, -2.116665]], [[53.975104, -2.116665], [53.975048, -2.116809]], [[53.975048, -2.116809], [53.974984, -2.116939]], [[53.974984, -2.116939], [53.974934, -2.117086]], [[53.974934, -2.117086], [53.974856, -2.117197]], [[53.974856, -2.117197], [53.974806, -2.117331]], [[53.974806, -2.117331], [53.974734, -2.117454]], [[53.974734, -2.117454], [53.974686, -2.117582]], [[53.974686, -2.117582], [53.974618, -2.1177]], [[53.974471, -2.11793], [53.974408, -2.11804]], [[53.974283, -2.118285], [53.974233, -2.118427]], [[53.974233, -2.118427], [53.974165, -2.118545]], [[53.974165, -2.118545], [53.974079, -2.118606]], [[53.973944, -2.118834], [53.973862, -2.118935]], [[53.973862, -2.118935], [53.97378, -2.119039]], [[53.97378, -2.119039], [53.973724, -2.119168]], [[53.973724, -2.119168], [53.973659, -2.119279]], [[53.973659, -2.119279], [53.973589, -2.119375]], [[53.973589, -2.119375], [53.973525, -2.119504]], [[53.973525, -2.119504], [53.973451, -2.119604]], [[53.973451, -2.119604], [53.973373, -2.119702]], [[53.973373, -2.119702], [53.973307, -2.11982]], [[53.973238, -2.119919], [53.973175, -2.120027]], [[53.973079, -2.120144], [53.973006, -2.120267]], [[53.973006, -2.120267], [53.972942, -2.120386]], [[53.972942, -2.120386], [53.972864, -2.120483]], [[53.972794, -2.120579], [53.972715, -2.120673]], [[53.972715, -2.120673], [53.972641, -2.120785]], [[53.972401, -2.121057], [53.972328, -2.121156]], [[53.972252, -2.121251], [53.972165, -2.12131]], [[53.971544, -2.122175], [53.971454, -2.122241]], [[53.971454, -2.122241], [53.971381, -2.122346]], [[53.971381, -2.122346], [53.971308, -2.122463]], [[53.971308, -2.122463], [53.971241, -2.122592]], [[53.9712, -2.122741], [53.971106, -2.12278]], [[53.971008, -2.122831], [53.970955, -2.122959]], [[53.970746, -2.123157], [53.970662, -2.123243]], [[53.970502, -2.123429], [53.97043, -2.123545]], [[53.970339, -2.12362], [53.970257, -2.123709]], [[53.970257, -2.123709], [53.970176, -2.123793]], [[53.97013, -2.123937], [53.97005, -2.124012]], [[53.969818, -2.124283], [53.969729, -2.124373]], [[53.969729, -2.124373], [53.969649, -2.124476]], [[53.969572, -2.124567], [53.96949, -2.124645]], [[53.96949, -2.124645], [53.969407, -2.124735]], [[53.969407, -2.124735], [53.969348, -2.124851]], [[53.969348, -2.124851], [53.969271, -2.124964]], [[53.969271, -2.124964], [53.969202, -2.12507]], [[53.969202, -2.12507], [53.969129, -2.125177]], [[53.969129, -2.125177], [53.969047, -2.12526]], [[53.969047, -2.12526], [53.968966, -2.125359]], [[53.968966, -2.125359], [53.968903, -2.125482]], [[53.968903, -2.125482], [53.968828, -2.125581]], [[53.968828, -2.125581], [53.968757, -2.125682]], [[53.968316, -2.126744], [53.968247, -2.126844]], [[53.968247, -2.126844], [53.968167, -2.126929]], [[53.968167, -2.126929], [53.968094, -2.127048]], [[53.968094, -2.127048], [53.968027, -2.12717]], [[53.96753, -2.127892], [53.967439, -2.12797]], [[53.967439, -2.12797], [53.967353, -2.128032]], [[53.967188, -2.12819], [53.967107, -2.128266]], [[53.966861, -2.128516], [53.966774, -2.128592]], [[53.966683, -2.128652], [53.9666, -2.128741]], [[53.966511, -2.128807], [53.966415, -2.128867]], [[53.966415, -2.128867], [53.966331, -2.128936]], [[53.966331, -2.128936], [53.966245, -2.129003]], [[53.965902, -2.129327], [53.965812, -2.129395]], [[53.965812, -2.129395], [53.965731, -2.129462]], [[53.965214, -2.129626], [53.965122, -2.129616]], [[53.965122, -2.129616], [53.965026, -2.129625]], [[53.965026, -2.129625], [53.96493, -2.129649]], [[53.96463, -2.12968], [53.964537, -2.129691]], [[53.964162, -2.12986], [53.964067, -2.129917]], [[53.964067, -2.129917], [53.963974, -2.12997]], [[53.963974, -2.12997], [53.963879, -2.130029]], [[53.963879, -2.130029], [53.963787, -2.130073]], [[53.963413, -2.130101], [53.963314, -2.130059]], [[53.963314, -2.130059], [53.963279, -2.130201]], [[53.963122, -2.130364], [53.963027, -2.130402]], [[53.962422, -2.130816], [53.962338, -2.130892]], [[53.962243, -2.130943], [53.962145, -2.130979]], [[53.962145, -2.130979], [53.962059, -2.131057]], [[53.961971, -2.131114], [53.961883, -2.131178]], [[53.961883, -2.131178], [53.961799, -2.131243]], [[53.961042, -2.13239], [53.960942, -2.132445]], [[53.960942, -2.132445], [53.960861, -2.132515]], [[53.960572, -2.132536], [53.960467, -2.13251]], [[53.960366, -2.13248], [53.960265, -2.132478]], [[53.960265, -2.132478], [53.960174, -2.132534]], [[53.960174, -2.132534], [53.960083, -2.132594]], [[53.960083, -2.132594], [53.96, -2.13266]], [[53.96, -2.13266], [53.959911, -2.132744]], [[53.959746, -2.132872], [53.959662, -2.132954]], [[53.959662, -2.132954], [53.959573, -2.132997]], [[53.959573, -2.132997], [53.959476, -2.133033]], [[53.959476, -2.133033], [53.959393, -2.133098]], [[53.959308, -2.133158], [53.959212, -2.133217]], [[53.959212, -2.133217], [53.959123, -2.133281]], [[53.958786, -2.133561], [53.958697, -2.133628]], [[53.958697, -2.133628], [53.95861, -2.13369]], [[53.956692, -2.134873], [53.956616, -2.134976]], [[53.956659, -2.135146], [53.956649, -2.135312]], [[53.956649, -2.135312], [53.95667, -2.135464]], [[53.956758, -2.135822], [53.956792, -2.135988]], [[53.95682, -2.136299], [53.956847, -2.136461]], [[53.956903, -2.136595], [53.956925, -2.136755]], [[53.956911, -2.137083], [53.956923, -2.13724]], [[53.956923, -2.13724], [53.956973, -2.137377]], [[53.956973, -2.137377], [53.956907, -2.137648]], [[53.95668, -2.137754], [53.956586, -2.137746]], [[53.95582, -2.137582], [53.955786, -2.137743]], [[53.955287, -2.138117], [53.955191, -2.1382]], [[53.954774, -2.13861], [53.9547, -2.138717]], [[53.953046, -2.139105], [53.952955, -2.139108]], [[53.95229, -2.138924], [53.952194, -2.138994]], [[53.952006, -2.138989], [53.951906, -2.139006]], [[53.951906, -2.139006], [53.951832, -2.1391]], [[53.951832, -2.1391], [53.951772, -2.139236]], [[53.951772, -2.139236], [53.951675, -2.13928]], [[53.951675, -2.13928], [53.951592, -2.139358]], [[53.95146, -2.139589], [53.95138, -2.139695]], [[53.951263, -2.139985], [53.951225, -2.140148]], [[53.951138, -2.14044], [53.95112, -2.140593]], [[53.951075, -2.140727], [53.951023, -2.140876]], [[53.950851, -2.141067], [53.950773, -2.141153]], [[53.950695, -2.141258], [53.950627, -2.141389]], [[53.950381, -2.141611], [53.950318, -2.14173]], [[53.950318, -2.14173], [53.950272, -2.141868]], [[53.950121, -2.142048], [53.950047, -2.142145]], [[53.949918, -2.142351], [53.949837, -2.14246]], [[53.949837, -2.14246], [53.949772, -2.142589]], [[53.949772, -2.142589], [53.949707, -2.142716]], [[53.949707, -2.142716], [53.949665, -2.142855]], [[53.949449, -2.143161], [53.949484, -2.143317]], [[53.949484, -2.143317], [53.949426, -2.143441]], [[53.949229, -2.143766], [53.949234, -2.143934]], [[53.948947, -2.143705], [53.948866, -2.143634]], [[53.948866, -2.143634], [53.948778, -2.143596]], [[53.948778, -2.143596], [53.948684, -2.143577]], [[53.948684, -2.143577], [53.948588, -2.143544]], [[53.948588, -2.143544], [53.948497, -2.143559]], [[53.946982, -2.143284], [53.946878, -2.143258]], [[53.946878, -2.143258], [53.946779, -2.143229]], [[53.946318, -2.143013], [53.946217, -2.142971]], [[53.946042, -2.142864], [53.945948, -2.142855]], [[53.945948, -2.142855], [53.945848, -2.142833]], [[53.945848, -2.142833], [53.945747, -2.14281]], [[53.945747, -2.14281], [53.945651, -2.142811]], [[53.945651, -2.142811], [53.94555, -2.142811]], [[53.945358, -2.142746], [53.945262, -2.142716]], [[53.945262, -2.142716], [53.945172, -2.142698]], [[53.945172, -2.142698], [53.945076, -2.142676]], [[53.945076, -2.142676], [53.944986, -2.142649]], [[53.944986, -2.142649], [53.944897, -2.142618]], [[53.944897, -2.142618], [53.944804, -2.142621]], [[53.944804, -2.142621], [53.944705, -2.142609]], [[53.944705, -2.142609], [53.944606, -2.142602]], [[53.944606, -2.142602], [53.944513, -2.142575]], [[53.944513, -2.142575], [53.944416, -2.142588]], [[53.942814, -2.141293], [53.942722, -2.14121]], [[53.942659, -2.141098], [53.942568, -2.141067]], [[53.942311, -2.140859], [53.942216, -2.140812]], [[53.942124, -2.140769], [53.942042, -2.140706]], [[53.941851, -2.14057], [53.941746, -2.140557]], [[53.94135, -2.140219], [53.941282, -2.140096]], [[53.941192, -2.140051], [53.941103, -2.140075]], [[53.940734, -2.139995], [53.940643, -2.139985]], [[53.940643, -2.139985], [53.940536, -2.139976]], [[53.940441, -2.139972], [53.940344, -2.139953]], [[53.940344, -2.139953], [53.940249, -2.139922]], [[53.940249, -2.139922], [53.940151, -2.139902]], [[53.940151, -2.139902], [53.940056, -2.139903]], [[53.940056, -2.139903], [53.939963, -2.139883]], [[53.939873, -2.139867], [53.939784, -2.139805]], [[53.939784, -2.139805], [53.9397, -2.139731]], [[53.939461, -2.139568], [53.93936, -2.139541]], [[53.93936, -2.139541], [53.939267, -2.139494]], [[53.938549, -2.13962], [53.938461, -2.139689]], [[53.938461, -2.139689], [53.93837, -2.139681]], [[53.938086, -2.139671], [53.937989, -2.139687]], [[53.937989, -2.139687], [53.937906, -2.139749]], [[53.93709, -2.140116], [53.937002, -2.140182]], [[53.936359, -2.140127], [53.93627, -2.140168]], [[53.93627, -2.140168], [53.936182, -2.140202]], [[53.936182, -2.140202], [53.936084, -2.140232]], [[53.936084, -2.140232], [53.93599, -2.140243]], [[53.935814, -2.140346], [53.935726, -2.140382]], [[53.935437, -2.140381], [53.935356, -2.140462]], [[53.935356, -2.140462], [53.935279, -2.14057]], [[53.935279, -2.14057], [53.935208, -2.140676]], [[53.935208, -2.140676], [53.935118, -2.140733]], [[53.935024, -2.140784], [53.934932, -2.140856]], [[53.934668, -2.141037], [53.934567, -2.141088]], [[53.934567, -2.141088], [53.93447, -2.1411]], [[53.93447, -2.1411], [53.934401, -2.141199]], [[53.934401, -2.141199], [53.934311, -2.141259]], [[53.934251, -2.141387], [53.934161, -2.14145]], [[53.934071, -2.141523], [53.933987, -2.141436]], [[53.93376, -2.141383], [53.933661, -2.141368]], [[53.933571, -2.141446], [53.93349, -2.14152]], [[53.93349, -2.14152], [53.933415, -2.141634]], [[53.933415, -2.141634], [53.933358, -2.141771]], [[53.933235, -2.142193], [53.933173, -2.142325]], [[53.933048, -2.142546], [53.933049, -2.142721]], [[53.933049, -2.142721], [53.933015, -2.142887]], [[53.933015, -2.142887], [53.932937, -2.142989]], [[53.932828, -2.14324], [53.932757, -2.143344]], [[53.932319, -2.144205], [53.932224, -2.144259]], [[53.93201, -2.144272], [53.931915, -2.144318]], [[53.93172, -2.144328], [53.931629, -2.144365]], [[53.931547, -2.144438], [53.931457, -2.144447]], [[53.930891, -2.144737], [53.930791, -2.144721]], [[53.930791, -2.144721], [53.93069, -2.144685]], [[53.93069, -2.144685], [53.930599, -2.144638]], [[53.930599, -2.144638], [53.930498, -2.144616]], [[53.930498, -2.144616], [53.930396, -2.144657]], [[53.93014, -2.144897], [53.930052, -2.144977]], [[53.930052, -2.144977], [53.929951, -2.144982]], [[53.929869, -2.144895], [53.929777, -2.144911]], [[53.929777, -2.144911], [53.929686, -2.144955]], [[53.929686, -2.144955], [53.929595, -2.144987]], [[53.929496, -2.144994], [53.929394, -2.144995]], [[53.929394, -2.144995], [53.929296, -2.145022]], [[53.929296, -2.145022], [53.929201, -2.145038]], [[53.929201, -2.145038], [53.92911, -2.14505]], [[53.92911, -2.14505], [53.92902, -2.145054]], [[53.92902, -2.145054], [53.928922, -2.145058]], [[53.928922, -2.145058], [53.928823, -2.145074]], [[53.928823, -2.145074], [53.928731, -2.145064]], [[53.928548, -2.145118], [53.928454, -2.145167]], [[53.928454, -2.145167], [53.928355, -2.145168]], [[53.928355, -2.145168], [53.928267, -2.14514]], [[53.928077, -2.145129], [53.927982, -2.145136]], [[53.927885, -2.14513], [53.927784, -2.145133]], [[53.927784, -2.145133], [53.927687, -2.145157]], [[53.927687, -2.145157], [53.927582, -2.145155]], [[53.927582, -2.145155], [53.927483, -2.145139]], [[53.927483, -2.145139], [53.927387, -2.145137]], [[53.927387, -2.145137], [53.927292, -2.145128]], [[53.927292, -2.145128], [53.927194, -2.14514]], [[53.927194, -2.14514], [53.927095, -2.145144]], [[53.927095, -2.145144], [53.926997, -2.145146]], [[53.926997, -2.145146], [53.926907, -2.145148]], [[53.926907, -2.145148], [53.926812, -2.145135]], [[53.925814, -2.144903], [53.925725, -2.144871]], [[53.925449, -2.144762], [53.925357, -2.144764]], [[53.923743, -2.144504], [53.923642, -2.144486]], [[53.923642, -2.144486], [53.92354, -2.144513]], [[53.92354, -2.144513], [53.92344, -2.144503]], [[53.92262, -2.143814], [53.922541, -2.14373]], [[53.922541, -2.14373], [53.922453, -2.143649]], [[53.922453, -2.143649], [53.922371, -2.14357]], [[53.921186, -2.143928], [53.921103, -2.144023]], [[53.921103, -2.144023], [53.921009, -2.144054]], [[53.920829, -2.144215], [53.920741, -2.144288]], [[53.920656, -2.144374], [53.920568, -2.144454]], [[53.920568, -2.144454], [53.920485, -2.144549]], [[53.920188, -2.14461], [53.92012, -2.144717]], [[53.92012, -2.144717], [53.920033, -2.144776]], [[53.920033, -2.144776], [53.919948, -2.144845]], [[53.919872, -2.144951], [53.919793, -2.144833]], [[53.919752, -2.144693], [53.919692, -2.144577]], [[53.919692, -2.144577], [53.919592, -2.144571]], [[53.919501, -2.144632], [53.91942, -2.144716]], [[53.91942, -2.144716], [53.919326, -2.144772]], [[53.919145, -2.144841], [53.919052, -2.14484]], [[53.919052, -2.14484], [53.918953, -2.14484]], [[53.918953, -2.14484], [53.91886, -2.144857]], [[53.91886, -2.144857], [53.918763, -2.144854]], [[53.918763, -2.144854], [53.918683, -2.144926]], [[53.918578, -2.145196], [53.918484, -2.145267]], [[53.918132, -2.145465], [53.918037, -2.145513]], [[53.918037, -2.145513], [53.917942, -2.145547]], [[53.917942, -2.145547], [53.917843, -2.145568]], [[53.917843, -2.145568], [53.917752, -2.145602]], [[53.917282, -2.145587], [53.917188, -2.145605]], [[53.917089, -2.145594], [53.916982, -2.145592]], [[53.916816, -2.145461], [53.916761, -2.145324]], [[53.916597, -2.144933], [53.916555, -2.14477]], [[53.916422, -2.144207], [53.916324, -2.144252]], [[53.91627, -2.144386], [53.916206, -2.144503]], [[53.916206, -2.144503], [53.916116, -2.144561]], [[53.916116, -2.144561], [53.916041, -2.144649]], [[53.916041, -2.144649], [53.915966, -2.144737]], [[53.915966, -2.144737], [53.915899, -2.144856]], [[53.915899, -2.144856], [53.915858, -2.145004]], [[53.915858, -2.145004], [53.915786, -2.145124]], [[53.915647, -2.145364], [53.915598, -2.145439]], [[53.915866, -2.145128], [53.915852, -2.145132]], [[53.915983, -2.145138], [53.915945, -2.145103]], [[53.915782, -2.145143], [53.915692, -2.145111]], [[53.916168, -2.144207], [53.91611, -2.144085]], [[53.916002, -2.144001], [53.916091, -2.144044]], [[53.91627, -2.144405], [53.916323, -2.144278]], [[53.916831, -2.143868], [53.916891, -2.143735]], [[53.916891, -2.143735], [53.916948, -2.143603]], [[53.917033, -2.143499], [53.917055, -2.143333]], [[53.917103, -2.1432], [53.917158, -2.143069]], [[53.917158, -2.143069], [53.917232, -2.142961]], [[53.917356, -2.142762], [53.917402, -2.142609]], [[53.917402, -2.142609], [53.917428, -2.142451]], [[53.917428, -2.142451], [53.917427, -2.142289]], [[53.917427, -2.142289], [53.917377, -2.142156]], [[53.917377, -2.142156], [53.917353, -2.142005]], [[53.917353, -2.142005], [53.917298, -2.141866]], [[53.91725, -2.141721], [53.917178, -2.141605]], [[53.917126, -2.141474], [53.917106, -2.14132]], [[53.917043, -2.141008], [53.91697, -2.140917]], [[53.9169, -2.14081], [53.916861, -2.140664]], [[53.916861, -2.140664], [53.916826, -2.14051]], [[53.916826, -2.14051], [53.916762, -2.140375]], [[53.916718, -2.140221], [53.9167, -2.140069]], [[53.916726, -2.139588], [53.916723, -2.139427]], [[53.916723, -2.139427], [53.916712, -2.139268]], [[53.916559, -2.138685], [53.916568, -2.138519]], [[53.916568, -2.138519], [53.916549, -2.138356]], [[53.916574, -2.1382], [53.916586, -2.138036]], [[53.917194, -2.136962], [53.917201, -2.136796]], [[53.917256, -2.136661], [53.917306, -2.136514]], [[53.917306, -2.136514], [53.917351, -2.136374]], [[53.917457, -2.135883], [53.917457, -2.135713]], [[53.917457, -2.135713], [53.917484, -2.135563]], [[53.917484, -2.135563], [53.917554, -2.135439]], [[53.917621, -2.135312], [53.917619, -2.135148]], [[53.917619, -2.135148], [53.917674, -2.135017]], [[53.917674, -2.135017], [53.917712, -2.134868]], [[53.917763, -2.134731], [53.917773, -2.134573]], [[53.917773, -2.134573], [53.917796, -2.134411]], [[53.91783, -2.13427], [53.917874, -2.134126]], [[53.917939, -2.133341], [53.917896, -2.133191]], [[53.917896, -2.133191], [53.917858, -2.133032]], [[53.91771, -2.132425], [53.917711, -2.132262]], [[53.917725, -2.132099], [53.917773, -2.131959]], [[53.917773, -2.131959], [53.917797, -2.131805]], [[53.917797, -2.131805], [53.917819, -2.131656]], [[53.917847, -2.131511], [53.917913, -2.131385]], [[53.917913, -2.131385], [53.917987, -2.131285]], [[53.917987, -2.131285], [53.917999, -2.131124]], [[53.917999, -2.131124], [53.918064, -2.131002]], [[53.918064, -2.131002], [53.918072, -2.130842]], [[53.918072, -2.130842], [53.918087, -2.130681]], [[53.918087, -2.130681], [53.918058, -2.130526]], [[53.918233, -2.130409], [53.918324, -2.130341]], [[53.918324, -2.130341], [53.918405, -2.130264]], [[53.919048, -2.130004], [53.919148, -2.12997]], [[53.920233, -2.130609], [53.920277, -2.13075]], [[53.922709, -2.125667], [53.922804, -2.125603]], [[53.925053, -2.123766], [53.925117, -2.12365]], [[53.925195, -2.123537], [53.925277, -2.123432]], [[53.925277, -2.123432], [53.925352, -2.123321]], [[53.92578, -2.122663], [53.925835, -2.12254]], [[53.925987, -2.122136], [53.926069, -2.122035]], [[53.926069, -2.122035], [53.926123, -2.121911]], [[53.926373, -2.121404], [53.926432, -2.121273]], [[53.926432, -2.121273], [53.92648, -2.121129]], [[53.926783, -2.11859], [53.926848, -2.118478]], [[53.927896, -2.111499], [53.927824, -2.111385]], [[53.927824, -2.111385], [53.92779, -2.111242]], [[53.92779, -2.111242], [53.927759, -2.11108]], [[53.927759, -2.11108], [53.927739, -2.110915]], [[53.927739, -2.110915], [53.927709, -2.110753]], [[53.927709, -2.110753], [53.927632, -2.110645]], [[53.927632, -2.110645], [53.927576, -2.110518]], [[53.927576, -2.110518], [53.927502, -2.11041]], [[53.927406, -2.110126], [53.927359, -2.109988]], [[53.927359, -2.109988], [53.927301, -2.109863]], [[53.927225, -2.109744], [53.927187, -2.109586]], [[53.927187, -2.109586], [53.927138, -2.109439]], [[53.927138, -2.109439], [53.927083, -2.109286]], [[53.927083, -2.109286], [53.927028, -2.109147]], [[53.927028, -2.109147], [53.926963, -2.109026]], [[53.926884, -2.108734], [53.926818, -2.108601]], [[53.926753, -2.108462], [53.926697, -2.108342]], [[53.926697, -2.108342], [53.92663, -2.108208]], [[53.926244, -2.107065], [53.926195, -2.106921]], [[53.925995, -2.106542], [53.925944, -2.106404]], [[53.925944, -2.106404], [53.9259, -2.106259]], [[53.925518, -2.105306], [53.925456, -2.105172]], [[53.925456, -2.105172], [53.925386, -2.105056]], [[53.925092, -2.104462], [53.925027, -2.104329]], [[53.925027, -2.104329], [53.924976, -2.10419]], [[53.924976, -2.10419], [53.924919, -2.104054]], [[53.924192, -2.10205], [53.92414, -2.101924]], [[53.923542, -2.100761], [53.923452, -2.100675]], [[53.923452, -2.100675], [53.923388, -2.100559]], [[53.921402, -2.09794], [53.921323, -2.09784]], [[53.921323, -2.09784], [53.921262, -2.097709]], [[53.921161, -2.097432], [53.921122, -2.097269]], [[53.921122, -2.097269], [53.921075, -2.097116]], [[53.921075, -2.097116], [53.921039, -2.096973]], [[53.921029, -2.096802], [53.920983, -2.096661]], [[53.920983, -2.096661], [53.92093, -2.096532]], [[53.920852, -2.09623], [53.920823, -2.096078]], [[53.920823, -2.096078], [53.920784, -2.095932]], [[53.920739, -2.095799], [53.920697, -2.095652]], [[53.920697, -2.095652], [53.920644, -2.095508]], [[53.920549, -2.095233], [53.920521, -2.095083]], [[53.920521, -2.095083], [53.920472, -2.094943]], [[53.920472, -2.094943], [53.920432, -2.094804]], [[53.920432, -2.094804], [53.920405, -2.094651]], [[53.920379, -2.094487], [53.920334, -2.094328]], [[53.920334, -2.094328], [53.920296, -2.094185]], [[53.920296, -2.094185], [53.920271, -2.094034]], [[53.920024, -2.092987], [53.919979, -2.092847]], [[53.919979, -2.092847], [53.919956, -2.092696]], [[53.919956, -2.092696], [53.919929, -2.092533]], [[53.919198, -2.089431], [53.919196, -2.089275]], [[53.919203, -2.088962], [53.919251, -2.088822]], [[53.919611, -2.087911], [53.919681, -2.087807]], [[53.919681, -2.087807], [53.919763, -2.087705]], [[53.921155, -2.084004], [53.921192, -2.083844]], [[53.921192, -2.083844], [53.921227, -2.083701]], [[53.921227, -2.083701], [53.921253, -2.083552]], [[53.921253, -2.083552], [53.921293, -2.083395]], [[53.921293, -2.083395], [53.92128, -2.08323]], [[53.921243, -2.082911], [53.921245, -2.082752]], [[53.921234, -2.082582], [53.921261, -2.082423]], [[53.921261, -2.082423], [53.921219, -2.082284]], [[53.921219, -2.082284], [53.921181, -2.082144]], [[53.921029, -2.081379], [53.920981, -2.081224]], [[53.920981, -2.081224], [53.920944, -2.081084]], [[53.920944, -2.081084], [53.920925, -2.080922]], [[53.920925, -2.080922], [53.920876, -2.08078]], [[53.920876, -2.08078], [53.920843, -2.080627]], [[53.920803, -2.080486], [53.920777, -2.080339]], [[53.920777, -2.080339], [53.92076, -2.080171]], [[53.92076, -2.080171], [53.920731, -2.080005]], [[53.920731, -2.080005], [53.920671, -2.079873]], [[53.920671, -2.079873], [53.920628, -2.079721]], [[53.920628, -2.079721], [53.920593, -2.079578]], [[53.920593, -2.079578], [53.92056, -2.079431]], [[53.92056, -2.079431], [53.920519, -2.079292]], [[53.920499, -2.078963], [53.920498, -2.078803]], [[53.920451, -2.078484], [53.920456, -2.078311]], [[53.920456, -2.078311], [53.920419, -2.078154]], [[53.920158, -2.077481], [53.920102, -2.077339]], [[53.920102, -2.077339], [53.92009, -2.077171]], [[53.92009, -2.077171], [53.92005, -2.077013]], [[53.92005, -2.077013], [53.920033, -2.076853]], [[53.920012, -2.076687], [53.920018, -2.076524]], [[53.919991, -2.076366], [53.920008, -2.076195]], [[53.920008, -2.076195], [53.920002, -2.07604]], [[53.919979, -2.07589], [53.919974, -2.075728]], [[53.919924, -2.075247], [53.919958, -2.075097]], [[53.919958, -2.075097], [53.920014, -2.074968]], [[53.920369, -2.073155], [53.920414, -2.073014]], [[53.920414, -2.073014], [53.920444, -2.072863]], [[53.920444, -2.072863], [53.920479, -2.072709]], [[53.920531, -2.072401], [53.920574, -2.072249]], [[53.920574, -2.072249], [53.920615, -2.072111]], [[53.920458, -2.070607], [53.920375, -2.070526]], [[53.919438, -2.06954], [53.919366, -2.06944]], [[53.919366, -2.06944], [53.919296, -2.069307]], [[53.919296, -2.069307], [53.919245, -2.069169]], [[53.919245, -2.069169], [53.919186, -2.069049]], [[53.919186, -2.069049], [53.919124, -2.068925]], [[53.919124, -2.068925], [53.91907, -2.068788]], [[53.91907, -2.068788], [53.919029, -2.068649]], [[53.918918, -2.068365], [53.91888, -2.068211]], [[53.91888, -2.068211], [53.91883, -2.068064]], [[53.91883, -2.068064], [53.918792, -2.067907]], [[53.918792, -2.067907], [53.918752, -2.067761]], [[53.918752, -2.067761], [53.918715, -2.067618]], [[53.918676, -2.06746], [53.918639, -2.06731]], [[53.918639, -2.06731], [53.918555, -2.0672]], [[53.918555, -2.0672], [53.918498, -2.06706]], [[53.918498, -2.06706], [53.918445, -2.066915]], [[53.918445, -2.066915], [53.918455, -2.066747]], [[53.918455, -2.066747], [53.91843, -2.066593]], [[53.918399, -2.066444], [53.918411, -2.066283]], [[53.918312, -2.065676], [53.918289, -2.065514]], [[53.918289, -2.065514], [53.918267, -2.065348]], [[53.918241, -2.06484], [53.918217, -2.064689]], [[53.918217, -2.064689], [53.918199, -2.064514]], [[53.918199, -2.064514], [53.918127, -2.064401]], [[53.918127, -2.064401], [53.918048, -2.064296]], [[53.917565, -2.064219], [53.917464, -2.064198]], [[53.917464, -2.064198], [53.917363, -2.064186]], [[53.917363, -2.064186], [53.917269, -2.064144]], [[53.917171, -2.064128], [53.917073, -2.064092]], [[53.916887, -2.063945], [53.916792, -2.063943]], [[53.9167, -2.063949], [53.916605, -2.063941]], [[53.916605, -2.063941], [53.916507, -2.063908]], [[53.916507, -2.063908], [53.91642, -2.063858]], [[53.91642, -2.063858], [53.916319, -2.06384]], [[53.916218, -2.063827], [53.916111, -2.063814]], [[53.916011, -2.063807], [53.91591, -2.063816]], [[53.91591, -2.063816], [53.91582, -2.063804]], [[53.91582, -2.063804], [53.915724, -2.063821]], [[53.915436, -2.06384], [53.915352, -2.063784]], [[53.915352, -2.063784], [53.91528, -2.063667]], [[53.915191, -2.063639], [53.915095, -2.0636]], [[53.915095, -2.0636], [53.915008, -2.063557]], [[53.915008, -2.063557], [53.914912, -2.06354]], [[53.914458, -2.063669], [53.914371, -2.063606]], [[53.914371, -2.063606], [53.914272, -2.063608]], [[53.914093, -2.063618], [53.913991, -2.063578]], [[53.913991, -2.063578], [53.913889, -2.063583]], [[53.913684, -2.063523], [53.913584, -2.063547]], [[53.91348, -2.06356], [53.913379, -2.063523]], [[53.913046, -2.06316], [53.912962, -2.063099]], [[53.912372, -2.062582], [53.912267, -2.062552]], [[53.912107, -2.062416], [53.912008, -2.062365]], [[53.91192, -2.062336], [53.911821, -2.062324]], [[53.911632, -2.062319], [53.911536, -2.062281]], [[53.911443, -2.06222], [53.911353, -2.062264]], [[53.91126, -2.06272], [53.911206, -2.06286]], [[53.910752, -2.063001], [53.910656, -2.063014]], [[53.91049, -2.063151], [53.910397, -2.063103]], [[53.910138, -2.063251], [53.910061, -2.063347]], [[53.910061, -2.063347], [53.909976, -2.063443]], [[53.909976, -2.063443], [53.909886, -2.063436]], [[53.909886, -2.063436], [53.909785, -2.063478]], [[53.909785, -2.063478], [53.909734, -2.063614]], [[53.909751, -2.063778], [53.909735, -2.063946]], [[53.909735, -2.063946], [53.909724, -2.064114]], [[53.909633, -2.064726], [53.909597, -2.064877]], [[53.909597, -2.064877], [53.909555, -2.065023]], [[53.909555, -2.065023], [53.909516, -2.065162]], [[53.909516, -2.065162], [53.909491, -2.065324]], [[53.909491, -2.065324], [53.909446, -2.065472]], [[53.909446, -2.065472], [53.909399, -2.065617]], [[53.909399, -2.065617], [53.909368, -2.065777]], [[53.906561, -2.063323], [53.906487, -2.063223]], [[53.906487, -2.063223], [53.906396, -2.063156]], [[53.906396, -2.063156], [53.906301, -2.063113]], [[53.906301, -2.063113], [53.90621, -2.063091]], [[53.90594, -2.062996], [53.905841, -2.062977]], [[53.905841, -2.062977], [53.905739, -2.062943]], [[53.905739, -2.062943], [53.905643, -2.062915]], [[53.905643, -2.062915], [53.905542, -2.062905]], [[53.905263, -2.062822], [53.90517, -2.062834]], [[53.90517, -2.062834], [53.905077, -2.06281]], [[53.905077, -2.06281], [53.904982, -2.062796]], [[53.904982, -2.062796], [53.904888, -2.0628]], [[53.904888, -2.0628], [53.904796, -2.062812]], [[53.904233, -2.063113], [53.904295, -2.063002]], [[53.904476, -2.062747], [53.904386, -2.062713]], [[53.904386, -2.062713], [53.904288, -2.062648]], [[53.904026, -2.062422], [53.903933, -2.062436]], [[53.903755, -2.062316], [53.903657, -2.062278]], [[53.903657, -2.062278], [53.90357, -2.062217]], [[53.90357, -2.062217], [53.903473, -2.062179]], [[53.90321, -2.062021], [53.903129, -2.061924]], [[53.903041, -2.06187], [53.902954, -2.061805]], [[53.902954, -2.061805], [53.902867, -2.061752]], [[53.899757, -2.059056], [53.899681, -2.058963]], [[53.899681, -2.058963], [53.899624, -2.05883]], [[53.899573, -2.058699], [53.899502, -2.058607]], [[53.899502, -2.058607], [53.899429, -2.058488]], [[53.899429, -2.058488], [53.899369, -2.058371]], [[53.898768, -2.057385], [53.898682, -2.057312]], [[53.897756, -2.058914], [53.897665, -2.05892]], [[53.896089, -2.060392], [53.896001, -2.060313]], [[53.896001, -2.060313], [53.895907, -2.060275]], [[53.89553, -2.0603], [53.895439, -2.060272]], [[53.89534, -2.060238], [53.895249, -2.060212]], [[53.895249, -2.060212], [53.895153, -2.060171]], [[53.894419, -2.059958], [53.894325, -2.059886]], [[53.894325, -2.059886], [53.894232, -2.059874]], [[53.894141, -2.059843], [53.89404, -2.059834]], [[53.893763, -2.059775], [53.893672, -2.059741]], [[53.893494, -2.059675], [53.8934, -2.059644]], [[53.89279, -2.059339], [53.892699, -2.059308]], [[53.892556, -2.059151], [53.892504, -2.05902]], [[53.892456, -2.058872], [53.892396, -2.058739]], [[53.892451, -2.057586], [53.892374, -2.057503]], [[53.892374, -2.057503], [53.892304, -2.057406]], [[53.892019, -2.056981], [53.89196, -2.056834]], [[53.89156, -2.056316], [53.891495, -2.05621]], [[53.891495, -2.05621], [53.891424, -2.056102]], [[53.891424, -2.056102], [53.891348, -2.05599]], [[53.891125, -2.055685], [53.891058, -2.055574]], [[53.891002, -2.055452], [53.890911, -2.055372]], [[53.890683, -2.055385], [53.890584, -2.055345]], [[53.890584, -2.055345], [53.890496, -2.055273]], [[53.88997, -2.055037], [53.889874, -2.055054]], [[53.889689, -2.055037], [53.889596, -2.055053]], [[53.889413, -2.055071], [53.889323, -2.055027]], [[53.889323, -2.055027], [53.889233, -2.055094]], [[53.889173, -2.054943], [53.889089, -2.054877]], [[53.889, -2.05481], [53.888943, -2.054682]], [[53.888953, -2.05405], [53.888983, -2.053883]], [[53.888594, -2.053856], [53.888498, -2.053882]], [[53.887948, -2.053348], [53.887866, -2.053277]], [[53.887528, -2.052988], [53.887459, -2.052856]], [[53.887459, -2.052856], [53.887367, -2.052798]], [[53.887272, -2.052785], [53.887182, -2.052726]], [[53.887182, -2.052726], [53.887094, -2.052642]], [[53.886868, -2.053025], [53.886794, -2.053139]], [[53.886794, -2.053139], [53.886725, -2.053256]], [[53.886477, -2.053742], [53.886406, -2.053875]], [[53.886406, -2.053875], [53.886322, -2.053938]], [[53.883418, -2.052843], [53.883323, -2.052798]], [[53.883018, -2.052791], [53.882923, -2.052798]], [[53.882923, -2.052798], [53.882866, -2.052928]], [[53.882748, -2.053173], [53.882682, -2.05328]], [[53.882682, -2.05328], [53.882625, -2.053416]], [[53.882377, -2.054044], [53.882381, -2.054219]], [[53.882381, -2.054219], [53.882353, -2.054387]], [[53.882353, -2.054387], [53.882313, -2.054525]], [[53.881492, -2.054538], [53.881506, -2.054385]], [[53.881506, -2.054385], [53.881496, -2.054234]], [[53.881496, -2.054234], [53.881471, -2.054086]], [[53.881443, -2.053929], [53.881473, -2.053772]], [[53.881473, -2.053772], [53.881491, -2.05361]], [[53.881491, -2.05361], [53.881527, -2.053453]], [[53.878913, -2.052204], [53.878815, -2.052181]], [[53.875644, -2.054021], [53.875543, -2.054019]], [[53.875452, -2.054039], [53.875364, -2.054105]], [[53.875364, -2.054105], [53.875271, -2.054157]], [[53.875271, -2.054157], [53.875179, -2.054168]], [[53.875179, -2.054168], [53.875086, -2.054213]], [[53.874885, -2.054301], [53.874804, -2.054402]], [[53.874804, -2.054402], [53.87473, -2.054503]], [[53.87473, -2.054503], [53.874647, -2.054599]], [[53.874647, -2.054599], [53.874573, -2.054708]], [[53.874486, -2.054769], [53.874387, -2.054811]], [[53.874387, -2.054811], [53.874297, -2.054873]], [[53.874135, -2.053696], [53.874083, -2.053554]], [[53.874083, -2.053554], [53.874015, -2.053451]], [[53.873738, -2.052809], [53.873699, -2.052669]], [[53.873699, -2.052669], [53.873679, -2.052516]], [[53.873679, -2.052516], [53.873626, -2.052372]], [[53.873626, -2.052372], [53.873565, -2.052242]], [[53.873513, -2.052101], [53.873467, -2.05197]], [[53.873467, -2.05197], [53.873409, -2.051854]], [[53.873247, -2.051284], [53.873248, -2.051116]], [[53.873248, -2.051116], [53.873249, -2.050963]], [[53.873249, -2.050963], [53.873258, -2.050808]], [[53.873372, -2.049708], [53.87342, -2.049569]], [[53.87342, -2.049569], [53.873456, -2.04941]], [[53.873456, -2.04941], [53.87345, -2.049242]], [[53.87345, -2.049242], [53.873409, -2.049103]], [[53.873138, -2.048421], [53.87308, -2.048303]], [[53.869559, -2.047074], [53.869492, -2.04719]], [[53.86509, -2.048587], [53.865, -2.048577]], [[53.865, -2.048577], [53.864906, -2.048565]], [[53.863617, -2.047874], [53.863548, -2.047774]], [[53.863548, -2.047774], [53.863471, -2.047669]], [[53.863471, -2.047669], [53.863384, -2.047606]], [[53.861154, -2.046905], [53.861088, -2.046793]], [[53.857348, -2.043836], [53.857278, -2.04374]], [[53.857278, -2.04374], [53.857207, -2.04362]], [[53.856771, -2.042415], [53.856802, -2.042259]], [[53.85678, -2.04195], [53.856725, -2.041818]], [[53.856725, -2.041818], [53.856658, -2.041712]], [[53.856028, -2.040805], [53.855952, -2.040721]], [[53.855661, -2.040726], [53.85557, -2.040757]], [[53.85557, -2.040757], [53.855486, -2.040835]], [[53.855119, -2.040873], [53.855029, -2.040849]], [[53.854644, -2.040773], [53.85455, -2.040753]], [[53.85455, -2.040753], [53.854456, -2.040752]], [[53.853773, -2.040679], [53.85368, -2.040658]], [[53.853238, -2.040643], [53.853151, -2.04071]], [[53.852174, -2.040855], [53.852084, -2.040805]], [[53.852084, -2.040805], [53.851982, -2.040839]], [[53.851069, -2.040757], [53.850994, -2.040661]], [[53.850994, -2.040661], [53.850899, -2.040661]], [[53.850899, -2.040661], [53.850808, -2.040624]], [[53.850714, -2.04061], [53.850624, -2.040588]], [[53.850624, -2.040588], [53.850533, -2.040561]], [[53.850533, -2.040561], [53.850442, -2.040532]], [[53.850442, -2.040532], [53.85035, -2.04049]], [[53.85035, -2.04049], [53.850275, -2.040577]], [[53.850275, -2.040577], [53.850239, -2.04072]], [[53.850239, -2.04072], [53.850187, -2.04085]], [[53.850187, -2.04085], [53.850106, -2.040926]], [[53.849753, -2.040859], [53.849673, -2.04075]], [[53.849673, -2.04075], [53.849591, -2.040655]], [[53.849523, -2.040542], [53.849451, -2.040417]], [[53.849335, -2.04015], [53.849293, -2.039998]], [[53.849293, -2.039998], [53.849244, -2.039845]], [[53.848354, -2.038105], [53.848303, -2.037971]], [[53.84742, -2.035407], [53.847352, -2.035305]], [[53.847352, -2.035305], [53.847278, -2.035191]], [[53.847166, -2.034927], [53.847155, -2.034758]], [[53.847153, -2.034597], [53.847087, -2.034481]], [[53.847024, -2.034341], [53.846972, -2.034217]], [[53.846836, -2.033645], [53.84677, -2.033531]], [[53.84677, -2.033531], [53.846721, -2.033385]], [[53.846646, -2.033094], [53.846578, -2.032963]], [[53.846578, -2.032963], [53.846516, -2.032843]], [[53.845685, -2.0318], [53.845601, -2.031722]], [[53.845601, -2.031722], [53.845538, -2.031602]], [[53.845538, -2.031602], [53.84547, -2.031501]], [[53.845383, -2.031412], [53.845292, -2.031378]], [[53.845221, -2.031264], [53.845154, -2.031144]], [[53.845154, -2.031144], [53.845077, -2.031046]], [[53.844646, -2.030564], [53.844564, -2.030484]], [[53.844564, -2.030484], [53.844471, -2.030426]], [[53.84445, -2.030268], [53.844362, -2.030233]], [[53.844181, -2.030138], [53.844149, -2.02999]], [[53.84394, -2.029662], [53.843852, -2.029624]], [[53.843685, -2.029439], [53.843595, -2.029364]], [[53.843351, -2.029137], [53.843259, -2.029102]], [[53.842969, -2.028733], [53.842897, -2.02864]], [[53.842423, -2.028077], [53.84233, -2.028034]], [[53.841922, -2.027566], [53.841853, -2.027466]], [[53.841732, -2.027233], [53.84165, -2.02717]], [[53.84165, -2.02717], [53.841558, -2.027174]], [[53.841408, -2.026974], [53.841317, -2.026893]], [[53.841317, -2.026893], [53.841235, -2.026792]], [[53.841235, -2.026792], [53.841168, -2.026681]], [[53.841168, -2.026681], [53.841087, -2.026595]], [[53.840125, -2.025593], [53.840043, -2.02551]], [[53.840043, -2.02551], [53.839965, -2.02542]], [[53.838879, -2.024211], [53.838807, -2.024093]], [[53.838699, -2.023831], [53.838647, -2.023692]], [[53.838647, -2.023692], [53.838589, -2.023557]], [[53.838589, -2.023557], [53.838527, -2.023424]], [[53.83783, -2.023347], [53.837748, -2.023436]], [[53.837748, -2.023436], [53.837742, -2.023603]], [[53.837671, -2.023724], [53.837611, -2.02385]], [[53.83752, -2.023355], [53.837594, -2.02325]], [[53.837594, -2.02325], [53.837623, -2.0231]], [[53.837623, -2.0231], [53.837665, -2.022964]], [[53.837665, -2.022964], [53.837734, -2.022844]], [[53.837848, -2.022589], [53.837908, -2.022467]], [[53.837908, -2.022467], [53.837959, -2.022335]], [[53.837959, -2.022335], [53.838002, -2.022189]], [[53.838002, -2.022189], [53.838067, -2.022084]], [[53.83817, -2.021805], [53.838241, -2.021685]], [[53.838241, -2.021685], [53.838302, -2.021556]], [[53.838302, -2.021556], [53.838336, -2.021395]], [[53.838336, -2.021395], [53.838397, -2.021265]], [[53.838533, -2.020662], [53.83859, -2.020534]], [[53.83859, -2.020534], [53.838572, -2.020359]], [[53.838572, -2.020359], [53.838497, -2.020252]], [[53.838497, -2.020252], [53.838415, -2.020169]], [[53.837578, -2.019682], [53.837478, -2.019639]], [[53.837391, -2.019688], [53.837283, -2.019654]], [[53.83617, -2.018728], [53.836169, -2.018895]], [[53.836169, -2.018895], [53.836134, -2.01905]], [[53.836069, -2.019171], [53.835988, -2.019242]], [[53.835968, -2.019751], [53.835997, -2.019909]], [[53.834985, -2.021219], [53.834916, -2.021321]], [[53.834125, -2.022145], [53.834082, -2.022009]], [[53.834082, -2.022009], [53.834038, -2.021868]], [[53.832449, -2.02042], [53.832352, -2.020381]], [[53.832011, -2.020689], [53.831941, -2.020803]], [[53.831825, -2.020836], [53.831839, -2.020677]], [[53.831664, -2.020511], [53.831582, -2.020449]], [[53.831484, -2.019989], [53.831436, -2.019843]], [[53.831436, -2.019843], [53.831398, -2.019684]], [[53.831347, -2.018968], [53.83127, -2.018865]], [[53.831186, -2.018788], [53.8311, -2.018723]], [[53.830712, -2.017561], [53.830655, -2.017436]], [[53.830655, -2.017436], [53.830619, -2.017287]], [[53.830619, -2.017287], [53.830569, -2.017156]], [[53.830569, -2.017156], [53.83051, -2.017024]], [[53.830372, -2.016577], [53.830313, -2.016435]], [[53.830313, -2.016435], [53.830271, -2.016282]], [[53.829957, -2.015479], [53.829964, -2.015309]], [[53.829964, -2.015309], [53.829977, -2.015148]], [[53.829977, -2.015148], [53.829968, -2.014985]], [[53.829893, -2.014871], [53.829794, -2.014809]], [[53.829794, -2.014809], [53.829701, -2.014737]], [[53.829701, -2.014737], [53.829615, -2.014653]], [[53.829226, -2.014355], [53.829129, -2.014323]], [[53.829129, -2.014323], [53.82904, -2.014222]], [[53.828775, -2.013953], [53.828748, -2.013803]], [[53.828662, -2.013706], [53.828602, -2.01359]], [[53.828742, -2.013166], [53.828761, -2.013008]], [[53.828761, -2.013008], [53.828761, -2.012855]], [[53.828761, -2.012855], [53.828778, -2.012702]], [[53.828778, -2.012702], [53.828809, -2.012553]], [[53.829146, -2.011716], [53.829192, -2.011577]], [[53.829209, -2.011254], [53.829259, -2.011111]], [[53.829259, -2.011111], [53.829256, -2.010953]], [[53.829284, -2.01079], [53.829312, -2.010621]], [[53.829312, -2.010621], [53.829376, -2.01049]], [[53.829376, -2.01049], [53.829443, -2.010368]], [[53.829443, -2.010368], [53.829511, -2.010263]], [[53.829578, -2.010152], [53.829621, -2.010016]], [[53.829621, -2.010016], [53.829669, -2.009872]], [[53.829776, -2.009603], [53.829783, -2.009445]], [[53.829783, -2.009445], [53.82982, -2.009294]], [[53.82982, -2.009294], [53.829827, -2.009123]], [[53.830046, -2.008586], [53.830107, -2.008473]], [[53.830107, -2.008473], [53.830134, -2.00831]], [[53.830134, -2.00831], [53.830099, -2.008151]], [[53.830099, -2.008151], [53.830105, -2.007986]], [[53.829097, -2.006484], [53.829006, -2.006466]], [[53.828836, -2.006409], [53.828749, -2.006346]], [[53.827154, -2.006066], [53.827076, -2.005979]], [[53.826914, -2.005798], [53.826867, -2.005658]], [[53.826709, -2.00551], [53.826737, -2.005356]], [[53.826737, -2.005356], [53.826742, -2.005199]], [[53.826742, -2.005199], [53.826728, -2.005048]], [[53.826728, -2.005048], [53.826781, -2.004908]], [[53.826781, -2.004908], [53.826769, -2.004748]], [[53.826769, -2.004748], [53.826756, -2.004595]], [[53.826458, -2.005032], [53.826388, -2.005133]], [[53.824697, -2.00519], [53.824605, -2.005236]], [[53.824353, -2.004989], [53.824285, -2.004881]], [[53.824128, -2.004821], [53.824037, -2.004841]], [[53.823398, -2.006474], [53.82336, -2.006615]], [[53.82336, -2.006615], [53.823344, -2.006767]], [[53.822849, -2.008298], [53.822794, -2.008433]], [[53.822794, -2.008433], [53.822741, -2.008576]], [[53.822741, -2.008576], [53.822718, -2.008737]], [[53.822677, -2.009034], [53.822611, -2.009161]], [[53.822342, -2.011369], [53.822309, -2.011534]], [[53.822309, -2.011534], [53.82234, -2.011691]], [[53.82234, -2.011691], [53.822389, -2.011845]], [[53.822389, -2.011845], [53.822371, -2.012001]], [[53.822371, -2.012001], [53.82236, -2.01216]], [[53.82227, -2.012765], [53.822263, -2.012919]], [[53.821875, -2.014899], [53.821856, -2.015049]], [[53.821788, -2.015337], [53.82172, -2.01545]], [[53.821722, -2.017044], [53.821715, -2.017216]], [[53.821715, -2.017216], [53.821697, -2.017366]], [[53.82169, -2.017996], [53.821686, -2.018169]], [[53.821686, -2.018169], [53.821669, -2.018332]], [[53.821248, -2.019399], [53.821184, -2.01954]], [[53.821184, -2.01954], [53.821127, -2.019665]], [[53.820965, -2.020067], [53.820894, -2.020175]], [[53.820894, -2.020175], [53.820845, -2.020304]], [[53.820679, -2.020672], [53.820631, -2.020811]], [[53.820474, -2.021232], [53.820423, -2.021381]], [[53.820423, -2.021381], [53.820383, -2.021525]], [[53.820231, -2.022134], [53.820178, -2.022284]], [[53.820178, -2.022284], [53.820141, -2.022427]], [[53.820141, -2.022427], [53.820094, -2.022574]], [[53.818634, -2.025755], [53.818553, -2.02586]], [[53.817382, -2.026732], [53.81728, -2.026741]], [[53.815032, -2.029404], [53.814951, -2.029478]], [[53.814433, -2.03014], [53.814365, -2.030259]], [[53.814291, -2.03037], [53.814205, -2.030461]], [[53.814034, -2.030326], [53.813989, -2.030189]], [[53.813989, -2.030189], [53.813899, -2.030115]], [[53.813899, -2.030115], [53.813801, -2.030122]], [[53.813801, -2.030122], [53.813706, -2.030181]], [[53.813442, -2.030165], [53.813349, -2.030123]], [[53.813349, -2.030123], [53.813255, -2.030058]], [[53.813172, -2.030001], [53.813072, -2.02994]], [[53.813072, -2.02994], [53.812973, -2.029945]], [[53.812058, -2.029523], [53.811966, -2.029455]], [[53.8102, -2.030839], [53.810131, -2.030958]], [[53.810131, -2.030958], [53.810062, -2.031067]], [[53.809923, -2.031287], [53.809854, -2.031403]], [[53.809854, -2.031403], [53.809778, -2.03151]], [[53.809778, -2.03151], [53.809699, -2.031594]], [[53.809699, -2.031594], [53.809606, -2.031654]], [[53.809306, -2.031982], [53.80922, -2.032053]], [[53.809083, -2.032288], [53.809005, -2.032391]], [[53.809005, -2.032391], [53.808933, -2.032503]], [[53.808814, -2.032748], [53.808754, -2.032864]], [[53.807861, -2.034037], [53.807774, -2.034127]], [[53.807533, -2.034627], [53.807484, -2.034768]], [[53.807484, -2.034768], [53.8074, -2.034864]], [[53.807321, -2.035155], [53.807236, -2.035223]], [[53.806957, -2.035142], [53.806874, -2.035223]], [[53.806628, -2.035454], [53.806543, -2.035546]], [[53.806543, -2.035546], [53.806471, -2.035642]], [[53.806471, -2.035642], [53.806412, -2.035774]], [[53.806412, -2.035774], [53.806352, -2.035905]], [[53.806352, -2.035905], [53.806286, -2.036034]], [[53.806153, -2.036288], [53.806071, -2.036379]], [[53.806071, -2.036379], [53.806005, -2.036499]], [[53.806005, -2.036499], [53.805947, -2.036617]], [[53.805808, -2.037022], [53.805757, -2.037172]], [[53.805757, -2.037172], [53.805706, -2.037316]], [[53.805706, -2.037316], [53.805666, -2.037457]], [[53.805517, -2.037868], [53.805466, -2.037994]], [[53.805421, -2.038133], [53.805394, -2.038281]], [[53.805394, -2.038281], [53.805373, -2.038429]], [[53.805373, -2.038429], [53.805318, -2.038559]], [[53.805318, -2.038559], [53.805237, -2.038644]], [[53.805161, -2.038743], [53.805077, -2.03884]], [[53.803175, -2.043133], [53.803111, -2.043259]], [[53.802699, -2.044491], [53.802653, -2.04465]], [[53.802398, -2.045323], [53.802328, -2.045439]], [[53.802328, -2.045439], [53.802247, -2.045531]], [[53.802032, -2.045868], [53.801972, -2.046005]], [[53.801972, -2.046005], [53.80194, -2.046151]], [[53.800948, -2.048081], [53.800854, -2.048061]], [[53.800854, -2.048061], [53.800763, -2.048047]], [[53.800485, -2.048038], [53.800397, -2.048073]], [[53.800397, -2.048073], [53.800306, -2.048098]], [[53.800306, -2.048098], [53.800233, -2.048193]], [[53.799895, -2.048886], [53.799826, -2.049008]], [[53.799826, -2.049008], [53.799742, -2.049087]], [[53.799742, -2.049087], [53.799648, -2.049156]], [[53.799387, -2.049372], [53.799312, -2.049459]], [[53.798606, -2.04987], [53.798512, -2.049922]], [[53.798512, -2.049922], [53.79842, -2.049955]], [[53.798143, -2.050095], [53.79806, -2.050168]], [[53.79806, -2.050168], [53.797998, -2.050283]], [[53.797936, -2.050397], [53.79787, -2.050512]], [[53.797572, -2.050902], [53.797489, -2.050968]], [[53.797489, -2.050968], [53.797413, -2.051058]], [[53.797413, -2.051058], [53.797339, -2.051159]], [[53.796946, -2.05204], [53.796899, -2.052191]], [[53.796899, -2.052191], [53.796842, -2.052322]], [[53.796123, -2.055021], [53.796158, -2.055169]], [[53.796185, -2.055469], [53.796172, -2.055632]], [[53.79609, -2.056573], [53.796068, -2.056729]], [[53.796068, -2.056729], [53.796032, -2.056878]], [[53.796032, -2.056878], [53.795995, -2.057036]], [[53.795995, -2.057036], [53.795969, -2.057202]], [[53.795969, -2.057202], [53.795921, -2.057347]], [[53.795921, -2.057347], [53.795868, -2.057496]], [[53.795868, -2.057496], [53.79583, -2.057647]], [[53.79583, -2.057647], [53.795799, -2.057794]], [[53.795417, -2.058905], [53.795345, -2.059009]], [[53.795142, -2.059346], [53.795075, -2.059466]], [[53.794941, -2.059696], [53.794854, -2.059783]], [[53.794153, -2.060344], [53.794073, -2.06042]], [[53.793541, -2.061045], [53.793461, -2.061149]], [[53.793399, -2.061612], [53.79335, -2.061749]], [[53.792492, -2.062765], [53.792402, -2.062785]], [[53.792402, -2.062785], [53.792333, -2.062884]], [[53.792689, -2.064915], [53.792733, -2.065056]], [[53.792733, -2.065056], [53.792764, -2.065205]], [[53.792764, -2.065205], [53.792787, -2.065354]], [[53.792787, -2.065354], [53.792839, -2.065483]], [[53.793425, -2.067], [53.793479, -2.067132]], [[53.793718, -2.067991], [53.793653, -2.068097]], [[53.792919, -2.069359], [53.792853, -2.069473]], [[53.792853, -2.069473], [53.792773, -2.069574]], [[53.792773, -2.069574], [53.79269, -2.069659]], [[53.79269, -2.069659], [53.792611, -2.069739]], [[53.792439, -2.069891], [53.792353, -2.069975]], [[53.792353, -2.069975], [53.792263, -2.070044]], [[53.792263, -2.070044], [53.792175, -2.07013]], [[53.792091, -2.070201], [53.792, -2.070275]], [[53.792, -2.070275], [53.791918, -2.07034]], [[53.791918, -2.07034], [53.791822, -2.070394]], [[53.791822, -2.070394], [53.791727, -2.070462]], [[53.791364, -2.070595], [53.791271, -2.070655]], [[53.791271, -2.070655], [53.791182, -2.070753]], [[53.791182, -2.070753], [53.791112, -2.070867]], [[53.790476, -2.071575], [53.790398, -2.071662]], [[53.790398, -2.071662], [53.790316, -2.071742]], [[53.790316, -2.071742], [53.790232, -2.071809]], [[53.790232, -2.071809], [53.790149, -2.071888]], [[53.790149, -2.071888], [53.790059, -2.071946]], [[53.790059, -2.071946], [53.789966, -2.071992]], [[53.789966, -2.071992], [53.78988, -2.072048]], [[53.789624, -2.072266], [53.789568, -2.072391]], [[53.789568, -2.072391], [53.789518, -2.072537]], [[53.789518, -2.072537], [53.789471, -2.072674]], [[53.789471, -2.072674], [53.789418, -2.072803]], [[53.789311, -2.073053], [53.789254, -2.073204]], [[53.789241, -2.073536], [53.789194, -2.07368]], [[53.789194, -2.07368], [53.789126, -2.073812]], [[53.789126, -2.073812], [53.789098, -2.073972]], [[53.789098, -2.073972], [53.789069, -2.074132]], [[53.789069, -2.074132], [53.78903, -2.074287]], [[53.78903, -2.074287], [53.788999, -2.074446]], [[53.788999, -2.074446], [53.789008, -2.074617]], [[53.789008, -2.074617], [53.788975, -2.07476]], [[53.788975, -2.07476], [53.788917, -2.074879]], [[53.788917, -2.074879], [53.788906, -2.075031]], [[53.788906, -2.075031], [53.788919, -2.075197]], [[53.788919, -2.075197], [53.788919, -2.075349]], [[53.788919, -2.075349], [53.788901, -2.075499]], [[53.788877, -2.075647], [53.788819, -2.075798]], [[53.788698, -2.076074], [53.788643, -2.076219]], [[53.788643, -2.076219], [53.788623, -2.076379]], [[53.788623, -2.076379], [53.788602, -2.076528]], [[53.788602, -2.076528], [53.7886, -2.076691]], [[53.788536, -2.076979], [53.788506, -2.07714]], [[53.788506, -2.07714], [53.788472, -2.077303]], [[53.788472, -2.077303], [53.788434, -2.077451]], [[53.788434, -2.077451], [53.788399, -2.077591]], [[53.788399, -2.077591], [53.78838, -2.077763]], [[53.78838, -2.077763], [53.788352, -2.07791]], [[53.788352, -2.07791], [53.78833, -2.07807]], [[53.78833, -2.07807], [53.788273, -2.078218]], [[53.788273, -2.078218], [53.78822, -2.078364]], [[53.78822, -2.078364], [53.788189, -2.078516]], [[53.788124, -2.078804], [53.788094, -2.078957]], [[53.788094, -2.078957], [53.788068, -2.079105]], [[53.788068, -2.079105], [53.788038, -2.079251]], [[53.787916, -2.080271], [53.787863, -2.080421]], [[53.787863, -2.080421], [53.787813, -2.080574]], [[53.787813, -2.080574], [53.787771, -2.080729]], [[53.787771, -2.080729], [53.787734, -2.080884]], [[53.787734, -2.080884], [53.787708, -2.081046]], [[53.787708, -2.081046], [53.787681, -2.081208]], [[53.787681, -2.081208], [53.787642, -2.081348]], [[53.787642, -2.081348], [53.787637, -2.081505]], [[53.787637, -2.081505], [53.787587, -2.081633]], [[53.787587, -2.081633], [53.787521, -2.081763]], [[53.786967, -2.081895], [53.786885, -2.081825]], [[53.786416, -2.081707], [53.786325, -2.081718]], [[53.786325, -2.081718], [53.786229, -2.081759]], [[53.786229, -2.081759], [53.786139, -2.081779]], [[53.785957, -2.081681], [53.785866, -2.08159]], [[53.785866, -2.08159], [53.785784, -2.081511]], [[53.785784, -2.081511], [53.785692, -2.081445]], [[53.785692, -2.081445], [53.785616, -2.08134]], [[53.78534, -2.081189], [53.785251, -2.081125]], [[53.785251, -2.081125], [53.785151, -2.081118]], [[53.784863, -2.081128], [53.784768, -2.081068]], [[53.784768, -2.081068], [53.784675, -2.081051]], [[53.784009, -2.081045], [53.783913, -2.080988]], [[53.783913, -2.080988], [53.783824, -2.080925]], [[53.783118, -2.080569], [53.783034, -2.080634]], [[53.782878, -2.080814], [53.782816, -2.080941]], [[53.782816, -2.080941], [53.78278, -2.081084]], [[53.782585, -2.082308], [53.782545, -2.082466]], [[53.782545, -2.082466], [53.782503, -2.082617]], [[53.782503, -2.082617], [53.782465, -2.082768]], [[53.782356, -2.08322], [53.782341, -2.083374]], [[53.782249, -2.083637], [53.782211, -2.083787]], [[53.782187, -2.083943], [53.782144, -2.084107]], [[53.782144, -2.084107], [53.782104, -2.084261]], [[53.782014, -2.084553], [53.781968, -2.084696]], [[53.781968, -2.084696], [53.781942, -2.084846]], [[53.781881, -2.085147], [53.781841, -2.085301]], [[53.781841, -2.085301], [53.781784, -2.085435]], [[53.781784, -2.085435], [53.781729, -2.085577]], [[53.78169, -2.085719], [53.781643, -2.085862]], [[53.781643, -2.085862], [53.7816, -2.086015]], [[53.7816, -2.086015], [53.781536, -2.086132]], [[53.781536, -2.086132], [53.781472, -2.086274]], [[53.781472, -2.086274], [53.781397, -2.086392]], [[53.781397, -2.086392], [53.781335, -2.086506]], [[53.781244, -2.086584], [53.781159, -2.086642]], [[53.781062, -2.08661], [53.780971, -2.086544]], [[53.780971, -2.086544], [53.780871, -2.086499]], [[53.780871, -2.086499], [53.780781, -2.086475]], [[53.780496, -2.086389], [53.780404, -2.086368]], [[53.780303, -2.086335], [53.780205, -2.08631]], [[53.780205, -2.08631], [53.780108, -2.086281]], [[53.780108, -2.086281], [53.780015, -2.086256]], [[53.780015, -2.086256], [53.779921, -2.086235]], [[53.779921, -2.086235], [53.779832, -2.086207]], [[53.779535, -2.08613], [53.779435, -2.086069]], [[53.779435, -2.086069], [53.779345, -2.086023]], [[53.779345, -2.086023], [53.779252, -2.086014]], [[53.779086, -2.086089], [53.778987, -2.086065]], [[53.778716, -2.086009], [53.77862, -2.085936]], [[53.77853, -2.085871], [53.778433, -2.085808]], [[53.778433, -2.085808], [53.778335, -2.085786]], [[53.777856, -2.085547], [53.777766, -2.08556]], [[53.7776, -2.085413], [53.777557, -2.085273]], [[53.777539, -2.084624], [53.777571, -2.084466]], [[53.777601, -2.084309], [53.777626, -2.084146]], [[53.777626, -2.084146], [53.777617, -2.083982]], [[53.777617, -2.083982], [53.777605, -2.083828]], [[53.777592, -2.083176], [53.777586, -2.082997]], [[53.777334, -2.082424], [53.777246, -2.082513]], [[53.775807, -2.082515], [53.775712, -2.082451]], [[53.773611, -2.081981], [53.773595, -2.081824]], [[53.773598, -2.081653], [53.773612, -2.081486]], [[53.773629, -2.081005], [53.773612, -2.080838]], [[53.773612, -2.080838], [53.773574, -2.080696]], [[53.773574, -2.080696], [53.773546, -2.080549]], [[53.773546, -2.080549], [53.773531, -2.080384]], [[53.773437, -2.079135], [53.773429, -2.078974]], [[53.773429, -2.078974], [53.773412, -2.078824]], [[53.773388, -2.078495], [53.77339, -2.078333]], [[53.773037, -2.076788], [53.773037, -2.076619]], [[53.773037, -2.076619], [53.773022, -2.076465]], [[53.77292, -2.076177], [53.772905, -2.076025]], [[53.772905, -2.076025], [53.772912, -2.075865]], [[53.772912, -2.075865], [53.772886, -2.075719]], [[53.772886, -2.075719], [53.772846, -2.075564]], [[53.772846, -2.075564], [53.772818, -2.075407]], [[53.772757, -2.07527], [53.772677, -2.07518]], [[53.772614, -2.075052], [53.772569, -2.07492]], [[53.772519, -2.074449], [53.772479, -2.074312]], [[53.772029, -2.072469], [53.772036, -2.072311]], [[53.77197, -2.071681], [53.771957, -2.071519]], [[53.771779, -2.070611], [53.771766, -2.070455]], [[53.771766, -2.070455], [53.771749, -2.070288]], [[53.771597, -2.06968], [53.77156, -2.069518]], [[53.771495, -2.069047], [53.771435, -2.068924]], [[53.771351, -2.068833], [53.771295, -2.068694]], [[53.771245, -2.068546], [53.771166, -2.068452]], [[53.771051, -2.068202], [53.771003, -2.06805]], [[53.771003, -2.06805], [53.770943, -2.067915]], [[53.770943, -2.067915], [53.770875, -2.067816]], [[53.770511, -2.067326], [53.770429, -2.067234]], [[53.770429, -2.067234], [53.770372, -2.067099]], [[53.770134, -2.066403], [53.770085, -2.066253]], [[53.770085, -2.066253], [53.770037, -2.066123]], [[53.770037, -2.066123], [53.769977, -2.06599]], [[53.769626, -2.065232], [53.769586, -2.065081]], [[53.769586, -2.065081], [53.769542, -2.064948]], [[53.769392, -2.064719], [53.769304, -2.064661]], [[53.769131, -2.064552], [53.769052, -2.064459]], [[53.769052, -2.064459], [53.769025, -2.064304]], [[53.769025, -2.064304], [53.768973, -2.064168]], [[53.768786, -2.063442], [53.768751, -2.063281]], [[53.768751, -2.063281], [53.768671, -2.063186]], [[53.768671, -2.063186], [53.768582, -2.063224]], [[53.768582, -2.063224], [53.768524, -2.063349]], [[53.768332, -2.06309], [53.768296, -2.062948]], [[53.768296, -2.062948], [53.768203, -2.062893]], [[53.768203, -2.062893], [53.768115, -2.062827]], [[53.767849, -2.06269], [53.767755, -2.062627]], [[53.767676, -2.062532], [53.767596, -2.062439]], [[53.767596, -2.062439], [53.76753, -2.062325]], [[53.766769, -2.061365], [53.766684, -2.061307]], [[53.766684, -2.061307], [53.766614, -2.061183]], [[53.766614, -2.061183], [53.766544, -2.061069]], [[53.766544, -2.061069], [53.766464, -2.060967]], [[53.766327, -2.060747], [53.766262, -2.060628]], [[53.766134, -2.060383], [53.766073, -2.06026]], [[53.766073, -2.06026], [53.766011, -2.06015]], [[53.766011, -2.06015], [53.765943, -2.060033]], [[53.765664, -2.059601], [53.765592, -2.059491]], [[53.765195, -2.059071], [53.765089, -2.059068]], [[53.764852, -2.059044], [53.764766, -2.058963]], [[53.764766, -2.058963], [53.764683, -2.058871]], [[53.764683, -2.058871], [53.764595, -2.058934]], [[53.763559, -2.057723], [53.763472, -2.057662]], [[53.763472, -2.057662], [53.763404, -2.057554]], [[53.763331, -2.057462], [53.763259, -2.057368]], [[53.762729, -2.056552], [53.762646, -2.056483]], [[53.762646, -2.056483], [53.76255, -2.056427]], [[53.76255, -2.056427], [53.762466, -2.056319]], [[53.762466, -2.056319], [53.762382, -2.056254]], [[53.762382, -2.056254], [53.762282, -2.056198]], [[53.762282, -2.056198], [53.76219, -2.056138]], [[53.76219, -2.056138], [53.762117, -2.05604]], [[53.762117, -2.05604], [53.762039, -2.055935]], [[53.762039, -2.055935], [53.761956, -2.055848]], [[53.761956, -2.055848], [53.761878, -2.055765]], [[53.761446, -2.055477], [53.761374, -2.055378]], [[53.761374, -2.055378], [53.761277, -2.055325]], [[53.761192, -2.055227], [53.761113, -2.055123]], [[53.761113, -2.055123], [53.761031, -2.055051]], [[53.761031, -2.055051], [53.760956, -2.054953]], [[53.760956, -2.054953], [53.760871, -2.054862]], [[53.760686, -2.05478], [53.760626, -2.054653]], [[53.760626, -2.054653], [53.760548, -2.054545]], [[53.760176, -2.054221], [53.760087, -2.054138]], [[53.75981, -2.053758], [53.759728, -2.053698]], [[53.759728, -2.053698], [53.759632, -2.053647]], [[53.759568, -2.053536], [53.759473, -2.05352]], [[53.759473, -2.05352], [53.759386, -2.05342]], [[53.759386, -2.05342], [53.759297, -2.053333]], [[53.759297, -2.053333], [53.759223, -2.053243]], [[53.759049, -2.053116], [53.758993, -2.052991]], [[53.758993, -2.052991], [53.758928, -2.052878]], [[53.758928, -2.052878], [53.758851, -2.052759]], [[53.758851, -2.052759], [53.758767, -2.052678]], [[53.757159, -2.053783], [53.757073, -2.05373]], [[53.757073, -2.05373], [53.756978, -2.053788]], [[53.756978, -2.053788], [53.756923, -2.053918]], [[53.756923, -2.053918], [53.756886, -2.054068]], [[53.756647, -2.054188], [53.756552, -2.054195]], [[53.755476, -2.054809], [53.75547, -2.054641]], [[53.755472, -2.054484], [53.755434, -2.054326]], [[53.755434, -2.054326], [53.755432, -2.054157]], [[53.755418, -2.054001], [53.755406, -2.053834]], [[53.755406, -2.053834], [53.755394, -2.053665]], [[53.755394, -2.053665], [53.755376, -2.053507]], [[53.755376, -2.053507], [53.755366, -2.053355]], [[53.755366, -2.053355], [53.755345, -2.05319]], [[53.755345, -2.05319], [53.755363, -2.053027]], [[53.755127, -2.05293], [53.755043, -2.052853]], [[53.754289, -2.05277], [53.754217, -2.052674]], [[53.754217, -2.052674], [53.754157, -2.052798]], [[53.754157, -2.052798], [53.754153, -2.05296]], [[53.754153, -2.05296], [53.754103, -2.053103]], [[53.754062, -2.053244], [53.754011, -2.053389]], [[53.754011, -2.053389], [53.753964, -2.053519]], [[53.753964, -2.053519], [53.753917, -2.053659]], [[53.753802, -2.054099], [53.753739, -2.054237]], [[53.753739, -2.054237], [53.753694, -2.054372]], [[53.753694, -2.054372], [53.753603, -2.05446]], [[53.753603, -2.05446], [53.753549, -2.054591]], [[53.753524, -2.054748], [53.753503, -2.054895]], [[53.753285, -2.055312], [53.753213, -2.055423]], [[53.75314, -2.05553], [53.753089, -2.055655]], [[53.753022, -2.05578], [53.752965, -2.055898]], [[53.752669, -2.056319], [53.752585, -2.056417]], [[53.752508, -2.056509], [53.75246, -2.056641]], [[53.75246, -2.056641], [53.752413, -2.056777]], [[53.752352, -2.056908], [53.752273, -2.057028]], [[53.752273, -2.057028], [53.752205, -2.057158]], [[53.752205, -2.057158], [53.752133, -2.057266]], [[53.752133, -2.057266], [53.752077, -2.057404]], [[53.752077, -2.057404], [53.752031, -2.057536]], [[53.752031, -2.057536], [53.751955, -2.057635]], [[53.751955, -2.057635], [53.751952, -2.057815]], [[53.751934, -2.058138], [53.751839, -2.058156]], [[53.751839, -2.058156], [53.751758, -2.058248]], [[53.751758, -2.058248], [53.751663, -2.058274]], [[53.751663, -2.058274], [53.751495, -2.058513]], [[53.751468, -2.058664], [53.751377, -2.058679]], [[53.751377, -2.058679], [53.751283, -2.058672]], [[53.751283, -2.058672], [53.751196, -2.058717]], [[53.750907, -2.058863], [53.750812, -2.058878]], [[53.750812, -2.058878], [53.75072, -2.058892]], [[53.750635, -2.058843], [53.750549, -2.058901]], [[53.750549, -2.058901], [53.75047, -2.058987]], [[53.750383, -2.058929], [53.750323, -2.058798]], [[53.750323, -2.058798], [53.750236, -2.058723]], [[53.749542, -2.058459], [53.749479, -2.0586]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_58d6ebaddc33f2f470db816afb8e4d83 = L.polyline(
                [[[53.983401, -2.104844], [53.983358, -2.104996]], [[53.983358, -2.104996], [53.983288, -2.105106]], [[53.980114, -2.108497], [53.980086, -2.10865]], [[53.979404, -2.110922], [53.979404, -2.111083]], [[53.979001, -2.113949], [53.978894, -2.113972]], [[53.978703, -2.114054], [53.978613, -2.114105]], [[53.977876, -2.114925], [53.977772, -2.11496]], [[53.977772, -2.11496], [53.977688, -2.115018]], [[53.977688, -2.115018], [53.977603, -2.115095]], [[53.977603, -2.115095], [53.977517, -2.115145]], [[53.977517, -2.115145], [53.977429, -2.115236]], [[53.977429, -2.115236], [53.977344, -2.115331]], [[53.976794, -2.11553], [53.976702, -2.115524]], [[53.976702, -2.115524], [53.976608, -2.115512]], [[53.975834, -2.115638], [53.975754, -2.115747]], [[53.975665, -2.115826], [53.975575, -2.115895]], [[53.975575, -2.115895], [53.975524, -2.116023]], [[53.972165, -2.12131], [53.972073, -2.121372]], [[53.972073, -2.121372], [53.971994, -2.121452]], [[53.971994, -2.121452], [53.971901, -2.121524]], [[53.971106, -2.12278], [53.971008, -2.122831]], [[53.97005, -2.124012], [53.969966, -2.124096]], [[53.968605, -2.126094], [53.968541, -2.126228]], [[53.968541, -2.126228], [53.968512, -2.12638]], [[53.966774, -2.128592], [53.966683, -2.128652]], [[53.960467, -2.13251], [53.960366, -2.13248]], [[53.956847, -2.136461], [53.956903, -2.136595]], [[53.956586, -2.137746], [53.956498, -2.137843]], [[53.955567, -2.138095], [53.955478, -2.138052]], [[53.955191, -2.1382], [53.955134, -2.138333]], [[53.955134, -2.138333], [53.955043, -2.138259]], [[53.954191, -2.139563], [53.954094, -2.139622]], [[53.953723, -2.139789], [53.95364, -2.139702]], [[53.953299, -2.139369], [53.953223, -2.139268]], [[53.953223, -2.139268], [53.953135, -2.13918]], [[53.953135, -2.13918], [53.953046, -2.139105]], [[53.952194, -2.138994], [53.952104, -2.139036]], [[53.952104, -2.139036], [53.952006, -2.138989]], [[53.951592, -2.139358], [53.951519, -2.139461]], [[53.951519, -2.139461], [53.95146, -2.139589]], [[53.95138, -2.139695], [53.951359, -2.139851]], [[53.951359, -2.139851], [53.951319, -2.140008]], [[53.951225, -2.140148], [53.951168, -2.140284]], [[53.951168, -2.140284], [53.951138, -2.14044]], [[53.951023, -2.140876], [53.950931, -2.140972]], [[53.950627, -2.141389], [53.950558, -2.141519]], [[53.950272, -2.141868], [53.950207, -2.141988]], [[53.950207, -2.141988], [53.950121, -2.142048]], [[53.949665, -2.142855], [53.94959, -2.142967]], [[53.94959, -2.142967], [53.949523, -2.143071]], [[53.949523, -2.143071], [53.949449, -2.143161]], [[53.949426, -2.143441], [53.949335, -2.1435]], [[53.946217, -2.142971], [53.946131, -2.142917]], [[53.946131, -2.142917], [53.946042, -2.142864]], [[53.942722, -2.14121], [53.942659, -2.141098]], [[53.942394, -2.140951], [53.942311, -2.140859]], [[53.942042, -2.140706], [53.941941, -2.140613]], [[53.941941, -2.140613], [53.941851, -2.14057]], [[53.941282, -2.140096], [53.941192, -2.140051]], [[53.940536, -2.139976], [53.940441, -2.139972]], [[53.938174, -2.139636], [53.938086, -2.139671]], [[53.937002, -2.140182], [53.936914, -2.140217]], [[53.936914, -2.140217], [53.936817, -2.140244]], [[53.936817, -2.140244], [53.936719, -2.140233]], [[53.936719, -2.140233], [53.936628, -2.140235]], [[53.935535, -2.140397], [53.935437, -2.140381]], [[53.93477, -2.141002], [53.934668, -2.141037]], [[53.934161, -2.14145], [53.934071, -2.141523]], [[53.933661, -2.141368], [53.933571, -2.141446]], [[53.933173, -2.142325], [53.933094, -2.142406]], [[53.933094, -2.142406], [53.933048, -2.142546]], [[53.932937, -2.142989], [53.93289, -2.143123]], [[53.93289, -2.143123], [53.932828, -2.14324]], [[53.930396, -2.144657], [53.930317, -2.144735]], [[53.930218, -2.144805], [53.93014, -2.144897]], [[53.929595, -2.144987], [53.929496, -2.144994]], [[53.927982, -2.145136], [53.927885, -2.14513]], [[53.922698, -2.143943], [53.92262, -2.143814]], [[53.922371, -2.14357], [53.922283, -2.143483]], [[53.922283, -2.143483], [53.922206, -2.143402]], [[53.922206, -2.143402], [53.922117, -2.143359]], [[53.921009, -2.144054], [53.920919, -2.144135]], [[53.920919, -2.144135], [53.920829, -2.144215]], [[53.920485, -2.144549], [53.920387, -2.144601]], [[53.920387, -2.144601], [53.920289, -2.144596]], [[53.920289, -2.144596], [53.920188, -2.14461]], [[53.919793, -2.144833], [53.919752, -2.144693]], [[53.919592, -2.144571], [53.919501, -2.144632]], [[53.917379, -2.145611], [53.917282, -2.145587]], [[53.916982, -2.145592], [53.91688, -2.145573]], [[53.91688, -2.145573], [53.916816, -2.145461]], [[53.916761, -2.145324], [53.916697, -2.145197]], [[53.916697, -2.145197], [53.916668, -2.145048]], [[53.916668, -2.145048], [53.916597, -2.144933]], [[53.916495, -2.144475], [53.916505, -2.144304]], [[53.916505, -2.144304], [53.916422, -2.144207]], [[53.915738, -2.145078], [53.915866, -2.145128]], [[53.916308, -2.144444], [53.916234, -2.144323]], [[53.916234, -2.144323], [53.916168, -2.144207]], [[53.916323, -2.144278], [53.916366, -2.144131]], [[53.916366, -2.144131], [53.916454, -2.144103]], [[53.916454, -2.144103], [53.916546, -2.144033]], [[53.916948, -2.143603], [53.917033, -2.143499]], [[53.917106, -2.14132], [53.917087, -2.141151]], [[53.917087, -2.141151], [53.917043, -2.141008]], [[53.916762, -2.140375], [53.916718, -2.140221]], [[53.916586, -2.138036], [53.91666, -2.137915]], [[53.91666, -2.137915], [53.916741, -2.137793]], [[53.916741, -2.137793], [53.916793, -2.137652]], [[53.917201, -2.136796], [53.917256, -2.136661]], [[53.917351, -2.136374], [53.917381, -2.136198]], [[53.917381, -2.136198], [53.917421, -2.13605]], [[53.917554, -2.135439], [53.917621, -2.135312]], [[53.917711, -2.132262], [53.917725, -2.132099]], [[53.921039, -2.096973], [53.921029, -2.096802]], [[53.918411, -2.066283], [53.918414, -2.066113]], [[53.918414, -2.066113], [53.918337, -2.066016]], [[53.917073, -2.064092], [53.916977, -2.064035]], [[53.916111, -2.063814], [53.916011, -2.063807]], [[53.91528, -2.063667], [53.915191, -2.063639]], [[53.914556, -2.063733], [53.914458, -2.063669]], [[53.913889, -2.063583], [53.913785, -2.063561]], [[53.913785, -2.063561], [53.913684, -2.063523]], [[53.913379, -2.063523], [53.913294, -2.063462]], [[53.913117, -2.063264], [53.913046, -2.06316]], [[53.912267, -2.062552], [53.912193, -2.062463]], [[53.912008, -2.062365], [53.91192, -2.062336]], [[53.911536, -2.062281], [53.911443, -2.06222]], [[53.911206, -2.06286], [53.91112, -2.062914]], [[53.91112, -2.062914], [53.911024, -2.062927]], [[53.911024, -2.062927], [53.910931, -2.06294]], [[53.910931, -2.06294], [53.91084, -2.062935]], [[53.91084, -2.062935], [53.910752, -2.063001]], [[53.909734, -2.063614], [53.909751, -2.063778]], [[53.904288, -2.062648], [53.904197, -2.062584]], [[53.903129, -2.061924], [53.903041, -2.06187]], [[53.897665, -2.05892], [53.897576, -2.058937]], [[53.895439, -2.060272], [53.89534, -2.060238]], [[53.89404, -2.059834], [53.893944, -2.059834]], [[53.893944, -2.059834], [53.893852, -2.059817]], [[53.893852, -2.059817], [53.893763, -2.059775]], [[53.892504, -2.05902], [53.892456, -2.058872]], [[53.89196, -2.056834], [53.891887, -2.056719]], [[53.891887, -2.056719], [53.891816, -2.056607]], [[53.891816, -2.056607], [53.891731, -2.056521]], [[53.891731, -2.056521], [53.891642, -2.056444]], [[53.891348, -2.05599], [53.891279, -2.055885]], [[53.891279, -2.055885], [53.891193, -2.055786]], [[53.891193, -2.055786], [53.891125, -2.055685]], [[53.891058, -2.055574], [53.891002, -2.055452]], [[53.889089, -2.054877], [53.889, -2.05481]], [[53.888268, -2.053998], [53.888181, -2.053866]], [[53.88801, -2.053467], [53.887948, -2.053348]], [[53.875543, -2.054019], [53.875452, -2.054039]], [[53.85368, -2.040658], [53.853598, -2.040569]], [[53.853598, -2.040569], [53.853501, -2.040525]], [[53.847155, -2.034758], [53.847153, -2.034597]], [[53.847087, -2.034481], [53.847024, -2.034341]], [[53.84547, -2.031501], [53.845383, -2.031412]], [[53.845077, -2.031046], [53.845028, -2.030903]], [[53.845028, -2.030903], [53.844964, -2.030793]], [[53.84427, -2.030201], [53.844181, -2.030138]], [[53.843852, -2.029624], [53.843767, -2.029546]], [[53.843767, -2.029546], [53.843685, -2.029439]], [[53.843259, -2.029102], [53.843164, -2.029096]], [[53.842511, -2.028161], [53.842423, -2.028077]], [[53.838738, -2.02398], [53.838699, -2.023831]], [[53.837742, -2.023603], [53.837671, -2.023724]], [[53.837283, -2.019654], [53.837196, -2.01959]], [[53.837196, -2.01959], [53.837142, -2.019447]], [[53.835988, -2.019242], [53.835973, -2.019409]], [[53.835973, -2.019409], [53.835996, -2.01958]], [[53.832697, -2.0204], [53.832632, -2.020309]], [[53.831895, -2.02094], [53.831825, -2.020836]], [[53.831839, -2.020677], [53.831753, -2.020601]], [[53.831753, -2.020601], [53.831664, -2.020511]], [[53.831398, -2.019684], [53.83144, -2.019524]], [[53.83144, -2.019524], [53.831455, -2.019352]], [[53.830844, -2.018125], [53.830762, -2.018055]], [[53.829615, -2.014653], [53.829528, -2.014593]], [[53.829528, -2.014593], [53.829414, -2.014442]], [[53.829414, -2.014442], [53.829304, -2.014445]], [[53.829304, -2.014445], [53.829226, -2.014355]], [[53.828909, -2.014169], [53.82884, -2.01406]], [[53.82884, -2.01406], [53.828775, -2.013953]], [[53.828748, -2.013803], [53.828662, -2.013706]], [[53.828602, -2.01359], [53.828669, -2.013469]], [[53.828732, -2.013322], [53.828742, -2.013166]], [[53.828905, -2.012266], [53.828966, -2.012128]], [[53.828966, -2.012128], [53.829025, -2.011987]], [[53.829025, -2.011987], [53.829088, -2.011848]], [[53.829088, -2.011848], [53.829146, -2.011716]], [[53.829827, -2.009123], [53.82988, -2.008971]], [[53.829956, -2.008859], [53.829989, -2.00871]], [[53.829633, -2.006959], [53.829553, -2.006852]], [[53.829273, -2.006596], [53.829186, -2.006509]], [[53.829186, -2.006509], [53.829097, -2.006484]], [[53.824427, -2.005089], [53.824353, -2.004989]], [[53.82236, -2.01216], [53.822366, -2.012314]], [[53.813255, -2.030058], [53.813172, -2.030001]], [[53.791112, -2.070867], [53.791036, -2.070981]], [[53.791036, -2.070981], [53.790968, -2.071084]], [[53.789254, -2.073204], [53.789234, -2.073364]], [[53.789234, -2.073364], [53.789241, -2.073536]], [[53.788819, -2.075798], [53.788754, -2.075923]], [[53.788754, -2.075923], [53.788698, -2.076074]], [[53.788189, -2.078516], [53.788161, -2.078662]], [[53.788161, -2.078662], [53.788124, -2.078804]], [[53.788114, -2.07973], [53.788059, -2.079852]], [[53.788007, -2.079986], [53.787963, -2.080138]], [[53.787963, -2.080138], [53.787916, -2.080271]], [[53.787141, -2.082048], [53.787052, -2.081964]], [[53.787052, -2.081964], [53.786967, -2.081895]], [[53.781729, -2.085577], [53.78169, -2.085719]], [[53.778987, -2.086065], [53.778901, -2.086013]], [[53.77862, -2.085936], [53.77853, -2.085871]], [[53.778134, -2.085726], [53.778034, -2.085673]], [[53.777944, -2.08562], [53.777856, -2.085547]], [[53.777586, -2.082997], [53.77759, -2.082844]], [[53.77759, -2.082844], [53.777556, -2.082685]], [[53.772677, -2.07518], [53.772614, -2.075052]], [[53.771435, -2.068924], [53.771351, -2.068833]], [[53.767755, -2.062627], [53.767676, -2.062532]], [[53.75547, -2.054641], [53.755472, -2.054484]], [[53.753549, -2.054591], [53.753524, -2.054748]], [[53.753213, -2.055423], [53.75314, -2.05553]], [[53.752965, -2.055898], [53.752895, -2.056021]], [[53.752895, -2.056021], [53.752807, -2.056122]], [[53.751952, -2.057815], [53.751961, -2.057991]], [[53.751961, -2.057991], [53.751934, -2.058138]], [[53.751495, -2.058513], [53.751468, -2.058664]], [[53.75101, -2.058845], [53.750907, -2.058863]], [[53.75072, -2.058892], [53.750635, -2.058843]], [[53.749479, -2.0586], [53.749465, -2.05874]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_39dd3457fe89178f394f16222c7e8843 = L.polyline(
                [[[53.978894, -2.113972], [53.9788, -2.114018]], [[53.9788, -2.114018], [53.978703, -2.114054]], [[53.956498, -2.137843], [53.956409, -2.137869]], [[53.953543, -2.139632], [53.953469, -2.139532]], [[53.953469, -2.139532], [53.953385, -2.139465]], [[53.953385, -2.139465], [53.953299, -2.139369]], [[53.950931, -2.140972], [53.950851, -2.141067]], [[53.935726, -2.140382], [53.935628, -2.140387]], [[53.935628, -2.140387], [53.935535, -2.140397]], [[53.931629, -2.144365], [53.931547, -2.144438]], [[53.930317, -2.144735], [53.930218, -2.144805]], [[53.915661, -2.145062], [53.915983, -2.145138]], [[53.915849, -2.14506], [53.915945, -2.144952]], [[53.916546, -2.144033], [53.916651, -2.143984]], [[53.916737, -2.143925], [53.916831, -2.143868]], [[53.916793, -2.137652], [53.916868, -2.137528]], [[53.916977, -2.064035], [53.916887, -2.063945]], [[53.913294, -2.063462], [53.913199, -2.063362]], [[53.913199, -2.063362], [53.913117, -2.063264]], [[53.904197, -2.062584], [53.904102, -2.062513]], [[53.904102, -2.062513], [53.904026, -2.062422]], [[53.888075, -2.053598], [53.88801, -2.053467]], [[53.844362, -2.030233], [53.84427, -2.030201]], [[53.835996, -2.01958], [53.835968, -2.019751]], [[53.831941, -2.020803], [53.831895, -2.02094]], [[53.830762, -2.018055], [53.830719, -2.01791]], [[53.828669, -2.013469], [53.828732, -2.013322]], [[53.82988, -2.008971], [53.829956, -2.008859]], [[53.829365, -2.006689], [53.829273, -2.006596]], [[53.824605, -2.005236], [53.824519, -2.005164]], [[53.788059, -2.079852], [53.788007, -2.079986]], [[53.778034, -2.085673], [53.777944, -2.08562]], [[53.753503, -2.054895], [53.753402, -2.054912]], [[53.753402, -2.054912], [53.753335, -2.055018]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_ae1ad0287a5b9eae900529b49533e889 = L.polyline(
                [[[53.955786, -2.137743], [53.955715, -2.137872]], [[53.93837, -2.139681], [53.93827, -2.13963]], [[53.93827, -2.13963], [53.938174, -2.139636]], [[53.916134, -2.144806], [53.916199, -2.144684]], [[53.916199, -2.144684], [53.916283, -2.1446]], [[53.916283, -2.1446], [53.916308, -2.144444]], [[53.916651, -2.143984], [53.916737, -2.143925]], [[53.838807, -2.024093], [53.838738, -2.02398]], [[53.837666, -2.019749], [53.837578, -2.019682]], [[53.824519, -2.005164], [53.824427, -2.005089]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff8b00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_39bf277f641db78047ff27c3c2c1b1f5 = L.polyline(
                [[[53.955715, -2.137872], [53.95566, -2.13803]], [[53.95566, -2.13803], [53.955567, -2.138095]], [[53.953993, -2.139647], [53.953916, -2.139742]], [[53.888112, -2.053742], [53.888075, -2.053598]], [[53.837944, -2.020035], [53.837851, -2.019923]], [[53.829553, -2.006852], [53.829466, -2.006735]], [[53.829466, -2.006735], [53.829365, -2.006689]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5d00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff5d00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            var poly_line_b3811906024a5ed61c6dd1bbef9b566c = L.polyline(
                [[[53.95364, -2.139702], [53.953543, -2.139632]], [[53.888181, -2.053866], [53.888112, -2.053742]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2e00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff2e00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_f1882247f837c24a4eecbcee801a8bee);
        
    
            color_line_f1882247f837c24a4eecbcee801a8bee.addTo(map_b979875dc2d9101d1fd69450033d2411);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-11---colden-to-crowden" class="level3">
<h3 class="anchored" data-anchor-id="day-11---colden-to-crowden">Day 11 - Colden to Crowden</h3>
<p>Up early, again, but not as early as Mike who said hello as he set off, he thought I might catch him up though, having done so over the past few days. Tent away and I hit the trail again, heading down a lovely path above Colden Water. I wasn’t paying attention though and made a minor navigational error missing the turning and only realised 500m down the hill in the woods adding an unnecessary kilometre to the days hiking and having to turn around and head back up hill to find The Way which followed a very narrow, overgrown path between dry stone walls of fields before dropping steeply down into Calder Valley.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975328481_96ddea727c_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeBEFK" target="_blank">Stoodley Pike from afar</a></figcaption>
</figure>
</div>
<p>I had been thinking about getting some food here but as I approached the River Calder I saw a heron in the middle of the river and completely forgot to look for food as I snapped as many pictures as I could before it flew off.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975757910_3f0e94942a_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeDSkG" target="_blank">Heron</a></figcaption>
</figure>
</div>
<p>Happy to have got some half decent shots, given the lack of zoom on my camera, I started the long slog out of the valley to <a href="https://en.wikipedia.org/wiki/Stoodley_Pike" target="_blank">Stoodley Pike</a>. This section had looked steep but the path followed farm tracks and wound its way through woods and some fields before the final steep section onto the edge of the moor.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975757760_4417634b08_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeDSi7" target="_blank">Land Rover</a></figcaption>
</figure>
</div>
<p>Before this last steep bit I paused to sort out my clothing as it looked like it was about to start raining and spied what I thought was Mike passing <a href="https://en.wikipedia.org/wiki/Stoodley_Pike" target="_blank">Stoodley Pike</a>. Its an impressive monument and I took the time to climb the 39 steps that take you to the balcony and snap some overcast shots in each of the ordinal directions.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53974440497_d373599f17_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qex7HF" target="_blank">Stoodley Pike</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975757110_3b09c6ec4c_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeDS6U" target="_blank">From Stoodley Pike</a></figcaption>
</figure>
</div>
<p>Continuing along The Way I met a group out for an early hike approaching from the opposite direction and followed the flagstones across the moor to Warland Reservoir which was looking a bit empty.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948581594_889ff855d1_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcfzLw" target="_blank">Warland Reservoir</a></figcaption>
</figure>
</div>
<p>I was gaining on Mike now and was able to go quickly as the track was flat and my legs were strong from the past ten days of hiking. Blackstone Edge Reservoir and <a href="https://thewhitehousepub.co.uk/" target="_blank">The White House</a> came into view and were quickly passed and as I started to head up to <a href="https://www.ukclimbing.com/logbook/crags/blackstone_edge-1356/" target="_blank">Blackstone Edge</a> I caught up with Mike who had paused to check his navigation and we walked and chatted as we went up to the edge. He said I should carry on as I was faster but after checking out the largest buttress for routes I was happy to walk and chat with him which made a change from the last ten days of being with my own thoughts.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975643824_ec84d7d922_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeDhqG" target="_blank">The White House</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975327081_9ce362f567_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeBEgB" target="_blank">Blackstone Edge Trig Point</a></figcaption>
</figure>
</div>
<p>Mike was easy to chat to, he is retired but worked on oil rigs off the coast of Norfolk after responding to an advert in a paper for mechanically minded people to transfer into the area. He’d worked his way up through the different levels, for a time having his own company and had lived in the US for a period with a lady he was with for a while. On returning to work after the COVID pandemic he decided he didn’t want to do that any more and after seeing a financial consultant he realised he could take early retirement and who would blame him. He enjoyed getting out walking and seeing the countryside with his dog Rufus who he clearly loved a lot and was pleased to be fit and able to enjoy his retirement unlike many of his friends who were still working or had heart conditions or other physical ailments which prevented them from doing so.</p>
<p>We soon passed over the M62 and both found the noise and bustle quite jarring compared to the peace and solitude we’d experienced hiking over fells and moorland but quickly left it behind and returned to peace and quiet. As we neared a road the possibility of lunch loomed in the form of a small cafe in a container by the side of the road but unfortunately they were closed. We were both sadden to see there appeared to be some people living in tents around this layby and the rise in homelessness is another poor reflection on the previous governments performance.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948710325_dcc78c376b_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcgf32" target="_blank">Crossing the M62</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948710245_1347a0bb6c_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcgf1D" target="_blank">The Most Easterly Point in the County of Lancashire</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948514818_d7a0e237dc_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcfeVd" target="_blank">Mike</a></figcaption>
</figure>
</div>
<p>A couple of kilometeres and we reached Standedege above Marsden where I had abandoned a previous attempt to walk the Pennine Way from South to North a number of years ago and stopped on a convenient rock for lunch. Mike had a wrap and some cheese whilst I broke out my stove and reheated my penultimate dehydrated meal for lunch. The stove is super efficient and I was soon tucking into the hotpot mash which was tasty but as always with these meals there is a tiny bit that never gets the water it needs. Mike set off before me and 15 minutes later I’d packed everything away and hit the path again myself.</p>
<p>I noticed the Great Western Inn had a number of caravans outside it and this must have been the pub that someone had told me was a cheap campsite to stay at, but I was pushing on to Crowden so I had a relatively easy day into Edale on my last day. This first section to was nice going over moorland, passing between Black Moss and Swellands reservoir before dropping down and crossing Wessenden Brook and passing along the side of Wessenden and Wessenden Head reservoir. I noticed a small waterfall on the opposite side of the brook.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53974438317_39d95d3920_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qex756" target="_blank">Standedge</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53974438612_e8cf6f1d6b_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qex7ab" target="_blank">Wessenden Brook</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975560618_71e07fe4b6_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeCRG7" target="_blank">Middle Wessenden</a></figcaption>
</figure>
</div>
<p>As I reached the top of Wessenden Head there was a Canadian couple who were trying to work out which way the Pennine Way went so I pointed them in the right direction. I was then asked by a lady with a large group of other “Instagrammers” who had just tumbled out of cars from the nearby road “<em>Is the waterfall nearby?</em>” I tried to explain that I had passed a waterfall but that it was 30-40 minutes down the track behind me and I didn’t know which waterfall they were looking for. They seemed to think I was referring to the road they had just left and not the track behind me. I gave up trying to answer their question as it seemed futile. Crossing the A635 felt like being on home territory having gone along it a few times earlier in the year to go climbing at the <a href="https://www.ukclimbing.com/logbook/crags/standing_stones-135/" target="_blank">Standing Stones</a>. Good paving slabs led over Dean Clough and up to Black Hill then across open moorland with a <em>very</em> boggy section where the paving slabs had disappeared to the head of Crowden Great Brook. This involved weaving back and forth across the brook before the path rose up the hillside to go over <a href="https://www.ukclimbing.com/logbook/crags/laddow-132/" target="_blank">Laddow Rocks</a>. Normally I would have a poke around and a small climb but was finding this section tough going as the heather made for a very narrow path and using poles was fairly pointless. Pretty uneven rocks down to Crowden, but I soon passed through the garden of <a href="https://www.crowdenoec.org.uk" target="_blank">Crowden Outdoor Education Centre</a> where one of my friends from the <a href="https://www.peakclimbingclub.co.uk" target="_blank">Peak Climbing Club</a> worked. Had it been a weekday I would have stopped to say hello but it was early evening on a Saturday so he wasn’t around.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948254531_e48ee89c10_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcdUxv" target="_blank">Black Hill Trig Point</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975559823_d7473aab9e_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeCRsp" target="_blank">From Laddow</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53975559863_acead6f054_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qeCRt6" target="_blank">Bleaklow in Sun</a></figcaption>
</figure>
</div>
<p>Checked in at <a href="https://www.campingandcaravanningclub.co.uk/campsites/uk/glossop/crowden/crowden-camping-and-caravanning-club-site/" target="_blank">Crowden campsite</a>, the most expensive of the trip at £13, and said hello to Mike who had just finished pitching his tent and to a father and son who had hiked over from Marsden and had been hoping to wild camp on Black Hill or above Laddow before continuing to Kinder Scout for the night and then onto Hathersage. They were trying out their kit in prepertion of hiking part of the <a href="https://www.swedishtouristassociation.com/areas/kungsleden/" target="_blank">Kungsleden Trail</a> which I’d never heard of but sounds interesting, albeit almost twice as long as the Pennine Way, although considerably flatter by the sounds of it.</p>
<p>Mike and I decided to order some takeaways as it was our last night on the trail. I had another pizza with chips and he had a burger with chips. The food arrived as it got dark and we chatted over dinner before an early night as we were both tired from the long day and had Bleaklow and Kinder the following day.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-12-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-12-1" aria-controls="tabset-12-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-12-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-12-2" aria-controls="tabset-12-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-12-1" class="tab-pane active" aria-labelledby="tabset-12-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb23-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-24"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-dd39f4884963cc2b15ce" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-dd39f4884963cc2b15ce">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-2.05854,-2.058629,-2.0585,-2.058362,-2.05822,-2.058091,-2.057958,-2.057839,-2.057767,-2.057594,-2.057429,-2.05726,-2.057168,-2.057006,-2.056851,-2.05669,-2.056518,-2.056357,-2.0562,-2.056026,-2.055858,-2.056087,-2.055922,-2.055737,-2.055561,-2.055422,-2.05529,-2.055128,-2.054975,-2.054822,-2.054647,-2.054494,-2.05434,-2.05417,-2.05402,-2.053844,-2.053688,-2.053555,-2.053434,-2.05326,-2.053119,-2.052951,-2.052788,-2.052636,-2.052483,-2.052341,-2.052182,-2.052033,-2.051869,-2.051702,-2.051534,-2.051384,-2.051216,-2.051065,-2.050902,-2.050748,-2.050639,-2.050483,-2.050336,-2.050188,-2.050032,-2.049853,-2.049692,-2.049525,-2.049365,-2.049195,-2.049045,-2.048908,-2.048749,-2.048582,-2.04844,-2.048302,-2.048131,-2.047969,-2.04782,-2.047673,-2.047513,-2.047349,-2.047208,-2.047052,-2.046893,-2.046774,-2.046617,-2.046482,-2.046325,-2.046322,-2.046187,-2.046021,-2.045853,-2.045696,-2.045544,-2.045447,-2.044905,-2.044732,-2.044554,-2.044289,-2.044177,-2.044119,-2.044076,-2.044049,-2.044215,-2.044364,-2.044518,-2.044669,-2.044825,-2.044908,-2.045033,-2.045164,-2.045317,-2.045431,-2.045539,-2.045705,-2.045881,-2.046044,-2.046208,-2.046137,-2.0463,-2.04643,-2.046552,-2.04673,-2.047188,-2.047345,-2.047424,-2.047583,-2.047722,-2.047873,-2.048028,-2.048198,-2.048361,-2.048528,-2.048681,-2.04884,-2.049,-2.049157,-2.049313,-2.049482,-2.049652,-2.049805,-2.049752,-2.049874,-2.049881,-2.04989,-2.049902,-2.049778,-2.049894,-2.049963,-2.050019,-2.049967,-2.050003,-2.05006,-2.050051,-2.05012,-2.050152,-2.05014,-2.050108,-2.050068,-2.050123,-2.050206,-2.050184,-2.050171,-2.050173,-2.050172,-2.050244,-2.050357,-2.050321,-2.050264,-2.050172,-2.050207,-2.050196,-2.050275,-2.050357,-2.050412,-2.050468,-2.050556,-2.050581,-2.05056,-2.050518,-2.05057,-2.050592,-2.050657,-2.050669,-2.05077,-2.050877,-2.050815,-2.050785,-2.050805,-2.050832,-2.050907,-2.050808,-2.050737,-2.050718,-2.050684,-2.050637,-2.050676,-2.050692,-2.050634,-2.050573,-2.050548,-2.050492,-2.050543,-2.050531,-2.050501,-2.05048,-2.050462,-2.050371,-2.050374,-2.050465,-2.050574,-2.050551,-2.050502,-2.050399,-2.050289,-2.050448,-2.050591,-2.050595,-2.050596,-2.050607,-2.050597,-2.050546,-2.050435,-2.050294,-2.050248,-2.050202,-2.05015,-2.05017,-2.050174,-2.050246,-2.050267,-2.05022,-2.050185,-2.050128,-2.050022,-2.049938,-2.049889,-2.049812,-2.049701,-2.0496,-2.049513,-2.049366,-2.04933,-2.049264,-2.049279,-2.049165,-2.049074,-2.04902,-2.048971,-2.048874,-2.048931,-2.048939,-2.048935,-2.048948,-2.048914,-2.048802,-2.048752,-2.048662,-2.048611,-2.0485,-2.048374,-2.048279,-2.048161,-2.048068,-2.048032,-2.047965,-2.047931,-2.047908,-2.047882,-2.047931,-2.047958,-2.047824,-2.047688,-2.047686,-2.047532,-2.047365,-2.047207,-2.047065,-2.046947,-2.046862,-2.046865,-2.045635,-2.04541,-2.045243,-2.045019,-2.044867,-2.044681,-2.04453,-2.044382,-2.044286,-2.044117,-2.043966,-2.044106,-2.044266,-2.044431,-2.044589,-2.044734,-2.044907,-2.045078,-2.045228,-2.045239,-2.045092,-2.045081,-2.045251,-2.045153,-2.045096,-2.04605,-2.046071,-2.04611,-2.04622,-2.046333,-2.046413,-2.046533,-2.046703,-2.046807,-2.046965,-2.047071,-2.047129,-2.047207,-2.047303,-2.047437,-2.047567,-2.047605,-2.047726,-2.04783,-2.04798,-2.047981,-2.048116,-2.048277,-2.048367,-2.048479,-2.048593,-2.048715,-2.048813,-2.048916,-2.049013,-2.049149,-2.049255,-2.049396,-2.049384,-2.049427,-2.049462,-2.049274,-2.049105,-2.048954,-2.048824,-2.048682,-2.048504,-2.048342,-2.04818,-2.048012,-2.047861,-2.047714,-2.047555,-2.047396,-2.047232,-2.047058,-2.046919,-2.046763,-2.046643,-2.046487,-2.046333,-2.046173,-2.046011,-2.045847,-2.045731,-2.045687,-2.045527,-2.045471,-2.045375,-2.045372,-2.045474,-2.045441,-2.045336,-2.045252,-2.045196,-2.045143,-2.044582,-2.04451,-2.044419,-2.044034,-2.044048,-2.044163,-2.044302,-2.044428,-2.044444,-2.044398,-2.044491,-2.044551,-2.044564,-2.044615,-2.044585,-2.044489,-2.044357,-2.044191,-2.044045,-2.043891,-2.043759,-2.043663,-2.0436,-2.04349,-2.043375,-2.043262,-2.043091,-2.042962,-2.042904,-2.042751,-2.042626,-2.042478,-2.042323,-2.042241,-2.042108,-2.041951,-2.041996,-2.041922,-2.041737,-2.041591,-2.041475,-2.04136,-2.041214,-2.041077,-2.040823,-2.040714,-2.040614,-2.040469,-2.040366,-2.040236,-2.040097,-2.039974,-2.039821,-2.039659,-2.039509,-2.039352,-2.039184,-2.039034,-2.038914,-2.038754,-2.038621,-2.038641,-2.038475,-2.038318,-2.038146,-2.037957,-2.037787,-2.037632,-2.037473,-2.037372,-2.037247,-2.037085,-2.036931,-2.03677,-2.036558,-2.036454,-2.036315,-2.03615,-2.036059,-2.035932,-2.035926,-2.036072,-2.035993,-2.035954,-2.035907,-2.035966,-2.035833,-2.035655,-2.035512,-2.035354,-2.035415,-2.035305,-2.035181,-2.035027,-2.034885,-2.034765,-2.03475,-2.034581,-2.034424,-2.034337,-2.034211,-2.034058,-2.033959,-2.033793,-2.033775,-2.033664,-2.03354,-2.033453,-2.033514,-2.033461,-2.033371,-2.033264,-2.033147,-2.033138,-2.032998,-2.03291,-2.032938,-2.032878,-2.032847,-2.032782,-2.032732,-2.03269,-2.032776,-2.032686,-2.032615,-2.032506,-2.032368,-2.032254,-2.032114,-2.032111,-2.032114,-2.032134,-2.032085,-2.032025,-2.032102,-2.032201,-2.032196,-2.032095,-2.032067,-2.032073,-2.032074,-2.032132,-2.032168,-2.032131,-2.032174,-2.032155,-2.032205,-2.032319,-2.032414,-2.032337,-2.032223,-2.032117,-2.032014,-2.031965,-2.031949,-2.032041,-2.032139,-2.03212,-2.032043,-2.031914,-2.031795,-2.031657,-2.0315,-2.031393,-2.031295,-2.031152,-2.031115,-2.031134,-2.031032,-2.03093,-2.03091,-2.030827,-2.03068,-2.03063,-2.030585,-2.030534,-2.030451,-2.030415,-2.030396,-2.030389,-2.030347,-2.030404,-2.030404,-2.030333,-2.030313,-2.030304,-2.030306,-2.03031,-2.030289,-2.030298,-2.030307,-2.030315,-2.030309,-2.030331,-2.030424,-2.030414,-2.030436,-2.030526,-2.030533,-2.030484,-2.030455,-2.030494,-2.030615,-2.030635,-2.030693,-2.030723,-2.030746,-2.030833,-2.030874,-2.030996,-2.031123,-2.031226,-2.031315,-2.031386,-2.031429,-2.031504,-2.031577,-2.031675,-2.031787,-2.031875,-2.031934,-2.031981,-2.031879,-2.031876,-2.031734,-2.031589,-2.03151,-2.031386,-2.031254,-2.031145,-2.031274,-2.031385,-2.031513,-2.031629,-2.031762,-2.031861,-2.031956,-2.032057,-2.032133,-2.032244,-2.032314,-2.032413,-2.03254,-2.032599,-2.032702,-2.032789,-2.032925,-2.033038,-2.033142,-2.033251,-2.033325,-2.033433,-2.033546,-2.033637,-2.033771,-2.033935,-2.034029,-2.034119,-2.034177,-2.034221,-2.034341,-2.034451,-2.034484,-2.034414,-2.034387,-2.034363,-2.034296,-2.034262,-2.034214,-2.034202,-2.034213,-2.034227,-2.034276,-2.034283,-2.03427,-2.034251,-2.034197,-2.03404,-2.033899,-2.033853,-2.033762,-2.033659,-2.033555,-2.033448,-2.033316,-2.033192,-2.033084,-2.032943,-2.032804,-2.032657,-2.032506,-2.032407,-2.032308,-2.032194,-2.032113,-2.032071,-2.03201,-2.031945,-2.031842,-2.031708,-2.031652,-2.031573,-2.031527,-2.031473,-2.031447,-2.031503,-2.031583,-2.031603,-2.031623,-2.031675,-2.031729,-2.031739,-2.031819,-2.031919,-2.031969,-2.031991,-2.032082,-2.032169,-2.032268,-2.032387,-2.032431,-2.032536,-2.032627,-2.03276,-2.032839,-2.032893,-2.032937,-2.033007,-2.033071,-2.033146,-2.033281,-2.033328,-2.033401,-2.03347,-2.033502,-2.033483,-2.033555,-2.033658,-2.033802,-2.033904,-2.033988,-2.034077,-2.034109,-2.034117,-2.034121,-2.034115,-2.034143,-2.034182,-2.034196,-2.034212,-2.03426,-2.034349,-2.034387,-2.034397,-2.03441,-2.034425,-2.034521,-2.034687,-2.034843,-2.034997,-2.035173,-2.035338,-2.035509,-2.035668,-2.035821,-2.035987,-2.036139,-2.036298,-2.036459,-2.036611,-2.036755,-2.036906,-2.03707,-2.037225,-2.037381,-2.037543,-2.037696,-2.03784,-2.037993,-2.038147,-2.038309,-2.038459,-2.038625,-2.038794,-2.038962,-2.039116,-2.039272,-2.039437,-2.039597,-2.039746,-2.039877,-2.040038,-2.040188,-2.040299,-2.040462,-2.04062,-2.040762,-2.040921,-2.041079,-2.041245,-2.041398,-2.041552,-2.041718,-2.041853,-2.041845,-2.042008,-2.042166,-2.042317,-2.042421,-2.042174,-2.042196,-2.042309,-2.042353,-2.042309,-2.042191,-2.042137,-2.042082,-2.042047,-2.04198,-2.041926,-2.041885,-2.041832,-2.041837,-2.041812,-2.041786,-2.041799,-2.041794,-2.041759,-2.041697,-2.041621,-2.041543,-2.041493,-2.041465,-2.04145,-2.041471,-2.041511,-2.041556,-2.041589,-2.041662,-2.041718,-2.041768,-2.041871,-2.041922,-2.041982,-2.042072,-2.042173,-2.0423,-2.042411,-2.042526,-2.042556,-2.04258,-2.042636,-2.042728,-2.042837,-2.042896,-2.043002,-2.043085,-2.04313,-2.043203,-2.043243,-2.043302,-2.043378,-2.043413,-2.043456,-2.04351,-2.043579,-2.043625,-2.04367,-2.043725,-2.043757,-2.043763,-2.043769,-2.043839,-2.043897,-2.044006,-2.04411,-2.044206,-2.044296,-2.044376,-2.044464,-2.04455,-2.044644,-2.044759,-2.044804,-2.044857,-2.044958,-2.045027,-2.045145,-2.045228,-2.045302,-2.045358,-2.045475,-2.045578,-2.045715,-2.045842,-2.045952,-2.04607,-2.046179,-2.046263,-2.046345,-2.046445,-2.046552,-2.046658,-2.046794,-2.046901,-2.047027,-2.047136,-2.047211,-2.047352,-2.047473,-2.047609,-2.047741,-2.047871,-2.048005,-2.048147,-2.048238,-2.048213,-2.048356,-2.04851,-2.048651,-2.048681,-2.048714,-2.048868,-2.048968,-2.049139,-2.049304,-2.04947,-2.049576,-2.049667,-2.049799,-2.049946,-2.050069,-2.0502,-2.050326,-2.05044,-2.05057,-2.050709,-2.050843,-2.050997,-2.051123,-2.051223,-2.051326,-2.051415,-2.051519,-2.051643,-2.051789,-2.051892,-2.05195,-2.052027,-2.052044,-2.052109,-2.052249,-2.052339,-2.052417,-2.052477,-2.052512,-2.052572,-2.052612,-2.052634,-2.052736,-2.052759,-2.052748,-2.052795,-2.052839,-2.052877,-2.052892,-2.05295,-2.052971,-2.053025,-2.053062,-2.053043,-2.053027,-2.053103,-2.053096,-2.053062,-2.053108,-2.053176,-2.053286,-2.053352,-2.053456,-2.053544,-2.053572,-2.053539,-2.053563,-2.053652,-2.053706,-2.053736,-2.05382,-2.053906,-2.05398,-2.054029,-2.054104,-2.054112,-2.054186,-2.05422,-2.054277,-2.054302,-2.054346,-2.054364,-2.054349,-2.054366,-2.054369,-2.054381,-2.054395,-2.054411,-2.05446,-2.05451,-2.054523,-2.05454,-2.054595,-2.05455,-2.054583,-2.054631,-2.054594,-2.054643,-2.054623,-2.054675,-2.054702,-2.0547,-2.054793,-2.054876,-2.054922,-2.054986,-2.055029,-2.055048,-2.05512,-2.055108,-2.055159,-2.05513,-2.055108,-2.055158,-2.055227,-2.055243,-2.055289,-2.055304,-2.055278,-2.055317,-2.055428,-2.055443,-2.055453,-2.055525,-2.05553,-2.055477,-2.055421,-2.055433,-2.055477,-2.055473,-2.055467,-2.055531,-2.055528,-2.055506,-2.05552,-2.055601,-2.055628,-2.055607,-2.055713,-2.055656,-2.055557,-2.055623,-2.055662,-2.0557,-2.055727,-2.055772,-2.05589,-2.056002,-2.056101,-2.056206,-2.056307,-2.056418,-2.056532,-2.056684,-2.056799,-2.056921,-2.057059,-2.057166,-2.057238,-2.05735,-2.057414,-2.057493,-2.057594,-2.057694,-2.057789,-2.057876,-2.057952,-2.057983,-2.058074,-2.058182,-2.058318,-2.058434,-2.058549,-2.058667,-2.058728,-2.058752,-2.058871,-2.05899,-2.059099,-2.059235,-2.059361,-2.059496,-2.059613,-2.059777,-2.059945,-2.060102,-2.060272,-2.060427,-2.060598,-2.060755,-2.060923,-2.061084,-2.061231,-2.061265,-2.061387,-2.06156,-2.061683,-2.061826,-2.061992,-2.062151,-2.062308,-2.062462,-2.062596,-2.062747,-2.062882,-2.062985,-2.063126,-2.063283,-2.063432,-2.063582,-2.063734,-2.063891,-2.064032,-2.06419,-2.064326,-2.064505,-2.064659,-2.064814,-2.064969,-2.065109,-2.065268,-2.065425,-2.065581,-2.065746,-2.065883,-2.066034,-2.06621,-2.066371,-2.066521,-2.066687,-2.066814,-2.066975,-2.067125,-2.067297,-2.067451,-2.06762,-2.067738,-2.067903,-2.068056,-2.068213,-2.068365,-2.068519,-2.068641,-2.068795,-2.068912,-2.069031,-2.069025,-2.069122,-2.069158,-2.069181,-2.069197,-2.069173,-2.069178,-2.069213,-2.069253,-2.069316,-2.069359,-2.06943,-2.069443,-2.06954,-2.069573,-2.069617,-2.069624,-2.069646,-2.069709,-2.06972,-2.069699,-2.06969,-2.069823,-2.069924,-2.070058,-2.070193,-2.070325,-2.070196,-2.070248,-2.070255,-2.070239,-2.070161,-2.070097,-2.070005,-2.069966,-2.069924,-2.069875,-2.069821,-2.069752,-2.069693,-2.069677,-2.069638,-2.069544,-2.069492,-2.069398,-2.069329,-2.069274,-2.069222,-2.069189,-2.069149,-2.069065,-2.06902,-2.06897,-2.068931,-2.06881,-2.068752,-2.068645,-2.068607,-2.068566,-2.068561,-2.068527,-2.068461,-2.068333,-2.068233,-2.068161,-2.068091,-2.068049,-2.068011,-2.067924,-2.067804,-2.067763,-2.067677,-2.067625,-2.067564,-2.067499,-2.067417,-2.067375,-2.067335,-2.067284,-2.067212,-2.067173,-2.067122,-2.067022,-2.066941,-2.066858,-2.066792,-2.066803,-2.0667,-2.066598,-2.066543,-2.066485,-2.066449,-2.066416,-2.066307,-2.066236,-2.066155,-2.06608,-2.065994,-2.065984,-2.065963,-2.065892,-2.06587,-2.065797,-2.065798,-2.065703,-2.06562,-2.065541,-2.065488,-2.065448,-2.065374,-2.065321,-2.065302,-2.065242,-2.06519,-2.06509,-2.064991,-2.064893,-2.064808,-2.064746,-2.064649,-2.064552,-2.064458,-2.064348,-2.064229,-2.064128,-2.064009,-2.063893,-2.063757,-2.063623,-2.063483,-2.063368,-2.063254,-2.063113,-2.062965,-2.06283,-2.062695,-2.062573,-2.062435,-2.062275,-2.062115,-2.06216,-2.062014,-2.06187,-2.061709,-2.061588,-2.061466,-2.06133,-2.061193,-2.061075,-2.060945,-2.060821,-2.060689,-2.060564,-2.060487,-2.060376,-2.060239,-2.060137,-2.060167,-2.060113,-2.060079,-2.060076,-2.060075,-2.060006,-2.05996,-2.059934,-2.059923,-2.059893,-2.059848,-2.059805,-2.059727,-2.059631,-2.059562,-2.059501,-2.059456,-2.059371,-2.059267,-2.05921,-2.059173,-2.059185,-2.059113,-2.059027,-2.05895,-2.058998,-2.059003,-2.058999,-2.059002,-2.059039,-2.059029,-2.058973,-2.058951,-2.058987,-2.05897,-2.058939,-2.058923,-2.058938,-2.05893,-2.05893,-2.058942,-2.058908,-2.058856,-2.058765,-2.058676,-2.058627,-2.058541,-2.058467,-2.058415,-2.058342,-2.058275,-2.058178,-2.058094,-2.058014,-2.057927,-2.057823,-2.057727,-2.057632,-2.057576,-2.057507,-2.057429,-2.05736,-2.057261,-2.057147,-2.057072,-2.056973,-2.056871,-2.056773,-2.056666,-2.05656,-2.056531,-2.056503,-2.056479,-2.056485,-2.05657,-2.056691,-2.05679,-2.056907,-2.057025,-2.057123,-2.057252,-2.057361,-2.057485,-2.057594,-2.057714,-2.057834,-2.057958,-2.058084,-2.058192,-2.058304,-2.0584,-2.058494,-2.058529,-2.058533,-2.058549,-2.058551,-2.058503,-2.058522,-2.058513,-2.058496,-2.058446,-2.058402,-2.058349,-2.058343,-2.058285,-2.058217,-2.058145,-2.0581,-2.058016,-2.057915,-2.057839,-2.057743,-2.057646,-2.05752,-2.057383,-2.057234,-2.057102,-2.056974,-2.056849,-2.056732,-2.056635,-2.056552,-2.056444,-2.056333,-2.056268,-2.056206,-2.056126,-2.056036,-2.05593,-2.055825,-2.05571,-2.055596,-2.055575,-2.055522,-2.055425,-2.055345,-2.055297,-2.055225,-2.055166,-2.055096,-2.055044,-2.055,-2.054948,-2.054872,-2.054839,-2.054769,-2.054708,-2.054697,-2.054706,-2.054687,-2.05469,-2.054707,-2.054735,-2.054793,-2.054839,-2.054899,-2.054936,-2.054995,-2.055061,-2.055128,-2.055198,-2.055283,-2.055379,-2.055449,-2.055526,-2.055578,-2.055622,-2.055683,-2.055731,-2.055811,-2.055879,-2.055979,-2.05601,-2.056039,-2.056032,-2.056024,-2.056036,-2.056055,-2.05607,-2.056096,-2.056107,-2.056102,-2.056096,-2.056073,-2.056077,-2.056098,-2.056098,-2.056118,-2.056152,-2.056157,-2.056167,-2.056152,-2.056142,-2.056131,-2.056106,-2.056066,-2.056037,-2.055981,-2.055934,-2.055864,-2.055785,-2.055713,-2.05566,-2.055582,-2.055488,-2.055422,-2.055354,-2.05531,-2.055282,-2.055256,-2.055193,-2.055179,-2.055195,-2.055148,-2.055104,-2.055043,-2.05497,-2.05493,-2.0549,-2.05484,-2.054746,-2.05464,-2.054521,-2.05439,-2.054259,-2.054131,-2.054007,-2.053864,-2.053713,-2.053543,-2.053383,-2.053205,-2.053038,-2.052891,-2.052745,-2.052636,-2.052532,-2.052421,-2.052266,-2.052114,-2.05196,-2.051796,-2.051628,-2.051461,-2.051312,-2.051168,-2.051,-2.050827,-2.050677,-2.050522,-2.050382,-2.050268,-2.050232,-2.050122,-2.04996,-2.049818,-2.049725,-2.049638,-2.049544,-2.049441,-2.04935,-2.049216,-2.049071,-2.048957,-2.048851,-2.048747,-2.048659,-2.048526,-2.048393,-2.04831,-2.048194,-2.048107,-2.047995,-2.047889,-2.047775,-2.047689,-2.047566,-2.047475,-2.047499,-2.047351,-2.047405,-2.047539,-2.047682,-2.047813,-2.047959,-2.048094,-2.048236,-2.048385,-2.04853,-2.048673,-2.048816,-2.048952,-2.049115,-2.049257,-2.0494,-2.049531,-2.049658,-2.049777,-2.049895,-2.050025,-2.050141,-2.050247,-2.050368,-2.050429,-2.050449,-2.050454,-2.050413,-2.050472,-2.050479,-2.050533,-2.050552,-2.050539,-2.05059,-2.050566,-2.050611,-2.050531,-2.050373,-2.050232,-2.050076,-2.050003,-2.049899,-2.049824,-2.049785,-2.049929,-2.050066,-2.05022,-2.050342,-2.05044,-2.050522,-2.050633,-2.050716,-2.050788,-2.050859,-2.050934,-2.051053,-2.051158,-2.05126,-2.051345,-2.051433,-2.051539,-2.051642,-2.051726,-2.051799,-2.051876,-2.051954,-2.051986,-2.052032,-2.05208,-2.052045,-2.052072,-2.052055,-2.05207,-2.052071,-2.052078,-2.052084,-2.052088,-2.052044,-2.051963,-2.051873,-2.05178,-2.051717,-2.051678,-2.051618,-2.051573,-2.051542,-2.051447,-2.051368,-2.051307,-2.051248,-2.051167,-2.051084,-2.050986,-2.050884,-2.050781,-2.050692,-2.050576,-2.050469,-2.050324,-2.050188,-2.050044,-2.049889,-2.049717,-2.049555,-2.049431,-2.049309,-2.049234,-2.049157,-2.049017,-2.048854,-2.048699,-2.048538,-2.048419,-2.048311,-2.048218,-2.048092,-2.048014,-2.047984,-2.047902,-2.047873,-2.04779,-2.047658,-2.047561,-2.047458,-2.047312,-2.047211,-2.047052,-2.046898,-2.046747,-2.046578,-2.046411,-2.046252,-2.046104,-2.045951,-2.045802,-2.045641,-2.04549,-2.045334,-2.045183,-2.04503,-2.044882,-2.044732,-2.044581,-2.044429,-2.044284,-2.044144,-2.043981,-2.043823,-2.043675,-2.043515,-2.043357,-2.043241,-2.043076,-2.042919,-2.042771,-2.04261,-2.042471,-2.042328,-2.042182,-2.042064,-2.041909,-2.041784,-2.041697,-2.041669,-2.041746,-2.041809,-2.041825,-2.0419,-2.042007,-2.042071,-2.042074,-2.042033,-2.042078,-2.042147,-2.042213,-2.042247,-2.042301,-2.042309,-2.042233,-2.042247,-2.04228,-2.042291,-2.042281,-2.042273,-2.042285,-2.042264,-2.042231,-2.042279,-2.042246,-2.042247,-2.042329,-2.042378,-2.042384,-2.042354,-2.042379,-2.042373,-2.042313,-2.042339,-2.042322,-2.042373,-2.042459,-2.042556,-2.042684,-2.042812,-2.042955,-2.043082,-2.043213,-2.043199,-2.04326,-2.043247,-2.043239,-2.043239,-2.04332,-2.043282,-2.04315,-2.043157,-2.043199,-2.04312,-2.043077,-2.043076,-2.04309,-2.043081,-2.043148,-2.043166,-2.043199,-2.04321,-2.043271,-2.043244,-2.043266,-2.043323,-2.043385,-2.04342,-2.043524,-2.043572,-2.043464,-2.043541,-2.043521,-2.043438,-2.043402,-2.043351,-2.04334,-2.043363,-2.043255,-2.043151,-2.043128,-2.043019,-2.042902,-2.042812,-2.04276,-2.04266,-2.042593,-2.04259,-2.042593,-2.042498,-2.042423,-2.042369,-2.042269,-2.042164,-2.042043,-2.041919,-2.041766,-2.041617,-2.041489,-2.041391,-2.041287,-2.041191,-2.041194,-2.041192,-2.041152,-2.041159,-2.041218,-2.041252,-2.041291,-2.041282,-2.041259,-2.041261,-2.041294,-2.041305,-2.041303,-2.041266,-2.04121,-2.041148,-2.04107,-2.040988,-2.04096,-2.040911,-2.040908,-2.040915,-2.040893,-2.040838,-2.040841,-2.040801,-2.04075,-2.040649,-2.04053,-2.040424,-2.040311,-2.04026,-2.040159,-2.040025,-2.039919,-2.039799,-2.039665,-2.039533,-2.039406,-2.039296,-2.039202,-2.039088,-2.038935,-2.03886,-2.038794,-2.038738,-2.038606,-2.038466,-2.038335,-2.038218,-2.038094,-2.037968,-2.037853,-2.037745,-2.037659,-2.037578,-2.037513,-2.037389,-2.037258,-2.037119,-2.036997,-2.036864,-2.036709,-2.03658,-2.036513,-2.036428,-2.036311,-2.036214,-2.03614,-2.036032,-2.035914,-2.035772,-2.03569,-2.035591,-2.035497,-2.035485,-2.035443,-2.035379,-2.035274,-2.035202,-2.03521,-2.035156,-2.03505,-2.035022,-2.034935,-2.034892,-2.034902,-2.034834,-2.034836,-2.03477,-2.034704,-2.034637,-2.034593,-2.034542,-2.034482,-2.034444,-2.034416,-2.034278,-2.034141,-2.034025,-2.033914,-2.033795,-2.033694,-2.033623,-2.033551,-2.033485,-2.033375,-2.033288,-2.033191,-2.033138,-2.033048,-2.033115,-2.033085,-2.033014,-2.033,-2.032888,-2.03277,-2.032728,-2.03267,-2.032577,-2.03248,-2.03236,-2.032329,-2.03229,-2.03227,-2.032189,-2.032082,-2.032009,-2.03196,-2.031903,-2.03184,-2.031745,-2.031685,-2.031585,-2.031488,-2.031349,-2.031205,-2.031069,-2.03095,-2.030809,-2.030648,-2.030501,-2.030337,-2.030179,-2.030021,-2.029877,-2.029722,-2.029558,-2.02939,-2.029219,-2.029061,-2.028908,-2.028753,-2.028599,-2.028452,-2.028283,-2.028161,-2.028027,-2.027915,-2.02779,-2.02763,-2.027471,-2.027306,-2.027145,-2.026981,-2.026883,-2.026748,-2.026595,-2.026458,-2.026479,-2.02646,-2.026436,-2.026399,-2.026416,-2.026416,-2.026394,-2.026435,-2.026462,-2.02646,-2.026463,-2.026426,-2.026371,-2.026379,-2.026465,-2.026535,-2.026644,-2.026683,-2.02669,-2.02674,-2.026841,-2.026887,-2.026862,-2.026863,-2.026892,-2.026959,-2.02695,-2.026982,-2.026998,-2.027026,-2.027039,-2.027108,-2.027227,-2.027308,-2.027384,-2.027383,-2.027378,-2.027329,-2.027297,-2.027369,-2.027441,-2.027479,-2.027473,-2.027481,-2.027535,-2.02758,-2.027554,-2.027543,-2.027523,-2.027512,-2.027549,-2.027538,-2.027524,-2.027466,-2.027412,-2.027381,-2.027346,-2.02731,-2.027326,-2.027298,-2.027257,-2.027256,-2.027321,-2.027395,-2.027557,-2.027429,-2.027287,-2.027152,-2.027016,-2.027024,-2.027037,-2.027062,-2.027095,-2.027068,-2.027019,-2.026954,-2.026877,-2.026826,-2.026823,-2.026844,-2.026823,-2.026768,-2.026822,-2.026804,-2.026753,-2.026694,-2.026652,-2.026641,-2.026653,-2.026624,-2.026575,-2.026535,-2.026552,-2.026542,-2.026538,-2.026453,-2.026389,-2.026307,-2.026254,-2.026202,-2.026174,-2.02613,-2.02611,-2.02612,-2.026098,-2.026152,-2.026151,-2.026137,-2.026087,-2.026044,-2.025994,-2.02596,-2.025904,-2.025856,-2.025824,-2.025867,-2.025833,-2.025811,-2.025748,-2.025703,-2.025711,-2.025657,-2.025594,-2.025542,-2.025506,-2.025441,-2.025422,-2.025385,-2.025345,-2.025305,-2.025253,-2.025198,-2.025141,-2.025131,-2.025115,-2.025104,-2.02507,-2.02503,-2.024932,-2.024873,-2.024824,-2.024774,-2.02478,-2.024685,-2.024658,-2.024521,-2.024409,-2.024253,-2.024101,-2.023923,-2.023835,-2.023674,-2.023519,-2.02336,-2.023192,-2.023041,-2.02289,-2.022748,-2.022586,-2.02246,-2.022352,-2.022276,-2.022161,-2.021997,-2.021908,-2.02176,-2.021613,-2.021461,-2.021312,-2.021174,-2.021031,-2.020891,-2.020759,-2.02066,-2.020621,-2.020468,-2.020335,-2.020207,-2.020091,-2.019955,-2.019788,-2.01963,-2.019468,-2.019302,-2.019142,-2.018984,-2.018837,-2.018685,-2.01854,-2.018393,-2.018234,-2.018074,-2.017929,-2.017794,-2.017641,-2.017472,-2.017316,-2.017157,-2.017002,-2.01685,-2.016696,-2.016548,-2.016401,-2.016247,-2.016093,-2.015961,-2.015815,-2.015663,-2.015511,-2.015384,-2.015251,-2.015095,-2.014938,-2.014783,-2.014639,-2.014484,-2.01434,-2.014189,-2.014034,-2.013898,-2.013793,-2.013669,-2.013516,-2.013366,-2.013215,-2.013068,-2.012912,-2.012748,-2.012574,-2.012419,-2.012262,-2.01209,-2.011937,-2.011782,-2.011636,-2.011484,-2.01133,-2.011196,-2.011057,-2.010895,-2.010742,-2.010576,-2.010425,-2.010298,-2.010171,-2.01002,-2.009886,-2.009757,-2.009608,-2.009482,-2.009347,-2.009219,-2.00912,-2.009,-2.008864,-2.00875,-2.00875,-2.00878,-2.008697,-2.008575,-2.008513,-2.008451,-2.008354,-2.008217,-2.008115,-2.008004,-2.007909,-2.007778,-2.007632,-2.007466,-2.007417,-2.007542,-2.007553,-2.007485,-2.007359,-2.007209,-2.007051,-2.006915,-2.006879,-2.006757,-2.006605,-2.006497,-2.00636,-2.006219,-2.006077,-2.00593,-2.005809,-2.005693,-2.005569,-2.005418,-2.005271,-2.005123,-2.004979,-2.004839,-2.004697,-2.004638,-2.004518,-2.004423,-2.004317,-2.004192,-2.004079,-2.003956,-2.003827,-2.003723,-2.00364,-2.003524,-2.003414,-2.003329,-2.003208,-2.003075,-2.00296,-2.00283,-2.002734,-2.002629,-2.002513,-2.00249,-2.002388,-2.002268,-2.00215,-2.002029,-2.001904,-2.001784,-2.001656,-2.00152,-2.001399,-2.001291,-2.001178,-2.001096,-2.000968,-2.000841,-2.000715,-2.000581,-2.000458,-2.000365,-2.000312,-2.000215,-2.00011,-2.000007,-1.999907,-1.999774,-1.999651,-1.999581,-1.999496,-1.999387,-1.999291,-1.999218,-1.9991,-1.998953,-1.998807,-1.998682,-1.998574,-1.998435,-1.998285,-1.998119,-1.998012,-1.997864,-1.997756,-1.997662,-1.997543,-1.997379,-1.997248,-1.99721,-1.997157,-1.997071,-1.996945,-1.99682,-1.996709,-1.996582,-1.996476,-1.996358,-1.996291,-1.996168,-1.996081,-1.996009,-1.995926,-1.995817,-1.995725,-1.995674,-1.995648,-1.995626,-1.995572,-1.995533,-1.995479,-1.995407,-1.995368,-1.995346,-1.995358,-1.995311,-1.995249,-1.995199,-1.995141,-1.995137,-1.995107,-1.995092,-1.995109,-1.995075,-1.995075,-1.995033,-1.994987,-1.994954,-1.994881,-1.994817,-1.994821,-1.994781,-1.994687,-1.994594,-1.994528,-1.994433,-1.994335,-1.994258,-1.994224,-1.994137,-1.994076,-1.994028,-1.993964,-1.993902,-1.993819,-1.993752,-1.993677,-1.99359,-1.993544,-1.993503,-1.993475,-1.993431,-1.9934,-1.993393,-1.99334,-1.993308,-1.993324,-1.99331,-1.993287,-1.993293,-1.993347,-1.993364,-1.993342,-1.993354,-1.993339,-1.993376,-1.99336,-1.993407,-1.993511,-1.993558,-1.993591,-1.993647,-1.993682,-1.993719,-1.993824,-1.993951,-1.993986,-1.994025,-1.994067,-1.994075,-1.994059,-1.99408,-1.994123,-1.994191,-1.994279,-1.994387,-1.994543,-1.994643,-1.994673,-1.994697,-1.994699,-1.994697,-1.994691,-1.994699,-1.9947,-1.994617,-1.994559,-1.99445,-1.994328,-1.994226,-1.994106,-1.994071,-1.993993,-1.993895,-1.993785,-1.993687,-1.993595,-1.99354,-1.993467,-1.993391,-1.993268,-1.993124,-1.992993,-1.992862,-1.992738,-1.992646,-1.992507,-1.99235,-1.992203,-1.992099,-1.991979,-1.991874,-1.991786,-1.991677,-1.991553,-1.991462,-1.991351,-1.991189,-1.991071,-1.990942,-1.990806,-1.990705,-1.990573,-1.99045,-1.990323,-1.990174,-1.990057,-1.989959,-1.989847,-1.989757,-1.989632,-1.989532,-1.989461,-1.989367,-1.989302,-1.989191,-1.989123,-1.98901,-1.988871,-1.988724,-1.988608,-1.988465,-1.988333,-1.988241,-1.988091,-1.987944,-1.987788,-1.987654,-1.987536,-1.987401,-1.98725,-1.987164,-1.98703,-1.986897,-1.986779,-1.986642,-1.986479,-1.986324,-1.986206,-1.986072,-1.985962,-1.985825,-1.985673,-1.985531,-1.985366,-1.985231,-1.985087,-1.984922,-1.984799,-1.984686,-1.984605,-1.984471,-1.984358,-1.98424,-1.984116,-1.984005,-1.983883,-1.983746,-1.983655,-1.983561,-1.983478,-1.983435,-1.983382,-1.983348,-1.983281,-1.983191,-1.983179,-1.983141,-1.983078,-1.98299,-1.982942,-1.982953,-1.982875,-1.982844,-1.98282,-1.982758,-1.982659,-1.982601,-1.982488,-1.982391,-1.982336,-1.982268,-1.982179,-1.982102,-1.981998,-1.981911,-1.981852,-1.981771,-1.981654,-1.981583,-1.981523,-1.981468,-1.981382,-1.981337,-1.981298,-1.981243,-1.981194,-1.981143,-1.981073,-1.980962,-1.980895,-1.980821,-1.980712,-1.980661,-1.980736,-1.980743,-1.980697,-1.980665,-1.980586,-1.980544,-1.980567,-1.980499,-1.980461,-1.980401,-1.980356,-1.980313,-1.980263,-1.980276,-1.980184,-1.980096,-1.980102,-1.98011,-1.980054,-1.979987,-1.979871,-1.979749,-1.979583,-1.979446,-1.979303,-1.979202,-1.979118,-1.97901,-1.978906,-1.978805,-1.978684,-1.978627,-1.978552,-1.978471,-1.978411,-1.978359,-1.978362,-1.978417,-1.978394,-1.978437,-1.978416,-1.978433,-1.978435,-1.978449,-1.978415,-1.978365,-1.978383,-1.978408,-1.978398,-1.978363,-1.978323,-1.978271,-1.978257,-1.97812,-1.978045,-1.978138,-1.978289,-1.97821,-1.978086,-1.977929,-1.977752,-1.977596,-1.977439,-1.977282,-1.977117,-1.976956,-1.976784,-1.976623,-1.976468,-1.976295,-1.976129,-1.975969,-1.975819,-1.975654,-1.975489,-1.975333,-1.975164,-1.97505,-1.974908,-1.974774,-1.974651,-1.974556,-1.974469,-1.974397,-1.974296,-1.974197,-1.974104,-1.973999,-1.973925,-1.973865,-1.973771,-1.973682,-1.973555,-1.973425,-1.973271,-1.973244,-1.973403,-1.973526,-1.973394,-1.973255,-1.97325,-1.973088,-1.972953,-1.9728,-1.972649,-1.972506,-1.972358,-1.9722,-1.972053,-1.971905,-1.971769,-1.971618,-1.971476,-1.971324,-1.971166,-1.971024,-1.970882,-1.970764,-1.970625,-1.970483,-1.970359,-1.97021,-1.970055,-1.969915,-1.969767,-1.969604,-1.969443,-1.969277,-1.969097,-1.968933,-1.968772,-1.968615,-1.968455,-1.968306,-1.96826,-1.968099,-1.967948,-1.967804,-1.967673,-1.967516,-1.967491,-1.96733,-1.967168,-1.967178,-1.967046,-1.966896,-1.966746,-1.966587,-1.966426,-1.966281,-1.966115,-1.965958,-1.96581,-1.96563,-1.96547,-1.965336,-1.965176,-1.965039,-1.964862,-1.96479,-1.964918,-1.964779,-1.964635,-1.964491,-1.964339,-1.964187,-1.964074,-1.963914,-1.963768,-1.963615,-1.963474,-1.963326,-1.963193,-1.963042,-1.962924,-1.962775,-1.962621,-1.962463,-1.962319,-1.962148,-1.961994,-1.961845,-1.961693,-1.961531,-1.961384,-1.961218,-1.961068,-1.960898,-1.960742,-1.960704,-1.960648,-1.960503,-1.960355,-1.960389,-1.960283,-1.960217,-1.960135,-1.960062,-1.960025,-1.959922,-1.959837,-1.959759,-1.959767,-1.959623,-1.959503,-1.959404,-1.959278,-1.959171,-1.959059,-1.958941,-1.958839,-1.958788,-1.958736,-1.958655,-1.95857,-1.958468,-1.958333,-1.958268,-1.958232,-1.958204,-1.958237,-1.958154,-1.958032,-1.957909,-1.957818,-1.957736,-1.957675,-1.957663,-1.957735,-1.957685,-1.957637,-1.95765,-1.95761,-1.957526,-1.957456,-1.957455,-1.957397,-1.957288,-1.957177,-1.957092,-1.956965,-1.95685,-1.95672,-1.956694,-1.95654,-1.956531,-1.956393,-1.956254,-1.956154,-1.956059,-1.95594,-1.955841,-1.955722,-1.955574,-1.955442,-1.95532,-1.955185,-1.955062,-1.954936,-1.954813,-1.954697,-1.954563,-1.95445,-1.954339,-1.954201,-1.954065,-1.953939,-1.953819,-1.953689,-1.953558,-1.953454,-1.953364,-1.953239,-1.953098,-1.952935,-1.952784,-1.952642,-1.952486,-1.952339,-1.952173,-1.952026,-1.951871,-1.951728,-1.951567,-1.951429,-1.951281,-1.95113,-1.950989,-1.950857,-1.950773,-1.950672,-1.950582,-1.950465,-1.950344,-1.950218,-1.950089,-1.949975,-1.949871,-1.949752,-1.949647,-1.94955,-1.949525,-1.949413,-1.9493,-1.949303,-1.94921,-1.949073,-1.948941,-1.948864,-1.948787,-1.948735,-1.948632,-1.94852,-1.948386,-1.948255,-1.948104,-1.947972,-1.947848,-1.947707,-1.94755,-1.947406,-1.947255,-1.947113,-1.946953,-1.946808,-1.946655,-1.946495,-1.946339,-1.946186,-1.946033,-1.945902,-1.94574,-1.945638,-1.945508,-1.945335,-1.945186,-1.945023,-1.94487,-1.944696,-1.944539,-1.944402,-1.94425,-1.944094,-1.943944,-1.943785,-1.943641,-1.943513,-1.943373,-1.943206,-1.943052,-1.942891,-1.942725,-1.94257,-1.94241,-1.94229,-1.942169,-1.94204,-1.941887,-1.941757,-1.941606,-1.941492,-1.941378,-1.941255,-1.941118,-1.94096,-1.940787,-1.940636,-1.940478,-1.940327,-1.940203,-1.940097,-1.939986,-1.939859,-1.939702,-1.939616,-1.939461,-1.939312,-1.939157,-1.939041,-1.938954,-1.938788,-1.938631,-1.938489,-1.938333,-1.938189,-1.938036,-1.937896,-1.937799,-1.937641,-1.937491,-1.937381,-1.937247,-1.937147,-1.937025,-1.936906,-1.936757,-1.936677,-1.936601,-1.936456,-1.936357,-1.936269,-1.936153,-1.936091,-1.935965,-1.935828,-1.935666,-1.935511,-1.935379,-1.935236,-1.93508,-1.934926,-1.934769,-1.934641,-1.934491,-1.934321,-1.934154,-1.933991,-1.933834,-1.933672,-1.933529,-1.933383,-1.933238,-1.933071,-1.93292,-1.932803,-1.932641,-1.932493,-1.932323,-1.932163,-1.93203,-1.931871,-1.931718,-1.931566,-1.931416,-1.931262,-1.931106,-1.930948,-1.930826,-1.930674,-1.930514,-1.930354,-1.930184,-1.930038,-1.929869,-1.929703,-1.929555,-1.929412,-1.929315,-1.929158,-1.929008,-1.928857,-1.928725,-1.928607,-1.928458,-1.928304,-1.928167,-1.928105,-1.928095,-1.927998,-1.927884,-1.927738,-1.927578,-1.927418,-1.927285,-1.927182,-1.927084,-1.926939,-1.926786,-1.926633,-1.926485,-1.926353,-1.926203,-1.92608,-1.925918,-1.925808,-1.925814,-1.925684,-1.925531,-1.925477,-1.925322,-1.925165,-1.925004,-1.924866,-1.924696,-1.924542,-1.924376,-1.924221,-1.924063,-1.923911,-1.92378,-1.923647,-1.923494,-1.923334,-1.923162,-1.923004,-1.922859,-1.922701,-1.922543,-1.922416,-1.922332,-1.922275,-1.922172,-1.922082,-1.921986,-1.921885,-1.921866,-1.921836,-1.921731,-1.921629,-1.921602,-1.921612,-1.921599,-1.921538,-1.921389,-1.921269,-1.921261,-1.921295,-1.921468,-1.921623,-1.921545,-1.921407,-1.921266,-1.921157,-1.921041,-1.920923,-1.920786,-1.920721,-1.920677,-1.920606,-1.920495,-1.920495,-1.920439,-1.920567,-1.920591,-1.920619,-1.92066,-1.920684,-1.92064,-1.920536,-1.920438,-1.920299,-1.920181,-1.920077,-1.920003,-1.919984,-1.919914,-1.91979,-1.919704,-1.919571,-1.919447,-1.919311,-1.91916,-1.919,-1.918859,-1.918735,-1.91858,-1.918437,-1.918399,-1.918317,-1.918196,-1.918111,-1.918045,-1.917972,-1.917813,-1.917689,-1.917534,-1.917407,-1.917271,-1.917153,-1.917007,-1.91684,-1.916683,-1.916555,-1.916412,-1.916252,-1.916096,-1.915927,-1.915782,-1.915629,-1.915473,-1.915325,-1.915162,-1.915015,-1.914876,-1.914738,-1.914597,-1.914458,-1.914347,-1.914343,-1.914234,-1.914075,-1.913909,-1.913785,-1.913643,-1.913491,-1.913358,-1.913196,-1.91303,-1.912885,-1.912786,-1.912645,-1.912508,-1.912337,-1.912183,-1.912184,-1.912145,-1.912065,-1.911909,-1.911765,-1.911593,-1.911434,-1.91129,-1.91113,-1.911003,-1.910928,-1.910805,-1.910646,-1.910487,-1.910339,-1.910183,-1.910032,-1.909916,-1.909792,-1.909653,-1.909504,-1.909336,-1.909165,-1.909014,-1.908923,-1.908757,-1.908593,-1.908453,-1.908314,-1.908207,-1.908045,-1.907878,-1.907724,-1.907604,-1.907616,-1.90765,-1.907525,-1.907376,-1.907264,-1.907174,-1.907026,-1.906944,-1.906903,-1.906811,-1.9068,-1.906767,-1.906784,-1.906866,-1.906945,-1.906949,-1.906937,-1.906933,-1.90693,-1.906923,-1.906983,-1.906855,-1.906712,-1.906595,-1.906481,-1.906375,-1.906236,-1.906124,-1.906033,-1.906017,-1.905958,-1.905914,-1.905825,-1.905734,-1.905655,-1.905528,-1.905383,-1.90532,-1.905209,-1.905095,-1.904972,-1.904884,-1.904773,-1.904657,-1.904574,-1.904483,-1.90438,-1.904297,-1.904162,-1.904041,-1.903898,-1.903811,-1.903671,-1.903564,-1.903425,-1.903326,-1.903231,-1.903081,-1.902987,-1.902911,-1.902757,-1.902654,-1.902533,-1.902429,-1.902264,-1.902108,-1.901959,-1.901835,-1.901725,-1.901573,-1.901426,-1.901324,-1.901197,-1.90108,-1.90093,-1.900807,-1.900651,-1.90054,-1.900405,-1.900258,-1.900113,-1.899957,-1.899854,-1.899727,-1.899579,-1.899423,-1.899266,-1.899098,-1.898957,-1.898797,-1.898673,-1.89868,-1.89872,-1.898749,-1.898811,-1.898896,-1.899034,-1.899074,-1.899102,-1.899128,-1.899067,-1.899057,-1.899064,-1.899007,-1.898949,-1.898903,-1.898826,-1.898734,-1.898611,-1.898602,-1.898507,-1.898391,-1.898267,-1.898149,-1.89805,-1.897936,-1.897816,-1.897693,-1.897568,-1.897457,-1.897347,-1.89724,-1.897129,-1.896964,-1.896815,-1.896744,-1.896739,-1.896601,-1.89644,-1.896317,-1.896215,-1.896085,-1.896043,-1.895983,-1.89591,-1.89582,-1.895715,-1.895601,-1.895454,-1.895421,-1.895366,-1.895234,-1.895129,-1.895058,-1.89496,-1.894856,-1.894714,-1.894554,-1.894399,-1.894242,-1.89423,-1.894068,-1.893906,-1.89375,-1.893616,-1.893471,-1.8933,-1.893168,-1.893029,-1.89292,-1.892769,-1.892637,-1.892639,-1.892492,-1.892337,-1.892171,-1.892041,-1.891893,-1.891734,-1.891592,-1.891449,-1.891298,-1.891137,-1.890994,-1.890859,-1.890722,-1.890561,-1.890419,-1.89026,-1.890135,-1.889992,-1.889846,-1.889677,-1.889516,-1.889377,-1.889225,-1.88912,-1.88899,-1.888835,-1.888679,-1.888546,-1.888454,-1.888293,-1.888128,-1.887977,-1.887828,-1.887711,-1.88761,-1.887453,-1.887296,-1.887143,-1.886989,-1.886826,-1.88668,-1.886523,-1.886356,-1.886219,-1.886085,-1.885955,-1.885792,-1.885645,-1.885498,-1.885335,-1.885217,-1.885063,-1.884985,-1.884875,-1.884786,-1.884719,-1.884655,-1.884609,-1.884631,-1.884611,-1.884585,-1.884564,-1.884574,-1.884588,-1.884619,-1.884673,-1.884743,-1.884804,-1.884881,-1.88495,-1.885047,-1.885128,-1.885171,-1.88527,-1.88536,-1.885431,-1.885538,-1.885605,-1.885681,-1.885762,-1.885805,-1.885874,-1.885956,-1.886101,-1.886222,-1.886358,-1.886506,-1.886665,-1.886791,-1.886941,-1.887065,-1.887211,-1.887339,-1.887488,-1.887596,-1.88766,-1.887649,-1.887619,-1.887503,-1.887441,-1.887435,-1.887377,-1.887233,-1.887151,-1.887099,-1.887026,-1.886901,-1.886757,-1.886673,-1.886571,-1.886496,-1.886466,-1.886445,-1.886363,-1.88623,-1.886129,-1.886046,-1.885929,-1.885868,-1.885797,-1.885707,-1.885585,-1.885534,-1.885599,-1.88566,-1.88582,-1.885895,-1.885753,-1.885584,-1.885419,-1.885252,-1.885097,-1.884956,-1.884806,-1.884694,-1.884669,-1.884654,-1.884581,-1.8845,-1.88439,-1.884301,-1.884216,-1.884137,-1.884071,-1.884052,-1.883975,-1.883876,-1.883788,-1.883697,-1.883656,-1.883679,-1.883605,-1.883471,-1.883378,-1.883311,-1.883267,-1.883124,-1.883015,-1.882956,-1.882874,-1.882834,-1.882805,-1.882835,-1.882764,-1.88275,-1.882755,-1.882664,-1.882687,-1.882655,-1.882526,-1.88238,-1.882302,-1.882241,-1.882081,-1.882038,-1.881932,-1.881851,-1.881767,-1.881727,-1.881628,-1.88152,-1.881417,-1.88133,-1.881256,-1.881188,-1.881076,-1.881004,-1.880905,-1.880834,-1.880728,-1.880688,-1.880699,-1.88057,-1.880436,-1.880365,-1.880286,-1.88026,-1.880129,-1.880111,-1.880029,-1.879884,-1.879811,-1.879825,-1.87979,-1.879824,-1.879709,-1.879593,-1.879478,-1.879403,-1.879347,-1.879318,-1.879261,-1.879231,-1.87914,-1.879024,-1.878929,-1.878866,-1.878761,-1.87873,-1.878697,-1.878579,-1.878548,-1.878473,-1.878484,-1.878374,-1.878218,-1.878227,-1.878112,-1.878005,-1.878029,-1.877968,-1.877862,-1.877776,-1.877638,-1.877532,-1.877423,-1.877356,-1.877302,-1.87728,-1.877287,-1.877242,-1.877256,-1.877184,-1.877131,-1.87705,-1.877023,-1.877008,-1.87702,-1.877077,-1.877121,-1.877066,-1.877183,-1.877185,-1.877154,-1.877162,-1.877157,-1.877198,-1.877185,-1.877112,-1.877106,-1.877164,-1.877179,-1.877189,-1.877246,-1.877264,-1.877236,-1.877134,-1.877051,-1.877097,-1.877077,-1.877082,-1.877197,-1.877287,-1.87729,-1.877318,-1.877368,-1.87752,-1.87761,-1.877571,-1.877581,-1.87759,-1.877651,-1.877699,-1.877774,-1.877865,-1.877986,-1.878114,-1.87816,-1.878238,-1.878301,-1.878393,-1.878435,-1.87852,-1.878574,-1.878683,-1.878748,-1.878839,-1.878986,-1.879082,-1.879187,-1.8792,-1.879159,-1.879213,-1.879252,-1.87928,-1.879368,-1.879444,-1.879536,-1.879599,-1.87964,-1.879682,-1.879684,-1.879739,-1.879781,-1.879799,-1.879876,-1.879956,-1.880031,-1.880096,-1.880212,-1.880276,-1.880343,-1.880342,-1.880336,-1.880369,-1.880441,-1.880499,-1.880592,-1.880646,-1.880738,-1.880819,-1.880931,-1.880976,-1.881028,-1.881089,-1.88117,-1.881241,-1.881336,-1.881387,-1.881423,-1.881473,-1.881528,-1.881628,-1.881738,-1.881841,-1.881857,-1.881871,-1.881906,-1.881932,-1.881995,-1.882011,-1.882082,-1.882115,-1.882136,-1.88221,-1.882277,-1.882382,-1.882505,-1.882525,-1.882515,-1.882548,-1.882577,-1.882691,-1.882795,-1.882914,-1.88302,-1.883109,-1.883124,-1.883074,-1.883031,-1.883028,-1.883108,-1.883152,-1.88316,-1.883228,-1.883327,-1.883413,-1.883491,-1.883524,-1.883598,-1.883747,-1.88387,-1.883979,-1.884076,-1.884237,-1.884371,-1.884492,-1.884635,-1.884735,-1.88485,-1.885001,-1.885104,-1.885198,-1.885297,-1.885411,-1.885566,-1.885732,-1.885843,-1.885982,-1.886155,-1.886308,-1.886427,-1.88651,-1.886608,-1.886722,-1.886867,-1.886977,-1.887107,-1.887261,-1.887412,-1.887569,-1.887716,-1.887851,-1.887922,-1.888062,-1.888083,-1.88818,-1.888253,-1.888386,-1.88854,-1.88866,-1.888787,-1.888922,-1.889059,-1.889176,-1.8893,-1.889379,-1.889502,-1.889653,-1.889798,-1.889941,-1.890065,-1.890123,-1.890174,-1.890327,-1.890492,-1.890646,-1.890774,-1.890859,-1.891008,-1.891123,-1.891252,-1.891403,-1.891566,-1.891721,-1.891874,-1.892005,-1.892161,-1.892312,-1.892459,-1.892611,-1.892747,-1.892896,-1.893039,-1.893189,-1.893297,-1.893359,-1.893522,-1.893479,-1.893566,-1.893595,-1.893745,-1.893874,-1.894011,-1.893982,-1.893958,-1.893886,-1.893848,-1.893848,-1.893922,-1.89396,-1.89406,-1.894129,-1.894247,-1.894351,-1.894442,-1.894564,-1.894667,-1.894817,-1.894911,-1.894984,-1.895124,-1.895252,-1.895392,-1.895512,-1.895652,-1.895752,-1.895873,-1.896037,-1.896203,-1.896306,-1.896388,-1.896529,-1.896647,-1.896784,-1.896919,-1.897067,-1.897186,-1.897261,-1.897339,-1.897456,-1.89757,-1.897688,-1.897828,-1.897959,-1.898108,-1.898245,-1.898389,-1.898525,-1.898682,-1.898842,-1.898997,-1.899165,-1.899329,-1.899496,-1.899654,-1.899803,-1.899957,-1.900124,-1.900298,-1.900451,-1.900603,-1.900754,-1.900901,-1.901017,-1.90116,-1.901279,-1.901431,-1.901531,-1.901635,-1.901785,-1.901894,-1.902006,-1.902123,-1.902198,-1.902288,-1.902436,-1.902513,-1.902535,-1.902608,-1.902741,-1.90284,-1.902982,-1.903117,-1.903219,-1.903314,-1.903426,-1.903498,-1.903537,-1.903639,-1.90378,-1.90391,-1.90395,-1.904048,-1.90419,-1.904335,-1.904436,-1.90441,-1.904361,-1.904354,-1.904434,-1.904516,-1.904627,-1.904618,-1.904596,-1.904582,-1.904709,-1.904779,-1.904813,-1.90484,-1.90494,-1.905052,-1.905041,-1.905067,-1.905162,-1.90529,-1.905361,-1.905515,-1.905623,-1.905703,-1.905769,-1.905838,-1.905974,-1.90608,-1.906113,-1.906128,-1.906217,-1.906304,-1.906255,-1.906232,-1.906328,-1.906376,-1.906432,-1.906545,-1.90656,-1.906592,-1.906635,-1.906677,-1.906788,-1.906878,-1.906944,-1.906867,-1.906882,-1.906895,-1.906877,-1.906944,-1.907045,-1.907166,-1.907269,-1.907326,-1.907329,-1.907469,-1.907637,-1.90777,-1.907832,-1.907939,-1.907969,-1.907871,-1.907913,-1.907869,-1.907946,-1.908016,-1.908091,-1.908204,-1.908346,-1.90842,-1.908412,-1.90836,-1.908293,-1.908258,-1.908385,-1.908458,-1.908588,-1.908677,-1.908614,-1.90856,-1.908594,-1.908646,-1.908728,-1.908801,-1.908877,-1.908909,-1.908968,-1.909046,-1.909107,-1.909149,-1.909229,-1.909351,-1.909381,-1.909475,-1.909581,-1.909664,-1.909772,-1.909934,-1.910092,-1.910162,-1.910086,-1.910027,-1.909988,-1.909983,-1.909997,-1.910062,-1.910097,-1.909972,-1.909985,-1.909983,-1.910053,-1.910007,-1.909981,-1.909999,-1.910053,-1.910085,-1.91006,-1.910113,-1.910131,-1.910042,-1.91006,-1.910101,-1.91003,-1.909995,-1.910042,-1.909987,-1.909963,-1.909893,-1.909898,-1.909894,-1.909991,-1.909948,-1.909819,-1.909753,-1.909823,-1.909903,-1.909759,-1.909666,-1.909652,-1.90979,-1.909802,-1.909717,-1.909634,-1.909661,-1.909602,-1.909511,-1.909574,-1.909693,-1.909747,-1.909848,-1.909793,-1.909738,-1.909838,-1.909938,-1.909988,-1.91001,-1.909991,-1.910036,-1.910015,-1.910096,-1.910108,-1.910101,-1.910174,-1.910237,-1.91036,-1.91043,-1.910518,-1.910515,-1.910518,-1.910607,-1.91064,-1.910729,-1.910829,-1.910949,-1.911038,-1.911096,-1.911141,-1.911201,-1.911295,-1.911397,-1.911517,-1.911639,-1.911745,-1.91188,-1.911886,-1.911921,-1.912027,-1.912148,-1.912298,-1.912346,-1.912465,-1.912568,-1.912561,-1.9127,-1.91268,-1.912735,-1.912741,-1.912804,-1.912898,-1.912957,-1.913037,-1.913152,-1.913228,-1.913312,-1.913406,-1.913482,-1.913609,-1.913698,-1.913781,-1.913932,-1.914046,-1.914141,-1.914211,-1.914327,-1.914412,-1.91441,-1.914487,-1.914598,-1.914665,-1.91469,-1.914779,-1.914789,-1.914844,-1.914892,-1.914888,-1.914998,-1.91502,-1.915009,-1.915102,-1.915161,-1.915238,-1.915212,-1.91527,-1.915342,-1.91535,-1.915427,-1.91545,-1.915487,-1.915469,-1.915415,-1.915432,-1.915484,-1.915564,-1.915604,-1.915663,-1.915717,-1.915756,-1.915716,-1.91578,-1.915822,-1.915926,-1.915961,-1.916074,-1.916193,-1.916233,-1.916246,-1.916334,-1.916414,-1.916373,-1.916442,-1.916382,-1.916395,-1.916289,-1.916285,-1.916243,-1.916142,-1.916109,-1.916108,-1.916038,-1.916,-1.916025,-1.916057,-1.915968,-1.915903,-1.915837,-1.915757,-1.915676,-1.915589,-1.915516,-1.915485,-1.915354,-1.91537,-1.915357,-1.915314,-1.915195,-1.915168,-1.915084,-1.914962,-1.914914,-1.914783,-1.914636,-1.914585,-1.914609,-1.914534,-1.914393,-1.914374,-1.914363,-1.914282,-1.914274,-1.914207,-1.914124,-1.914054,-1.913925,-1.913798,-1.913641,-1.913528,-1.913428,-1.9134,-1.913475,-1.913373,-1.913235,-1.913087,-1.913164,-1.9132,-1.91317,-1.913461,-1.913378,-1.913234,-1.913091,-1.912937,-1.912778,-1.912626,-1.912484,-1.912327,-1.912195,-1.912165,-1.912046,-1.911887,-1.911783,-1.91174,-1.911601,-1.911525,-1.911479,-1.911503,-1.911538,-1.911574,-1.911602,-1.911512,-1.911547,-1.91146,-1.911444,-1.911317,-1.911167,-1.911003,-1.910852,-1.91071,-1.910557,-1.910422,-1.91033,-1.910227,-1.910092,-1.910003,-1.909947,-1.909823,-1.909739,-1.909617,-1.909508,-1.909401,-1.909271,-1.909206,-1.909141,-1.909108,-1.909006,-1.908962,-1.908954,-1.908973,-1.9089,-1.908865,-1.908855,-1.908783,-1.908725,-1.908681,-1.908529,-1.908442,-1.908299,-1.908173,-1.908038,-1.907892,-1.907808,-1.90772,-1.907647,-1.907572,-1.907558,-1.907472,-1.907387,-1.907276,-1.907148,-1.907195,-1.907171,-1.907128,-1.90703,-1.906921,-1.906789,-1.906655,-1.906527,-1.906418,-1.906317,-1.906196,-1.906121,-1.906049,-1.906018,-1.905942,-1.905778,-1.905628,-1.905469,-1.905315,-1.905204,-1.905092,-1.905048,-1.904912,-1.904876,-1.90478,-1.904649,-1.904653,-1.90453,-1.904435,-1.904345,-1.904222,-1.90416,-1.904121,-1.904196,-1.904082,-1.903969,-1.903868,-1.903737,-1.903621,-1.903525,-1.903445,-1.903387,-1.903377,-1.903251,-1.903112,-1.903021,-1.902988,-1.902943,-1.902957,-1.902891,-1.902832,-1.90283,-1.902838,-1.902768,-1.902689,-1.902638,-1.902552,-1.902461,-1.902394,-1.902327,-1.902252,-1.902187,-1.902126,-1.902075,-1.902003,-1.901939,-1.901871,-1.901826,-1.901798,-1.901711,-1.901655,-1.901628,-1.901572,-1.90152,-1.901497,-1.901445,-1.90139,-1.901303,-1.901146,-1.900984,-1.900831,-1.900674,-1.900526,-1.900368,-1.900223,-1.900136,-1.900081,-1.900068,-1.899976,-1.899896,-1.899827,-1.899708,-1.899575,-1.899472,-1.899339,-1.899221,-1.899105,-1.898947,-1.898835,-1.898706,-1.898553,-1.898399,-1.898244,-1.898101,-1.897974,-1.897824,-1.897665,-1.897517,-1.897376,-1.897443,-1.897576,-1.897706,-1.897769,-1.897644,-1.897467,-1.89732,-1.897176,-1.897036,-1.896915,-1.896821,-1.896651,-1.896519,-1.896362,-1.896208,-1.896056,-1.895913,-1.895753,-1.895605,-1.89547,-1.895323,-1.895195,-1.895123,-1.894968,-1.894826,-1.894738,-1.894617,-1.894539,-1.89442,-1.894318,-1.894227,-1.894127,-1.89403,-1.893966,-1.893844,-1.893722,-1.893604,-1.893535,-1.893542,-1.893498,-1.89342,-1.893527,-1.893644,-1.893778,-1.893726,-1.893768,-1.893638,-1.893666,-1.893676,-1.893792,-1.893835,-1.893855],"lat":[53.750033,53.750062,53.750118,53.750056,53.750002,53.74995,53.749892,53.749824,53.749742,53.749772,53.749778,53.749781,53.749705,53.749689,53.749714,53.749724,53.749764,53.749764,53.749747,53.749751,53.749718,53.749726,53.749716,53.749719,53.749701,53.749662,53.749613,53.749618,53.74963,53.749663,53.749633,53.749603,53.749607,53.749607,53.749565,53.749556,53.749594,53.74954,53.749613,53.74965,53.749702,53.749723,53.749744,53.749731,53.749752,53.749783,53.749799,53.74982,53.749795,53.749822,53.749814,53.749834,53.749836,53.749846,53.749827,53.749805,53.749809,53.749803,53.749771,53.749739,53.749727,53.749728,53.749702,53.749705,53.749726,53.749745,53.749696,53.749649,53.749648,53.749649,53.749589,53.749548,53.749554,53.749543,53.749492,53.749447,53.749447,53.749463,53.749429,53.749397,53.749382,53.74932,53.749285,53.749247,53.74924,53.749193,53.74925,53.749261,53.749221,53.749208,53.749192,53.749207,53.749195,53.749151,53.749137,53.749148,53.749065,53.748979,53.749076,53.749171,53.749194,53.749171,53.74914,53.749156,53.749173,53.74917,53.749111,53.749065,53.749073,53.749145,53.749215,53.749203,53.74916,53.749189,53.749212,53.749204,53.74922,53.74927,53.749344,53.749409,53.749452,53.749483,53.749564,53.749533,53.749571,53.749589,53.749584,53.74959,53.749619,53.749616,53.749646,53.74968,53.749696,53.749734,53.749747,53.749734,53.749747,53.749769,53.749718,53.749657,53.749565,53.749471,53.749397,53.749338,53.749273,53.749188,53.749195,53.749108,53.749035,53.748946,53.74885,53.748781,53.748689,53.748593,53.748503,53.748411,53.748382,53.748301,53.748211,53.748121,53.74803,53.747938,53.747852,53.747784,53.747695,53.747607,53.747525,53.747435,53.747344,53.747265,53.747186,53.747094,53.747002,53.746925,53.746831,53.746741,53.746655,53.746561,53.746466,53.746381,53.746283,53.746213,53.746141,53.746049,53.745959,53.745859,53.745762,53.745671,53.745592,53.745512,53.745408,53.745304,53.745218,53.745127,53.745035,53.744946,53.744858,53.744763,53.74467,53.744578,53.744483,53.744393,53.744298,53.744204,53.744124,53.744026,53.743943,53.743868,53.743769,53.743681,53.743604,53.743535,53.743524,53.743491,53.743386,53.743295,53.743197,53.743107,53.743018,53.742956,53.742903,53.742816,53.742724,53.742639,53.742545,53.742447,53.742358,53.742258,53.742212,53.742118,53.742031,53.74195,53.741867,53.741773,53.74168,53.741603,53.741533,53.74146,53.741394,53.741296,53.741212,53.74112,53.741054,53.740978,53.74088,53.740782,53.740709,53.740668,53.740572,53.74048,53.740377,53.740285,53.740212,53.740119,53.740033,53.739938,53.739876,53.739823,53.739746,53.739685,53.739601,53.739513,53.739413,53.739324,53.739226,53.73913,53.739037,53.738948,53.738888,53.738847,53.738852,53.738847,53.738844,53.73887,53.738837,53.73877,53.738852,53.738855,53.738564,53.738529,53.738539,53.738491,53.738511,53.738517,53.73855,53.738597,53.738673,53.738635,53.738604,53.73858,53.738561,53.738541,53.738535,53.738575,53.738562,53.738564,53.738528,53.738378,53.738317,53.738253,53.738296,53.738188,53.738144,53.737697,53.737597,53.737507,53.737413,53.737327,53.73723,53.737169,53.737158,53.737231,53.737222,53.737136,53.737026,53.736944,53.736872,53.736811,53.73675,53.736658,53.736601,53.736521,53.736489,53.736385,53.736318,53.736308,53.736232,53.73617,53.736083,53.73601,53.73594,53.735871,53.735801,53.735751,53.735675,53.735625,53.735662,53.735569,53.735481,53.73551,53.735553,53.735619,53.735669,53.735732,53.735776,53.735798,53.735803,53.735801,53.735826,53.73587,53.735911,53.735896,53.735877,53.735874,53.73583,53.735837,53.735912,53.735945,53.735945,53.735973,53.735952,53.735965,53.736025,53.736001,53.736013,53.735929,53.735857,53.735784,53.735705,53.735609,53.735529,53.735449,53.735352,53.735326,53.735134,53.734976,53.734926,53.734884,53.73479,53.734729,53.73466,53.73461,53.734508,53.734477,53.7344,53.734311,53.734323,53.734236,53.734229,53.734159,53.734105,53.73411,53.734136,53.734143,53.734076,53.734002,53.733902,53.733836,53.733766,53.733847,53.733879,53.733933,53.733996,53.734045,53.734118,53.734145,53.734155,53.734231,53.734295,53.734305,53.734258,53.734342,53.734304,53.734339,53.734402,53.734486,53.734515,53.734558,53.734636,53.734709,53.734785,53.734838,53.734911,53.734968,53.735017,53.735074,53.735068,53.735096,53.735124,53.735156,53.735169,53.735196,53.735264,53.735284,53.735236,53.735327,53.735369,53.735372,53.735394,53.73536,53.735336,53.73533,53.735279,53.735193,53.735254,53.735244,53.735224,53.735176,53.735139,53.735207,53.735254,53.735234,53.735153,53.735099,53.735055,53.735029,53.73494,53.734849,53.734761,53.73482,53.734881,53.734882,53.734827,53.73483,53.734747,53.734681,53.734617,53.734622,53.734569,53.734501,53.734438,53.734465,53.734439,53.734354,53.734429,53.734436,53.734362,53.734364,53.734268,53.734187,53.734127,53.734051,53.733964,53.733867,53.733795,53.733731,53.733653,53.73356,53.733505,53.733421,53.733331,53.733247,53.733152,53.733085,53.732987,53.7329,53.732824,53.732739,53.732655,53.732588,53.732534,53.732469,53.73242,53.732321,53.732217,53.732124,53.732038,53.731955,53.731865,53.73179,53.731697,53.731617,53.731521,53.731431,53.731396,53.731295,53.7312,53.731099,53.731004,53.730903,53.730816,53.73075,53.730675,53.730593,53.730529,53.730461,53.730383,53.730294,53.730198,53.730117,53.730034,53.729926,53.729841,53.729763,53.729695,53.729622,53.729581,53.729503,53.729431,53.729385,53.729294,53.729203,53.729118,53.729038,53.728942,53.728857,53.728812,53.72872,53.728633,53.728537,53.728451,53.72836,53.728269,53.728171,53.728078,53.727994,53.727899,53.727809,53.727712,53.727614,53.727516,53.727422,53.727327,53.727228,53.727132,53.727035,53.726937,53.726848,53.726769,53.726679,53.726582,53.726501,53.72639,53.726296,53.726205,53.726113,53.726045,53.725951,53.725863,53.725766,53.725667,53.725584,53.725494,53.725425,53.725362,53.725288,53.725205,53.725118,53.725032,53.724951,53.724872,53.724801,53.724736,53.724656,53.724562,53.724475,53.724399,53.724404,53.724347,53.724295,53.724213,53.724151,53.724088,53.724017,53.724069,53.724133,53.724201,53.724266,53.724321,53.724396,53.724475,53.724411,53.724321,53.724244,53.724156,53.72408,53.724025,53.723941,53.723862,53.723777,53.723724,53.723663,53.723596,53.723526,53.723436,53.723371,53.723299,53.723227,53.723176,53.723161,53.723085,53.723013,53.722912,53.722823,53.722764,53.722702,53.722612,53.722519,53.722428,53.722333,53.722242,53.722143,53.722046,53.721948,53.72185,53.721754,53.721662,53.721558,53.721462,53.721366,53.721279,53.721253,53.7212,53.721109,53.721036,53.720966,53.720889,53.720818,53.720755,53.720687,53.72061,53.720561,53.720504,53.720463,53.720422,53.720347,53.720279,53.720219,53.720142,53.720052,53.71997,53.71988,53.71981,53.719757,53.719668,53.719585,53.719492,53.719408,53.719308,53.719267,53.719176,53.719079,53.718982,53.718891,53.7188,53.7187,53.718615,53.718538,53.71845,53.71836,53.718284,53.71821,53.718138,53.718071,53.717978,53.717912,53.71784,53.717782,53.717692,53.717602,53.717509,53.717419,53.717336,53.71725,53.717204,53.717113,53.717025,53.716944,53.716856,53.716766,53.716679,53.716605,53.716554,53.716478,53.716399,53.716317,53.716219,53.716127,53.716033,53.715942,53.715845,53.715748,53.715657,53.715567,53.715471,53.715382,53.715294,53.715191,53.715098,53.714999,53.714928,53.71495,53.714963,53.714987,53.714982,53.714981,53.714971,53.714952,53.714935,53.714906,53.714874,53.714859,53.714822,53.714784,53.714751,53.714726,53.714709,53.714738,53.714744,53.714748,53.714726,53.714681,53.71466,53.714647,53.714637,53.714602,53.714608,53.714619,53.714612,53.71459,53.714566,53.714579,53.714554,53.714517,53.714485,53.71451,53.714474,53.714484,53.714492,53.71449,53.714473,53.714448,53.714441,53.71442,53.714412,53.714409,53.714413,53.714371,53.714356,53.714333,53.714326,53.714351,53.714342,53.714168,53.714169,53.71423,53.714258,53.714169,53.714094,53.714004,53.713911,53.713819,53.713738,53.713643,53.713551,53.713458,53.713364,53.713271,53.713178,53.713087,53.712993,53.712893,53.71281,53.712727,53.712641,53.712553,53.712464,53.712373,53.712275,53.712186,53.712085,53.711997,53.711908,53.711816,53.711726,53.711649,53.711555,53.711468,53.711382,53.711301,53.71125,53.711186,53.71111,53.711018,53.710928,53.710839,53.710752,53.710672,53.710585,53.710512,53.710432,53.710345,53.710265,53.71017,53.710084,53.709994,53.709906,53.709814,53.709722,53.709638,53.70955,53.709459,53.709367,53.709274,53.70917,53.709075,53.708987,53.70889,53.708817,53.708737,53.70866,53.70858,53.708499,53.708415,53.708336,53.708253,53.70818,53.708081,53.707992,53.707922,53.707838,53.70778,53.707694,53.707611,53.707525,53.707451,53.707384,53.707325,53.707254,53.707189,53.707124,53.707055,53.706963,53.706879,53.706802,53.706735,53.70667,53.706607,53.706535,53.706473,53.706407,53.706314,53.706263,53.706204,53.706151,53.706091,53.706029,53.705973,53.705923,53.70585,53.70576,53.705708,53.705737,53.705701,53.705601,53.705511,53.705553,53.705635,53.705638,53.705656,53.705641,53.705576,53.705502,53.70545,53.705409,53.705343,53.705294,53.705229,53.705167,53.705112,53.70506,53.705012,53.704988,53.704923,53.704848,53.704775,53.704701,53.704629,53.704575,53.704538,53.704456,53.704364,53.704277,53.704187,53.704095,53.704044,53.703962,53.703876,53.703784,53.703695,53.703604,53.703513,53.703423,53.703349,53.703249,53.703159,53.703069,53.70297,53.702874,53.702775,53.702688,53.702599,53.702513,53.702418,53.702327,53.702234,53.702151,53.702054,53.701959,53.701873,53.70179,53.701716,53.701621,53.701549,53.701474,53.701384,53.701286,53.701196,53.701114,53.70102,53.700929,53.700844,53.700763,53.700682,53.700585,53.700502,53.700407,53.700321,53.700233,53.700146,53.700054,53.699963,53.699865,53.69976,53.699662,53.699565,53.699475,53.699379,53.699282,53.699189,53.699099,53.698998,53.698897,53.698804,53.698714,53.698625,53.698539,53.698451,53.698358,53.698268,53.698174,53.698072,53.697978,53.697893,53.697806,53.697712,53.697617,53.697525,53.697426,53.697333,53.697235,53.697139,53.697043,53.696954,53.696862,53.69678,53.696687,53.696608,53.696509,53.696402,53.696311,53.696231,53.696135,53.696035,53.695947,53.695853,53.695768,53.695682,53.695592,53.695499,53.695408,53.695315,53.695218,53.695126,53.695033,53.694929,53.694834,53.694733,53.694637,53.694561,53.694472,53.694389,53.694304,53.694202,53.694111,53.694009,53.693922,53.693843,53.693769,53.69369,53.693614,53.693529,53.693452,53.693391,53.69334,53.693278,53.693214,53.693153,53.693088,53.693006,53.692938,53.692837,53.692758,53.692691,53.692621,53.692544,53.692466,53.692379,53.692289,53.692207,53.692133,53.692077,53.692017,53.691943,53.691884,53.691795,53.691703,53.69163,53.691574,53.691505,53.691462,53.691394,53.691339,53.691271,53.691247,53.691262,53.691247,53.691233,53.691218,53.691214,53.691187,53.691202,53.691194,53.69115,53.691104,53.691045,53.691065,53.69112,53.691055,53.691027,53.690988,53.690958,53.690964,53.691012,53.691029,53.691075,53.691156,53.691214,53.69125,53.691269,53.691289,53.691338,53.691342,53.691381,53.69142,53.691479,53.691492,53.691502,53.691522,53.691571,53.691612,53.691649,53.691686,53.691715,53.691738,53.691792,53.691808,53.691819,53.69184,53.691867,53.691888,53.691944,53.691965,53.691981,53.691998,53.692011,53.69204,53.692096,53.692115,53.692115,53.69214,53.692162,53.692142,53.692083,53.692061,53.691996,53.691939,53.691936,53.691857,53.691769,53.691669,53.691569,53.691471,53.691369,53.691268,53.691176,53.691094,53.691004,53.690913,53.690809,53.690733,53.690639,53.690547,53.690455,53.690361,53.69027,53.69017,53.690067,53.68997,53.689919,53.689847,53.689783,53.68972,53.68967,53.689635,53.68955,53.689445,53.689355,53.689272,53.689186,53.689152,53.689055,53.688966,53.688881,53.688782,53.688699,53.688616,53.688525,53.688429,53.688344,53.688254,53.68816,53.688076,53.687982,53.687893,53.687799,53.687698,53.68761,53.687511,53.687417,53.687329,53.687264,53.687172,53.687089,53.687001,53.686909,53.686819,53.686721,53.686625,53.68655,53.686469,53.686387,53.686302,53.686214,53.686126,53.686036,53.685958,53.685866,53.68579,53.685692,53.68561,53.685518,53.685437,53.685342,53.685255,53.685166,53.685082,53.684994,53.684906,53.68483,53.684747,53.684669,53.68458,53.684489,53.684412,53.684337,53.684239,53.684147,53.684052,53.683952,53.683885,53.683799,53.683715,53.683637,53.683556,53.68346,53.68336,53.683274,53.68318,53.683094,53.682997,53.682924,53.682834,53.682741,53.682656,53.682567,53.682482,53.682393,53.682299,53.682216,53.682122,53.682033,53.681951,53.681874,53.681786,53.681702,53.681614,53.681543,53.681459,53.681394,53.681327,53.681254,53.681181,53.681112,53.681054,53.681006,53.680958,53.680895,53.680835,53.68079,53.680736,53.680677,53.680627,53.680573,53.680516,53.68049,53.680453,53.68041,53.68038,53.680319,53.680275,53.680219,53.680164,53.680119,53.680076,53.680014,53.679958,53.679896,53.679848,53.679794,53.679708,53.679642,53.679584,53.679513,53.679417,53.67932,53.679224,53.679131,53.679036,53.678948,53.678854,53.678754,53.678651,53.678561,53.67847,53.678376,53.67829,53.678209,53.678121,53.678029,53.677941,53.677862,53.677792,53.677701,53.677608,53.677508,53.677421,53.677332,53.677249,53.677164,53.677063,53.676971,53.676876,53.676788,53.676689,53.6766,53.676511,53.676416,53.67632,53.676228,53.676131,53.676036,53.675946,53.675856,53.675762,53.675668,53.675573,53.675488,53.675403,53.675312,53.675232,53.67515,53.675055,53.674969,53.674876,53.674803,53.674721,53.674639,53.674557,53.674479,53.674404,53.674325,53.674236,53.674155,53.674073,53.673991,53.673921,53.673854,53.673766,53.673683,53.673609,53.673529,53.673462,53.673378,53.673289,53.673185,53.673093,53.672998,53.67292,53.672859,53.672789,53.672714,53.67264,53.672558,53.672502,53.672437,53.672366,53.672297,53.672239,53.672171,53.672099,53.672024,53.671955,53.671882,53.671799,53.67172,53.671626,53.67153,53.671439,53.671334,53.671244,53.671153,53.671052,53.670952,53.670852,53.670762,53.670675,53.67058,53.670497,53.670402,53.670314,53.670219,53.670133,53.670053,53.66997,53.669897,53.669814,53.669763,53.669701,53.669642,53.669584,53.669521,53.669464,53.6694,53.669325,53.669248,53.669171,53.669102,53.669015,53.668917,53.668836,53.668758,53.668682,53.668606,53.668525,53.668456,53.668492,53.668402,53.668324,53.668246,53.668154,53.668059,53.667969,53.667885,53.667783,53.667694,53.6676,53.66751,53.667421,53.667334,53.667238,53.667138,53.667044,53.666941,53.666838,53.666743,53.666652,53.666568,53.666465,53.666375,53.666275,53.666189,53.666096,53.666009,53.665917,53.66583,53.665751,53.665656,53.665576,53.665491,53.665392,53.665299,53.665204,53.665123,53.665042,53.664958,53.664867,53.664777,53.664678,53.664577,53.664479,53.664385,53.664291,53.664187,53.664095,53.663993,53.663898,53.663805,53.663703,53.663613,53.663519,53.663418,53.663324,53.663233,53.663137,53.663035,53.662936,53.66284,53.662745,53.662643,53.662539,53.662449,53.662357,53.662266,53.662175,53.662088,53.661999,53.661913,53.661831,53.661743,53.661656,53.66156,53.661465,53.661374,53.661285,53.661195,53.661095,53.660996,53.660905,53.66082,53.660728,53.660628,53.660533,53.660446,53.660367,53.660298,53.660229,53.660177,53.660131,53.660081,53.660019,53.659977,53.659938,53.65991,53.659894,53.659895,53.659911,53.659933,53.659976,53.66004,53.660115,53.660182,53.660212,53.660215,53.660219,53.660205,53.660205,53.660213,53.660183,53.66015,53.660134,53.660116,53.660087,53.660067,53.660028,53.659964,53.659874,53.659809,53.659794,53.659747,53.659673,53.659597,53.659514,53.659447,53.659359,53.659292,53.659253,53.659182,53.65911,53.659041,53.65895,53.658889,53.658824,53.658737,53.658662,53.658576,53.6585,53.658431,53.658368,53.658282,53.658215,53.65814,53.658048,53.658025,53.657938,53.657884,53.657846,53.657798,53.657741,53.657701,53.657665,53.657617,53.657582,53.657538,53.657486,53.657444,53.657419,53.657379,53.657334,53.657281,53.657215,53.657154,53.657095,53.657029,53.656968,53.656902,53.65683,53.656732,53.656636,53.656539,53.656443,53.656353,53.656261,53.656172,53.656083,53.655989,53.655892,53.655798,53.655701,53.655621,53.655584,53.655548,53.655526,53.655437,53.655362,53.655276,53.655189,53.655155,53.655102,53.65506,53.654999,53.654913,53.65483,53.654754,53.65467,53.65459,53.654511,53.654419,53.654343,53.654264,53.654186,53.654096,53.654007,53.653943,53.653866,53.653789,53.653707,53.653621,53.65353,53.65344,53.653345,53.653252,53.653155,53.653064,53.652972,53.652882,53.652782,53.652692,53.652589,53.652497,53.6524,53.652319,53.652236,53.652154,53.652061,53.651965,53.651878,53.651787,53.651699,53.651625,53.651541,53.651448,53.651364,53.651285,53.651208,53.65113,53.651062,53.650981,53.6509,53.650831,53.650766,53.650717,53.650657,53.65062,53.650596,53.6506,53.650612,53.650548,53.650484,53.6504,53.650322,53.650261,53.650238,53.650223,53.650183,53.650126,53.650048,53.64997,53.649907,53.649815,53.649726,53.649632,53.649535,53.649443,53.649418,53.649495,53.649543,53.649512,53.649582,53.649594,53.649598,53.649637,53.649654,53.649668,53.649665,53.649624,53.649638,53.649658,53.649647,53.649657,53.649635,53.649611,53.649612,53.649636,53.649654,53.649684,53.649691,53.649726,53.649677,53.649687,53.64971,53.649661,53.649671,53.649707,53.649774,53.649775,53.649772,53.649808,53.649836,53.649879,53.649914,53.649945,53.650004,53.650013,53.650067,53.650017,53.649923,53.649838,53.64975,53.64966,53.64958,53.649507,53.649423,53.649331,53.649238,53.649149,53.649063,53.648976,53.648887,53.648801,53.648708,53.648622,53.648521,53.648431,53.648335,53.648242,53.648147,53.648054,53.647964,53.647869,53.64778,53.647685,53.647592,53.647501,53.647407,53.647316,53.647214,53.64712,53.64703,53.646947,53.646852,53.646751,53.646665,53.646588,53.646517,53.646457,53.646403,53.646361,53.646312,53.646266,53.646174,53.646092,53.645992,53.645893,53.645792,53.645713,53.645624,53.645574,53.645525,53.645436,53.645355,53.645267,53.645172,53.645078,53.644985,53.644904,53.644814,53.644723,53.644625,53.644537,53.64444,53.644341,53.644257,53.644171,53.644081,53.644014,53.643991,53.643927,53.643841,53.643739,53.643656,53.643568,53.643479,53.643378,53.643289,53.643211,53.643146,53.64305,53.642985,53.64292,53.642844,53.642756,53.64268,53.642596,53.642501,53.642409,53.642325,53.642243,53.642157,53.642076,53.641999,53.641928,53.64186,53.641821,53.641796,53.641748,53.641671,53.641594,53.64152,53.641429,53.641332,53.641242,53.641142,53.641051,53.640952,53.640857,53.640755,53.640662,53.640569,53.640475,53.640377,53.640277,53.640185,53.640098,53.640008,53.639931,53.639851,53.639754,53.639668,53.639573,53.639476,53.639379,53.639282,53.639184,53.639089,53.639,53.638918,53.638852,53.638779,53.638718,53.638634,53.638561,53.638505,53.638428,53.638363,53.638317,53.638268,53.638206,53.638136,53.638049,53.63797,53.63793,53.637848,53.637761,53.637673,53.637604,53.637562,53.637506,53.637434,53.63738,53.63733,53.63726,53.637191,53.637115,53.637033,53.636943,53.636876,53.636825,53.636787,53.636732,53.636675,53.636631,53.63657,53.636484,53.636399,53.63633,53.636255,53.636169,53.636104,53.636046,53.636003,53.635928,53.635853,53.635777,53.635684,53.635584,53.635497,53.635423,53.635338,53.63524,53.635152,53.635071,53.634979,53.634887,53.634799,53.634703,53.634617,53.634526,53.634438,53.634354,53.63427,53.634173,53.634077,53.633981,53.633891,53.633793,53.633733,53.633676,53.633616,53.633555,53.633492,53.633424,53.633335,53.63325,53.633158,53.633085,53.633005,53.632933,53.632848,53.632763,53.632675,53.632587,53.632502,53.63241,53.632327,53.632266,53.632174,53.632081,53.632001,53.631917,53.63186,53.631757,53.63166,53.631567,53.63149,53.631419,53.631336,53.631248,53.631162,53.631069,53.630995,53.630905,53.630829,53.630747,53.630688,53.63066,53.63061,53.63055,53.630514,53.6305,53.630474,53.630448,53.630422,53.630409,53.630369,53.630354,53.630349,53.630369,53.630372,53.630387,53.630386,53.630368,53.630376,53.6304,53.630408,53.630345,53.630294,53.630219,53.630159,53.630148,53.630131,53.630131,53.630118,53.630089,53.630012,53.629956,53.629926,53.629861,53.629764,53.629666,53.629571,53.629476,53.629391,53.629295,53.629205,53.62911,53.629015,53.628924,53.628833,53.628739,53.628655,53.628558,53.628483,53.628391,53.628317,53.628219,53.628126,53.628039,53.627962,53.627872,53.627773,53.627672,53.627581,53.627496,53.6274,53.627304,53.627207,53.627108,53.627015,53.626934,53.626861,53.626774,53.626692,53.626593,53.626503,53.626404,53.626305,53.626219,53.626138,53.626044,53.62595,53.625859,53.625773,53.625686,53.625583,53.62548,53.625391,53.625291,53.625197,53.625102,53.625002,53.624917,53.624833,53.624731,53.624643,53.624548,53.624446,53.624355,53.624264,53.624167,53.624081,53.623993,53.623984,53.623947,53.623902,53.623842,53.62378,53.623707,53.623614,53.623514,53.623418,53.623317,53.623231,53.623146,53.623054,53.622966,53.622863,53.622773,53.622679,53.622593,53.622501,53.622402,53.622313,53.622224,53.622127,53.622035,53.621938,53.621847,53.621752,53.621656,53.62156,53.621461,53.621364,53.621282,53.621196,53.62112,53.621031,53.620936,53.620839,53.620751,53.620661,53.620566,53.620469,53.620377,53.620276,53.620183,53.620096,53.619996,53.619902,53.619809,53.61972,53.619624,53.61953,53.619437,53.619341,53.619241,53.619145,53.619043,53.618947,53.618862,53.61878,53.618695,53.618604,53.618522,53.618433,53.618336,53.618245,53.618148,53.618063,53.617976,53.617886,53.617789,53.617699,53.617606,53.617505,53.617417,53.617342,53.617254,53.617162,53.617069,53.616973,53.616899,53.616912,53.616869,53.616803,53.616787,53.616756,53.616747,53.616694,53.616704,53.616717,53.616724,53.616703,53.616691,53.616677,53.61663,53.616594,53.616537,53.616463,53.616374,53.616316,53.616269,53.616184,53.616138,53.616116,53.616098,53.616059,53.616021,53.615975,53.615912,53.615866,53.615797,53.615792,53.615767,53.615714,53.615658,53.615592,53.615541,53.615533,53.615541,53.615546,53.615541,53.615556,53.61557,53.615542,53.615525,53.61549,53.615468,53.615443,53.615432,53.615396,53.615335,53.615295,53.615285,53.615316,53.615336,53.615326,53.615341,53.615308,53.615327,53.615302,53.615326,53.615308,53.615259,53.615234,53.615188,53.615144,53.61509,53.615038,53.615018,53.615005,53.614968,53.614923,53.614887,53.614845,53.614805,53.61478,53.614724,53.614648,53.614596,53.614546,53.614498,53.614481,53.614453,53.614446,53.614418,53.614404,53.614416,53.614411,53.614423,53.614425,53.614438,53.614403,53.61436,53.614344,53.614286,53.614231,53.614248,53.61425,53.614253,53.614241,53.614181,53.614128,53.6141,53.614033,53.613974,53.613919,53.613862,53.613805,53.613738,53.613662,53.613589,53.613524,53.613445,53.613349,53.6133,53.613219,53.613151,53.613067,53.612973,53.612889,53.612848,53.612776,53.612709,53.612637,53.612585,53.612542,53.612525,53.612429,53.612375,53.612282,53.612197,53.612135,53.612095,53.612077,53.612033,53.611941,53.611878,53.611842,53.611778,53.611735,53.6117,53.611659,53.61161,53.61155,53.611482,53.611424,53.611394,53.611347,53.6113,53.611265,53.611212,53.611169,53.611075,53.610998,53.610918,53.610853,53.610795,53.610712,53.610658,53.610592,53.61052,53.610439,53.610365,53.610299,53.610223,53.610167,53.610104,53.610041,53.609977,53.609906,53.609828,53.609764,53.60971,53.609631,53.609573,53.609504,53.609445,53.609374,53.609314,53.609251,53.609187,53.609133,53.609058,53.608982,53.608902,53.608832,53.608753,53.608697,53.60864,53.608575,53.608486,53.608394,53.608325,53.608248,53.60818,53.608106,53.60804,53.60797,53.607888,53.607799,53.607737,53.607653,53.607563,53.607491,53.607436,53.607388,53.607326,53.607244,53.607186,53.607152,53.607155,53.607219,53.607177,53.60711,53.607137,53.607073,53.607057,53.607004,53.606906,53.606818,53.606739,53.606679,53.606624,53.60654,53.606473,53.606393,53.60632,53.606234,53.606166,53.606085,53.606002,53.605922,53.60584,53.605763,53.605669,53.605575,53.605476,53.605377,53.60529,53.605194,53.605103,53.605006,53.604908,53.604806,53.604709,53.604608,53.604517,53.60442,53.604319,53.604219,53.60412,53.604023,53.603934,53.603833,53.60374,53.603653,53.603564,53.603483,53.603399,53.603307,53.603219,53.603142,53.603065,53.60298,53.602907,53.602825,53.602737,53.60264,53.602558,53.602466,53.602368,53.602277,53.602181,53.602094,53.602012,53.601932,53.601842,53.60175,53.601662,53.601571,53.601469,53.60137,53.601271,53.601174,53.601077,53.600979,53.600877,53.600787,53.600691,53.600597,53.600506,53.600415,53.600317,53.600218,53.600123,53.600021,53.599928,53.599854,53.599765,53.599677,53.599593,53.599506,53.599405,53.599334,53.599264,53.599175,53.599076,53.598983,53.598883,53.598786,53.598697,53.598597,53.598514,53.598439,53.598373,53.598331,53.598257,53.598164,53.598072,53.598066,53.597973,53.597882,53.59779,53.597709,53.597626,53.597543,53.597466,53.597403,53.597323,53.597261,53.597171,53.597091,53.597012,53.596943,53.596863,53.596784,53.59669,53.596608,53.596524,53.596465,53.596418,53.596359,53.596297,53.59624,53.596167,53.596124,53.596102,53.596052,53.595971,53.595914,53.595835,53.595756,53.595682,53.595619,53.595543,53.595475,53.595435,53.595372,53.595319,53.595263,53.595186,53.595133,53.59506,53.594998,53.594957,53.594894,53.594817,53.594752,53.594674,53.594609,53.594537,53.594453,53.594376,53.59429,53.594219,53.594132,53.594062,53.593999,53.593953,53.593883,53.593852,53.593783,53.593705,53.593653,53.593615,53.593606,53.593561,53.593496,53.593454,53.593422,53.593345,53.5933,53.593248,53.593189,53.593129,53.593098,53.593063,53.592999,53.592945,53.592874,53.592812,53.59277,53.59272,53.592704,53.592655,53.592623,53.592609,53.592547,53.592483,53.592401,53.592359,53.592282,53.592221,53.592167,53.592105,53.592041,53.591983,53.591895,53.591813,53.591725,53.591638,53.591543,53.591447,53.591355,53.591273,53.591177,53.591085,53.590998,53.590906,53.590819,53.590722,53.590635,53.590542,53.590445,53.59036,53.590286,53.590197,53.590118,53.590048,53.589963,53.589873,53.589792,53.589713,53.589644,53.589556,53.589463,53.589375,53.589304,53.589209,53.589124,53.589035,53.588954,53.588861,53.588768,53.58868,53.588579,53.588492,53.588411,53.588348,53.588259,53.58818,53.588106,53.58801,53.587929,53.587834,53.587742,53.587654,53.587569,53.587481,53.587389,53.587288,53.587201,53.587112,53.587018,53.58692,53.586835,53.586736,53.586655,53.58657,53.586473,53.586381,53.586297,53.58621,53.586143,53.586083,53.586056,53.58601,53.585975,53.585893,53.585815,53.585726,53.58565,53.585578,53.585514,53.58545,53.585364,53.585277,53.585182,53.585085,53.584987,53.584898,53.584797,53.584703,53.584596,53.584502,53.584401,53.584306,53.584211,53.584126,53.584029,53.583926,53.583836,53.583736,53.583636,53.583548,53.583454,53.58341,53.583328,53.583252,53.583226,53.583147,53.583069,53.58306,53.583055,53.583051,53.583073,53.58305,53.583048,53.583053,53.583063,53.583094,53.583106,53.583125,53.583153,53.583142,53.583119,53.583102,53.583114,53.583082,53.583072,53.583045,53.583005,53.582943,53.582885,53.582811,53.58273,53.58265,53.582577,53.5825,53.582421,53.582351,53.582269,53.582182,53.582107,53.582097,53.582034,53.581977,53.581978,53.582056,53.582076,53.582049,53.582003,53.582038,53.582079,53.582056,53.5821,53.582123,53.582162,53.582193,53.582223,53.582252,53.582283,53.582334,53.58238,53.582393,53.582431,53.582434,53.582465,53.582504,53.582538,53.582596,53.58264,53.582684,53.582745,53.582786,53.5828,53.582836,53.582884,53.582897,53.582903,53.582933,53.582931,53.58291,53.582903,53.582921,53.582892,53.582861,53.58288,53.582852,53.582836,53.58279,53.582737,53.582723,53.582736,53.58272,53.582724,53.582718,53.582662,53.582623,53.582594,53.582583,53.582569,53.582514,53.582511,53.582496,53.582465,53.582447,53.582441,53.582394,53.582364,53.58232,53.582315,53.582284,53.582334,53.582297,53.582267,53.582239,53.5822,53.58216,53.58209,53.582044,53.582006,53.581973,53.58193,53.581884,53.58184,53.581817,53.581755,53.58173,53.581689,53.581648,53.581621,53.581635,53.581652,53.581626,53.581614,53.581581,53.581554,53.581544,53.581519,53.581528,53.58151,53.581416,53.58133,53.581357,53.58133,53.581237,53.581162,53.581076,53.580986,53.580904,53.58081,53.58074,53.58066,53.580577,53.580499,53.580456,53.580387,53.580317,53.580255,53.580178,53.580111,53.580052,53.579978,53.579887,53.579801,53.579717,53.579639,53.579571,53.579514,53.579422,53.579333,53.579238,53.579143,53.57906,53.579,53.578946,53.578872,53.57879,53.578697,53.5786,53.578519,53.578424,53.578333,53.578235,53.578142,53.578061,53.577981,53.577882,53.57779,53.577709,53.577641,53.577557,53.577498,53.577434,53.577381,53.577302,53.577283,53.57727,53.577213,53.57717,53.577093,53.577018,53.576958,53.576876,53.576809,53.576768,53.576718,53.576663,53.576614,53.576547,53.576484,53.57642,53.57636,53.576418,53.576479,53.576544,53.576584,53.576642,53.576696,53.576757,53.576812,53.576865,53.576933,53.577014,53.577078,53.577129,53.577132,53.577191,53.577229,53.577219,53.577246,53.577265,53.57731,53.577357,53.577388,53.577389,53.577444,53.577492,53.577438,53.577395,53.577349,53.577267,53.577196,53.57712,53.577046,53.576979,53.576927,53.576876,53.576806,53.576721,53.576651,53.576582,53.576499,53.576404,53.576334,53.57626,53.57616,53.576076,53.576033,53.57598,53.5759,53.575817,53.575714,53.575648,53.575581,53.575535,53.575489,53.575498,53.575442,53.57539,53.575355,53.575347,53.575315,53.575301,53.575245,53.575259,53.575301,53.575294,53.57526,53.575239,53.575282,53.57526,53.575214,53.575207,53.575135,53.575087,53.575077,53.57503,53.575039,53.575036,53.575047,53.57501,53.574958,53.574939,53.574925,53.574944,53.574939,53.574907,53.574851,53.574808,53.5748,53.574788,53.574786,53.574806,53.574781,53.574826,53.574885,53.574952,53.575004,53.575029,53.574978,53.575012,53.575091,53.575161,53.575225,53.575269,53.57527,53.575272,53.575263,53.575277,53.575305,53.575373,53.575438,53.575508,53.575563,53.575569,53.575663,53.575707,53.575746,53.575786,53.575858,53.575945,53.575967,53.575977,53.576023,53.576043,53.57609,53.576126,53.576176,53.576251,53.576281,53.576305,53.57637,53.576418,53.576503,53.576569,53.576636,53.576678,53.576765,53.576849,53.576879,53.576955,53.57703,53.577096,53.577178,53.577234,53.577287,53.577276,53.577262,53.577215,53.577167,53.577183,53.577192,53.577172,53.577239,53.577271,53.577287,53.577288,53.577297,53.577308,53.57732,53.577367,53.577406,53.577453,53.577445,53.577475,53.577539,53.577518,53.577492,53.57749,53.577479,53.577434,53.577413,53.577433,53.577465,53.577489,53.577443,53.577406,53.577443,53.577496,53.5775,53.577516,53.57752,53.57752,53.577496,53.577501,53.577495,53.577454,53.577405,53.577335,53.577324,53.577337,53.577325,53.577277,53.577216,53.577253,53.577235,53.577177,53.577091,53.576992,53.576913,53.57685,53.576814,53.576808,53.576776,53.576724,53.576646,53.576577,53.57653,53.576533,53.576521,53.576495,53.576444,53.576469,53.57643,53.576416,53.57634,53.576243,53.576188,53.5762,53.576196,53.576221,53.576251,53.576237,53.576197,53.576185,53.576161,53.576148,53.576149,53.576151,53.57615,53.576195,53.576251,53.576257,53.576226,53.576221,53.576203,53.576244,53.576272,53.576252,53.576191,53.576224,53.576312,53.576379,53.576453,53.576524,53.576596,53.576692,53.576776,53.576844,53.576906,53.576999,53.577095,53.57719,53.577274,53.577309,53.577229,53.57724,53.577337,53.577368,53.577369,53.577447,53.577503,53.577551,53.577601,53.577662,53.577716,53.577764,53.577852,53.577941,53.578028,53.578095,53.578145,53.578057,53.578008,53.577911,53.57781,53.577715,53.577625,53.577529,53.577447,53.577376,53.577314,53.577241,53.577171,53.577091,53.576991,53.576907,53.576832,53.576756,53.576694,53.576634,53.576588,53.576577,53.576598,53.576635,53.57657,53.576532,53.576494,53.576402,53.576313,53.576256,53.576175,53.576088,53.575993,53.576015,53.575962,53.575936,53.575884,53.575838,53.575782,53.575756,53.575738,53.575715,53.57566,53.575616,53.575593,53.575571,53.575565,53.575596,53.575558,53.575534,53.575562,53.575548,53.575578,53.575631,53.575673,53.57563,53.575671,53.575674,53.575771,53.575843,53.575805,53.575778,53.57572,53.57567,53.57564,53.575595,53.575592,53.57559,53.575546,53.575466,53.575414,53.575365,53.57536,53.575346,53.575256,53.575168,53.575146,53.575117,53.575062,53.575029,53.574999,53.574957,53.574931,53.574872,53.574776,53.574712,53.574697,53.574688,53.574668,53.574693,53.574656,53.574592,53.574537,53.574483,53.574449,53.574417,53.574406,53.574416,53.574341,53.574306,53.574311,53.574362,53.574308,53.57424,53.574238,53.574237,53.574213,53.574275,53.574367,53.574458,53.57451,53.574533,53.574605,53.574683,53.574728,53.574717,53.574626,53.574549,53.574457,53.574368,53.574269,53.574184,53.574105,53.574015,53.573923,53.573824,53.57373,53.573731,53.573644,53.573582,53.573535,53.573468,53.573398,53.573325,53.573267,53.573198,53.573119,53.573024,53.572934,53.57284,53.572757,53.572672,53.57259,53.572527,53.572473,53.572454,53.572386,53.572321,53.572249,53.572175,53.572103,53.572033,53.571957,53.571881,53.571808,53.571731,53.571684,53.571607,53.571559,53.571474,53.571437,53.571373,53.571332,53.571242,53.571168,53.57115,53.571077,53.570998,53.570959,53.570891,53.570824,53.570758,53.570753,53.570726,53.570671,53.570605,53.570531,53.570489,53.570447,53.570377,53.570324,53.570258,53.570244,53.57019,53.570156,53.570089,53.57003,53.569974,53.569916,53.569909,53.569843,53.569791,53.569765,53.569757,53.569753,53.569749,53.569799,53.569796,53.569731,53.569635,53.569539,53.569451,53.569364,53.569279,53.569224,53.569134,53.569039,53.568941,53.568849,53.568759,53.568662,53.568574,53.568482,53.568381,53.568301,53.568229,53.56817,53.568072,53.567999,53.567919,53.567845,53.567784,53.567711,53.56765,53.567595,53.567543,53.567475,53.567405,53.567337,53.567268,53.567199,53.567174,53.567118,53.567034,53.566938,53.566885,53.566865,53.566795,53.566728,53.56667,53.566582,53.566499,53.566417,53.56634,53.566267,53.566201,53.566148,53.566056,53.565954,53.565894,53.565816,53.565732,53.565659,53.565591,53.565559,53.565535,53.5655,53.565482,53.565484,53.565491,53.565482,53.565478,53.565436,53.565396,53.565428,53.565486,53.565532,53.5656,53.565635,53.565679,53.565682,53.565713,53.565721,53.565751,53.565803,53.565834,53.565858,53.565898,53.565929,53.565969,53.565963,53.565932,53.565882,53.565845,53.565806,53.56576,53.565739,53.565684,53.565637,53.565601,53.565625,53.565609,53.565572,53.565549,53.56548,53.565428,53.565456,53.565467,53.565414,53.565329,53.565312,53.565304,53.565274,53.565229,53.565161,53.565085,53.565061,53.565021,53.565001,53.564972,53.564962,53.564932,53.564898,53.564885,53.564832,53.564784,53.564729,53.564703,53.564679,53.564644,53.564608,53.564592,53.564561,53.564476,53.564405,53.564318,53.564229,53.564144,53.564051,53.563954,53.563864,53.563774,53.563679,53.563587,53.563493,53.563401,53.563313,53.563228,53.563137,53.563052,53.562966,53.562891,53.562806,53.562711,53.562629,53.562549,53.562465,53.562385,53.562293,53.562214,53.562135,53.562048,53.561953,53.561877,53.561835,53.561763,53.561702,53.561673,53.56165,53.561588,53.561545,53.56148,53.561443,53.561391,53.561346,53.561283,53.561193,53.561114,53.561025,53.560967,53.560873,53.560783,53.560693,53.560629,53.560551,53.560466,53.560374,53.560315,53.560267,53.560183,53.560102,53.560017,53.559923,53.559826,53.55975,53.559682,53.559602,53.559519,53.559459,53.55937,53.559287,53.559203,53.559135,53.559045,53.558955,53.558864,53.558845,53.558763,53.55875,53.558736,53.558738,53.558706,53.558688,53.558651,53.558605,53.558544,53.558453,53.558362,53.558275,53.558187,53.55812,53.558034,53.557954,53.557874,53.55779,53.557691,53.557609,53.55753,53.557448,53.557371,53.557281,53.55719,53.557101,53.557051,53.556978,53.55689,53.556799,53.556755,53.556689,53.556602,53.556525,53.556445,53.55635,53.55626,53.556179,53.556116,53.556023,53.555982,53.555891,53.555821,53.555867,53.555842,53.55579,53.555706,53.555692,53.555596,53.55553,53.55544,53.555358,53.555266,53.555189,53.555109,53.555035,53.554959,53.554879,53.554796,53.554723,53.554629,53.554552,53.554469,53.55439,53.554291,53.554201,53.554151,53.554091,53.554007,53.553928,53.553838,53.553776,53.553686,53.553602,53.553553,53.55347,53.553375,53.553283,53.553196,53.553124,53.553048,53.552979,53.5529,53.552814,53.552719,53.552634,53.552542,53.552466,53.552398,53.55232,53.55223,53.552158,53.552066,53.551975,53.551911,53.551823,53.551745,53.551646,53.551576,53.551553,53.551455,53.551388,53.55132,53.55123,53.551147,53.551072,53.550987,53.550943,53.550868,53.550794,53.550703,53.550611,53.550512,53.550417,53.550328,53.550236,53.550156,53.550062,53.549986,53.549893,53.549801,53.5497,53.54961,53.549524,53.549432,53.549363,53.549263,53.549168,53.549067,53.548974,53.548884,53.548792,53.548707,53.548613,53.548528,53.548434,53.548342,53.548255,53.548177,53.548085,53.548014,53.547928,53.547832,53.547737,53.547643,53.547573,53.547496,53.547402,53.547314,53.547226,53.547193,53.547114,53.547021,53.546925,53.546829,53.54674,53.546641,53.546552,53.546476,53.546422,53.546363,53.546277,53.546198,53.546116,53.546037,53.545946,53.54587,53.545785,53.545718,53.545632,53.545558,53.545528,53.545478,53.545412,53.545321,53.545234,53.54515,53.545062,53.544966,53.544887,53.5448,53.544724,53.544635,53.544535,53.544443,53.54434,53.544255,53.544159,53.544062,53.543982,53.543895,53.543804,53.543719,53.54366,53.543578,53.543491,53.543391,53.5433,53.543209,53.543125,53.543039,53.542959,53.542866,53.542785,53.542699,53.542636,53.542568,53.542473,53.542385,53.542295,53.54221,53.542134,53.542048,53.541952,53.541863,53.541778,53.541704,53.541631,53.541555,53.541455,53.541363,53.541268,53.541173,53.541088,53.540992,53.540903,53.540808,53.54071,53.540625,53.540544,53.540466,53.54041,53.540318,53.540296,53.540198,53.540103,53.540028,53.539952,53.539896,53.539828,53.539744,53.539641,53.539549,53.539454,53.539364,53.539287,53.539193,53.539097,53.539008,53.538928,53.538853,53.538803,53.538708,53.538699,53.538661,53.538601,53.538535,53.53846,53.538433,53.538389,53.538334,53.538294,53.538211,53.538139,53.538117,53.538032,53.537955,53.537882,53.53782,53.537803,53.53778,53.537714,53.537661,53.537657,53.53764,53.537575,53.53749,53.537417,53.537354,53.537314,53.537244,53.537195,53.53716,53.537145,53.537136,53.537099,53.537049,53.536969,53.536923,53.536831,53.536755,53.536737,53.536687,53.536643,53.536567,53.536507,53.53646,53.5364,53.536339,53.536284,53.536204,53.53615,53.536108,53.536057,53.536022,53.535956,53.535866,53.535777,53.535742,53.535751,53.535695,53.535629,53.535545,53.5355,53.535439,53.535391,53.535352,53.535326,53.535319,53.535267,53.53521,53.535231,53.535246,53.535224,53.535194,53.535138,53.535118,53.535074,53.535045,53.534967,53.534879,53.534874,53.534939,53.53502,53.535112,53.535076,53.535028,53.534977,53.534891,53.534795,53.534706,53.534607,53.534516,53.534432,53.534344,53.534265,53.534178,53.534099,53.534024,53.533945,53.533886,53.53382,53.533776,53.533706,53.533615,53.533566,53.533515,53.533478,53.533413,53.533354,53.53328,53.533215,53.533186,53.533179,53.533099,53.533018,53.532959,53.532892,53.532852,53.532789,53.532747,53.532678,53.532596,53.532509,53.532443,53.532365,53.532301,53.532246,53.532196,53.532174,53.532126,53.53207,53.53201,53.531993,53.532018,53.532015,53.532007,53.531985,53.531976,53.531957,53.531916,53.531874,53.531856,53.531847,53.531817,53.531844,53.531796,53.531757,53.53169,53.531644,53.531585,53.531576,53.531487,53.531416,53.531374,53.531311,53.531243,53.53117,53.531091,53.531016,53.530975,53.53089,53.530788,53.530708,53.530655,53.530574,53.53052,53.530462,53.53039,53.530316,53.530246,53.530165,53.530076,53.530007,53.52995,53.529904,53.529807,53.529735,53.529699,53.529664,53.529594,53.529498,53.529405,53.529311,53.529226,53.529149,53.52909,53.528999,53.528906,53.528814,53.528764,53.528679,53.528588,53.528493,53.528415,53.528352,53.528255,53.528156,53.528084,53.528031,53.527944,53.527904,53.527836,53.527743,53.527661,53.527574,53.527518,53.52745,53.527362,53.52727,53.527188,53.527105,53.527019,53.526924,53.526845,53.526749,53.526654,53.52659,53.526495,53.526397,53.526302,53.526212,53.526148,53.526074,53.526065,53.525984,53.525892,53.525799,53.525709,53.525626,53.525554,53.525487,53.525416,53.52533,53.525233,53.525197,53.525196,53.525136,53.525047,53.524972,53.52488,53.524795,53.524706,53.524619,53.524534,53.524445,53.524364,53.524304,53.52426,53.524172,53.524081,53.523986,53.523903,53.523814,53.523756,53.523676,53.523624,53.523546,53.52346,53.523375,53.523284,53.523197,53.523118,53.523026,53.522948,53.522858,53.52277,53.52269,53.522597,53.522507,53.522431,53.522377,53.522281,53.522204,53.522132,53.522052,53.521983,53.521993,53.521963,53.521944,53.521858,53.521771,53.521684,53.521592,53.521497,53.521423,53.52133,53.521322,53.52122,53.521128,53.521046,53.520959,53.520865,53.520776,53.520689,53.520593,53.520491,53.520404,53.520311,53.520232,53.520134,53.520037,53.519954,53.519859,53.519771,53.519676,53.519577,53.519489,53.519395,53.5193,53.519225,53.519133,53.519071,53.518986,53.518903,53.518864,53.51881,53.51879,53.518696,53.51865,53.518552,53.518477,53.518417,53.518322,53.518244,53.518162,53.518069,53.518002,53.517917,53.517847,53.517754,53.517669,53.517594,53.517521,53.517434,53.517341,53.517248,53.517161,53.517065,53.516987,53.51689,53.516787,53.516695,53.516609,53.516545,53.51646,53.516387,53.516297,53.5162,53.516121,53.516031,53.515953,53.515875,53.515805,53.515732,53.51564,53.51555,53.515461,53.515387,53.515319,53.515251,53.515188,53.515113,53.515057,53.514958,53.51487,53.514796,53.514736,53.514695,53.514608,53.514551,53.514482,53.514392,53.514357,53.514339,53.514252,53.514242,53.514156,53.514074,53.514033,53.513943,53.513869,53.513792,53.513713,53.513641,53.513554,53.513498,53.51342,53.513344,53.513327,53.513261,53.513179,53.513096,53.513028,53.512949,53.512852,53.512774,53.512711,53.512629,53.512526,53.512443,53.512352,53.512259,53.51217,53.512074,53.512009,53.511915,53.511821,53.511738,53.511651,53.511566,53.511472,53.511386,53.511301,53.511209,53.511125,53.51103,53.510942,53.510845,53.510759,53.510669,53.510581,53.510498,53.510408,53.510325,53.510239,53.510148,53.510053,53.509966,53.509872,53.509795,53.509696,53.509629,53.509566,53.509477,53.509388,53.509308,53.509232,53.509139,53.509053,53.508961,53.50887,53.508797,53.5087,53.508617,53.50854,53.508448,53.508358,53.508269,53.508177,53.508082,53.507992,53.507912,53.507829,53.507746,53.507663,53.507574,53.5075,53.507414,53.507317,53.50726,53.507272,53.507177,53.507084,53.507017,53.506926,53.506842,53.506775,53.506681,53.506611,53.506578,53.506485,53.50639,53.506301,53.506264,53.506174,53.506081,53.506002,53.505918,53.50583,53.505746,53.505664,53.505612,53.505551,53.505528,53.505463,53.505391,53.5053,53.50522,53.505142,53.505102,53.505079,53.504999,53.504907,53.504843,53.504943,53.504868,53.504836,53.504801,53.504764,53.504751,53.50473,53.504696,53.504678,53.504625,53.504532,53.504467,53.50445,53.504377,53.504288,53.504242,53.504161,53.504072,53.503981,53.503893,53.503801,53.503722,53.503641,53.503545,53.503468,53.503374,53.503314,53.503276,53.503262,53.503233,53.503199,53.50315,53.503109,53.503028,53.502961,53.502918,53.502841,53.502756,53.50269,53.502615,53.502555,53.50249,53.502427,53.502375,53.502292,53.5022,53.502107,53.502037,53.501946,53.501851,53.501756,53.501675,53.501586,53.501516,53.501427,53.501333,53.501246,53.501211,53.501131,53.501097,53.501046,53.501011,53.501035,53.50104,53.500965,53.50088,53.500818,53.500725,53.500645,53.50056,53.500496,53.500442,53.500354,53.500259,53.500165,53.500088,53.500009,53.49996,53.49991,53.499843,53.499769,53.499702,53.499646,53.499563,53.49948,53.499389,53.499301,53.499273,53.499256,53.499258,53.499239,53.499172,53.499111,53.499021,53.498975,53.498955,53.498874,53.498828,53.498735,53.498681,53.498602,53.498517,53.498449,53.498359,53.498261,53.498176,53.498097,53.498037,53.497966,53.497916,53.497856,53.497774,53.497692,53.497608,53.497509,53.497441,53.497383,53.49731,53.497216,53.497119,53.497021,53.496932,53.496848,53.496753,53.496658,53.496577,53.496497,53.496412,53.496336,53.496263,53.496173,53.496093,53.496008,53.495919,53.495832,53.495743,53.495655,53.495569,53.49548,53.495386,53.49529,53.495205,53.49512,53.495025,53.494933,53.494845,53.49475,53.49466,53.494576,53.494495,53.494488,53.494467,53.494464,53.494456,53.494415,53.494435,53.494468,53.494392,53.494299,53.494205,53.494131,53.494051,53.493963,53.493898,53.493846,53.493771,53.49371,53.493649,53.493591,53.493585,53.493522,53.493474,53.493483,53.49345,53.49341,53.493377,53.493316,53.49328,53.493279,53.493299,53.493257,53.493171,53.493123,53.493174,53.493179,53.493125,53.493082,53.493016,53.492983,53.492935,53.492868,53.49279,53.492813,53.492858,53.49287,53.492868,53.492884,53.492855,53.492815,53.492775,53.492726,53.492763,53.492707,53.492649,53.492626,53.492567,53.492483,53.492407,53.49233,53.492263,53.492194,53.492121,53.492041,53.491962,53.491871,53.491799,53.491728,53.491649,53.491561,53.491465,53.491375,53.491298,53.491227,53.49116,53.491112,53.491076,53.490988,53.490939,53.490892,53.491041,53.49111,53.491135,53.491138]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[53.490892,53.750118],"lng":[-2.070325,-1.877008]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-12-2" class="tab-pane" aria-labelledby="tabset-12-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb24" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb24-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-24"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_bc44483bd14b90711259523493d75c9d {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_bc44483bd14b90711259523493d75c9d&quot; ></div>
        
</body>
<script>
    
    
            var map_bc44483bd14b90711259523493d75c9d = L.map(
                &quot;map_bc44483bd14b90711259523493d75c9d&quot;,
                {
                    center: [53.622218897764995, -1.985622578889135],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_c516e141b1f15ee5927f51a5adabe7e5 = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_c516e141b1f15ee5927f51a5adabe7e5.addTo(map_bc44483bd14b90711259523493d75c9d);
        
    
            var tile_layer_6e7cd117b418755217d8cf2ce7cb7d65 = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_6e7cd117b418755217d8cf2ce7cb7d65.addTo(map_bc44483bd14b90711259523493d75c9d);
        
    
            var color_line_05e80f72730d7f66785fbe5c97a26b7a = L.featureGroup(
                {
}
            );
        
    
            var poly_line_1b7ed0d02d67615b91774b998f762959 = L.polyline(
                [[[53.750033, -2.05854], [53.750062, -2.058629]], [[53.749195, -2.050019], [53.749108, -2.049967]], [[53.738253, -2.045081], [53.738296, -2.045251]], [[53.735662, -2.049384], [53.735569, -2.049427]], [[53.734477, -2.044398], [53.7344, -2.044491]], [[53.734323, -2.044564], [53.734236, -2.044615]], [[53.734236, -2.044615], [53.734229, -2.044585]], [[53.734229, -2.044585], [53.734159, -2.044489]], [[53.734438, -2.03475], [53.734465, -2.034581]], [[53.724404, -2.031876], [53.724347, -2.031734]], [[53.714371, -2.041853], [53.714356, -2.041845]], [[53.714356, -2.041845], [53.714333, -2.042008]], [[53.714342, -2.042421], [53.714168, -2.042174]], [[53.689635, -2.070196], [53.68955, -2.070248]], [[53.649418, -2.047658], [53.649495, -2.047561]], [[53.649495, -2.047561], [53.649543, -2.047458]], [[53.643991, -2.043572], [53.643927, -2.043464]], [[53.629391, -2.026416], [53.629295, -2.026416]], [[53.616899, -2.024685], [53.616912, -2.024658]], [[53.6133, -2.00878], [53.613219, -2.008697]], [[53.598066, -1.994699], [53.597973, -1.994697]], [[53.597709, -1.9947], [53.597626, -1.994617]], [[53.582056, -1.973244], [53.582076, -1.973403]], [[53.582076, -1.973403], [53.582049, -1.973526]], [[53.58288, -1.96826], [53.582852, -1.968099]], [[53.582334, -1.964918], [53.582297, -1.964779]], [[53.577302, -1.956694], [53.577283, -1.95654]], [[53.57727, -1.956531], [53.577213, -1.956393]], [[53.576224, -1.922332], [53.576312, -1.922275]], [[53.576844, -1.921731], [53.576906, -1.921629]], [[53.57724, -1.921261], [53.577337, -1.921295]], [[53.578095, -1.920495], [53.578145, -1.920495]], [[53.578145, -1.920495], [53.578057, -1.920439]], [[53.572386, -1.905209], [53.572321, -1.905095]], [[53.565679, -1.892637], [53.565682, -1.892639]], [[53.556116, -1.88275], [53.556023, -1.882755]], [[53.538699, -1.883598], [53.538661, -1.883747]], [[53.536687, -1.888386], [53.536643, -1.88854]], [[53.526065, -1.906944], [53.525984, -1.906867]], [[53.521322, -1.909972], [53.52122, -1.909985]], [[53.51879, -1.909666], [53.518696, -1.909652]], [[53.518417, -1.909634], [53.518322, -1.909661]], [[53.514242, -1.912741], [53.514156, -1.912804]], [[53.507177, -1.915357], [53.507084, -1.915314]], [[53.492649, -1.895123], [53.492626, -1.894968]], [[53.491076, -1.893726], [53.490988, -1.893768]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_2f8d7487b8abed3e79dcacd63d3d6dac = L.polyline(
                [[[53.750062, -2.058629], [53.750118, -2.0585]], [[53.74924, -2.046325], [53.749193, -2.046322]], [[53.749193, -2.046322], [53.74925, -2.046187]], [[53.749204, -2.046137], [53.74922, -2.0463]], [[53.749769, -2.049805], [53.749718, -2.049752]], [[53.749718, -2.049752], [53.749657, -2.049874]], [[53.749471, -2.04989], [53.749397, -2.049902]], [[53.749397, -2.049902], [53.749338, -2.049778]], [[53.749188, -2.049963], [53.749195, -2.050019]], [[53.749108, -2.049967], [53.749035, -2.050003]], [[53.748411, -2.050068], [53.748382, -2.050123]], [[53.748382, -2.050123], [53.748301, -2.050206]], [[53.747265, -2.050275], [53.747186, -2.050357]], [[53.747186, -2.050357], [53.747094, -2.050412]], [[53.738852, -2.046862], [53.738855, -2.046865]], [[53.738144, -2.045096], [53.737697, -2.04605]], [[53.735625, -2.049396], [53.735662, -2.049384]], [[53.735569, -2.049427], [53.735481, -2.049462]], [[53.736001, -2.045687], [53.736013, -2.045527]], [[53.735326, -2.045143], [53.735134, -2.044582]], [[53.734311, -2.044551], [53.734323, -2.044564]], [[53.734159, -2.044489], [53.734105, -2.044357]], [[53.735236, -2.038621], [53.735327, -2.038641]], [[53.735327, -2.038641], [53.735369, -2.038475]], [[53.735099, -2.035932], [53.735055, -2.035926]], [[53.735055, -2.035926], [53.735029, -2.036072]], [[53.734761, -2.035907], [53.73482, -2.035966]], [[53.734747, -2.035415], [53.734681, -2.035305]], [[53.734465, -2.034581], [53.734439, -2.034424]], [[53.734127, -2.03354], [53.734051, -2.033453]], [[53.731431, -2.032073], [53.731396, -2.032074]], [[53.724399, -2.031879], [53.724404, -2.031876]], [[53.722702, -2.034451], [53.722612, -2.034484]], [[53.719757, -2.031708], [53.719668, -2.031652]], [[53.719308, -2.031447], [53.719267, -2.031503]], [[53.719176, -2.031583], [53.719079, -2.031603]], [[53.714485, -2.039877], [53.71451, -2.040038]], [[53.714484, -2.040299], [53.714492, -2.040462]], [[53.714351, -2.042317], [53.714342, -2.042421]], [[53.714169, -2.042196], [53.71423, -2.042309]], [[53.714258, -2.042353], [53.714169, -2.042309]], [[53.714169, -2.042309], [53.714094, -2.042191]], [[53.702688, -2.05295], [53.702599, -2.052971]], [[53.702599, -2.052971], [53.702513, -2.053025]], [[53.69115, -2.061231], [53.691104, -2.061265]], [[53.691104, -2.061265], [53.691045, -2.061387]], [[53.691939, -2.069031], [53.691936, -2.069025]], [[53.691936, -2.069025], [53.691857, -2.069122]], [[53.689186, -2.070097], [53.689152, -2.070005]], [[53.68041, -2.06216], [53.68038, -2.062014]], [[53.679513, -2.060137], [53.679417, -2.060167]], [[53.668492, -2.055575], [53.668402, -2.055522]], [[53.658048, -2.047499], [53.658025, -2.047351]], [[53.649543, -2.047458], [53.649512, -2.047312]], [[53.650067, -2.041784], [53.650017, -2.041697]], [[53.650017, -2.041697], [53.649923, -2.041669]], [[53.646266, -2.043213], [53.646174, -2.043199]], [[53.646174, -2.043199], [53.646092, -2.04326]], [[53.645574, -2.04315], [53.645525, -2.043157]], [[53.644014, -2.043524], [53.643991, -2.043572]], [[53.629295, -2.026416], [53.629205, -2.026394]], [[53.623984, -2.027557], [53.623947, -2.027429]], [[53.616869, -2.024521], [53.616803, -2.024409]], [[53.616694, -2.023835], [53.616704, -2.023674]], [[53.615797, -2.02066], [53.615792, -2.020621]], [[53.615767, -2.020468], [53.615714, -2.020335]], [[53.609631, -2.002388], [53.609573, -2.002268]], [[53.59779, -1.994699], [53.597709, -1.9947]], [[53.597626, -1.994617], [53.597543, -1.994559]], [[53.58545, -1.978627], [53.585364, -1.978552]], [[53.583045, -1.97505], [53.583005, -1.974908]], [[53.582107, -1.973771], [53.582097, -1.973682]], [[53.582038, -1.973255], [53.582079, -1.97325]], [[53.582056, -1.973088], [53.5821, -1.972953]], [[53.582123, -1.9728], [53.582162, -1.972649]], [[53.582861, -1.968306], [53.58288, -1.96826]], [[53.582723, -1.967516], [53.582736, -1.967491]], [[53.582736, -1.967491], [53.58272, -1.96733]], [[53.582724, -1.967168], [53.582718, -1.967178]], [[53.582662, -1.967046], [53.582623, -1.966896]], [[53.577213, -1.956393], [53.57717, -1.956254]], [[53.577277, -1.928725], [53.577216, -1.928607]], [[53.57643, -1.92608], [53.576416, -1.925918]], [[53.5762, -1.925531], [53.576196, -1.925477]], [[53.576196, -1.925477], [53.576221, -1.925322]], [[53.576312, -1.922275], [53.576379, -1.922172]], [[53.576692, -1.921866], [53.576776, -1.921836]], [[53.576776, -1.921836], [53.576844, -1.921731]], [[53.576906, -1.921629], [53.576999, -1.921602]], [[53.577369, -1.921623], [53.577447, -1.921545]], [[53.577601, -1.921157], [53.577662, -1.921041]], [[53.577662, -1.921041], [53.577716, -1.920923]], [[53.577716, -1.920923], [53.577764, -1.920786]], [[53.577941, -1.920677], [53.578028, -1.920606]], [[53.578028, -1.920606], [53.578095, -1.920495]], [[53.578057, -1.920439], [53.578008, -1.920567]], [[53.575671, -1.914458], [53.575674, -1.914347]], [[53.575146, -1.912065], [53.575117, -1.911909]], [[53.574717, -1.906944], [53.574626, -1.906903]], [[53.57373, -1.90693], [53.573731, -1.906923]], [[53.573644, -1.906983], [53.573582, -1.906855]], [[53.565491, -1.894068], [53.565482, -1.893906]], [[53.565713, -1.892492], [53.565721, -1.892337]], [[53.561114, -1.887649], [53.561025, -1.887619]], [[53.558763, -1.885895], [53.55875, -1.885753]], [[53.556445, -1.882834], [53.55635, -1.882805]], [[53.556179, -1.882764], [53.556116, -1.88275]], [[53.556023, -1.882755], [53.555982, -1.882664]], [[53.555982, -1.882664], [53.555891, -1.882687]], [[53.555891, -1.882687], [53.555821, -1.882655]], [[53.555821, -1.882655], [53.555867, -1.882526]], [[53.555867, -1.882526], [53.555842, -1.88238]], [[53.555842, -1.88238], [53.55579, -1.882302]], [[53.55579, -1.882302], [53.555706, -1.882241]], [[53.555706, -1.882241], [53.555692, -1.882081]], [[53.548177, -1.877264], [53.548085, -1.877236]], [[53.545946, -1.878435], [53.54587, -1.87852]], [[53.54587, -1.87852], [53.545785, -1.878574]], [[53.545785, -1.878574], [53.545718, -1.878683]], [[53.545718, -1.878683], [53.545632, -1.878748]], [[53.545632, -1.878748], [53.545558, -1.878839]], [[53.545558, -1.878839], [53.545528, -1.878986]], [[53.545528, -1.878986], [53.545478, -1.879082]], [[53.545321, -1.8792], [53.545234, -1.879159]], [[53.545234, -1.879159], [53.54515, -1.879213]], [[53.54515, -1.879213], [53.545062, -1.879252]], [[53.542636, -1.880931], [53.542568, -1.880976]], [[53.540318, -1.882525], [53.540296, -1.882515]], [[53.540198, -1.882548], [53.540103, -1.882577]], [[53.538853, -1.883413], [53.538803, -1.883491]], [[53.538803, -1.883491], [53.538708, -1.883524]], [[53.538708, -1.883524], [53.538699, -1.883598]], [[53.536755, -1.88818], [53.536737, -1.888253]], [[53.534874, -1.893522], [53.534939, -1.893479]], [[53.534939, -1.893479], [53.53502, -1.893566]], [[53.535028, -1.893874], [53.534977, -1.894011]], [[53.534977, -1.894011], [53.534891, -1.893982]], [[53.534891, -1.893982], [53.534795, -1.893958]], [[53.529149, -1.904516], [53.52909, -1.904627]], [[53.526074, -1.906878], [53.526065, -1.906944]], [[53.525984, -1.906867], [53.525892, -1.906882]], [[53.522858, -1.908909], [53.52277, -1.908968]], [[53.521963, -1.910092], [53.521944, -1.910162]], [[53.521944, -1.910162], [53.521858, -1.910086]], [[53.521497, -1.909997], [53.521423, -1.910062]], [[53.521423, -1.910062], [53.52133, -1.910097]], [[53.52133, -1.910097], [53.521322, -1.909972]], [[53.52122, -1.909985], [53.521128, -1.909983]], [[53.518986, -1.909753], [53.518903, -1.909823]], [[53.518903, -1.909823], [53.518864, -1.909903]], [[53.518864, -1.909903], [53.51881, -1.909759]], [[53.51881, -1.909759], [53.51879, -1.909666]], [[53.518696, -1.909652], [53.51865, -1.90979]], [[53.518477, -1.909717], [53.518417, -1.909634]], [[53.518322, -1.909661], [53.518244, -1.909602]], [[53.515953, -1.910729], [53.515875, -1.910829]], [[53.515113, -1.911745], [53.515057, -1.91188]], [[53.514357, -1.9127], [53.514339, -1.91268]], [[53.514339, -1.91268], [53.514252, -1.912735]], [[53.514252, -1.912735], [53.514242, -1.912741]], [[53.514033, -1.912957], [53.513943, -1.913037]], [[53.51342, -1.913698], [53.513344, -1.913781]], [[53.513344, -1.913781], [53.513327, -1.913932]], [[53.5087, -1.916285], [53.508617, -1.916243]], [[53.508617, -1.916243], [53.50854, -1.916142]], [[53.50726, -1.915354], [53.507272, -1.91537]], [[53.507084, -1.915314], [53.507017, -1.915195]], [[53.507017, -1.915195], [53.506926, -1.915168]], [[53.506174, -1.914374], [53.506081, -1.914363]], [[53.506002, -1.914282], [53.505918, -1.914274]], [[53.504907, -1.9132], [53.504843, -1.91317]], [[53.503801, -1.911574], [53.503722, -1.911602]], [[53.503722, -1.911602], [53.503641, -1.911512]], [[53.503314, -1.911317], [53.503276, -1.911167]], [[53.503199, -1.91071], [53.50315, -1.910557]], [[53.501586, -1.908865], [53.501516, -1.908855]], [[53.501046, -1.908173], [53.501011, -1.908038]], [[53.501011, -1.908038], [53.501035, -1.907892]], [[53.501035, -1.907892], [53.50104, -1.907808]], [[53.50104, -1.907808], [53.500965, -1.90772]], [[53.500965, -1.90772], [53.50088, -1.907647]], [[53.50088, -1.907647], [53.500818, -1.907572]], [[53.500818, -1.907572], [53.500725, -1.907558]], [[53.500645, -1.907472], [53.50056, -1.907387]], [[53.50056, -1.907387], [53.500496, -1.907276]], [[53.499563, -1.906121], [53.49948, -1.906049]], [[53.49948, -1.906049], [53.499389, -1.906018]], [[53.499111, -1.905092], [53.499021, -1.905048]], [[53.498975, -1.904912], [53.498955, -1.904876]], [[53.498874, -1.90478], [53.498828, -1.904649]], [[53.498602, -1.904435], [53.498517, -1.904345]], [[53.493123, -1.897576], [53.493174, -1.897706]], [[53.493174, -1.897706], [53.493179, -1.897769]], [[53.492626, -1.894968], [53.492567, -1.894826]], [[53.491112, -1.893778], [53.491076, -1.893726]], [[53.490988, -1.893768], [53.490939, -1.893638]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_3c035d282cab2e69f5a4358e61d44b71 = L.polyline(
                [[[53.750118, -2.0585], [53.750056, -2.058362]], [[53.750002, -2.05822], [53.74995, -2.058091]], [[53.74995, -2.058091], [53.749892, -2.057958]], [[53.749892, -2.057958], [53.749824, -2.057839]], [[53.749714, -2.056851], [53.749724, -2.05669]], [[53.749662, -2.055422], [53.749613, -2.05529]], [[53.749607, -2.05434], [53.749607, -2.05417]], [[53.749702, -2.053119], [53.749723, -2.052951]], [[53.749744, -2.052788], [53.749731, -2.052636]], [[53.74982, -2.052033], [53.749795, -2.051869]], [[53.749834, -2.051384], [53.749836, -2.051216]], [[53.749836, -2.051216], [53.749846, -2.051065]], [[53.749803, -2.050483], [53.749771, -2.050336]], [[53.749771, -2.050336], [53.749739, -2.050188]], [[53.749739, -2.050188], [53.749727, -2.050032]], [[53.749727, -2.050032], [53.749728, -2.049853]], [[53.749696, -2.049045], [53.749649, -2.048908]], [[53.749589, -2.04844], [53.749548, -2.048302]], [[53.749285, -2.046617], [53.749247, -2.046482]], [[53.74914, -2.044518], [53.749156, -2.044669]], [[53.749156, -2.044669], [53.749173, -2.044825]], [[53.74917, -2.044908], [53.749111, -2.045033]], [[53.749483, -2.047345], [53.749564, -2.047424]], [[53.749571, -2.047722], [53.749589, -2.047873]], [[53.749619, -2.048361], [53.749616, -2.048528]], [[53.749616, -2.048528], [53.749646, -2.048681]], [[53.749646, -2.048681], [53.74968, -2.04884]], [[53.74968, -2.04884], [53.749696, -2.049]], [[53.749696, -2.049], [53.749734, -2.049157]], [[53.749747, -2.049652], [53.749769, -2.049805]], [[53.749273, -2.049894], [53.749188, -2.049963]], [[53.748946, -2.05006], [53.74885, -2.050051]], [[53.748211, -2.050184], [53.748121, -2.050171]], [[53.748121, -2.050171], [53.74803, -2.050173]], [[53.747607, -2.050264], [53.747525, -2.050172]], [[53.747525, -2.050172], [53.747435, -2.050207]], [[53.747002, -2.050468], [53.746925, -2.050556]], [[53.746925, -2.050556], [53.746831, -2.050581]], [[53.746741, -2.05056], [53.746655, -2.050518]], [[53.746655, -2.050518], [53.746561, -2.05057]], [[53.746049, -2.050815], [53.745959, -2.050785]], [[53.745959, -2.050785], [53.745859, -2.050805]], [[53.745859, -2.050805], [53.745762, -2.050832]], [[53.745762, -2.050832], [53.745671, -2.050907]], [[53.745512, -2.050737], [53.745408, -2.050718]], [[53.745408, -2.050718], [53.745304, -2.050684]], [[53.745218, -2.050637], [53.745127, -2.050676]], [[53.744858, -2.050573], [53.744763, -2.050548]], [[53.744763, -2.050548], [53.74467, -2.050492]], [[53.74467, -2.050492], [53.744578, -2.050543]], [[53.744578, -2.050543], [53.744483, -2.050531]], [[53.744483, -2.050531], [53.744393, -2.050501]], [[53.744393, -2.050501], [53.744298, -2.05048]], [[53.744124, -2.050371], [53.744026, -2.050374]], [[53.743769, -2.050551], [53.743681, -2.050502]], [[53.743197, -2.050607], [53.743107, -2.050597]], [[53.743107, -2.050597], [53.743018, -2.050546]], [[53.742639, -2.05015], [53.742545, -2.05017]], [[53.742545, -2.05017], [53.742447, -2.050174]], [[53.742358, -2.050246], [53.742258, -2.050267]], [[53.742258, -2.050267], [53.742212, -2.05022]], [[53.742212, -2.05022], [53.742118, -2.050185]], [[53.741867, -2.049938], [53.741773, -2.049889]], [[53.741296, -2.04933], [53.741212, -2.049264]], [[53.741212, -2.049264], [53.74112, -2.049279]], [[53.74112, -2.049279], [53.741054, -2.049165]], [[53.741054, -2.049165], [53.740978, -2.049074]], [[53.740709, -2.048874], [53.740668, -2.048931]], [[53.739601, -2.048068], [53.739513, -2.048032]], [[53.739226, -2.047908], [53.73913, -2.047882]], [[53.73913, -2.047882], [53.739037, -2.047931]], [[53.738837, -2.047065], [53.73877, -2.046947]], [[53.73877, -2.046947], [53.738852, -2.046862]], [[53.738562, -2.044907], [53.738564, -2.045078]], [[53.738564, -2.045078], [53.738528, -2.045228]], [[53.738528, -2.045228], [53.738378, -2.045239]], [[53.738296, -2.045251], [53.738188, -2.045153]], [[53.738188, -2.045153], [53.738144, -2.045096]], [[53.737158, -2.046703], [53.737231, -2.046807]], [[53.737231, -2.046807], [53.737222, -2.046965]], [[53.736944, -2.047207], [53.736872, -2.047303]], [[53.736811, -2.047437], [53.73675, -2.047567]], [[53.736601, -2.047726], [53.736521, -2.04783]], [[53.736318, -2.048116], [53.736308, -2.048277]], [[53.736308, -2.048277], [53.736232, -2.048367]], [[53.735675, -2.049255], [53.735625, -2.049396]], [[53.735912, -2.046643], [53.735945, -2.046487]], [[53.735945, -2.046487], [53.735945, -2.046333]], [[53.735945, -2.046333], [53.735973, -2.046173]], [[53.735965, -2.045847], [53.736025, -2.045731]], [[53.735857, -2.045375], [53.735784, -2.045372]], [[53.735705, -2.045474], [53.735609, -2.045441]], [[53.734976, -2.04451], [53.734926, -2.044419]], [[53.734926, -2.044419], [53.734884, -2.044034]], [[53.73411, -2.044191], [53.734136, -2.044045]], [[53.734136, -2.044045], [53.734143, -2.043891]], [[53.734143, -2.043891], [53.734076, -2.043759]], [[53.734076, -2.043759], [53.734002, -2.043663]], [[53.734045, -2.042751], [53.734118, -2.042626]], [[53.734295, -2.042108], [53.734305, -2.041951]], [[53.734558, -2.041077], [53.734636, -2.040823]], [[53.734636, -2.040823], [53.734709, -2.040714]], [[53.734838, -2.040469], [53.734911, -2.040366]], [[53.735074, -2.039974], [53.735068, -2.039821]], [[53.735068, -2.039821], [53.735096, -2.039659]], [[53.735096, -2.039659], [53.735124, -2.039509]], [[53.735124, -2.039509], [53.735156, -2.039352]], [[53.735156, -2.039352], [53.735169, -2.039184]], [[53.735169, -2.039184], [53.735196, -2.039034]], [[53.735196, -2.039034], [53.735264, -2.038914]], [[53.735264, -2.038914], [53.735284, -2.038754]], [[53.735284, -2.038754], [53.735236, -2.038621]], [[53.735254, -2.037247], [53.735244, -2.037085]], [[53.735244, -2.037085], [53.735224, -2.036931]], [[53.735176, -2.03677], [53.735139, -2.036558]], [[53.735153, -2.036059], [53.735099, -2.035932]], [[53.734849, -2.035954], [53.734761, -2.035907]], [[53.73483, -2.035354], [53.734747, -2.035415]], [[53.734681, -2.035305], [53.734617, -2.035181]], [[53.734354, -2.034337], [53.734429, -2.034211]], [[53.734429, -2.034211], [53.734436, -2.034058]], [[53.734436, -2.034058], [53.734362, -2.033959]], [[53.734362, -2.033959], [53.734364, -2.033793]], [[53.733964, -2.033514], [53.733867, -2.033461]], [[53.733731, -2.033264], [53.733653, -2.033147]], [[53.733653, -2.033147], [53.73356, -2.033138]], [[53.73356, -2.033138], [53.733505, -2.032998]], [[53.733421, -2.03291], [53.733331, -2.032938]], [[53.733247, -2.032878], [53.733152, -2.032847]], [[53.732987, -2.032732], [53.7329, -2.03269]], [[53.732824, -2.032776], [53.732739, -2.032686]], [[53.732655, -2.032615], [53.732588, -2.032506]], [[53.732534, -2.032368], [53.732469, -2.032254]], [[53.732469, -2.032254], [53.73242, -2.032114]], [[53.731955, -2.032025], [53.731865, -2.032102]], [[53.73179, -2.032201], [53.731697, -2.032196]], [[53.731697, -2.032196], [53.731617, -2.032095]], [[53.730816, -2.032205], [53.73075, -2.032319]], [[53.730675, -2.032414], [53.730593, -2.032337]], [[53.729294, -2.031115], [53.729203, -2.031134]], [[53.729038, -2.03093], [53.728942, -2.03091]], [[53.728942, -2.03091], [53.728857, -2.030827]], [[53.728857, -2.030827], [53.728812, -2.03068]], [[53.728812, -2.03068], [53.72872, -2.03063]], [[53.728633, -2.030585], [53.728537, -2.030534]], [[53.72836, -2.030415], [53.728269, -2.030396]], [[53.728269, -2.030396], [53.728171, -2.030389]], [[53.728171, -2.030389], [53.728078, -2.030347]], [[53.728078, -2.030347], [53.727994, -2.030404]], [[53.727994, -2.030404], [53.727899, -2.030404]], [[53.727809, -2.030333], [53.727712, -2.030313]], [[53.727614, -2.030304], [53.727516, -2.030306]], [[53.727516, -2.030306], [53.727422, -2.03031]], [[53.727422, -2.03031], [53.727327, -2.030289]], [[53.727327, -2.030289], [53.727228, -2.030298]], [[53.727228, -2.030298], [53.727132, -2.030307]], [[53.727035, -2.030315], [53.726937, -2.030309]], [[53.726937, -2.030309], [53.726848, -2.030331]], [[53.726848, -2.030331], [53.726769, -2.030424]], [[53.726769, -2.030424], [53.726679, -2.030414]], [[53.726582, -2.030436], [53.726501, -2.030526]], [[53.726501, -2.030526], [53.72639, -2.030533]], [[53.726205, -2.030455], [53.726113, -2.030494]], [[53.726113, -2.030494], [53.726045, -2.030615]], [[53.726045, -2.030615], [53.725951, -2.030635]], [[53.725951, -2.030635], [53.725863, -2.030693]], [[53.725863, -2.030693], [53.725766, -2.030723]], [[53.725766, -2.030723], [53.725667, -2.030746]], [[53.725667, -2.030746], [53.725584, -2.030833]], [[53.725584, -2.030833], [53.725494, -2.030874]], [[53.725494, -2.030874], [53.725425, -2.030996]], [[53.725425, -2.030996], [53.725362, -2.031123]], [[53.725118, -2.031386], [53.725032, -2.031429]], [[53.725032, -2.031429], [53.724951, -2.031504]], [[53.724951, -2.031504], [53.724872, -2.031577]], [[53.724872, -2.031577], [53.724801, -2.031675]], [[53.724801, -2.031675], [53.724736, -2.031787]], [[53.724736, -2.031787], [53.724656, -2.031875]], [[53.724213, -2.03151], [53.724151, -2.031386]], [[53.724088, -2.031254], [53.724017, -2.031145]], [[53.724069, -2.031274], [53.724133, -2.031385]], [[53.724133, -2.031385], [53.724201, -2.031513]], [[53.724201, -2.031513], [53.724266, -2.031629]], [[53.724266, -2.031629], [53.724321, -2.031762]], [[53.724321, -2.031762], [53.724396, -2.031861]], [[53.724396, -2.031861], [53.724475, -2.031956]], [[53.72408, -2.032413], [53.724025, -2.03254]], [[53.724025, -2.03254], [53.723941, -2.032599]], [[53.723941, -2.032599], [53.723862, -2.032702]], [[53.723724, -2.032925], [53.723663, -2.033038]], [[53.723663, -2.033038], [53.723596, -2.033142]], [[53.723596, -2.033142], [53.723526, -2.033251]], [[53.723526, -2.033251], [53.723436, -2.033325]], [[53.723436, -2.033325], [53.723371, -2.033433]], [[53.723371, -2.033433], [53.723299, -2.033546]], [[53.723299, -2.033546], [53.723227, -2.033637]], [[53.723227, -2.033637], [53.723176, -2.033771]], [[53.723161, -2.033935], [53.723085, -2.034029]], [[53.722823, -2.034221], [53.722764, -2.034341]], [[53.722519, -2.034414], [53.722428, -2.034387]], [[53.722428, -2.034387], [53.722333, -2.034363]], [[53.722143, -2.034262], [53.722046, -2.034214]], [[53.722046, -2.034214], [53.721948, -2.034202]], [[53.721754, -2.034227], [53.721662, -2.034276]], [[53.721662, -2.034276], [53.721558, -2.034283]], [[53.721462, -2.03427], [53.721366, -2.034251]], [[53.721279, -2.034197], [53.721253, -2.03404]], [[53.721253, -2.03404], [53.7212, -2.033899]], [[53.7212, -2.033899], [53.721109, -2.033853]], [[53.721109, -2.033853], [53.721036, -2.033762]], [[53.720889, -2.033555], [53.720818, -2.033448]], [[53.720818, -2.033448], [53.720755, -2.033316]], [[53.720755, -2.033316], [53.720687, -2.033192]], [[53.720687, -2.033192], [53.72061, -2.033084]], [[53.72061, -2.033084], [53.720561, -2.032943]], [[53.720561, -2.032943], [53.720504, -2.032804]], [[53.720463, -2.032657], [53.720422, -2.032506]], [[53.720422, -2.032506], [53.720347, -2.032407]], [[53.720219, -2.032194], [53.720142, -2.032113]], [[53.720142, -2.032113], [53.720052, -2.032071]], [[53.719408, -2.031473], [53.719308, -2.031447]], [[53.719079, -2.031603], [53.718982, -2.031623]], [[53.718982, -2.031623], [53.718891, -2.031675]], [[53.7187, -2.031739], [53.718615, -2.031819]], [[53.718615, -2.031819], [53.718538, -2.031919]], [[53.718538, -2.031919], [53.71845, -2.031969]], [[53.71836, -2.031991], [53.718284, -2.032082]], [[53.718284, -2.032082], [53.71821, -2.032169]], [[53.71821, -2.032169], [53.718138, -2.032268]], [[53.718138, -2.032268], [53.718071, -2.032387]], [[53.718071, -2.032387], [53.717978, -2.032431]], [[53.717978, -2.032431], [53.717912, -2.032536]], [[53.717912, -2.032536], [53.71784, -2.032627]], [[53.71784, -2.032627], [53.717782, -2.03276]], [[53.717782, -2.03276], [53.717692, -2.032839]], [[53.717692, -2.032839], [53.717602, -2.032893]], [[53.716856, -2.033502], [53.716766, -2.033483]], [[53.716605, -2.033658], [53.716554, -2.033802]], [[53.716554, -2.033802], [53.716478, -2.033904]], [[53.716478, -2.033904], [53.716399, -2.033988]], [[53.716219, -2.034109], [53.716127, -2.034117]], [[53.716127, -2.034117], [53.716033, -2.034121]], [[53.716033, -2.034121], [53.715942, -2.034115]], [[53.715748, -2.034182], [53.715657, -2.034196]], [[53.715382, -2.034349], [53.715294, -2.034387]], [[53.715294, -2.034387], [53.715191, -2.034397]], [[53.715191, -2.034397], [53.715098, -2.03441]], [[53.715098, -2.03441], [53.714999, -2.034425]], [[53.714999, -2.034425], [53.714928, -2.034521]], [[53.714928, -2.034521], [53.71495, -2.034687]], [[53.71495, -2.034687], [53.714963, -2.034843]], [[53.714987, -2.034997], [53.714982, -2.035173]], [[53.714971, -2.035509], [53.714952, -2.035668]], [[53.714952, -2.035668], [53.714935, -2.035821]], [[53.714935, -2.035821], [53.714906, -2.035987]], [[53.714906, -2.035987], [53.714874, -2.036139]], [[53.714874, -2.036139], [53.714859, -2.036298]], [[53.714859, -2.036298], [53.714822, -2.036459]], [[53.714822, -2.036459], [53.714784, -2.036611]], [[53.714751, -2.036755], [53.714726, -2.036906]], [[53.714709, -2.03707], [53.714738, -2.037225]], [[53.714738, -2.037225], [53.714744, -2.037381]], [[53.714744, -2.037381], [53.714748, -2.037543]], [[53.714748, -2.037543], [53.714726, -2.037696]], [[53.714726, -2.037696], [53.714681, -2.03784]], [[53.714681, -2.03784], [53.71466, -2.037993]], [[53.714602, -2.038459], [53.714608, -2.038625]], [[53.714608, -2.038625], [53.714619, -2.038794]], [[53.714619, -2.038794], [53.714612, -2.038962]], [[53.714612, -2.038962], [53.71459, -2.039116]], [[53.71459, -2.039116], [53.714566, -2.039272]], [[53.714566, -2.039272], [53.714579, -2.039437]], [[53.714579, -2.039437], [53.714554, -2.039597]], [[53.714554, -2.039597], [53.714517, -2.039746]], [[53.71451, -2.040038], [53.714474, -2.040188]], [[53.714492, -2.040462], [53.71449, -2.04062]], [[53.714448, -2.040921], [53.714441, -2.041079]], [[53.714412, -2.041398], [53.714409, -2.041552]], [[53.714409, -2.041552], [53.714413, -2.041718]], [[53.714333, -2.042008], [53.714326, -2.042166]], [[53.714326, -2.042166], [53.714351, -2.042317]], [[53.71423, -2.042309], [53.714258, -2.042353]], [[53.714004, -2.042137], [53.713911, -2.042082]], [[53.713643, -2.041926], [53.713551, -2.041885]], [[53.713551, -2.041885], [53.713458, -2.041832]], [[53.713458, -2.041832], [53.713364, -2.041837]], [[53.712641, -2.041543], [53.712553, -2.041493]], [[53.712275, -2.041471], [53.712186, -2.041511]], [[53.711997, -2.041589], [53.711908, -2.041662]], [[53.711908, -2.041662], [53.711816, -2.041718]], [[53.711555, -2.041922], [53.711468, -2.041982]], [[53.711018, -2.042556], [53.710928, -2.04258]], [[53.710928, -2.04258], [53.710839, -2.042636]], [[53.710839, -2.042636], [53.710752, -2.042728]], [[53.710752, -2.042728], [53.710672, -2.042837]], [[53.710345, -2.04313], [53.710265, -2.043203]], [[53.710265, -2.043203], [53.71017, -2.043243]], [[53.70955, -2.043625], [53.709459, -2.04367]], [[53.709459, -2.04367], [53.709367, -2.043725]], [[53.708817, -2.044006], [53.708737, -2.04411]], [[53.708737, -2.04411], [53.70866, -2.044206]], [[53.708336, -2.04455], [53.708253, -2.044644]], [[53.708253, -2.044644], [53.70818, -2.044759]], [[53.70818, -2.044759], [53.708081, -2.044804]], [[53.708081, -2.044804], [53.707992, -2.044857]], [[53.707451, -2.045475], [53.707384, -2.045578]], [[53.707384, -2.045578], [53.707325, -2.045715]], [[53.707189, -2.045952], [53.707124, -2.04607]], [[53.707124, -2.04607], [53.707055, -2.046179]], [[53.707055, -2.046179], [53.706963, -2.046263]], [[53.706735, -2.046552], [53.70667, -2.046658]], [[53.706535, -2.046901], [53.706473, -2.047027]], [[53.706473, -2.047027], [53.706407, -2.047136]], [[53.706407, -2.047136], [53.706314, -2.047211]], [[53.706151, -2.047609], [53.706091, -2.047741]], [[53.70585, -2.048238], [53.70576, -2.048213]], [[53.705708, -2.048356], [53.705737, -2.04851]], [[53.705737, -2.04851], [53.705701, -2.048651]], [[53.705638, -2.049139], [53.705656, -2.049304]], [[53.705656, -2.049304], [53.705641, -2.04947]], [[53.705502, -2.049667], [53.70545, -2.049799]], [[53.70545, -2.049799], [53.705409, -2.049946]], [[53.705409, -2.049946], [53.705343, -2.050069]], [[53.705343, -2.050069], [53.705294, -2.0502]], [[53.705294, -2.0502], [53.705229, -2.050326]], [[53.705112, -2.05057], [53.70506, -2.050709]], [[53.70506, -2.050709], [53.705012, -2.050843]], [[53.704988, -2.050997], [53.704923, -2.051123]], [[53.704923, -2.051123], [53.704848, -2.051223]], [[53.704848, -2.051223], [53.704775, -2.051326]], [[53.704775, -2.051326], [53.704701, -2.051415]], [[53.704701, -2.051415], [53.704629, -2.051519]], [[53.704629, -2.051519], [53.704575, -2.051643]], [[53.704575, -2.051643], [53.704538, -2.051789]], [[53.704538, -2.051789], [53.704456, -2.051892]], [[53.704456, -2.051892], [53.704364, -2.05195]], [[53.703349, -2.052736], [53.703249, -2.052759]], [[53.703249, -2.052759], [53.703159, -2.052748]], [[53.702418, -2.053062], [53.702327, -2.053043]], [[53.702327, -2.053043], [53.702234, -2.053027]], [[53.702234, -2.053027], [53.702151, -2.053103]], [[53.702151, -2.053103], [53.702054, -2.053096]], [[53.702054, -2.053096], [53.701959, -2.053062]], [[53.701959, -2.053062], [53.701873, -2.053108]], [[53.701873, -2.053108], [53.70179, -2.053176]], [[53.70179, -2.053176], [53.701716, -2.053286]], [[53.701716, -2.053286], [53.701621, -2.053352]], [[53.701621, -2.053352], [53.701549, -2.053456]], [[53.701474, -2.053544], [53.701384, -2.053572]], [[53.701384, -2.053572], [53.701286, -2.053539]], [[53.701286, -2.053539], [53.701196, -2.053563]], [[53.701196, -2.053563], [53.701114, -2.053652]], [[53.701114, -2.053652], [53.70102, -2.053706]], [[53.70102, -2.053706], [53.700929, -2.053736]], [[53.700929, -2.053736], [53.700844, -2.05382]], [[53.700844, -2.05382], [53.700763, -2.053906]], [[53.700763, -2.053906], [53.700682, -2.05398]], [[53.700682, -2.05398], [53.700585, -2.054029]], [[53.700585, -2.054029], [53.700502, -2.054104]], [[53.700502, -2.054104], [53.700407, -2.054112]], [[53.700407, -2.054112], [53.700321, -2.054186]], [[53.700321, -2.054186], [53.700233, -2.05422]], [[53.700233, -2.05422], [53.700146, -2.054277]], [[53.700054, -2.054302], [53.699963, -2.054346]], [[53.699963, -2.054346], [53.699865, -2.054364]], [[53.699282, -2.054411], [53.699189, -2.05446]], [[53.699189, -2.05446], [53.699099, -2.05451]], [[53.698897, -2.05454], [53.698804, -2.054595]], [[53.698804, -2.054595], [53.698714, -2.05455]], [[53.698714, -2.05455], [53.698625, -2.054583]], [[53.698539, -2.054631], [53.698451, -2.054594]], [[53.698451, -2.054594], [53.698358, -2.054643]], [[53.698358, -2.054643], [53.698268, -2.054623]], [[53.697978, -2.0547], [53.697893, -2.054793]], [[53.697893, -2.054793], [53.697806, -2.054876]], [[53.697712, -2.054922], [53.697617, -2.054986]], [[53.697617, -2.054986], [53.697525, -2.055029]], [[53.697525, -2.055029], [53.697426, -2.055048]], [[53.697426, -2.055048], [53.697333, -2.05512]], [[53.696402, -2.055278], [53.696311, -2.055317]], [[53.696311, -2.055317], [53.696231, -2.055428]], [[53.695499, -2.055477], [53.695408, -2.055473]], [[53.695408, -2.055473], [53.695315, -2.055467]], [[53.695126, -2.055528], [53.695033, -2.055506]], [[53.695033, -2.055506], [53.694929, -2.05552]], [[53.694733, -2.055628], [53.694637, -2.055607]], [[53.694637, -2.055607], [53.694561, -2.055713]], [[53.694561, -2.055713], [53.694472, -2.055656]], [[53.693214, -2.056921], [53.693153, -2.057059]], [[53.692379, -2.057952], [53.692289, -2.057983]], [[53.692289, -2.057983], [53.692207, -2.058074]], [[53.691884, -2.058667], [53.691795, -2.058728]], [[53.691339, -2.059496], [53.691271, -2.059613]], [[53.691218, -2.060427], [53.691214, -2.060598]], [[53.691156, -2.062985], [53.691214, -2.063126]], [[53.691289, -2.063582], [53.691338, -2.063734]], [[53.69142, -2.06419], [53.691479, -2.064326]], [[53.691738, -2.065746], [53.691792, -2.065883]], [[53.691867, -2.066521], [53.691888, -2.066687]], [[53.691888, -2.066687], [53.691944, -2.066814]], [[53.691944, -2.066814], [53.691965, -2.066975]], [[53.692096, -2.067738], [53.692115, -2.067903]], [[53.69214, -2.068213], [53.692162, -2.068365]], [[53.692083, -2.068641], [53.692061, -2.068795]], [[53.692061, -2.068795], [53.691996, -2.068912]], [[53.691769, -2.069158], [53.691669, -2.069181]], [[53.690733, -2.06954], [53.690639, -2.069573]], [[53.690639, -2.069573], [53.690547, -2.069617]], [[53.690547, -2.069617], [53.690455, -2.069624]], [[53.690455, -2.069624], [53.690361, -2.069646]], [[53.68997, -2.06969], [53.689919, -2.069823]], [[53.689919, -2.069823], [53.689847, -2.069924]], [[53.689272, -2.070161], [53.689186, -2.070097]], [[53.689055, -2.069966], [53.688966, -2.069924]], [[53.688966, -2.069924], [53.688881, -2.069875]], [[53.688525, -2.069677], [53.688429, -2.069638]], [[53.687893, -2.069222], [53.687799, -2.069189]], [[53.687511, -2.06902], [53.687417, -2.06897]], [[53.687417, -2.06897], [53.687329, -2.068931]], [[53.686819, -2.068561], [53.686721, -2.068527]], [[53.685866, -2.067763], [53.68579, -2.067677]], [[53.685082, -2.067212], [53.684994, -2.067173]], [[53.68483, -2.067022], [53.684747, -2.066941]], [[53.684052, -2.066449], [53.683952, -2.066416]], [[53.683274, -2.065892], [53.68318, -2.06587]], [[53.68318, -2.06587], [53.683094, -2.065797]], [[53.682299, -2.065302], [53.682216, -2.065242]], [[53.682216, -2.065242], [53.682122, -2.06519]], [[53.681327, -2.064229], [53.681254, -2.064128]], [[53.679848, -2.060689], [53.679794, -2.060564]], [[53.679794, -2.060564], [53.679708, -2.060487]], [[53.679708, -2.060487], [53.679642, -2.060376]], [[53.679584, -2.060239], [53.679513, -2.060137]], [[53.679417, -2.060167], [53.67932, -2.060113]], [[53.679224, -2.060079], [53.679131, -2.060076]], [[53.679131, -2.060076], [53.679036, -2.060075]], [[53.678029, -2.059501], [53.677941, -2.059456]], [[53.677941, -2.059456], [53.677862, -2.059371]], [[53.676788, -2.059039], [53.676689, -2.059029]], [[53.676131, -2.058923], [53.676036, -2.058938]], [[53.676036, -2.058938], [53.675946, -2.05893]], [[53.672297, -2.057594], [53.672239, -2.057714]], [[53.672239, -2.057714], [53.672171, -2.057834]], [[53.672171, -2.057834], [53.672099, -2.057958]], [[53.67172, -2.058494], [53.671626, -2.058529]], [[53.671153, -2.058522], [53.671052, -2.058513]], [[53.66997, -2.057839], [53.669897, -2.057743]], [[53.669897, -2.057743], [53.669814, -2.057646]], [[53.6694, -2.056732], [53.669325, -2.056635]], [[53.668402, -2.055522], [53.668324, -2.055425]], [[53.668246, -2.055345], [53.668154, -2.055297]], [[53.668154, -2.055297], [53.668059, -2.055225]], [[53.667694, -2.055], [53.6676, -2.054948]], [[53.666275, -2.054936], [53.666189, -2.054995]], [[53.665751, -2.055379], [53.665656, -2.055449]], [[53.662936, -2.056142], [53.66284, -2.056131]], [[53.661999, -2.05566], [53.661913, -2.055582]], [[53.661743, -2.055422], [53.661656, -2.055354]], [[53.661195, -2.055179], [53.661095, -2.055195]], [[53.66004, -2.052636], [53.660115, -2.052532]], [[53.660115, -2.052532], [53.660182, -2.052421]], [[53.660212, -2.052266], [53.660215, -2.052114]], [[53.66015, -2.051168], [53.660134, -2.051]], [[53.659964, -2.050268], [53.659874, -2.050232]], [[53.659874, -2.050232], [53.659809, -2.050122]], [[53.659597, -2.049638], [53.659514, -2.049544]], [[53.658576, -2.048107], [53.6585, -2.047995]], [[53.6585, -2.047995], [53.658431, -2.047889]], [[53.658282, -2.047689], [53.658215, -2.047566]], [[53.658215, -2.047566], [53.65814, -2.047475]], [[53.658025, -2.047351], [53.657938, -2.047405]], [[53.657379, -2.049257], [53.657334, -2.0494]], [[53.657334, -2.0494], [53.657281, -2.049531]], [[53.656902, -2.050247], [53.65683, -2.050368]], [[53.65683, -2.050368], [53.656732, -2.050429]], [[53.656732, -2.050429], [53.656636, -2.050449]], [[53.656636, -2.050449], [53.656539, -2.050454]], [[53.656443, -2.050413], [53.656353, -2.050472]], [[53.656353, -2.050472], [53.656261, -2.050479]], [[53.656261, -2.050479], [53.656172, -2.050533]], [[53.656172, -2.050533], [53.656083, -2.050552]], [[53.656083, -2.050552], [53.655989, -2.050539]], [[53.655989, -2.050539], [53.655892, -2.05059]], [[53.655892, -2.05059], [53.655798, -2.050566]], [[53.655621, -2.050531], [53.655584, -2.050373]], [[53.655584, -2.050373], [53.655548, -2.050232]], [[53.655548, -2.050232], [53.655526, -2.050076]], [[53.655526, -2.050076], [53.655437, -2.050003]], [[53.655437, -2.050003], [53.655362, -2.049899]], [[53.655189, -2.049785], [53.655155, -2.049929]], [[53.655155, -2.049929], [53.655102, -2.050066]], [[53.655102, -2.050066], [53.65506, -2.05022]], [[53.654754, -2.050633], [53.65467, -2.050716]], [[53.65467, -2.050716], [53.65459, -2.050788]], [[53.65459, -2.050788], [53.654511, -2.050859]], [[53.653707, -2.051799], [53.653621, -2.051876]], [[53.653621, -2.051876], [53.65353, -2.051954]], [[53.652972, -2.052055], [53.652882, -2.05207]], [[53.652882, -2.05207], [53.652782, -2.052071]], [[53.652782, -2.052071], [53.652692, -2.052078]], [[53.652692, -2.052078], [53.652589, -2.052084]], [[53.652319, -2.051963], [53.652236, -2.051873]], [[53.652236, -2.051873], [53.652154, -2.05178]], [[53.652154, -2.05178], [53.652061, -2.051717]], [[53.651625, -2.051447], [53.651541, -2.051368]], [[53.651541, -2.051368], [53.651448, -2.051307]], [[53.651448, -2.051307], [53.651364, -2.051248]], [[53.651364, -2.051248], [53.651285, -2.051167]], [[53.650657, -2.050188], [53.65062, -2.050044]], [[53.650484, -2.049309], [53.6504, -2.049234]], [[53.6504, -2.049234], [53.650322, -2.049157]], [[53.650322, -2.049157], [53.650261, -2.049017]], [[53.650126, -2.048419], [53.650048, -2.048311]], [[53.650048, -2.048311], [53.64997, -2.048218]], [[53.649815, -2.048014], [53.649726, -2.047984]], [[53.649443, -2.04779], [53.649418, -2.047658]], [[53.649512, -2.047312], [53.649582, -2.047211]], [[53.649582, -2.047211], [53.649594, -2.047052]], [[53.649598, -2.046898], [53.649637, -2.046747]], [[53.649612, -2.04503], [53.649636, -2.044882]], [[53.649636, -2.044882], [53.649654, -2.044732]], [[53.649691, -2.044429], [53.649726, -2.044284]], [[53.649726, -2.044284], [53.649677, -2.044144]], [[53.649677, -2.044144], [53.649687, -2.043981]], [[53.64971, -2.043823], [53.649661, -2.043675]], [[53.649661, -2.043675], [53.649671, -2.043515]], [[53.649671, -2.043515], [53.649707, -2.043357]], [[53.649707, -2.043357], [53.649774, -2.043241]], [[53.649772, -2.042919], [53.649808, -2.042771]], [[53.649808, -2.042771], [53.649836, -2.04261]], [[53.649836, -2.04261], [53.649879, -2.042471]], [[53.649879, -2.042471], [53.649914, -2.042328]], [[53.649914, -2.042328], [53.649945, -2.042182]], [[53.650004, -2.042064], [53.650013, -2.041909]], [[53.649838, -2.041746], [53.64975, -2.041809]], [[53.64975, -2.041809], [53.64966, -2.041825]], [[53.64966, -2.041825], [53.64958, -2.0419]], [[53.649507, -2.042007], [53.649423, -2.042071]], [[53.649149, -2.042078], [53.649063, -2.042147]], [[53.649063, -2.042147], [53.648976, -2.042213]], [[53.648976, -2.042213], [53.648887, -2.042247]], [[53.648801, -2.042301], [53.648708, -2.042309]], [[53.648708, -2.042309], [53.648622, -2.042233]], [[53.648622, -2.042233], [53.648521, -2.042247]], [[53.648521, -2.042247], [53.648431, -2.04228]], [[53.648431, -2.04228], [53.648335, -2.042291]], [[53.648335, -2.042291], [53.648242, -2.042281]], [[53.647869, -2.042231], [53.64778, -2.042279]], [[53.647685, -2.042246], [53.647592, -2.042247]], [[53.647501, -2.042329], [53.647407, -2.042378]], [[53.647407, -2.042378], [53.647316, -2.042384]], [[53.647316, -2.042384], [53.647214, -2.042354]], [[53.64712, -2.042379], [53.64703, -2.042373]], [[53.646665, -2.042373], [53.646588, -2.042459]], [[53.645992, -2.043247], [53.645893, -2.043239]], [[53.645893, -2.043239], [53.645792, -2.043239]], [[53.645172, -2.043076], [53.645078, -2.04309]], [[53.645078, -2.04309], [53.644985, -2.043081]], [[53.644904, -2.043148], [53.644814, -2.043166]], [[53.644723, -2.043199], [53.644625, -2.04321]], [[53.644625, -2.04321], [53.644537, -2.043271]], [[53.644537, -2.043271], [53.64444, -2.043244]], [[53.644171, -2.043385], [53.644081, -2.04342]], [[53.644081, -2.04342], [53.644014, -2.043524]], [[53.643841, -2.043541], [53.643739, -2.043521]], [[53.643739, -2.043521], [53.643656, -2.043438]], [[53.643568, -2.043402], [53.643479, -2.043351]], [[53.643479, -2.043351], [53.643378, -2.04334]], [[53.643378, -2.04334], [53.643289, -2.043363]], [[53.643211, -2.043255], [53.643146, -2.043151]], [[53.643146, -2.043151], [53.64305, -2.043128]], [[53.642985, -2.043019], [53.64292, -2.042902]], [[53.64292, -2.042902], [53.642844, -2.042812]], [[53.642756, -2.04276], [53.64268, -2.04266]], [[53.64268, -2.04266], [53.642596, -2.042593]], [[53.642596, -2.042593], [53.642501, -2.04259]], [[53.642501, -2.04259], [53.642409, -2.042593]], [[53.642409, -2.042593], [53.642325, -2.042498]], [[53.642325, -2.042498], [53.642243, -2.042423]], [[53.642243, -2.042423], [53.642157, -2.042369]], [[53.642157, -2.042369], [53.642076, -2.042269]], [[53.642076, -2.042269], [53.641999, -2.042164]], [[53.641999, -2.042164], [53.641928, -2.042043]], [[53.641928, -2.042043], [53.64186, -2.041919]], [[53.641821, -2.041766], [53.641796, -2.041617]], [[53.641796, -2.041617], [53.641748, -2.041489]], [[53.641748, -2.041489], [53.641671, -2.041391]], [[53.641671, -2.041391], [53.641594, -2.041287]], [[53.641594, -2.041287], [53.64152, -2.041191]], [[53.64152, -2.041191], [53.641429, -2.041194]], [[53.641429, -2.041194], [53.641332, -2.041192]], [[53.641332, -2.041192], [53.641242, -2.041152]], [[53.641242, -2.041152], [53.641142, -2.041159]], [[53.640952, -2.041252], [53.640857, -2.041291]], [[53.640857, -2.041291], [53.640755, -2.041282]], [[53.640662, -2.041259], [53.640569, -2.041261]], [[53.640569, -2.041261], [53.640475, -2.041294]], [[53.640475, -2.041294], [53.640377, -2.041305]], [[53.640377, -2.041305], [53.640277, -2.041303]], [[53.640277, -2.041303], [53.640185, -2.041266]], [[53.640185, -2.041266], [53.640098, -2.04121]], [[53.640098, -2.04121], [53.640008, -2.041148]], [[53.640008, -2.041148], [53.639931, -2.04107]], [[53.639931, -2.04107], [53.639851, -2.040988]], [[53.639851, -2.040988], [53.639754, -2.04096]], [[53.639573, -2.040908], [53.639476, -2.040915]], [[53.639476, -2.040915], [53.639379, -2.040893]], [[53.639089, -2.040801], [53.639, -2.04075]], [[53.639, -2.04075], [53.638918, -2.040649]], [[53.638918, -2.040649], [53.638852, -2.04053]], [[53.638852, -2.04053], [53.638779, -2.040424]], [[53.638779, -2.040424], [53.638718, -2.040311]], [[53.638718, -2.040311], [53.638634, -2.04026]], [[53.638634, -2.04026], [53.638561, -2.040159]], [[53.638561, -2.040159], [53.638505, -2.040025]], [[53.638505, -2.040025], [53.638428, -2.039919]], [[53.638428, -2.039919], [53.638363, -2.039799]], [[53.638363, -2.039799], [53.638317, -2.039665]], [[53.638317, -2.039665], [53.638268, -2.039533]], [[53.638268, -2.039533], [53.638206, -2.039406]], [[53.638206, -2.039406], [53.638136, -2.039296]], [[53.638136, -2.039296], [53.638049, -2.039202]], [[53.638049, -2.039202], [53.63797, -2.039088]], [[53.637848, -2.03886], [53.637761, -2.038794]], [[53.637761, -2.038794], [53.637673, -2.038738]], [[53.637673, -2.038738], [53.637604, -2.038606]], [[53.637604, -2.038606], [53.637562, -2.038466]], [[53.637562, -2.038466], [53.637506, -2.038335]], [[53.637506, -2.038335], [53.637434, -2.038218]], [[53.637191, -2.037745], [53.637115, -2.037659]], [[53.637115, -2.037659], [53.637033, -2.037578]], [[53.637033, -2.037578], [53.636943, -2.037513]], [[53.636943, -2.037513], [53.636876, -2.037389]], [[53.636876, -2.037389], [53.636825, -2.037258]], [[53.636825, -2.037258], [53.636787, -2.037119]], [[53.63657, -2.03658], [53.636484, -2.036513]], [[53.636399, -2.036428], [53.63633, -2.036311]], [[53.636046, -2.035914], [53.636003, -2.035772]], [[53.636003, -2.035772], [53.635928, -2.03569]], [[53.635928, -2.03569], [53.635853, -2.035591]], [[53.635853, -2.035591], [53.635777, -2.035497]], [[53.635684, -2.035485], [53.635584, -2.035443]], [[53.635497, -2.035379], [53.635423, -2.035274]], [[53.635423, -2.035274], [53.635338, -2.035202]], [[53.635338, -2.035202], [53.63524, -2.03521]], [[53.63524, -2.03521], [53.635152, -2.035156]], [[53.635152, -2.035156], [53.635071, -2.03505]], [[53.635071, -2.03505], [53.634979, -2.035022]], [[53.634979, -2.035022], [53.634887, -2.034935]], [[53.634799, -2.034892], [53.634703, -2.034902]], [[53.63427, -2.034637], [53.634173, -2.034593]], [[53.634173, -2.034593], [53.634077, -2.034542]], [[53.634077, -2.034542], [53.633981, -2.034482]], [[53.633891, -2.034444], [53.633793, -2.034416]], [[53.633793, -2.034416], [53.633733, -2.034278]], [[53.633424, -2.033694], [53.633335, -2.033623]], [[53.633335, -2.033623], [53.63325, -2.033551]], [[53.633005, -2.033288], [53.632933, -2.033191]], [[53.632933, -2.033191], [53.632848, -2.033138]], [[53.632848, -2.033138], [53.632763, -2.033048]], [[53.632763, -2.033048], [53.632675, -2.033115]], [[53.632675, -2.033115], [53.632587, -2.033085]], [[53.632587, -2.033085], [53.632502, -2.033014]], [[53.632502, -2.033014], [53.63241, -2.033]], [[53.63241, -2.033], [53.632327, -2.032888]], [[53.632081, -2.03267], [53.632001, -2.032577]], [[53.63166, -2.03229], [53.631567, -2.03227]], [[53.631567, -2.03227], [53.63149, -2.032189]], [[53.63149, -2.032189], [53.631419, -2.032082]], [[53.631069, -2.03184], [53.630995, -2.031745]], [[53.630905, -2.031685], [53.630829, -2.031585]], [[53.630829, -2.031585], [53.630747, -2.031488]], [[53.63066, -2.031205], [53.63061, -2.031069]], [[53.63061, -2.031069], [53.63055, -2.03095]], [[53.63055, -2.03095], [53.630514, -2.030809]], [[53.630514, -2.030809], [53.6305, -2.030648]], [[53.6305, -2.030648], [53.630474, -2.030501]], [[53.630474, -2.030501], [53.630448, -2.030337]], [[53.630448, -2.030337], [53.630422, -2.030179]], [[53.630422, -2.030179], [53.630409, -2.030021]], [[53.630354, -2.029722], [53.630349, -2.029558]], [[53.630408, -2.028283], [53.630345, -2.028161]], [[53.630345, -2.028161], [53.630294, -2.028027]], [[53.630294, -2.028027], [53.630219, -2.027915]], [[53.630219, -2.027915], [53.630159, -2.02779]], [[53.630159, -2.02779], [53.630148, -2.02763]], [[53.630148, -2.02763], [53.630131, -2.027471]], [[53.630131, -2.027471], [53.630131, -2.027306]], [[53.630131, -2.027306], [53.630118, -2.027145]], [[53.630118, -2.027145], [53.630089, -2.026981]], [[53.630089, -2.026981], [53.630012, -2.026883]], [[53.629956, -2.026748], [53.629926, -2.026595]], [[53.629926, -2.026595], [53.629861, -2.026458]], [[53.629861, -2.026458], [53.629764, -2.026479]], [[53.629764, -2.026479], [53.629666, -2.02646]], [[53.629666, -2.02646], [53.629571, -2.026436]], [[53.629571, -2.026436], [53.629476, -2.026399]], [[53.629205, -2.026394], [53.62911, -2.026435]], [[53.629015, -2.026462], [53.628924, -2.02646]], [[53.628655, -2.026371], [53.628558, -2.026379]], [[53.628558, -2.026379], [53.628483, -2.026465]], [[53.628317, -2.026644], [53.628219, -2.026683]], [[53.628126, -2.02669], [53.628039, -2.02674]], [[53.627962, -2.026841], [53.627872, -2.026887]], [[53.627672, -2.026863], [53.627581, -2.026892]], [[53.627581, -2.026892], [53.627496, -2.026959]], [[53.627496, -2.026959], [53.6274, -2.02695]], [[53.6274, -2.02695], [53.627304, -2.026982]], [[53.627304, -2.026982], [53.627207, -2.026998]], [[53.627207, -2.026998], [53.627108, -2.027026]], [[53.627108, -2.027026], [53.627015, -2.027039]], [[53.627015, -2.027039], [53.626934, -2.027108]], [[53.626934, -2.027108], [53.626861, -2.027227]], [[53.626861, -2.027227], [53.626774, -2.027308]], [[53.626692, -2.027384], [53.626593, -2.027383]], [[53.626593, -2.027383], [53.626503, -2.027378]], [[53.626219, -2.027369], [53.626138, -2.027441]], [[53.626138, -2.027441], [53.626044, -2.027479]], [[53.626044, -2.027479], [53.62595, -2.027473]], [[53.62595, -2.027473], [53.625859, -2.027481]], [[53.625859, -2.027481], [53.625773, -2.027535]], [[53.625773, -2.027535], [53.625686, -2.02758]], [[53.625291, -2.027512], [53.625197, -2.027549]], [[53.625102, -2.027538], [53.625002, -2.027524]], [[53.625002, -2.027524], [53.624917, -2.027466]], [[53.624917, -2.027466], [53.624833, -2.027412]], [[53.624833, -2.027412], [53.624731, -2.027381]], [[53.624548, -2.02731], [53.624446, -2.027326]], [[53.624264, -2.027257], [53.624167, -2.027256]], [[53.624167, -2.027256], [53.624081, -2.027321]], [[53.624081, -2.027321], [53.623993, -2.027395]], [[53.623993, -2.027395], [53.623984, -2.027557]], [[53.623902, -2.027287], [53.623842, -2.027152]], [[53.623842, -2.027152], [53.62378, -2.027016]], [[53.623514, -2.027062], [53.623418, -2.027095]], [[53.623418, -2.027095], [53.623317, -2.027068]], [[53.623317, -2.027068], [53.623231, -2.027019]], [[53.623231, -2.027019], [53.623146, -2.026954]], [[53.623146, -2.026954], [53.623054, -2.026877]], [[53.622863, -2.026823], [53.622773, -2.026844]], [[53.622773, -2.026844], [53.622679, -2.026823]], [[53.622679, -2.026823], [53.622593, -2.026768]], [[53.622593, -2.026768], [53.622501, -2.026822]], [[53.622501, -2.026822], [53.622402, -2.026804]], [[53.622402, -2.026804], [53.622313, -2.026753]], [[53.622313, -2.026753], [53.622224, -2.026694]], [[53.622035, -2.026641], [53.621938, -2.026653]], [[53.621847, -2.026624], [53.621752, -2.026575]], [[53.621656, -2.026535], [53.62156, -2.026552]], [[53.621461, -2.026542], [53.621364, -2.026538]], [[53.621196, -2.026389], [53.62112, -2.026307]], [[53.62112, -2.026307], [53.621031, -2.026254]], [[53.621031, -2.026254], [53.620936, -2.026202]], [[53.620839, -2.026174], [53.620751, -2.02613]], [[53.620661, -2.02611], [53.620566, -2.02612]], [[53.620566, -2.02612], [53.620469, -2.026098]], [[53.620469, -2.026098], [53.620377, -2.026152]], [[53.620377, -2.026152], [53.620276, -2.026151]], [[53.620276, -2.026151], [53.620183, -2.026137]], [[53.620183, -2.026137], [53.620096, -2.026087]], [[53.620096, -2.026087], [53.619996, -2.026044]], [[53.619996, -2.026044], [53.619902, -2.025994]], [[53.619902, -2.025994], [53.619809, -2.02596]], [[53.619809, -2.02596], [53.61972, -2.025904]], [[53.61972, -2.025904], [53.619624, -2.025856]], [[53.619624, -2.025856], [53.61953, -2.025824]], [[53.61953, -2.025824], [53.619437, -2.025867]], [[53.619437, -2.025867], [53.619341, -2.025833]], [[53.619341, -2.025833], [53.619241, -2.025811]], [[53.619241, -2.025811], [53.619145, -2.025748]], [[53.618947, -2.025711], [53.618862, -2.025657]], [[53.618695, -2.025542], [53.618604, -2.025506]], [[53.618604, -2.025506], [53.618522, -2.025441]], [[53.618336, -2.025385], [53.618245, -2.025345]], [[53.618245, -2.025345], [53.618148, -2.025305]], [[53.618148, -2.025305], [53.618063, -2.025253]], [[53.618063, -2.025253], [53.617976, -2.025198]], [[53.617976, -2.025198], [53.617886, -2.025141]], [[53.617789, -2.025131], [53.617699, -2.025115]], [[53.617606, -2.025104], [53.617505, -2.02507]], [[53.617505, -2.02507], [53.617417, -2.02503]], [[53.617254, -2.024873], [53.617162, -2.024824]], [[53.617162, -2.024824], [53.617069, -2.024774]], [[53.617069, -2.024774], [53.616973, -2.02478]], [[53.616803, -2.024409], [53.616787, -2.024253]], [[53.616787, -2.024253], [53.616756, -2.024101]], [[53.616756, -2.024101], [53.616747, -2.023923]], [[53.616717, -2.023519], [53.616724, -2.02336]], [[53.616724, -2.02336], [53.616703, -2.023192]], [[53.616677, -2.02289], [53.61663, -2.022748]], [[53.61663, -2.022748], [53.616594, -2.022586]], [[53.616594, -2.022586], [53.616537, -2.02246]], [[53.616537, -2.02246], [53.616463, -2.022352]], [[53.616059, -2.021312], [53.616021, -2.021174]], [[53.616021, -2.021174], [53.615975, -2.021031]], [[53.615658, -2.020207], [53.615592, -2.020091]], [[53.615592, -2.020091], [53.615541, -2.019955]], [[53.615533, -2.019788], [53.615541, -2.01963]], [[53.615541, -2.01963], [53.615546, -2.019468]], [[53.615546, -2.019468], [53.615541, -2.019302]], [[53.615541, -2.019302], [53.615556, -2.019142]], [[53.615556, -2.019142], [53.61557, -2.018984]], [[53.61549, -2.01854], [53.615468, -2.018393]], [[53.615295, -2.017641], [53.615285, -2.017472]], [[53.615285, -2.017472], [53.615316, -2.017316]], [[53.615326, -2.017002], [53.615341, -2.01685]], [[53.615341, -2.01685], [53.615308, -2.016696]], [[53.615308, -2.016696], [53.615327, -2.016548]], [[53.615327, -2.016548], [53.615302, -2.016401]], [[53.615234, -2.015815], [53.615188, -2.015663]], [[53.615188, -2.015663], [53.615144, -2.015511]], [[53.615144, -2.015511], [53.61509, -2.015384]], [[53.61509, -2.015384], [53.615038, -2.015251]], [[53.615038, -2.015251], [53.615018, -2.015095]], [[53.615018, -2.015095], [53.615005, -2.014938]], [[53.615005, -2.014938], [53.614968, -2.014783]], [[53.614968, -2.014783], [53.614923, -2.014639]], [[53.614923, -2.014639], [53.614887, -2.014484]], [[53.614805, -2.014189], [53.61478, -2.014034]], [[53.614498, -2.013366], [53.614481, -2.013215]], [[53.614481, -2.013215], [53.614453, -2.013068]], [[53.614446, -2.012912], [53.614418, -2.012748]], [[53.614418, -2.012748], [53.614404, -2.012574]], [[53.614425, -2.011937], [53.614438, -2.011782]], [[53.614438, -2.011782], [53.614403, -2.011636]], [[53.61436, -2.011484], [53.614344, -2.01133]], [[53.614248, -2.010895], [53.61425, -2.010742]], [[53.61425, -2.010742], [53.614253, -2.010576]], [[53.614253, -2.010576], [53.614241, -2.010425]], [[53.6141, -2.01002], [53.614033, -2.009886]], [[53.614033, -2.009886], [53.613974, -2.009757]], [[53.613662, -2.00912], [53.613589, -2.009]], [[53.613349, -2.00875], [53.6133, -2.00878]], [[53.613067, -2.008513], [53.612973, -2.008451]], [[53.612585, -2.007778], [53.612542, -2.007632]], [[53.612542, -2.007632], [53.612525, -2.007466]], [[53.612429, -2.007417], [53.612375, -2.007542]], [[53.612282, -2.007553], [53.612197, -2.007485]], [[53.612197, -2.007485], [53.612135, -2.007359]], [[53.612135, -2.007359], [53.612095, -2.007209]], [[53.612095, -2.007209], [53.612077, -2.007051]], [[53.612077, -2.007051], [53.612033, -2.006915]], [[53.611878, -2.006757], [53.611842, -2.006605]], [[53.611842, -2.006605], [53.611778, -2.006497]], [[53.6117, -2.006219], [53.611659, -2.006077]], [[53.611659, -2.006077], [53.61161, -2.00593]], [[53.61161, -2.00593], [53.61155, -2.005809]], [[53.611482, -2.005693], [53.611424, -2.005569]], [[53.611424, -2.005569], [53.611394, -2.005418]], [[53.611347, -2.005271], [53.6113, -2.005123]], [[53.611212, -2.004839], [53.611169, -2.004697]], [[53.611075, -2.004638], [53.610998, -2.004518]], [[53.610918, -2.004423], [53.610853, -2.004317]], [[53.610853, -2.004317], [53.610795, -2.004192]], [[53.610795, -2.004192], [53.610712, -2.004079]], [[53.610712, -2.004079], [53.610658, -2.003956]], [[53.61052, -2.003723], [53.610439, -2.00364]], [[53.609977, -2.00283], [53.609906, -2.002734]], [[53.609906, -2.002734], [53.609828, -2.002629]], [[53.609504, -2.00215], [53.609445, -2.002029]], [[53.607799, -1.999496], [53.607737, -1.999387]], [[53.607177, -1.997864], [53.60711, -1.997756]], [[53.607004, -1.997248], [53.606906, -1.99721]], [[53.606739, -1.997071], [53.606679, -1.996945]], [[53.606393, -1.996476], [53.60632, -1.996358]], [[53.60632, -1.996358], [53.606234, -1.996291]], [[53.606234, -1.996291], [53.606166, -1.996168]], [[53.606166, -1.996168], [53.606085, -1.996081]], [[53.606085, -1.996081], [53.606002, -1.996009]], [[53.605669, -1.995674], [53.605575, -1.995648]], [[53.60442, -1.995141], [53.604319, -1.995137]], [[53.604319, -1.995137], [53.604219, -1.995107]], [[53.604219, -1.995107], [53.60412, -1.995092]], [[53.60412, -1.995092], [53.604023, -1.995109]], [[53.604023, -1.995109], [53.603934, -1.995075]], [[53.603934, -1.995075], [53.603833, -1.995075]], [[53.603833, -1.995075], [53.60374, -1.995033]], [[53.60374, -1.995033], [53.603653, -1.994987]], [[53.603653, -1.994987], [53.603564, -1.994954]], [[53.603564, -1.994954], [53.603483, -1.994881]], [[53.603399, -1.994817], [53.603307, -1.994821]], [[53.603219, -1.994781], [53.603142, -1.994687]], [[53.603142, -1.994687], [53.603065, -1.994594]], [[53.603065, -1.994594], [53.60298, -1.994528]], [[53.602907, -1.994433], [53.602825, -1.994335]], [[53.602825, -1.994335], [53.602737, -1.994258]], [[53.602012, -1.993752], [53.601932, -1.993677]], [[53.601932, -1.993677], [53.601842, -1.99359]], [[53.601077, -1.993308], [53.600979, -1.993324]], [[53.600979, -1.993324], [53.600877, -1.99331]], [[53.600597, -1.993347], [53.600506, -1.993364]], [[53.600415, -1.993342], [53.600317, -1.993354]], [[53.599928, -1.993407], [53.599854, -1.993511]], [[53.599854, -1.993511], [53.599765, -1.993558]], [[53.599677, -1.993591], [53.599593, -1.993647]], [[53.599593, -1.993647], [53.599506, -1.993682]], [[53.598983, -1.994067], [53.598883, -1.994075]], [[53.598883, -1.994075], [53.598786, -1.994059]], [[53.598786, -1.994059], [53.598697, -1.99408]], [[53.598697, -1.99408], [53.598597, -1.994123]], [[53.598439, -1.994279], [53.598373, -1.994387]], [[53.598373, -1.994387], [53.598331, -1.994543]], [[53.598331, -1.994543], [53.598257, -1.994643]], [[53.598257, -1.994643], [53.598164, -1.994673]], [[53.597543, -1.994559], [53.597466, -1.99445]], [[53.597466, -1.99445], [53.597403, -1.994328]], [[53.597403, -1.994328], [53.597323, -1.994226]], [[53.597323, -1.994226], [53.597261, -1.994106]], [[53.597261, -1.994106], [53.597171, -1.994071]], [[53.597171, -1.994071], [53.597091, -1.993993]], [[53.597012, -1.993895], [53.596943, -1.993785]], [[53.596943, -1.993785], [53.596863, -1.993687]], [[53.596863, -1.993687], [53.596784, -1.993595]], [[53.596784, -1.993595], [53.59669, -1.99354]], [[53.596418, -1.993124], [53.596359, -1.992993]], [[53.596297, -1.992862], [53.59624, -1.992738]], [[53.59624, -1.992738], [53.596167, -1.992646]], [[53.596167, -1.992646], [53.596124, -1.992507]], [[53.596124, -1.992507], [53.596102, -1.99235]], [[53.596052, -1.992203], [53.595971, -1.992099]], [[53.595835, -1.991874], [53.595756, -1.991786]], [[53.595619, -1.991553], [53.595543, -1.991462]], [[53.595543, -1.991462], [53.595475, -1.991351]], [[53.595475, -1.991351], [53.595435, -1.991189]], [[53.595372, -1.991071], [53.595319, -1.990942]], [[53.595263, -1.990806], [53.595186, -1.990705]], [[53.595186, -1.990705], [53.595133, -1.990573]], [[53.595133, -1.990573], [53.59506, -1.99045]], [[53.594957, -1.990174], [53.594894, -1.990057]], [[53.594894, -1.990057], [53.594817, -1.989959]], [[53.594609, -1.989632], [53.594537, -1.989532]], [[53.594132, -1.989123], [53.594062, -1.98901]], [[53.594062, -1.98901], [53.593999, -1.988871]], [[53.593999, -1.988871], [53.593953, -1.988724]], [[53.593953, -1.988724], [53.593883, -1.988608]], [[53.593883, -1.988608], [53.593852, -1.988465]], [[53.593852, -1.988465], [53.593783, -1.988333]], [[53.593615, -1.987944], [53.593606, -1.987788]], [[53.593561, -1.987654], [53.593496, -1.987536]], [[53.593422, -1.98725], [53.593345, -1.987164]], [[53.593345, -1.987164], [53.5933, -1.98703]], [[53.5933, -1.98703], [53.593248, -1.986897]], [[53.593189, -1.986779], [53.593129, -1.986642]], [[53.593129, -1.986642], [53.593098, -1.986479]], [[53.592999, -1.986206], [53.592945, -1.986072]], [[53.592945, -1.986072], [53.592874, -1.985962]], [[53.592874, -1.985962], [53.592812, -1.985825]], [[53.592704, -1.985366], [53.592655, -1.985231]], [[53.592655, -1.985231], [53.592623, -1.985087]], [[53.592623, -1.985087], [53.592609, -1.984922]], [[53.592609, -1.984922], [53.592547, -1.984799]], [[53.592547, -1.984799], [53.592483, -1.984686]], [[53.592483, -1.984686], [53.592401, -1.984605]], [[53.592282, -1.984358], [53.592221, -1.98424]], [[53.592105, -1.984005], [53.592041, -1.983883]], [[53.592041, -1.983883], [53.591983, -1.983746]], [[53.591813, -1.983561], [53.591725, -1.983478]], [[53.591725, -1.983478], [53.591638, -1.983435]], [[53.591638, -1.983435], [53.591543, -1.983382]], [[53.591355, -1.983281], [53.591273, -1.983191]], [[53.591273, -1.983191], [53.591177, -1.983179]], [[53.591177, -1.983179], [53.591085, -1.983141]], [[53.591085, -1.983141], [53.590998, -1.983078]], [[53.590998, -1.983078], [53.590906, -1.98299]], [[53.590635, -1.982875], [53.590542, -1.982844]], [[53.590542, -1.982844], [53.590445, -1.98282]], [[53.590048, -1.982391], [53.589963, -1.982336]], [[53.589963, -1.982336], [53.589873, -1.982268]], [[53.589556, -1.981911], [53.589463, -1.981852]], [[53.589463, -1.981852], [53.589375, -1.981771]], [[53.588954, -1.981382], [53.588861, -1.981337]], [[53.58868, -1.981243], [53.588579, -1.981194]], [[53.588492, -1.981143], [53.588411, -1.981073]], [[53.588411, -1.981073], [53.588348, -1.980962]], [[53.588348, -1.980962], [53.588259, -1.980895]], [[53.587569, -1.980586], [53.587481, -1.980544]], [[53.587481, -1.980544], [53.587389, -1.980567]], [[53.587112, -1.980401], [53.587018, -1.980356]], [[53.586835, -1.980263], [53.586736, -1.980276]], [[53.586736, -1.980276], [53.586655, -1.980184]], [[53.58657, -1.980096], [53.586473, -1.980102]], [[53.586473, -1.980102], [53.586381, -1.98011]], [[53.586381, -1.98011], [53.586297, -1.980054]], [[53.58621, -1.979987], [53.586143, -1.979871]], [[53.586056, -1.979583], [53.58601, -1.979446]], [[53.58601, -1.979446], [53.585975, -1.979303]], [[53.585975, -1.979303], [53.585893, -1.979202]], [[53.585893, -1.979202], [53.585815, -1.979118]], [[53.585815, -1.979118], [53.585726, -1.97901]], [[53.585726, -1.97901], [53.58565, -1.978906]], [[53.585578, -1.978805], [53.585514, -1.978684]], [[53.585364, -1.978552], [53.585277, -1.978471]], [[53.584987, -1.978362], [53.584898, -1.978417]], [[53.584898, -1.978417], [53.584797, -1.978394]], [[53.584797, -1.978394], [53.584703, -1.978437]], [[53.584306, -1.978449], [53.584211, -1.978415]], [[53.584211, -1.978415], [53.584126, -1.978365]], [[53.583836, -1.978398], [53.583736, -1.978363]], [[53.583736, -1.978363], [53.583636, -1.978323]], [[53.583454, -1.978257], [53.58341, -1.97812]], [[53.583328, -1.978045], [53.583252, -1.978138]], [[53.583147, -1.97821], [53.583069, -1.978086]], [[53.583051, -1.977596], [53.583073, -1.977439]], [[53.583073, -1.977439], [53.58305, -1.977282]], [[53.58305, -1.977282], [53.583048, -1.977117]], [[53.583048, -1.977117], [53.583053, -1.976956]], [[53.583053, -1.976956], [53.583063, -1.976784]], [[53.583119, -1.975819], [53.583102, -1.975654]], [[53.583102, -1.975654], [53.583114, -1.975489]], [[53.583114, -1.975489], [53.583082, -1.975333]], [[53.583082, -1.975333], [53.583072, -1.975164]], [[53.582943, -1.974774], [53.582885, -1.974651]], [[53.582269, -1.973925], [53.582182, -1.973865]], [[53.582182, -1.973865], [53.582107, -1.973771]], [[53.582034, -1.973555], [53.581977, -1.973425]], [[53.582003, -1.973394], [53.582038, -1.973255]], [[53.582162, -1.972649], [53.582193, -1.972506]], [[53.582193, -1.972506], [53.582223, -1.972358]], [[53.582252, -1.9722], [53.582283, -1.972053]], [[53.58238, -1.971769], [53.582393, -1.971618]], [[53.582504, -1.971024], [53.582538, -1.970882]], [[53.582538, -1.970882], [53.582596, -1.970764]], [[53.582596, -1.970764], [53.58264, -1.970625]], [[53.582786, -1.97021], [53.5828, -1.970055]], [[53.582836, -1.969915], [53.582884, -1.969767]], [[53.582884, -1.969767], [53.582897, -1.969604]], [[53.582897, -1.969604], [53.582903, -1.969443]], [[53.582903, -1.969443], [53.582933, -1.969277]], [[53.58291, -1.968933], [53.582903, -1.968772]], [[53.582892, -1.968455], [53.582861, -1.968306]], [[53.582836, -1.967948], [53.58279, -1.967804]], [[53.58279, -1.967804], [53.582737, -1.967673]], [[53.582737, -1.967673], [53.582723, -1.967516]], [[53.582583, -1.966587], [53.582569, -1.966426]], [[53.582514, -1.966281], [53.582511, -1.966115]], [[53.582511, -1.966115], [53.582496, -1.965958]], [[53.582364, -1.965176], [53.58232, -1.965039]], [[53.582315, -1.964862], [53.582284, -1.96479]], [[53.582297, -1.964779], [53.582267, -1.964635]], [[53.58216, -1.964187], [53.58209, -1.964074]], [[53.58209, -1.964074], [53.582044, -1.963914]], [[53.582006, -1.963768], [53.581973, -1.963615]], [[53.581973, -1.963615], [53.58193, -1.963474]], [[53.581817, -1.963042], [53.581755, -1.962924]], [[53.581755, -1.962924], [53.58173, -1.962775]], [[53.581648, -1.962463], [53.581621, -1.962319]], [[53.581621, -1.962319], [53.581635, -1.962148]], [[53.581581, -1.961531], [53.581554, -1.961384]], [[53.581544, -1.961218], [53.581519, -1.961068]], [[53.581519, -1.961068], [53.581528, -1.960898]], [[53.581528, -1.960898], [53.58151, -1.960742]], [[53.581076, -1.960217], [53.580986, -1.960135]], [[53.58081, -1.960025], [53.58074, -1.959922]], [[53.580456, -1.959623], [53.580387, -1.959503]], [[53.580387, -1.959503], [53.580317, -1.959404]], [[53.580111, -1.959059], [53.580052, -1.958941]], [[53.580052, -1.958941], [53.579978, -1.958839]], [[53.579801, -1.958736], [53.579717, -1.958655]], [[53.579717, -1.958655], [53.579639, -1.95857]], [[53.579639, -1.95857], [53.579571, -1.958468]], [[53.579, -1.958032], [53.578946, -1.957909]], [[53.578946, -1.957909], [53.578872, -1.957818]], [[53.57879, -1.957736], [53.578697, -1.957675]], [[53.578424, -1.957685], [53.578333, -1.957637]], [[53.578333, -1.957637], [53.578235, -1.95765]], [[53.577882, -1.957455], [53.57779, -1.957397]], [[53.577641, -1.957177], [53.577557, -1.957092]], [[53.577557, -1.957092], [53.577498, -1.956965]], [[53.577498, -1.956965], [53.577434, -1.95685]], [[53.577434, -1.95685], [53.577381, -1.95672]], [[53.577093, -1.956154], [53.577018, -1.956059]], [[53.577018, -1.956059], [53.576958, -1.95594]], [[53.576958, -1.95594], [53.576876, -1.955841]], [[53.576876, -1.955841], [53.576809, -1.955722]], [[53.576809, -1.955722], [53.576768, -1.955574]], [[53.576768, -1.955574], [53.576718, -1.955442]], [[53.576718, -1.955442], [53.576663, -1.95532]], [[53.576614, -1.955185], [53.576547, -1.955062]], [[53.576547, -1.955062], [53.576484, -1.954936]], [[53.576484, -1.954936], [53.57642, -1.954813]], [[53.57642, -1.954813], [53.57636, -1.954697]], [[53.57636, -1.954697], [53.576418, -1.954563]], [[53.576418, -1.954563], [53.576479, -1.95445]], [[53.576696, -1.953939], [53.576757, -1.953819]], [[53.576757, -1.953819], [53.576812, -1.953689]], [[53.576812, -1.953689], [53.576865, -1.953558]], [[53.576865, -1.953558], [53.576933, -1.953454]], [[53.576933, -1.953454], [53.577014, -1.953364]], [[53.577014, -1.953364], [53.577078, -1.953239]], [[53.577078, -1.953239], [53.577129, -1.953098]], [[53.577246, -1.952339], [53.577265, -1.952173]], [[53.577265, -1.952173], [53.57731, -1.952026]], [[53.577388, -1.951728], [53.577389, -1.951567]], [[53.577349, -1.950857], [53.577267, -1.950773]], [[53.577196, -1.950672], [53.57712, -1.950582]], [[53.576806, -1.949975], [53.576721, -1.949871]], [[53.576721, -1.949871], [53.576651, -1.949752]], [[53.576499, -1.94955], [53.576404, -1.949525]], [[53.576404, -1.949525], [53.576334, -1.949413]], [[53.57616, -1.949303], [53.576076, -1.94921]], [[53.576076, -1.94921], [53.576033, -1.949073]], [[53.576033, -1.949073], [53.57598, -1.948941]], [[53.57598, -1.948941], [53.5759, -1.948864]], [[53.5759, -1.948864], [53.575817, -1.948787]], [[53.575648, -1.948632], [53.575581, -1.94852]], [[53.575581, -1.94852], [53.575535, -1.948386]], [[53.575535, -1.948386], [53.575489, -1.948255]], [[53.575498, -1.948104], [53.575442, -1.947972]], [[53.575442, -1.947972], [53.57539, -1.947848]], [[53.575355, -1.947707], [53.575347, -1.94755]], [[53.575347, -1.94755], [53.575315, -1.947406]], [[53.575315, -1.947406], [53.575301, -1.947255]], [[53.575301, -1.947255], [53.575245, -1.947113]], [[53.575294, -1.946655], [53.57526, -1.946495]], [[53.57526, -1.946495], [53.575239, -1.946339]], [[53.57526, -1.946033], [53.575214, -1.945902]], [[53.575214, -1.945902], [53.575207, -1.94574]], [[53.575077, -1.945335], [53.57503, -1.945186]], [[53.57503, -1.945186], [53.575039, -1.945023]], [[53.575047, -1.944696], [53.57501, -1.944539]], [[53.574939, -1.943785], [53.574907, -1.943641]], [[53.574808, -1.943373], [53.5748, -1.943206]], [[53.5748, -1.943206], [53.574788, -1.943052]], [[53.574788, -1.943052], [53.574786, -1.942891]], [[53.574806, -1.942725], [53.574781, -1.94257]], [[53.574781, -1.94257], [53.574826, -1.94241]], [[53.575029, -1.941887], [53.574978, -1.941757]], [[53.575269, -1.941118], [53.57527, -1.94096]], [[53.575277, -1.940478], [53.575305, -1.940327]], [[53.575305, -1.940327], [53.575373, -1.940203]], [[53.575563, -1.939859], [53.575569, -1.939702]], [[53.575707, -1.939461], [53.575746, -1.939312]], [[53.575746, -1.939312], [53.575786, -1.939157]], [[53.575786, -1.939157], [53.575858, -1.939041]], [[53.575945, -1.938954], [53.575967, -1.938788]], [[53.575977, -1.938631], [53.576023, -1.938489]], [[53.576023, -1.938489], [53.576043, -1.938333]], [[53.57609, -1.938189], [53.576126, -1.938036]], [[53.576126, -1.938036], [53.576176, -1.937896]], [[53.576176, -1.937896], [53.576251, -1.937799]], [[53.576418, -1.937247], [53.576503, -1.937147]], [[53.576569, -1.937025], [53.576636, -1.936906]], [[53.576636, -1.936906], [53.576678, -1.936757]], [[53.576955, -1.936357], [53.57703, -1.936269]], [[53.577178, -1.936091], [53.577234, -1.935965]], [[53.577234, -1.935965], [53.577287, -1.935828]], [[53.577262, -1.935511], [53.577215, -1.935379]], [[53.577215, -1.935379], [53.577167, -1.935236]], [[53.577167, -1.935236], [53.577183, -1.93508]], [[53.577183, -1.93508], [53.577192, -1.934926]], [[53.577192, -1.934926], [53.577172, -1.934769]], [[53.577239, -1.934641], [53.577271, -1.934491]], [[53.577287, -1.934321], [53.577288, -1.934154]], [[53.577288, -1.934154], [53.577297, -1.933991]], [[53.577297, -1.933991], [53.577308, -1.933834]], [[53.577308, -1.933834], [53.57732, -1.933672]], [[53.57732, -1.933672], [53.577367, -1.933529]], [[53.577413, -1.931871], [53.577433, -1.931718]], [[53.577489, -1.931416], [53.577443, -1.931262]], [[53.577496, -1.930826], [53.5775, -1.930674]], [[53.577516, -1.930514], [53.57752, -1.930354]], [[53.57752, -1.930354], [53.57752, -1.930184]], [[53.57752, -1.930184], [53.577496, -1.930038]], [[53.577496, -1.930038], [53.577501, -1.929869]], [[53.577501, -1.929869], [53.577495, -1.929703]], [[53.577495, -1.929703], [53.577454, -1.929555]], [[53.577454, -1.929555], [53.577405, -1.929412]], [[53.577405, -1.929412], [53.577335, -1.929315]], [[53.577335, -1.929315], [53.577324, -1.929158]], [[53.577325, -1.928857], [53.577277, -1.928725]], [[53.577235, -1.928304], [53.577177, -1.928167]], [[53.576992, -1.928095], [53.576913, -1.927998]], [[53.576533, -1.926786], [53.576521, -1.926633]], [[53.576495, -1.926485], [53.576444, -1.926353]], [[53.576444, -1.926353], [53.576469, -1.926203]], [[53.576416, -1.925918], [53.57634, -1.925808]], [[53.576243, -1.925814], [53.576188, -1.925684]], [[53.576221, -1.925322], [53.576251, -1.925165]], [[53.576251, -1.925165], [53.576237, -1.925004]], [[53.576185, -1.924696], [53.576161, -1.924542]], [[53.576151, -1.924063], [53.57615, -1.923911]], [[53.576257, -1.923494], [53.576226, -1.923334]], [[53.576226, -1.923334], [53.576221, -1.923162]], [[53.576221, -1.923162], [53.576203, -1.923004]], [[53.576203, -1.923004], [53.576244, -1.922859]], [[53.576272, -1.922701], [53.576252, -1.922543]], [[53.576252, -1.922543], [53.576191, -1.922416]], [[53.576379, -1.922172], [53.576453, -1.922082]], [[53.577368, -1.921468], [53.577369, -1.921623]], [[53.577503, -1.921407], [53.577551, -1.921266]], [[53.578008, -1.920567], [53.577911, -1.920591]], [[53.57781, -1.920619], [53.577715, -1.92066]], [[53.577715, -1.92066], [53.577625, -1.920684]], [[53.577625, -1.920684], [53.577529, -1.92064]], [[53.577447, -1.920536], [53.577376, -1.920438]], [[53.577376, -1.920438], [53.577314, -1.920299]], [[53.577314, -1.920299], [53.577241, -1.920181]], [[53.576588, -1.919311], [53.576577, -1.91916]], [[53.576577, -1.91916], [53.576598, -1.919]], [[53.576532, -1.91858], [53.576494, -1.918437]], [[53.576494, -1.918437], [53.576402, -1.918399]], [[53.576256, -1.918196], [53.576175, -1.918111]], [[53.575962, -1.917689], [53.575936, -1.917534]], [[53.575756, -1.917007], [53.575738, -1.91684]], [[53.575738, -1.91684], [53.575715, -1.916683]], [[53.575715, -1.916683], [53.57566, -1.916555]], [[53.57566, -1.916555], [53.575616, -1.916412]], [[53.575571, -1.916096], [53.575565, -1.915927]], [[53.575565, -1.915927], [53.575596, -1.915782]], [[53.575596, -1.915782], [53.575558, -1.915629]], [[53.575558, -1.915629], [53.575534, -1.915473]], [[53.575534, -1.915473], [53.575562, -1.915325]], [[53.575548, -1.915162], [53.575578, -1.915015]], [[53.575631, -1.914876], [53.575673, -1.914738]], [[53.575673, -1.914738], [53.57563, -1.914597]], [[53.575771, -1.914343], [53.575843, -1.914234]], [[53.575843, -1.914234], [53.575805, -1.914075]], [[53.57572, -1.913785], [53.57567, -1.913643]], [[53.57564, -1.913491], [53.575595, -1.913358]], [[53.575595, -1.913358], [53.575592, -1.913196]], [[53.57559, -1.91303], [53.575546, -1.912885]], [[53.575546, -1.912885], [53.575466, -1.912786]], [[53.57536, -1.912337], [53.575346, -1.912183]], [[53.575168, -1.912145], [53.575146, -1.912065]], [[53.575117, -1.911909], [53.575062, -1.911765]], [[53.574999, -1.911434], [53.574957, -1.91129]], [[53.574688, -1.910487], [53.574668, -1.910339]], [[53.574656, -1.910032], [53.574592, -1.909916]], [[53.574592, -1.909916], [53.574537, -1.909792]], [[53.574537, -1.909792], [53.574483, -1.909653]], [[53.574449, -1.909504], [53.574417, -1.909336]], [[53.574417, -1.909336], [53.574406, -1.909165]], [[53.574406, -1.909165], [53.574416, -1.909014]], [[53.574416, -1.909014], [53.574341, -1.908923]], [[53.574341, -1.908923], [53.574306, -1.908757]], [[53.574306, -1.908757], [53.574311, -1.908593]], [[53.574237, -1.907878], [53.574213, -1.907724]], [[53.574367, -1.907616], [53.574458, -1.90765]], [[53.574458, -1.90765], [53.57451, -1.907525]], [[53.57451, -1.907525], [53.574533, -1.907376]], [[53.574533, -1.907376], [53.574605, -1.907264]], [[53.574605, -1.907264], [53.574683, -1.907174]], [[53.574626, -1.906903], [53.574549, -1.906811]], [[53.574368, -1.906767], [53.574269, -1.906784]], [[53.574184, -1.906866], [53.574105, -1.906945]], [[53.574015, -1.906949], [53.573923, -1.906937]], [[53.573923, -1.906937], [53.573824, -1.906933]], [[53.573824, -1.906933], [53.57373, -1.90693]], [[53.573468, -1.906595], [53.573398, -1.906481]], [[53.573398, -1.906481], [53.573325, -1.906375]], [[53.573325, -1.906375], [53.573267, -1.906236]], [[53.573267, -1.906236], [53.573198, -1.906124]], [[53.573198, -1.906124], [53.573119, -1.906033]], [[53.573119, -1.906033], [53.573024, -1.906017]], [[53.573024, -1.906017], [53.572934, -1.905958]], [[53.572672, -1.905734], [53.57259, -1.905655]], [[53.572175, -1.904884], [53.572103, -1.904773]], [[53.572103, -1.904773], [53.572033, -1.904657]], [[53.571881, -1.904483], [53.571808, -1.90438]], [[53.571684, -1.904162], [53.571607, -1.904041]], [[53.571474, -1.903811], [53.571437, -1.903671]], [[53.571437, -1.903671], [53.571373, -1.903564]], [[53.571373, -1.903564], [53.571332, -1.903425]], [[53.571332, -1.903425], [53.571242, -1.903326]], [[53.571242, -1.903326], [53.571168, -1.903231]], [[53.571077, -1.902987], [53.570998, -1.902911]], [[53.570998, -1.902911], [53.570959, -1.902757]], [[53.570959, -1.902757], [53.570891, -1.902654]], [[53.570891, -1.902654], [53.570824, -1.902533]], [[53.570824, -1.902533], [53.570758, -1.902429]], [[53.570377, -1.901324], [53.570324, -1.901197]], [[53.570324, -1.901197], [53.570258, -1.90108]], [[53.570258, -1.90108], [53.570244, -1.90093]], [[53.570244, -1.90093], [53.57019, -1.900807]], [[53.57019, -1.900807], [53.570156, -1.900651]], [[53.570089, -1.90054], [53.57003, -1.900405]], [[53.57003, -1.900405], [53.569974, -1.900258]], [[53.569843, -1.899854], [53.569791, -1.899727]], [[53.569757, -1.899423], [53.569753, -1.899266]], [[53.569731, -1.898673], [53.569635, -1.89868]], [[53.569635, -1.89868], [53.569539, -1.89872]], [[53.569539, -1.89872], [53.569451, -1.898749]], [[53.569279, -1.898896], [53.569224, -1.899034]], [[53.569224, -1.899034], [53.569134, -1.899074]], [[53.569134, -1.899074], [53.569039, -1.899102]], [[53.568759, -1.899057], [53.568662, -1.899064]], [[53.568574, -1.899007], [53.568482, -1.898949]], [[53.56817, -1.898611], [53.568072, -1.898602]], [[53.568072, -1.898602], [53.567999, -1.898507]], [[53.567999, -1.898507], [53.567919, -1.898391]], [[53.567919, -1.898391], [53.567845, -1.898267]], [[53.567784, -1.898149], [53.567711, -1.89805]], [[53.56765, -1.897936], [53.567595, -1.897816]], [[53.567595, -1.897816], [53.567543, -1.897693]], [[53.567475, -1.897568], [53.567405, -1.897457]], [[53.567405, -1.897457], [53.567337, -1.897347]], [[53.567337, -1.897347], [53.567268, -1.89724]], [[53.567174, -1.896964], [53.567118, -1.896815]], [[53.567034, -1.896744], [53.566938, -1.896739]], [[53.566885, -1.896601], [53.566865, -1.89644]], [[53.566865, -1.89644], [53.566795, -1.896317]], [[53.566728, -1.896215], [53.56667, -1.896085]], [[53.56667, -1.896085], [53.566582, -1.896043]], [[53.566582, -1.896043], [53.566499, -1.895983]], [[53.566148, -1.895454], [53.566056, -1.895421]], [[53.566056, -1.895421], [53.565954, -1.895366]], [[53.565732, -1.895058], [53.565659, -1.89496]], [[53.565659, -1.89496], [53.565591, -1.894856]], [[53.565591, -1.894856], [53.565559, -1.894714]], [[53.565559, -1.894714], [53.565535, -1.894554]], [[53.565535, -1.894554], [53.5655, -1.894399]], [[53.5655, -1.894399], [53.565482, -1.894242]], [[53.565482, -1.893906], [53.565478, -1.89375]], [[53.565478, -1.89375], [53.565436, -1.893616]], [[53.565436, -1.893616], [53.565396, -1.893471]], [[53.565532, -1.893029], [53.5656, -1.89292]], [[53.5656, -1.89292], [53.565635, -1.892769]], [[53.565721, -1.892337], [53.565751, -1.892171]], [[53.565803, -1.892041], [53.565834, -1.891893]], [[53.565834, -1.891893], [53.565858, -1.891734]], [[53.565898, -1.891592], [53.565929, -1.891449]], [[53.565929, -1.891449], [53.565969, -1.891298]], [[53.565969, -1.891298], [53.565963, -1.891137]], [[53.565963, -1.891137], [53.565932, -1.890994]], [[53.565845, -1.890722], [53.565806, -1.890561]], [[53.565806, -1.890561], [53.56576, -1.890419]], [[53.56576, -1.890419], [53.565739, -1.89026]], [[53.565739, -1.89026], [53.565684, -1.890135]], [[53.565684, -1.890135], [53.565637, -1.889992]], [[53.565637, -1.889992], [53.565601, -1.889846]], [[53.565609, -1.889516], [53.565572, -1.889377]], [[53.565572, -1.889377], [53.565549, -1.889225]], [[53.56548, -1.88912], [53.565428, -1.88899]], [[53.565428, -1.88899], [53.565456, -1.888835]], [[53.565467, -1.888679], [53.565414, -1.888546]], [[53.565414, -1.888546], [53.565329, -1.888454]], [[53.565329, -1.888454], [53.565312, -1.888293]], [[53.565312, -1.888293], [53.565304, -1.888128]], [[53.565274, -1.887977], [53.565229, -1.887828]], [[53.565229, -1.887828], [53.565161, -1.887711]], [[53.565161, -1.887711], [53.565085, -1.88761]], [[53.565021, -1.887296], [53.565001, -1.887143]], [[53.565001, -1.887143], [53.564972, -1.886989]], [[53.564972, -1.886989], [53.564962, -1.886826]], [[53.564932, -1.88668], [53.564898, -1.886523]], [[53.564898, -1.886523], [53.564885, -1.886356]], [[53.564885, -1.886356], [53.564832, -1.886219]], [[53.564832, -1.886219], [53.564784, -1.886085]], [[53.564729, -1.885955], [53.564703, -1.885792]], [[53.564703, -1.885792], [53.564679, -1.885645]], [[53.564679, -1.885645], [53.564644, -1.885498]], [[53.564644, -1.885498], [53.564608, -1.885335]], [[53.564561, -1.885063], [53.564476, -1.884985]], [[53.564476, -1.884985], [53.564405, -1.884875]], [[53.564405, -1.884875], [53.564318, -1.884786]], [[53.564144, -1.884655], [53.564051, -1.884609]], [[53.564051, -1.884609], [53.563954, -1.884631]], [[53.563954, -1.884631], [53.563864, -1.884611]], [[53.563864, -1.884611], [53.563774, -1.884585]], [[53.563774, -1.884585], [53.563679, -1.884564]], [[53.562711, -1.885171], [53.562629, -1.88527]], [[53.561835, -1.886101], [53.561763, -1.886222]], [[53.561763, -1.886222], [53.561702, -1.886358]], [[53.561702, -1.886358], [53.561673, -1.886506]], [[53.561588, -1.886791], [53.561545, -1.886941]], [[53.561545, -1.886941], [53.56148, -1.887065]], [[53.561391, -1.887339], [53.561346, -1.887488]], [[53.561193, -1.88766], [53.561114, -1.887649]], [[53.560967, -1.887503], [53.560873, -1.887441]], [[53.560873, -1.887441], [53.560783, -1.887435]], [[53.560783, -1.887435], [53.560693, -1.887377]], [[53.560551, -1.887151], [53.560466, -1.887099]], [[53.560466, -1.887099], [53.560374, -1.887026]], [[53.559826, -1.886445], [53.55975, -1.886363]], [[53.55975, -1.886363], [53.559682, -1.88623]], [[53.55937, -1.885868], [53.559287, -1.885797]], [[53.559287, -1.885797], [53.559203, -1.885707]], [[53.559203, -1.885707], [53.559135, -1.885585]], [[53.559135, -1.885585], [53.559045, -1.885534]], [[53.559045, -1.885534], [53.558955, -1.885599]], [[53.558955, -1.885599], [53.558864, -1.88566]], [[53.558864, -1.88566], [53.558845, -1.88582]], [[53.558738, -1.885419], [53.558706, -1.885252]], [[53.558651, -1.884956], [53.558605, -1.884806]], [[53.558605, -1.884806], [53.558544, -1.884694]], [[53.558544, -1.884694], [53.558453, -1.884669]], [[53.558362, -1.884654], [53.558275, -1.884581]], [[53.558187, -1.8845], [53.55812, -1.88439]], [[53.557874, -1.884137], [53.55779, -1.884071]], [[53.55779, -1.884071], [53.557691, -1.884052]], [[53.557609, -1.883975], [53.55753, -1.883876]], [[53.557371, -1.883697], [53.557281, -1.883656]], [[53.557281, -1.883656], [53.55719, -1.883679]], [[53.55719, -1.883679], [53.557101, -1.883605]], [[53.55689, -1.883311], [53.556799, -1.883267]], [[53.556602, -1.882956], [53.556525, -1.882874]], [[53.55544, -1.881851], [53.555358, -1.881767]], [[53.555358, -1.881767], [53.555266, -1.881727]], [[53.555189, -1.881628], [53.555109, -1.88152]], [[53.554959, -1.88133], [53.554879, -1.881256]], [[53.554796, -1.881188], [53.554723, -1.881076]], [[53.554723, -1.881076], [53.554629, -1.881004]], [[53.554629, -1.881004], [53.554552, -1.880905]], [[53.554291, -1.880688], [53.554201, -1.880699]], [[53.554201, -1.880699], [53.554151, -1.88057]], [[53.554151, -1.88057], [53.554091, -1.880436]], [[53.554091, -1.880436], [53.554007, -1.880365]], [[53.554007, -1.880365], [53.553928, -1.880286]], [[53.553928, -1.880286], [53.553838, -1.88026]], [[53.553838, -1.88026], [53.553776, -1.880129]], [[53.553602, -1.880029], [53.553553, -1.879884]], [[53.553553, -1.879884], [53.55347, -1.879811]], [[53.552814, -1.879347], [53.552719, -1.879318]], [[53.552719, -1.879318], [53.552634, -1.879261]], [[53.55232, -1.878929], [53.55223, -1.878866]], [[53.55223, -1.878866], [53.552158, -1.878761]], [[53.552158, -1.878761], [53.552066, -1.87873]], [[53.551646, -1.878484], [53.551576, -1.878374]], [[53.551455, -1.878227], [53.551388, -1.878112]], [[53.551147, -1.877968], [53.551072, -1.877862]], [[53.551072, -1.877862], [53.550987, -1.877776]], [[53.550868, -1.877532], [53.550794, -1.877423]], [[53.550703, -1.877356], [53.550611, -1.877302]], [[53.550611, -1.877302], [53.550512, -1.87728]], [[53.550512, -1.87728], [53.550417, -1.877287]], [[53.550417, -1.877287], [53.550328, -1.877242]], [[53.550156, -1.877184], [53.550062, -1.877131]], [[53.550062, -1.877131], [53.549986, -1.87705]], [[53.549986, -1.87705], [53.549893, -1.877023]], [[53.549893, -1.877023], [53.549801, -1.877008]], [[53.54961, -1.877077], [53.549524, -1.877121]], [[53.549524, -1.877121], [53.549432, -1.877066]], [[53.549432, -1.877066], [53.549363, -1.877183]], [[53.549263, -1.877185], [53.549168, -1.877154]], [[53.549067, -1.877162], [53.548974, -1.877157]], [[53.548792, -1.877185], [53.548707, -1.877112]], [[53.548707, -1.877112], [53.548613, -1.877106]], [[53.548342, -1.877189], [53.548255, -1.877246]], [[53.548085, -1.877236], [53.548014, -1.877134]], [[53.547928, -1.877051], [53.547832, -1.877097]], [[53.547832, -1.877097], [53.547737, -1.877077]], [[53.547737, -1.877077], [53.547643, -1.877082]], [[53.547402, -1.87729], [53.547314, -1.877318]], [[53.547314, -1.877318], [53.547226, -1.877368]], [[53.547226, -1.877368], [53.547193, -1.87752]], [[53.546925, -1.877581], [53.546829, -1.87759]], [[53.546829, -1.87759], [53.54674, -1.877651]], [[53.54674, -1.877651], [53.546641, -1.877699]], [[53.546641, -1.877699], [53.546552, -1.877774]], [[53.546552, -1.877774], [53.546476, -1.877865]], [[53.546476, -1.877865], [53.546422, -1.877986]], [[53.544966, -1.87928], [53.544887, -1.879368]], [[53.544724, -1.879536], [53.544635, -1.879599]], [[53.544635, -1.879599], [53.544535, -1.87964]], [[53.544535, -1.87964], [53.544443, -1.879682]], [[53.544443, -1.879682], [53.54434, -1.879684]], [[53.54434, -1.879684], [53.544255, -1.879739]], [[53.544255, -1.879739], [53.544159, -1.879781]], [[53.544159, -1.879781], [53.544062, -1.879799]], [[53.544062, -1.879799], [53.543982, -1.879876]], [[53.543982, -1.879876], [53.543895, -1.879956]], [[53.543895, -1.879956], [53.543804, -1.880031]], [[53.543804, -1.880031], [53.543719, -1.880096]], [[53.543719, -1.880096], [53.54366, -1.880212]], [[53.543578, -1.880276], [53.543491, -1.880343]], [[53.543391, -1.880342], [53.5433, -1.880336]], [[53.543209, -1.880369], [53.543125, -1.880441]], [[53.542959, -1.880592], [53.542866, -1.880646]], [[53.542699, -1.880819], [53.542636, -1.880931]], [[53.542473, -1.881028], [53.542385, -1.881089]], [[53.542385, -1.881089], [53.542295, -1.88117]], [[53.542134, -1.881336], [53.542048, -1.881387]], [[53.541952, -1.881423], [53.541863, -1.881473]], [[53.541863, -1.881473], [53.541778, -1.881528]], [[53.541778, -1.881528], [53.541704, -1.881628]], [[53.541704, -1.881628], [53.541631, -1.881738]], [[53.541631, -1.881738], [53.541555, -1.881841]], [[53.541555, -1.881841], [53.541455, -1.881857]], [[53.541455, -1.881857], [53.541363, -1.881871]], [[53.541363, -1.881871], [53.541268, -1.881906]], [[53.541088, -1.881995], [53.540992, -1.882011]], [[53.540992, -1.882011], [53.540903, -1.882082]], [[53.540903, -1.882082], [53.540808, -1.882115]], [[53.540808, -1.882115], [53.54071, -1.882136]], [[53.54071, -1.882136], [53.540625, -1.88221]], [[53.540625, -1.88221], [53.540544, -1.882277]], [[53.540544, -1.882277], [53.540466, -1.882382]], [[53.540466, -1.882382], [53.54041, -1.882505]], [[53.539896, -1.882914], [53.539828, -1.88302]], [[53.539641, -1.883124], [53.539549, -1.883074]], [[53.539549, -1.883074], [53.539454, -1.883031]], [[53.539364, -1.883028], [53.539287, -1.883108]], [[53.539287, -1.883108], [53.539193, -1.883152]], [[53.539193, -1.883152], [53.539097, -1.88316]], [[53.539008, -1.883228], [53.538928, -1.883327]], [[53.538928, -1.883327], [53.538853, -1.883413]], [[53.538433, -1.884237], [53.538389, -1.884371]], [[53.538389, -1.884371], [53.538334, -1.884492]], [[53.538334, -1.884492], [53.538294, -1.884635]], [[53.538032, -1.885104], [53.537955, -1.885198]], [[53.537955, -1.885198], [53.537882, -1.885297]], [[53.537657, -1.886155], [53.53764, -1.886308]], [[53.53764, -1.886308], [53.537575, -1.886427]], [[53.537354, -1.886722], [53.537314, -1.886867]], [[53.537314, -1.886867], [53.537244, -1.886977]], [[53.537244, -1.886977], [53.537195, -1.887107]], [[53.537136, -1.887569], [53.537099, -1.887716]], [[53.537099, -1.887716], [53.537049, -1.887851]], [[53.536643, -1.88854], [53.536567, -1.88866]], [[53.5364, -1.889059], [53.536339, -1.889176]], [[53.536339, -1.889176], [53.536284, -1.8893]], [[53.536284, -1.8893], [53.536204, -1.889379]], [[53.536022, -1.889941], [53.535956, -1.890065]], [[53.535777, -1.890174], [53.535742, -1.890327]], [[53.5355, -1.891008], [53.535439, -1.891123]], [[53.535231, -1.892161], [53.535246, -1.892312]], [[53.535246, -1.892312], [53.535224, -1.892459]], [[53.535224, -1.892459], [53.535194, -1.892611]], [[53.535118, -1.892896], [53.535074, -1.893039]], [[53.535045, -1.893189], [53.534967, -1.893297]], [[53.53502, -1.893566], [53.535112, -1.893595]], [[53.535112, -1.893595], [53.535076, -1.893745]], [[53.534607, -1.893848], [53.534516, -1.893848]], [[53.534432, -1.893922], [53.534344, -1.89396]], [[53.534344, -1.89396], [53.534265, -1.89406]], [[53.534265, -1.89406], [53.534178, -1.894129]], [[53.53382, -1.894667], [53.533776, -1.894817]], [[53.533776, -1.894817], [53.533706, -1.894911]], [[53.533515, -1.895252], [53.533478, -1.895392]], [[53.533478, -1.895392], [53.533413, -1.895512]], [[53.533413, -1.895512], [53.533354, -1.895652]], [[53.532747, -1.897067], [53.532678, -1.897186]], [[53.532196, -1.897959], [53.532174, -1.898108]], [[53.532174, -1.898108], [53.532126, -1.898245]], [[53.532018, -1.898842], [53.532015, -1.898997]], [[53.531976, -1.899496], [53.531957, -1.899654]], [[53.531874, -1.899957], [53.531856, -1.900124]], [[53.531817, -1.900451], [53.531844, -1.900603]], [[53.531844, -1.900603], [53.531796, -1.900754]], [[53.531644, -1.90116], [53.531585, -1.901279]], [[53.531585, -1.901279], [53.531576, -1.901431]], [[53.531576, -1.901431], [53.531487, -1.901531]], [[53.53117, -1.902123], [53.531091, -1.902198]], [[53.531091, -1.902198], [53.531016, -1.902288]], [[53.531016, -1.902288], [53.530975, -1.902436]], [[53.53089, -1.902513], [53.530788, -1.902535]], [[53.530655, -1.902741], [53.530574, -1.90284]], [[53.530574, -1.90284], [53.53052, -1.902982]], [[53.530316, -1.903314], [53.530246, -1.903426]], [[53.530246, -1.903426], [53.530165, -1.903498]], [[53.530165, -1.903498], [53.530076, -1.903537]], [[53.530076, -1.903537], [53.530007, -1.903639]], [[53.530007, -1.903639], [53.52995, -1.90378]], [[53.52995, -1.90378], [53.529904, -1.90391]], [[53.529904, -1.90391], [53.529807, -1.90395]], [[53.529807, -1.90395], [53.529735, -1.904048]], [[53.529594, -1.904436], [53.529498, -1.90441]], [[53.529498, -1.90441], [53.529405, -1.904361]], [[53.529405, -1.904361], [53.529311, -1.904354]], [[53.529311, -1.904354], [53.529226, -1.904434]], [[53.528999, -1.904618], [53.528906, -1.904596]], [[53.528814, -1.904582], [53.528764, -1.904709]], [[53.528493, -1.90484], [53.528415, -1.90494]], [[53.528415, -1.90494], [53.528352, -1.905052]], [[53.528352, -1.905052], [53.528255, -1.905041]], [[53.528255, -1.905041], [53.528156, -1.905067]], [[53.528084, -1.905162], [53.528031, -1.90529]], [[53.527904, -1.905515], [53.527836, -1.905623]], [[53.527661, -1.905769], [53.527574, -1.905838]], [[53.527518, -1.905974], [53.52745, -1.90608]], [[53.52745, -1.90608], [53.527362, -1.906113]], [[53.527362, -1.906113], [53.52727, -1.906128]], [[53.52727, -1.906128], [53.527188, -1.906217]], [[53.527105, -1.906304], [53.527019, -1.906255]], [[53.526924, -1.906232], [53.526845, -1.906328]], [[53.526845, -1.906328], [53.526749, -1.906376]], [[53.526749, -1.906376], [53.526654, -1.906432]], [[53.526654, -1.906432], [53.52659, -1.906545]], [[53.52659, -1.906545], [53.526495, -1.90656]], [[53.526495, -1.90656], [53.526397, -1.906592]], [[53.526397, -1.906592], [53.526302, -1.906635]], [[53.526302, -1.906635], [53.526212, -1.906677]], [[53.526212, -1.906677], [53.526148, -1.906788]], [[53.526148, -1.906788], [53.526074, -1.906878]], [[53.525892, -1.906882], [53.525799, -1.906895]], [[53.525416, -1.907269], [53.52533, -1.907326]], [[53.52533, -1.907326], [53.525233, -1.907329]], [[53.525233, -1.907329], [53.525197, -1.907469]], [[53.525197, -1.907469], [53.525196, -1.907637]], [[53.525047, -1.907832], [53.524972, -1.907939]], [[53.524972, -1.907939], [53.52488, -1.907969]], [[53.52488, -1.907969], [53.524795, -1.907871]], [[53.524619, -1.907869], [53.524534, -1.907946]], [[53.524364, -1.908091], [53.524304, -1.908204]], [[53.524304, -1.908204], [53.52426, -1.908346]], [[53.523986, -1.90836], [53.523903, -1.908293]], [[53.523903, -1.908293], [53.523814, -1.908258]], [[53.52346, -1.908614], [53.523375, -1.90856]], [[53.523118, -1.908728], [53.523026, -1.908801]], [[53.523026, -1.908801], [53.522948, -1.908877]], [[53.522597, -1.909107], [53.522507, -1.909149]], [[53.522507, -1.909149], [53.522431, -1.909229]], [[53.522377, -1.909351], [53.522281, -1.909381]], [[53.522204, -1.909475], [53.522132, -1.909581]], [[53.522132, -1.909581], [53.522052, -1.909664]], [[53.522052, -1.909664], [53.521983, -1.909772]], [[53.521983, -1.909772], [53.521993, -1.909934]], [[53.520959, -1.910007], [53.520865, -1.909981]], [[53.520689, -1.910053], [53.520593, -1.910085]], [[53.520593, -1.910085], [53.520491, -1.91006]], [[53.520491, -1.91006], [53.520404, -1.910113]], [[53.520311, -1.910131], [53.520232, -1.910042]], [[53.520232, -1.910042], [53.520134, -1.91006]], [[53.520134, -1.91006], [53.520037, -1.910101]], [[53.519954, -1.91003], [53.519859, -1.909995]], [[53.519859, -1.909995], [53.519771, -1.910042]], [[53.519771, -1.910042], [53.519676, -1.909987]], [[53.519676, -1.909987], [53.519577, -1.909963]], [[53.519577, -1.909963], [53.519489, -1.909893]], [[53.519395, -1.909898], [53.5193, -1.909894]], [[53.519133, -1.909948], [53.519071, -1.909819]], [[53.517917, -1.909747], [53.517847, -1.909848]], [[53.517847, -1.909848], [53.517754, -1.909793]], [[53.517754, -1.909793], [53.517669, -1.909738]], [[53.517065, -1.910015], [53.516987, -1.910096]], [[53.516787, -1.910101], [53.516695, -1.910174]], [[53.516695, -1.910174], [53.516609, -1.910237]], [[53.516609, -1.910237], [53.516545, -1.91036]], [[53.51646, -1.91043], [53.516387, -1.910518]], [[53.5162, -1.910518], [53.516121, -1.910607]], [[53.51564, -1.911096], [53.51555, -1.911141]], [[53.515387, -1.911295], [53.515319, -1.911397]], [[53.515319, -1.911397], [53.515251, -1.911517]], [[53.515251, -1.911517], [53.515188, -1.911639]], [[53.514958, -1.911886], [53.51487, -1.911921]], [[53.51487, -1.911921], [53.514796, -1.912027]], [[53.514736, -1.912148], [53.514695, -1.912298]], [[53.514695, -1.912298], [53.514608, -1.912346]], [[53.514551, -1.912465], [53.514482, -1.912568]], [[53.514392, -1.912561], [53.514357, -1.9127]], [[53.513943, -1.913037], [53.513869, -1.913152]], [[53.513869, -1.913152], [53.513792, -1.913228]], [[53.513792, -1.913228], [53.513713, -1.913312]], [[53.513713, -1.913312], [53.513641, -1.913406]], [[53.513179, -1.914141], [53.513096, -1.914211]], [[53.513028, -1.914327], [53.512949, -1.914412]], [[53.512629, -1.914665], [53.512526, -1.91469]], [[53.512526, -1.91469], [53.512443, -1.914779]], [[53.512443, -1.914779], [53.512352, -1.914789]], [[53.51217, -1.914892], [53.512074, -1.914888]], [[53.512074, -1.914888], [53.512009, -1.914998]], [[53.511821, -1.915009], [53.511738, -1.915102]], [[53.511738, -1.915102], [53.511651, -1.915161]], [[53.510669, -1.915432], [53.510581, -1.915484]], [[53.510581, -1.915484], [53.510498, -1.915564]], [[53.510239, -1.915717], [53.510148, -1.915756]], [[53.510148, -1.915756], [53.510053, -1.915716]], [[53.510053, -1.915716], [53.509966, -1.91578]], [[53.509795, -1.915926], [53.509696, -1.915961]], [[53.509696, -1.915961], [53.509629, -1.916074]], [[53.509629, -1.916074], [53.509566, -1.916193]], [[53.509566, -1.916193], [53.509477, -1.916233]], [[53.509477, -1.916233], [53.509388, -1.916246]], [[53.509388, -1.916246], [53.509308, -1.916334]], [[53.509053, -1.916442], [53.508961, -1.916382]], [[53.508961, -1.916382], [53.50887, -1.916395]], [[53.50887, -1.916395], [53.508797, -1.916289]], [[53.508448, -1.916109], [53.508358, -1.916108]], [[53.508269, -1.916038], [53.508177, -1.916]], [[53.507992, -1.916057], [53.507912, -1.915968]], [[53.507746, -1.915837], [53.507663, -1.915757]], [[53.507663, -1.915757], [53.507574, -1.915676]], [[53.507574, -1.915676], [53.5075, -1.915589]], [[53.506775, -1.914962], [53.506681, -1.914914]], [[53.506681, -1.914914], [53.506611, -1.914783]], [[53.506611, -1.914783], [53.506578, -1.914636]], [[53.506578, -1.914636], [53.506485, -1.914585]], [[53.505612, -1.913925], [53.505551, -1.913798]], [[53.5053, -1.9134], [53.50522, -1.913475]], [[53.504764, -1.912937], [53.504751, -1.912778]], [[53.504625, -1.912195], [53.504532, -1.912165]], [[53.504532, -1.912165], [53.504467, -1.912046]], [[53.504467, -1.912046], [53.50445, -1.911887]], [[53.50445, -1.911887], [53.504377, -1.911783]], [[53.504242, -1.911601], [53.504161, -1.911525]], [[53.504161, -1.911525], [53.504072, -1.911479]], [[53.502841, -1.910003], [53.502756, -1.909947]], [[53.502427, -1.909401], [53.502375, -1.909271]], [[53.502375, -1.909271], [53.502292, -1.909206]], [[53.502292, -1.909206], [53.5022, -1.909141]], [[53.5022, -1.909141], [53.502107, -1.909108]], [[53.502107, -1.909108], [53.502037, -1.909006]], [[53.502037, -1.909006], [53.501946, -1.908962]], [[53.501131, -1.908442], [53.501097, -1.908299]], [[53.501097, -1.908299], [53.501046, -1.908173]], [[53.500165, -1.907128], [53.500088, -1.90703]], [[53.500088, -1.90703], [53.500009, -1.906921]], [[53.500009, -1.906921], [53.49996, -1.906789]], [[53.499769, -1.906418], [53.499702, -1.906317]], [[53.499256, -1.905628], [53.499258, -1.905469]], [[53.499258, -1.905469], [53.499239, -1.905315]], [[53.499239, -1.905315], [53.499172, -1.905204]], [[53.498517, -1.904345], [53.498449, -1.904222]], [[53.498449, -1.904222], [53.498359, -1.90416]], [[53.498359, -1.90416], [53.498261, -1.904121]], [[53.498261, -1.904121], [53.498176, -1.904196]], [[53.498176, -1.904196], [53.498097, -1.904082]], [[53.498037, -1.903969], [53.497966, -1.903868]], [[53.497774, -1.903525], [53.497692, -1.903445]], [[53.497692, -1.903445], [53.497608, -1.903387]], [[53.49731, -1.903021], [53.497216, -1.902988]], [[53.497216, -1.902988], [53.497119, -1.902943]], [[53.497119, -1.902943], [53.497021, -1.902957]], [[53.497021, -1.902957], [53.496932, -1.902891]], [[53.496932, -1.902891], [53.496848, -1.902832]], [[53.496497, -1.902689], [53.496412, -1.902638]], [[53.496263, -1.902461], [53.496173, -1.902394]], [[53.496173, -1.902394], [53.496093, -1.902327]], [[53.496093, -1.902327], [53.496008, -1.902252]], [[53.495919, -1.902187], [53.495832, -1.902126]], [[53.49548, -1.901871], [53.495386, -1.901826]], [[53.495386, -1.901826], [53.49529, -1.901798]], [[53.49529, -1.901798], [53.495205, -1.901711]], [[53.495205, -1.901711], [53.49512, -1.901655]], [[53.49512, -1.901655], [53.495025, -1.901628]], [[53.49475, -1.901497], [53.49466, -1.901445]], [[53.49466, -1.901445], [53.494576, -1.90139]], [[53.494576, -1.90139], [53.494495, -1.901303]], [[53.494495, -1.901303], [53.494488, -1.901146]], [[53.494488, -1.901146], [53.494467, -1.900984]], [[53.494467, -1.900984], [53.494464, -1.900831]], [[53.494464, -1.900831], [53.494456, -1.900674]], [[53.494456, -1.900674], [53.494415, -1.900526]], [[53.494468, -1.900223], [53.494392, -1.900136]], [[53.494051, -1.899896], [53.493963, -1.899827]], [[53.493898, -1.899708], [53.493846, -1.899575]], [[53.493846, -1.899575], [53.493771, -1.899472]], [[53.493771, -1.899472], [53.49371, -1.899339]], [[53.49371, -1.899339], [53.493649, -1.899221]], [[53.493649, -1.899221], [53.493591, -1.899105]], [[53.493591, -1.899105], [53.493585, -1.898947]], [[53.493585, -1.898947], [53.493522, -1.898835]], [[53.493522, -1.898835], [53.493474, -1.898706]], [[53.493474, -1.898706], [53.493483, -1.898553]], [[53.493483, -1.898553], [53.49345, -1.898399]], [[53.49345, -1.898399], [53.49341, -1.898244]], [[53.49341, -1.898244], [53.493377, -1.898101]], [[53.493377, -1.898101], [53.493316, -1.897974]], [[53.493316, -1.897974], [53.49328, -1.897824]], [[53.493257, -1.897376], [53.493171, -1.897443]], [[53.493171, -1.897443], [53.493123, -1.897576]], [[53.493179, -1.897769], [53.493125, -1.897644]], [[53.49279, -1.896821], [53.492813, -1.896651]], [[53.492813, -1.896651], [53.492858, -1.896519]], [[53.492858, -1.896519], [53.49287, -1.896362]], [[53.492884, -1.896056], [53.492855, -1.895913]], [[53.492855, -1.895913], [53.492815, -1.895753]], [[53.492815, -1.895753], [53.492775, -1.895605]], [[53.492775, -1.895605], [53.492726, -1.89547]], [[53.492726, -1.89547], [53.492763, -1.895323]], [[53.492707, -1.895195], [53.492649, -1.895123]], [[53.492483, -1.894738], [53.492407, -1.894617]], [[53.49233, -1.894539], [53.492263, -1.89442]], [[53.492263, -1.89442], [53.492194, -1.894318]], [[53.492041, -1.894127], [53.491962, -1.89403]], [[53.491962, -1.89403], [53.491871, -1.893966]], [[53.491465, -1.893542], [53.491375, -1.893498]], [[53.491375, -1.893498], [53.491298, -1.89342]], [[53.491227, -1.893527], [53.49116, -1.893644]], [[53.49116, -1.893644], [53.491112, -1.893778]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_b93d55b4825dc51e2462aadde085f216 = L.polyline(
                [[[53.750056, -2.058362], [53.750002, -2.05822]], [[53.749824, -2.057839], [53.749742, -2.057767]], [[53.749764, -2.056357], [53.749747, -2.0562]], [[53.749747, -2.0562], [53.749751, -2.056026]], [[53.749701, -2.055561], [53.749662, -2.055422]], [[53.749613, -2.05529], [53.749618, -2.055128]], [[53.749618, -2.055128], [53.74963, -2.054975]], [[53.74963, -2.054975], [53.749663, -2.054822]], [[53.749607, -2.05417], [53.749565, -2.05402]], [[53.74954, -2.053555], [53.749613, -2.053434]], [[53.749613, -2.053434], [53.74965, -2.05326]], [[53.74965, -2.05326], [53.749702, -2.053119]], [[53.749731, -2.052636], [53.749752, -2.052483]], [[53.749799, -2.052182], [53.74982, -2.052033]], [[53.749795, -2.051869], [53.749822, -2.051702]], [[53.749822, -2.051702], [53.749814, -2.051534]], [[53.749814, -2.051534], [53.749834, -2.051384]], [[53.749846, -2.051065], [53.749827, -2.050902]], [[53.749827, -2.050902], [53.749805, -2.050748]], [[53.749728, -2.049853], [53.749702, -2.049692]], [[53.749702, -2.049692], [53.749705, -2.049525]], [[53.749745, -2.049195], [53.749696, -2.049045]], [[53.749649, -2.048908], [53.749648, -2.048749]], [[53.749649, -2.048582], [53.749589, -2.04844]], [[53.749543, -2.047969], [53.749492, -2.04782]], [[53.749492, -2.04782], [53.749447, -2.047673]], [[53.748979, -2.044119], [53.749076, -2.044076]], [[53.749065, -2.045164], [53.749073, -2.045317]], [[53.749073, -2.045317], [53.749145, -2.045431]], [[53.74922, -2.0463], [53.74927, -2.04643]], [[53.749409, -2.04673], [53.749452, -2.047188]], [[53.749452, -2.047188], [53.749483, -2.047345]], [[53.749589, -2.047873], [53.749584, -2.048028]], [[53.74959, -2.048198], [53.749619, -2.048361]], [[53.749734, -2.049157], [53.749747, -2.049313]], [[53.749747, -2.049313], [53.749734, -2.049482]], [[53.749734, -2.049482], [53.749747, -2.049652]], [[53.745671, -2.050907], [53.745592, -2.050808]], [[53.745592, -2.050808], [53.745512, -2.050737]], [[53.745304, -2.050684], [53.745218, -2.050637]], [[53.745127, -2.050676], [53.745035, -2.050692]], [[53.745035, -2.050692], [53.744946, -2.050634]], [[53.744946, -2.050634], [53.744858, -2.050573]], [[53.744298, -2.05048], [53.744204, -2.050462]], [[53.744204, -2.050462], [53.744124, -2.050371]], [[53.744026, -2.050374], [53.743943, -2.050465]], [[53.743868, -2.050574], [53.743769, -2.050551]], [[53.743604, -2.050399], [53.743535, -2.050289]], [[53.743524, -2.050448], [53.743491, -2.050591]], [[53.743386, -2.050595], [53.743295, -2.050596]], [[53.743295, -2.050596], [53.743197, -2.050607]], [[53.743018, -2.050546], [53.742956, -2.050435]], [[53.742447, -2.050174], [53.742358, -2.050246]], [[53.742118, -2.050185], [53.742031, -2.050128]], [[53.74195, -2.050022], [53.741867, -2.049938]], [[53.741773, -2.049889], [53.74168, -2.049812]], [[53.74088, -2.04902], [53.740782, -2.048971]], [[53.740782, -2.048971], [53.740709, -2.048874]], [[53.740572, -2.048939], [53.74048, -2.048935]], [[53.740377, -2.048948], [53.740285, -2.048914]], [[53.740285, -2.048914], [53.740212, -2.048802]], [[53.740212, -2.048802], [53.740119, -2.048752]], [[53.740119, -2.048752], [53.740033, -2.048662]], [[53.740033, -2.048662], [53.739938, -2.048611]], [[53.739685, -2.048161], [53.739601, -2.048068]], [[53.739513, -2.048032], [53.739413, -2.047965]], [[53.739324, -2.047931], [53.739226, -2.047908]], [[53.738888, -2.047824], [53.738847, -2.047688]], [[53.738844, -2.047365], [53.73887, -2.047207]], [[53.73887, -2.047207], [53.738837, -2.047065]], [[53.738564, -2.045635], [53.738529, -2.04541]], [[53.738529, -2.04541], [53.738539, -2.045243]], [[53.738597, -2.044382], [53.738673, -2.044286]], [[53.738604, -2.043966], [53.73858, -2.044106]], [[53.738561, -2.044266], [53.738541, -2.044431]], [[53.738575, -2.044734], [53.738562, -2.044907]], [[53.738317, -2.045092], [53.738253, -2.045081]], [[53.737169, -2.046533], [53.737158, -2.046703]], [[53.737222, -2.046965], [53.737136, -2.047071]], [[53.73675, -2.047567], [53.736658, -2.047605]], [[53.736658, -2.047605], [53.736601, -2.047726]], [[53.736521, -2.04783], [53.736489, -2.04798]], [[53.736489, -2.04798], [53.736385, -2.047981]], [[53.736232, -2.048367], [53.73617, -2.048479]], [[53.735871, -2.048916], [53.735801, -2.049013]], [[53.735801, -2.049013], [53.735751, -2.049149]], [[53.735751, -2.049149], [53.735675, -2.049255]], [[53.735826, -2.047861], [53.73587, -2.047714]], [[53.73587, -2.047714], [53.735911, -2.047555]], [[53.735896, -2.047396], [53.735877, -2.047232]], [[53.735877, -2.047232], [53.735874, -2.047058]], [[53.735837, -2.046763], [53.735912, -2.046643]], [[53.735973, -2.046173], [53.735952, -2.046011]], [[53.735952, -2.046011], [53.735965, -2.045847]], [[53.736013, -2.045527], [53.735929, -2.045471]], [[53.735609, -2.045441], [53.735529, -2.045336]], [[53.735529, -2.045336], [53.735449, -2.045252]], [[53.735449, -2.045252], [53.735352, -2.045196]], [[53.735134, -2.044582], [53.734976, -2.04451]], [[53.73466, -2.044302], [53.73461, -2.044428]], [[53.73461, -2.044428], [53.734508, -2.044444]], [[53.733766, -2.043375], [53.733847, -2.043262]], [[53.733847, -2.043262], [53.733879, -2.043091]], [[53.733879, -2.043091], [53.733933, -2.042962]], [[53.734118, -2.042626], [53.734145, -2.042478]], [[53.734145, -2.042478], [53.734155, -2.042323]], [[53.734155, -2.042323], [53.734231, -2.042241]], [[53.734342, -2.041922], [53.734304, -2.041737]], [[53.734515, -2.041214], [53.734558, -2.041077]], [[53.734968, -2.040236], [53.735017, -2.040097]], [[53.735017, -2.040097], [53.735074, -2.039974]], [[53.735369, -2.038475], [53.735372, -2.038318]], [[53.735224, -2.036931], [53.735176, -2.03677]], [[53.735254, -2.036315], [53.735234, -2.03615]], [[53.735234, -2.03615], [53.735153, -2.036059]], [[53.735029, -2.036072], [53.73494, -2.035993]], [[53.73494, -2.035993], [53.734849, -2.035954]], [[53.734881, -2.035833], [53.734882, -2.035655]], [[53.734882, -2.035655], [53.734827, -2.035512]], [[53.734827, -2.035512], [53.73483, -2.035354]], [[53.734569, -2.034885], [53.734501, -2.034765]], [[53.734364, -2.033793], [53.734268, -2.033775]], [[53.733867, -2.033461], [53.733795, -2.033371]], [[53.733795, -2.033371], [53.733731, -2.033264]], [[53.733505, -2.032998], [53.733421, -2.03291]], [[53.732739, -2.032686], [53.732655, -2.032615]], [[53.732124, -2.032134], [53.732038, -2.032085]], [[53.731865, -2.032102], [53.73179, -2.032201]], [[53.731617, -2.032095], [53.731521, -2.032067]], [[53.731521, -2.032067], [53.731431, -2.032073]], [[53.731099, -2.032131], [53.731004, -2.032174]], [[53.731004, -2.032174], [53.730903, -2.032155]], [[53.730593, -2.032337], [53.730529, -2.032223]], [[53.730529, -2.032223], [53.730461, -2.032117]], [[53.730461, -2.032117], [53.730383, -2.032014]], [[53.730198, -2.031949], [53.730117, -2.032041]], [[53.730117, -2.032041], [53.730034, -2.032139]], [[53.730034, -2.032139], [53.729926, -2.03212]], [[53.729841, -2.032043], [53.729763, -2.031914]], [[53.729695, -2.031795], [53.729622, -2.031657]], [[53.729503, -2.031393], [53.729431, -2.031295]], [[53.729203, -2.031134], [53.729118, -2.031032]], [[53.729118, -2.031032], [53.729038, -2.03093]], [[53.728537, -2.030534], [53.728451, -2.030451]], [[53.728451, -2.030451], [53.72836, -2.030415]], [[53.727899, -2.030404], [53.727809, -2.030333]], [[53.727132, -2.030307], [53.727035, -2.030315]], [[53.726679, -2.030414], [53.726582, -2.030436]], [[53.725362, -2.031123], [53.725288, -2.031226]], [[53.725288, -2.031226], [53.725205, -2.031315]], [[53.724656, -2.031875], [53.724562, -2.031934]], [[53.724562, -2.031934], [53.724475, -2.031981]], [[53.724295, -2.031589], [53.724213, -2.03151]], [[53.724151, -2.031386], [53.724088, -2.031254]], [[53.724321, -2.032133], [53.724244, -2.032244]], [[53.724244, -2.032244], [53.724156, -2.032314]], [[53.724156, -2.032314], [53.72408, -2.032413]], [[53.723862, -2.032702], [53.723777, -2.032789]], [[53.723777, -2.032789], [53.723724, -2.032925]], [[53.723085, -2.034029], [53.723013, -2.034119]], [[53.722912, -2.034177], [53.722823, -2.034221]], [[53.722333, -2.034363], [53.722242, -2.034296]], [[53.722242, -2.034296], [53.722143, -2.034262]], [[53.721948, -2.034202], [53.72185, -2.034213]], [[53.72185, -2.034213], [53.721754, -2.034227]], [[53.721558, -2.034283], [53.721462, -2.03427]], [[53.721036, -2.033762], [53.720966, -2.033659]], [[53.720966, -2.033659], [53.720889, -2.033555]], [[53.720504, -2.032804], [53.720463, -2.032657]], [[53.71845, -2.031969], [53.71836, -2.031991]], [[53.715657, -2.034196], [53.715567, -2.034212]], [[53.715567, -2.034212], [53.715471, -2.03426]], [[53.715471, -2.03426], [53.715382, -2.034349]], [[53.714982, -2.035173], [53.714981, -2.035338]], [[53.714981, -2.035338], [53.714971, -2.035509]], [[53.713819, -2.042047], [53.713738, -2.04198]], [[53.713738, -2.04198], [53.713643, -2.041926]], [[53.713178, -2.041786], [53.713087, -2.041799]], [[53.713087, -2.041799], [53.712993, -2.041794]], [[53.712993, -2.041794], [53.712893, -2.041759]], [[53.712893, -2.041759], [53.71281, -2.041697]], [[53.71281, -2.041697], [53.712727, -2.041621]], [[53.712727, -2.041621], [53.712641, -2.041543]], [[53.712553, -2.041493], [53.712464, -2.041465]], [[53.712464, -2.041465], [53.712373, -2.04145]], [[53.712373, -2.04145], [53.712275, -2.041471]], [[53.712186, -2.041511], [53.712085, -2.041556]], [[53.712085, -2.041556], [53.711997, -2.041589]], [[53.711468, -2.041982], [53.711382, -2.042072]], [[53.711382, -2.042072], [53.711301, -2.042173]], [[53.711301, -2.042173], [53.71125, -2.0423]], [[53.71125, -2.0423], [53.711186, -2.042411]], [[53.711186, -2.042411], [53.71111, -2.042526]], [[53.71111, -2.042526], [53.711018, -2.042556]], [[53.710672, -2.042837], [53.710585, -2.042896]], [[53.710585, -2.042896], [53.710512, -2.043002]], [[53.710512, -2.043002], [53.710432, -2.043085]], [[53.710432, -2.043085], [53.710345, -2.04313]], [[53.71017, -2.043243], [53.710084, -2.043302]], [[53.710084, -2.043302], [53.709994, -2.043378]], [[53.709994, -2.043378], [53.709906, -2.043413]], [[53.709906, -2.043413], [53.709814, -2.043456]], [[53.709814, -2.043456], [53.709722, -2.04351]], [[53.709722, -2.04351], [53.709638, -2.043579]], [[53.709638, -2.043579], [53.70955, -2.043625]], [[53.709367, -2.043725], [53.709274, -2.043757]], [[53.70917, -2.043763], [53.709075, -2.043769]], [[53.709075, -2.043769], [53.708987, -2.043839]], [[53.708987, -2.043839], [53.70889, -2.043897]], [[53.70889, -2.043897], [53.708817, -2.044006]], [[53.70866, -2.044206], [53.70858, -2.044296]], [[53.70858, -2.044296], [53.708499, -2.044376]], [[53.708499, -2.044376], [53.708415, -2.044464]], [[53.708415, -2.044464], [53.708336, -2.04455]], [[53.707992, -2.044857], [53.707922, -2.044958]], [[53.707838, -2.045027], [53.70778, -2.045145]], [[53.70778, -2.045145], [53.707694, -2.045228]], [[53.707694, -2.045228], [53.707611, -2.045302]], [[53.707611, -2.045302], [53.707525, -2.045358]], [[53.707525, -2.045358], [53.707451, -2.045475]], [[53.707325, -2.045715], [53.707254, -2.045842]], [[53.707254, -2.045842], [53.707189, -2.045952]], [[53.706963, -2.046263], [53.706879, -2.046345]], [[53.706879, -2.046345], [53.706802, -2.046445]], [[53.706802, -2.046445], [53.706735, -2.046552]], [[53.70667, -2.046658], [53.706607, -2.046794]], [[53.706607, -2.046794], [53.706535, -2.046901]], [[53.706314, -2.047211], [53.706263, -2.047352]], [[53.706263, -2.047352], [53.706204, -2.047473]], [[53.706204, -2.047473], [53.706151, -2.047609]], [[53.706091, -2.047741], [53.706029, -2.047871]], [[53.706029, -2.047871], [53.705973, -2.048005]], [[53.705973, -2.048005], [53.705923, -2.048147]], [[53.705923, -2.048147], [53.70585, -2.048238]], [[53.705701, -2.048651], [53.705601, -2.048681]], [[53.705601, -2.048681], [53.705511, -2.048714]], [[53.705511, -2.048714], [53.705553, -2.048868]], [[53.705641, -2.04947], [53.705576, -2.049576]], [[53.705576, -2.049576], [53.705502, -2.049667]], [[53.705229, -2.050326], [53.705167, -2.05044]], [[53.705167, -2.05044], [53.705112, -2.05057]], [[53.705012, -2.050843], [53.704988, -2.050997]], [[53.704364, -2.05195], [53.704277, -2.052027]], [[53.704277, -2.052027], [53.704187, -2.052044]], [[53.704187, -2.052044], [53.704095, -2.052109]], [[53.704095, -2.052109], [53.704044, -2.052249]], [[53.704044, -2.052249], [53.703962, -2.052339]], [[53.703962, -2.052339], [53.703876, -2.052417]], [[53.703876, -2.052417], [53.703784, -2.052477]], [[53.703784, -2.052477], [53.703695, -2.052512]], [[53.703695, -2.052512], [53.703604, -2.052572]], [[53.703604, -2.052572], [53.703513, -2.052612]], [[53.703513, -2.052612], [53.703423, -2.052634]], [[53.703423, -2.052634], [53.703349, -2.052736]], [[53.699865, -2.054364], [53.69976, -2.054349]], [[53.69976, -2.054349], [53.699662, -2.054366]], [[53.699662, -2.054366], [53.699565, -2.054369]], [[53.699565, -2.054369], [53.699475, -2.054381]], [[53.699475, -2.054381], [53.699379, -2.054395]], [[53.699379, -2.054395], [53.699282, -2.054411]], [[53.699099, -2.05451], [53.698998, -2.054523]], [[53.698998, -2.054523], [53.698897, -2.05454]], [[53.698268, -2.054623], [53.698174, -2.054675]], [[53.697333, -2.05512], [53.697235, -2.055108]], [[53.697235, -2.055108], [53.697139, -2.055159]], [[53.697139, -2.055159], [53.697043, -2.05513]], [[53.697043, -2.05513], [53.696954, -2.055108]], [[53.696954, -2.055108], [53.696862, -2.055158]], [[53.696862, -2.055158], [53.69678, -2.055227]], [[53.69678, -2.055227], [53.696687, -2.055243]], [[53.696509, -2.055304], [53.696402, -2.055278]], [[53.696231, -2.055428], [53.696135, -2.055443]], [[53.696135, -2.055443], [53.696035, -2.055453]], [[53.696035, -2.055453], [53.695947, -2.055525]], [[53.695947, -2.055525], [53.695853, -2.05553]], [[53.695853, -2.05553], [53.695768, -2.055477]], [[53.695768, -2.055477], [53.695682, -2.055421]], [[53.695682, -2.055421], [53.695592, -2.055433]], [[53.695592, -2.055433], [53.695499, -2.055477]], [[53.695315, -2.055467], [53.695218, -2.055531]], [[53.695218, -2.055531], [53.695126, -2.055528]], [[53.694929, -2.05552], [53.694834, -2.055601]], [[53.694834, -2.055601], [53.694733, -2.055628]], [[53.694304, -2.055623], [53.694202, -2.055662]], [[53.694202, -2.055662], [53.694111, -2.0557]], [[53.694111, -2.0557], [53.694009, -2.055727]], [[53.694009, -2.055727], [53.693922, -2.055772]], [[53.693922, -2.055772], [53.693843, -2.05589]], [[53.693843, -2.05589], [53.693769, -2.056002]], [[53.693769, -2.056002], [53.69369, -2.056101]], [[53.69369, -2.056101], [53.693614, -2.056206]], [[53.693452, -2.056418], [53.693391, -2.056532]], [[53.693391, -2.056532], [53.69334, -2.056684]], [[53.69334, -2.056684], [53.693278, -2.056799]], [[53.693278, -2.056799], [53.693214, -2.056921]], [[53.693153, -2.057059], [53.693088, -2.057166]], [[53.693006, -2.057238], [53.692938, -2.05735]], [[53.692758, -2.057493], [53.692691, -2.057594]], [[53.692691, -2.057594], [53.692621, -2.057694]], [[53.692466, -2.057876], [53.692379, -2.057952]], [[53.692207, -2.058074], [53.692133, -2.058182]], [[53.691943, -2.058549], [53.691884, -2.058667]], [[53.691795, -2.058728], [53.691703, -2.058752]], [[53.69163, -2.058871], [53.691574, -2.05899]], [[53.691574, -2.05899], [53.691505, -2.059099]], [[53.691505, -2.059099], [53.691462, -2.059235]], [[53.691462, -2.059235], [53.691394, -2.059361]], [[53.691394, -2.059361], [53.691339, -2.059496]], [[53.691271, -2.059613], [53.691247, -2.059777]], [[53.691233, -2.060272], [53.691218, -2.060427]], [[53.691214, -2.060598], [53.691187, -2.060755]], [[53.691187, -2.060755], [53.691202, -2.060923]], [[53.691202, -2.060923], [53.691194, -2.061084]], [[53.691194, -2.061084], [53.69115, -2.061231]], [[53.691045, -2.061387], [53.691065, -2.06156]], [[53.691027, -2.061992], [53.690988, -2.062151]], [[53.690988, -2.062151], [53.690958, -2.062308]], [[53.690958, -2.062308], [53.690964, -2.062462]], [[53.690964, -2.062462], [53.691012, -2.062596]], [[53.691075, -2.062882], [53.691156, -2.062985]], [[53.691214, -2.063126], [53.69125, -2.063283]], [[53.691269, -2.063432], [53.691289, -2.063582]], [[53.691338, -2.063734], [53.691342, -2.063891]], [[53.691381, -2.064032], [53.69142, -2.06419]], [[53.691612, -2.065109], [53.691649, -2.065268]], [[53.691649, -2.065268], [53.691686, -2.065425]], [[53.691686, -2.065425], [53.691715, -2.065581]], [[53.691715, -2.065581], [53.691738, -2.065746]], [[53.691792, -2.065883], [53.691808, -2.066034]], [[53.691808, -2.066034], [53.691819, -2.06621]], [[53.691819, -2.06621], [53.69184, -2.066371]], [[53.69184, -2.066371], [53.691867, -2.066521]], [[53.691965, -2.066975], [53.691981, -2.067125]], [[53.691981, -2.067125], [53.691998, -2.067297]], [[53.69204, -2.06762], [53.692096, -2.067738]], [[53.692115, -2.067903], [53.692115, -2.068056]], [[53.692115, -2.068056], [53.69214, -2.068213]], [[53.692162, -2.068365], [53.692142, -2.068519]], [[53.692142, -2.068519], [53.692083, -2.068641]], [[53.691996, -2.068912], [53.691939, -2.069031]], [[53.691669, -2.069181], [53.691569, -2.069197]], [[53.691569, -2.069197], [53.691471, -2.069173]], [[53.691471, -2.069173], [53.691369, -2.069178]], [[53.691176, -2.069253], [53.691094, -2.069316]], [[53.691094, -2.069316], [53.691004, -2.069359]], [[53.691004, -2.069359], [53.690913, -2.06943]], [[53.690809, -2.069443], [53.690733, -2.06954]], [[53.690361, -2.069646], [53.69027, -2.069709]], [[53.69027, -2.069709], [53.69017, -2.06972]], [[53.69017, -2.06972], [53.690067, -2.069699]], [[53.690067, -2.069699], [53.68997, -2.06969]], [[53.689847, -2.069924], [53.689783, -2.070058]], [[53.689783, -2.070058], [53.68972, -2.070193]], [[53.68972, -2.070193], [53.68967, -2.070325]], [[53.689445, -2.070255], [53.689355, -2.070239]], [[53.689355, -2.070239], [53.689272, -2.070161]], [[53.688881, -2.069875], [53.688782, -2.069821]], [[53.688782, -2.069821], [53.688699, -2.069752]], [[53.688699, -2.069752], [53.688616, -2.069693]], [[53.688616, -2.069693], [53.688525, -2.069677]], [[53.688076, -2.069329], [53.687982, -2.069274]], [[53.687982, -2.069274], [53.687893, -2.069222]], [[53.687799, -2.069189], [53.687698, -2.069149]], [[53.687329, -2.068931], [53.687264, -2.06881]], [[53.687264, -2.06881], [53.687172, -2.068752]], [[53.687172, -2.068752], [53.687089, -2.068645]], [[53.687089, -2.068645], [53.687001, -2.068607]], [[53.687001, -2.068607], [53.686909, -2.068566]], [[53.686909, -2.068566], [53.686819, -2.068561]], [[53.686721, -2.068527], [53.686625, -2.068461]], [[53.686469, -2.068233], [53.686387, -2.068161]], [[53.686387, -2.068161], [53.686302, -2.068091]], [[53.686214, -2.068049], [53.686126, -2.068011]], [[53.686126, -2.068011], [53.686036, -2.067924]], [[53.68579, -2.067677], [53.685692, -2.067625]], [[53.685692, -2.067625], [53.68561, -2.067564]], [[53.68561, -2.067564], [53.685518, -2.067499]], [[53.685518, -2.067499], [53.685437, -2.067417]], [[53.685437, -2.067417], [53.685342, -2.067375]], [[53.685342, -2.067375], [53.685255, -2.067335]], [[53.685255, -2.067335], [53.685166, -2.067284]], [[53.685166, -2.067284], [53.685082, -2.067212]], [[53.684994, -2.067173], [53.684906, -2.067122]], [[53.684906, -2.067122], [53.68483, -2.067022]], [[53.684747, -2.066941], [53.684669, -2.066858]], [[53.68458, -2.066792], [53.684489, -2.066803]], [[53.684489, -2.066803], [53.684412, -2.0667]], [[53.684239, -2.066543], [53.684147, -2.066485]], [[53.684147, -2.066485], [53.684052, -2.066449]], [[53.683952, -2.066416], [53.683885, -2.066307]], [[53.683799, -2.066236], [53.683715, -2.066155]], [[53.683715, -2.066155], [53.683637, -2.06608]], [[53.683637, -2.06608], [53.683556, -2.065994]], [[53.683556, -2.065994], [53.68346, -2.065984]], [[53.68346, -2.065984], [53.68336, -2.065963]], [[53.68336, -2.065963], [53.683274, -2.065892]], [[53.683094, -2.065797], [53.682997, -2.065798]], [[53.682997, -2.065798], [53.682924, -2.065703]], [[53.682924, -2.065703], [53.682834, -2.06562]], [[53.682834, -2.06562], [53.682741, -2.065541]], [[53.682741, -2.065541], [53.682656, -2.065488]], [[53.682656, -2.065488], [53.682567, -2.065448]], [[53.682567, -2.065448], [53.682482, -2.065374]], [[53.682482, -2.065374], [53.682393, -2.065321]], [[53.682393, -2.065321], [53.682299, -2.065302]], [[53.682122, -2.06519], [53.682033, -2.06509]], [[53.681951, -2.064991], [53.681874, -2.064893]], [[53.681874, -2.064893], [53.681786, -2.064808]], [[53.681786, -2.064808], [53.681702, -2.064746]], [[53.681702, -2.064746], [53.681614, -2.064649]], [[53.681614, -2.064649], [53.681543, -2.064552]], [[53.681543, -2.064552], [53.681459, -2.064458]], [[53.681459, -2.064458], [53.681394, -2.064348]], [[53.681394, -2.064348], [53.681327, -2.064229]], [[53.681254, -2.064128], [53.681181, -2.064009]], [[53.681181, -2.064009], [53.681112, -2.063893]], [[53.681006, -2.063623], [53.680958, -2.063483]], [[53.680958, -2.063483], [53.680895, -2.063368]], [[53.680895, -2.063368], [53.680835, -2.063254]], [[53.680835, -2.063254], [53.68079, -2.063113]], [[53.68079, -2.063113], [53.680736, -2.062965]], [[53.680736, -2.062965], [53.680677, -2.06283]], [[53.680677, -2.06283], [53.680627, -2.062695]], [[53.680516, -2.062435], [53.68049, -2.062275]], [[53.68049, -2.062275], [53.680453, -2.062115]], [[53.68038, -2.062014], [53.680319, -2.06187]], [[53.680219, -2.061588], [53.680164, -2.061466]], [[53.680164, -2.061466], [53.680119, -2.06133]], [[53.680119, -2.06133], [53.680076, -2.061193]], [[53.680076, -2.061193], [53.680014, -2.061075]], [[53.680014, -2.061075], [53.679958, -2.060945]], [[53.679896, -2.060821], [53.679848, -2.060689]], [[53.679642, -2.060376], [53.679584, -2.060239]], [[53.67932, -2.060113], [53.679224, -2.060079]], [[53.679036, -2.060075], [53.678948, -2.060006]], [[53.678854, -2.05996], [53.678754, -2.059934]], [[53.678754, -2.059934], [53.678651, -2.059923]], [[53.678651, -2.059923], [53.678561, -2.059893]], [[53.678561, -2.059893], [53.67847, -2.059848]], [[53.67847, -2.059848], [53.678376, -2.059805]], [[53.67829, -2.059727], [53.678209, -2.059631]], [[53.678209, -2.059631], [53.678121, -2.059562]], [[53.678121, -2.059562], [53.678029, -2.059501]], [[53.677701, -2.05921], [53.677608, -2.059173]], [[53.677608, -2.059173], [53.677508, -2.059185]], [[53.677249, -2.05895], [53.677164, -2.058998]], [[53.677164, -2.058998], [53.677063, -2.059003]], [[53.677063, -2.059003], [53.676971, -2.058999]], [[53.676971, -2.058999], [53.676876, -2.059002]], [[53.676876, -2.059002], [53.676788, -2.059039]], [[53.676689, -2.059029], [53.6766, -2.058973]], [[53.6766, -2.058973], [53.676511, -2.058951]], [[53.67632, -2.05897], [53.676228, -2.058939]], [[53.676228, -2.058939], [53.676131, -2.058923]], [[53.675946, -2.05893], [53.675856, -2.05893]], [[53.675856, -2.05893], [53.675762, -2.058942]], [[53.675762, -2.058942], [53.675668, -2.058908]], [[53.675668, -2.058908], [53.675573, -2.058856]], [[53.675573, -2.058856], [53.675488, -2.058765]], [[53.675488, -2.058765], [53.675403, -2.058676]], [[53.675403, -2.058676], [53.675312, -2.058627]], [[53.675312, -2.058627], [53.675232, -2.058541]], [[53.675055, -2.058415], [53.674969, -2.058342]], [[53.674969, -2.058342], [53.674876, -2.058275]], [[53.674876, -2.058275], [53.674803, -2.058178]], [[53.674803, -2.058178], [53.674721, -2.058094]], [[53.674721, -2.058094], [53.674639, -2.058014]], [[53.674639, -2.058014], [53.674557, -2.057927]], [[53.674557, -2.057927], [53.674479, -2.057823]], [[53.674479, -2.057823], [53.674404, -2.057727]], [[53.674325, -2.057632], [53.674236, -2.057576]], [[53.674236, -2.057576], [53.674155, -2.057507]], [[53.674155, -2.057507], [53.674073, -2.057429]], [[53.674073, -2.057429], [53.673991, -2.05736]], [[53.673991, -2.05736], [53.673921, -2.057261]], [[53.673854, -2.057147], [53.673766, -2.057072]], [[53.673529, -2.056773], [53.673462, -2.056666]], [[53.673462, -2.056666], [53.673378, -2.05656]], [[53.673378, -2.05656], [53.673289, -2.056531]], [[53.673289, -2.056531], [53.673185, -2.056503]], [[53.673185, -2.056503], [53.673093, -2.056479]], [[53.67292, -2.05657], [53.672859, -2.056691]], [[53.672859, -2.056691], [53.672789, -2.05679]], [[53.672789, -2.05679], [53.672714, -2.056907]], [[53.672714, -2.056907], [53.67264, -2.057025]], [[53.67264, -2.057025], [53.672558, -2.057123]], [[53.672558, -2.057123], [53.672502, -2.057252]], [[53.672502, -2.057252], [53.672437, -2.057361]], [[53.672437, -2.057361], [53.672366, -2.057485]], [[53.672366, -2.057485], [53.672297, -2.057594]], [[53.672099, -2.057958], [53.672024, -2.058084]], [[53.671955, -2.058192], [53.671882, -2.058304]], [[53.671882, -2.058304], [53.671799, -2.0584]], [[53.671799, -2.0584], [53.67172, -2.058494]], [[53.671626, -2.058529], [53.67153, -2.058533]], [[53.67153, -2.058533], [53.671439, -2.058549]], [[53.671439, -2.058549], [53.671334, -2.058551]], [[53.671334, -2.058551], [53.671244, -2.058503]], [[53.671244, -2.058503], [53.671153, -2.058522]], [[53.671052, -2.058513], [53.670952, -2.058496]], [[53.670952, -2.058496], [53.670852, -2.058446]], [[53.670852, -2.058446], [53.670762, -2.058402]], [[53.670762, -2.058402], [53.670675, -2.058349]], [[53.670675, -2.058349], [53.67058, -2.058343]], [[53.67058, -2.058343], [53.670497, -2.058285]], [[53.670497, -2.058285], [53.670402, -2.058217]], [[53.670402, -2.058217], [53.670314, -2.058145]], [[53.670314, -2.058145], [53.670219, -2.0581]], [[53.670219, -2.0581], [53.670133, -2.058016]], [[53.670133, -2.058016], [53.670053, -2.057915]], [[53.670053, -2.057915], [53.66997, -2.057839]], [[53.669814, -2.057646], [53.669763, -2.05752]], [[53.669584, -2.057102], [53.669521, -2.056974]], [[53.669521, -2.056974], [53.669464, -2.056849]], [[53.669464, -2.056849], [53.6694, -2.056732]], [[53.669325, -2.056635], [53.669248, -2.056552]], [[53.669248, -2.056552], [53.669171, -2.056444]], [[53.669171, -2.056444], [53.669102, -2.056333]], [[53.669102, -2.056333], [53.669015, -2.056268]], [[53.669015, -2.056268], [53.668917, -2.056206]], [[53.668917, -2.056206], [53.668836, -2.056126]], [[53.668836, -2.056126], [53.668758, -2.056036]], [[53.668758, -2.056036], [53.668682, -2.05593]], [[53.668682, -2.05593], [53.668606, -2.055825]], [[53.668606, -2.055825], [53.668525, -2.05571]], [[53.668525, -2.05571], [53.668456, -2.055596]], [[53.668324, -2.055425], [53.668246, -2.055345]], [[53.668059, -2.055225], [53.667969, -2.055166]], [[53.667969, -2.055166], [53.667885, -2.055096]], [[53.667885, -2.055096], [53.667783, -2.055044]], [[53.667783, -2.055044], [53.667694, -2.055]], [[53.6676, -2.054948], [53.66751, -2.054872]], [[53.66751, -2.054872], [53.667421, -2.054839]], [[53.667421, -2.054839], [53.667334, -2.054769]], [[53.667334, -2.054769], [53.667238, -2.054708]], [[53.667238, -2.054708], [53.667138, -2.054697]], [[53.667138, -2.054697], [53.667044, -2.054706]], [[53.667044, -2.054706], [53.666941, -2.054687]], [[53.666941, -2.054687], [53.666838, -2.05469]], [[53.666838, -2.05469], [53.666743, -2.054707]], [[53.666743, -2.054707], [53.666652, -2.054735]], [[53.666652, -2.054735], [53.666568, -2.054793]], [[53.666568, -2.054793], [53.666465, -2.054839]], [[53.666375, -2.054899], [53.666275, -2.054936]], [[53.666189, -2.054995], [53.666096, -2.055061]], [[53.666009, -2.055128], [53.665917, -2.055198]], [[53.665917, -2.055198], [53.66583, -2.055283]], [[53.66583, -2.055283], [53.665751, -2.055379]], [[53.665656, -2.055449], [53.665576, -2.055526]], [[53.665576, -2.055526], [53.665491, -2.055578]], [[53.665491, -2.055578], [53.665392, -2.055622]], [[53.665392, -2.055622], [53.665299, -2.055683]], [[53.665299, -2.055683], [53.665204, -2.055731]], [[53.665204, -2.055731], [53.665123, -2.055811]], [[53.665123, -2.055811], [53.665042, -2.055879]], [[53.665042, -2.055879], [53.664958, -2.055979]], [[53.664958, -2.055979], [53.664867, -2.05601]], [[53.664867, -2.05601], [53.664777, -2.056039]], [[53.664678, -2.056032], [53.664577, -2.056024]], [[53.664577, -2.056024], [53.664479, -2.056036]], [[53.664479, -2.056036], [53.664385, -2.056055]], [[53.664385, -2.056055], [53.664291, -2.05607]], [[53.664291, -2.05607], [53.664187, -2.056096]], [[53.664187, -2.056096], [53.664095, -2.056107]], [[53.664095, -2.056107], [53.663993, -2.056102]], [[53.663993, -2.056102], [53.663898, -2.056096]], [[53.663898, -2.056096], [53.663805, -2.056073]], [[53.663805, -2.056073], [53.663703, -2.056077]], [[53.663703, -2.056077], [53.663613, -2.056098]], [[53.663613, -2.056098], [53.663519, -2.056098]], [[53.663519, -2.056098], [53.663418, -2.056118]], [[53.663418, -2.056118], [53.663324, -2.056152]], [[53.663324, -2.056152], [53.663233, -2.056157]], [[53.663233, -2.056157], [53.663137, -2.056167]], [[53.663137, -2.056167], [53.663035, -2.056152]], [[53.663035, -2.056152], [53.662936, -2.056142]], [[53.66284, -2.056131], [53.662745, -2.056106]], [[53.662745, -2.056106], [53.662643, -2.056066]], [[53.662643, -2.056066], [53.662539, -2.056037]], [[53.662539, -2.056037], [53.662449, -2.055981]], [[53.662449, -2.055981], [53.662357, -2.055934]], [[53.662357, -2.055934], [53.662266, -2.055864]], [[53.662266, -2.055864], [53.662175, -2.055785]], [[53.662088, -2.055713], [53.661999, -2.05566]], [[53.661913, -2.055582], [53.661831, -2.055488]], [[53.661831, -2.055488], [53.661743, -2.055422]], [[53.661656, -2.055354], [53.66156, -2.05531]], [[53.66156, -2.05531], [53.661465, -2.055282]], [[53.661465, -2.055282], [53.661374, -2.055256]], [[53.661285, -2.055193], [53.661195, -2.055179]], [[53.661095, -2.055195], [53.660996, -2.055148]], [[53.660996, -2.055148], [53.660905, -2.055104]], [[53.660905, -2.055104], [53.66082, -2.055043]], [[53.660728, -2.05497], [53.660628, -2.05493]], [[53.660628, -2.05493], [53.660533, -2.0549]], [[53.660533, -2.0549], [53.660446, -2.05484]], [[53.660446, -2.05484], [53.660367, -2.054746]], [[53.660367, -2.054746], [53.660298, -2.05464]], [[53.660298, -2.05464], [53.660229, -2.054521]], [[53.660229, -2.054521], [53.660177, -2.05439]], [[53.660177, -2.05439], [53.660131, -2.054259]], [[53.660131, -2.054259], [53.660081, -2.054131]], [[53.660081, -2.054131], [53.660019, -2.054007]], [[53.660019, -2.054007], [53.659977, -2.053864]], [[53.659938, -2.053713], [53.65991, -2.053543]], [[53.659895, -2.053205], [53.659911, -2.053038]], [[53.659911, -2.053038], [53.659933, -2.052891]], [[53.659933, -2.052891], [53.659976, -2.052745]], [[53.659976, -2.052745], [53.66004, -2.052636]], [[53.660215, -2.052114], [53.660219, -2.05196]], [[53.660183, -2.051312], [53.66015, -2.051168]], [[53.660134, -2.051], [53.660116, -2.050827]], [[53.660116, -2.050827], [53.660087, -2.050677]], [[53.660087, -2.050677], [53.660067, -2.050522]], [[53.660067, -2.050522], [53.660028, -2.050382]], [[53.660028, -2.050382], [53.659964, -2.050268]], [[53.659747, -2.049818], [53.659673, -2.049725]], [[53.659673, -2.049725], [53.659597, -2.049638]], [[53.659514, -2.049544], [53.659447, -2.049441]], [[53.659447, -2.049441], [53.659359, -2.04935]], [[53.659359, -2.04935], [53.659292, -2.049216]], [[53.659292, -2.049216], [53.659253, -2.049071]], [[53.659253, -2.049071], [53.659182, -2.048957]], [[53.659182, -2.048957], [53.65911, -2.048851]], [[53.65911, -2.048851], [53.659041, -2.048747]], [[53.658824, -2.048393], [53.658737, -2.04831]], [[53.658737, -2.04831], [53.658662, -2.048194]], [[53.658662, -2.048194], [53.658576, -2.048107]], [[53.658431, -2.047889], [53.658368, -2.047775]], [[53.658368, -2.047775], [53.658282, -2.047689]], [[53.657884, -2.047539], [53.657846, -2.047682]], [[53.657846, -2.047682], [53.657798, -2.047813]], [[53.657798, -2.047813], [53.657741, -2.047959]], [[53.657741, -2.047959], [53.657701, -2.048094]], [[53.657701, -2.048094], [53.657665, -2.048236]], [[53.657665, -2.048236], [53.657617, -2.048385]], [[53.657617, -2.048385], [53.657582, -2.04853]], [[53.657582, -2.04853], [53.657538, -2.048673]], [[53.657538, -2.048673], [53.657486, -2.048816]], [[53.657486, -2.048816], [53.657444, -2.048952]], [[53.657444, -2.048952], [53.657419, -2.049115]], [[53.657419, -2.049115], [53.657379, -2.049257]], [[53.657281, -2.049531], [53.657215, -2.049658]], [[53.657215, -2.049658], [53.657154, -2.049777]], [[53.657154, -2.049777], [53.657095, -2.049895]], [[53.657095, -2.049895], [53.657029, -2.050025]], [[53.657029, -2.050025], [53.656968, -2.050141]], [[53.656968, -2.050141], [53.656902, -2.050247]], [[53.65506, -2.05022], [53.654999, -2.050342]], [[53.654999, -2.050342], [53.654913, -2.05044]], [[53.654913, -2.05044], [53.65483, -2.050522]], [[53.65483, -2.050522], [53.654754, -2.050633]], [[53.654511, -2.050859], [53.654419, -2.050934]], [[53.654419, -2.050934], [53.654343, -2.051053]], [[53.654343, -2.051053], [53.654264, -2.051158]], [[53.654264, -2.051158], [53.654186, -2.05126]], [[53.654186, -2.05126], [53.654096, -2.051345]], [[53.654096, -2.051345], [53.654007, -2.051433]], [[53.654007, -2.051433], [53.653943, -2.051539]], [[53.653943, -2.051539], [53.653866, -2.051642]], [[53.653866, -2.051642], [53.653789, -2.051726]], [[53.653789, -2.051726], [53.653707, -2.051799]], [[53.65353, -2.051954], [53.65344, -2.051986]], [[53.65344, -2.051986], [53.653345, -2.052032]], [[53.653345, -2.052032], [53.653252, -2.05208]], [[53.653252, -2.05208], [53.653155, -2.052045]], [[53.652589, -2.052084], [53.652497, -2.052088]], [[53.652497, -2.052088], [53.6524, -2.052044]], [[53.6524, -2.052044], [53.652319, -2.051963]], [[53.652061, -2.051717], [53.651965, -2.051678]], [[53.651787, -2.051573], [53.651699, -2.051542]], [[53.651699, -2.051542], [53.651625, -2.051447]], [[53.651285, -2.051167], [53.651208, -2.051084]], [[53.651062, -2.050884], [53.650981, -2.050781]], [[53.650981, -2.050781], [53.6509, -2.050692]], [[53.6509, -2.050692], [53.650831, -2.050576]], [[53.650831, -2.050576], [53.650766, -2.050469]], [[53.650766, -2.050469], [53.650717, -2.050324]], [[53.650717, -2.050324], [53.650657, -2.050188]], [[53.65062, -2.050044], [53.650596, -2.049889]], [[53.650596, -2.049889], [53.6506, -2.049717]], [[53.650612, -2.049555], [53.650548, -2.049431]], [[53.650548, -2.049431], [53.650484, -2.049309]], [[53.650261, -2.049017], [53.650238, -2.048854]], [[53.650223, -2.048699], [53.650183, -2.048538]], [[53.650183, -2.048538], [53.650126, -2.048419]], [[53.64997, -2.048218], [53.649907, -2.048092]], [[53.649907, -2.048092], [53.649815, -2.048014]], [[53.649726, -2.047984], [53.649632, -2.047902]], [[53.649632, -2.047902], [53.649535, -2.047873]], [[53.649535, -2.047873], [53.649443, -2.04779]], [[53.649945, -2.042182], [53.650004, -2.042064]], [[53.649423, -2.042071], [53.649331, -2.042074]], [[53.649331, -2.042074], [53.649238, -2.042033]], [[53.649238, -2.042033], [53.649149, -2.042078]], [[53.648887, -2.042247], [53.648801, -2.042301]], [[53.64778, -2.042279], [53.647685, -2.042246]], [[53.647214, -2.042354], [53.64712, -2.042379]], [[53.644814, -2.043166], [53.644723, -2.043199]], [[53.64186, -2.041919], [53.641821, -2.041766]], [[53.641142, -2.041159], [53.641051, -2.041218]], [[53.641051, -2.041218], [53.640952, -2.041252]], [[53.640755, -2.041282], [53.640662, -2.041259]], [[53.639754, -2.04096], [53.639668, -2.040911]], [[53.639668, -2.040911], [53.639573, -2.040908]], [[53.639379, -2.040893], [53.639282, -2.040838]], [[53.639282, -2.040838], [53.639184, -2.040841]], [[53.639184, -2.040841], [53.639089, -2.040801]], [[53.63797, -2.039088], [53.63793, -2.038935]], [[53.63793, -2.038935], [53.637848, -2.03886]], [[53.637434, -2.038218], [53.63738, -2.038094]], [[53.63738, -2.038094], [53.63733, -2.037968]], [[53.63733, -2.037968], [53.63726, -2.037853]], [[53.63726, -2.037853], [53.637191, -2.037745]], [[53.636787, -2.037119], [53.636732, -2.036997]], [[53.636732, -2.036997], [53.636675, -2.036864]], [[53.636675, -2.036864], [53.636631, -2.036709]], [[53.636631, -2.036709], [53.63657, -2.03658]], [[53.63633, -2.036311], [53.636255, -2.036214]], [[53.636255, -2.036214], [53.636169, -2.03614]], [[53.636169, -2.03614], [53.636104, -2.036032]], [[53.636104, -2.036032], [53.636046, -2.035914]], [[53.635584, -2.035443], [53.635497, -2.035379]], [[53.634887, -2.034935], [53.634799, -2.034892]], [[53.634703, -2.034902], [53.634617, -2.034834]], [[53.634617, -2.034834], [53.634526, -2.034836]], [[53.634526, -2.034836], [53.634438, -2.03477]], [[53.634354, -2.034704], [53.63427, -2.034637]], [[53.633981, -2.034482], [53.633891, -2.034444]], [[53.633733, -2.034278], [53.633676, -2.034141]], [[53.633676, -2.034141], [53.633616, -2.034025]], [[53.633616, -2.034025], [53.633555, -2.033914]], [[53.633555, -2.033914], [53.633492, -2.033795]], [[53.633492, -2.033795], [53.633424, -2.033694]], [[53.63325, -2.033551], [53.633158, -2.033485]], [[53.633085, -2.033375], [53.633005, -2.033288]], [[53.632327, -2.032888], [53.632266, -2.03277]], [[53.632174, -2.032728], [53.632081, -2.03267]], [[53.632001, -2.032577], [53.631917, -2.03248]], [[53.631917, -2.03248], [53.63186, -2.03236]], [[53.63186, -2.03236], [53.631757, -2.032329]], [[53.631757, -2.032329], [53.63166, -2.03229]], [[53.631419, -2.032082], [53.631336, -2.032009]], [[53.631336, -2.032009], [53.631248, -2.03196]], [[53.631248, -2.03196], [53.631162, -2.031903]], [[53.631162, -2.031903], [53.631069, -2.03184]], [[53.630747, -2.031488], [53.630688, -2.031349]], [[53.630688, -2.031349], [53.63066, -2.031205]], [[53.630409, -2.030021], [53.630369, -2.029877]], [[53.630369, -2.029877], [53.630354, -2.029722]], [[53.630349, -2.029558], [53.630369, -2.02939]], [[53.630369, -2.02939], [53.630372, -2.029219]], [[53.630372, -2.029219], [53.630387, -2.029061]], [[53.630387, -2.029061], [53.630386, -2.028908]], [[53.630386, -2.028908], [53.630368, -2.028753]], [[53.630368, -2.028753], [53.630376, -2.028599]], [[53.630376, -2.028599], [53.6304, -2.028452]], [[53.6304, -2.028452], [53.630408, -2.028283]], [[53.628924, -2.02646], [53.628833, -2.026463]], [[53.628739, -2.026426], [53.628655, -2.026371]], [[53.628219, -2.026683], [53.628126, -2.02669]], [[53.627872, -2.026887], [53.627773, -2.026862]], [[53.627773, -2.026862], [53.627672, -2.026863]], [[53.626503, -2.027378], [53.626404, -2.027329]], [[53.626305, -2.027297], [53.626219, -2.027369]], [[53.625686, -2.02758], [53.625583, -2.027554]], [[53.625583, -2.027554], [53.62548, -2.027543]], [[53.62548, -2.027543], [53.625391, -2.027523]], [[53.625391, -2.027523], [53.625291, -2.027512]], [[53.624731, -2.027381], [53.624643, -2.027346]], [[53.624643, -2.027346], [53.624548, -2.02731]], [[53.624446, -2.027326], [53.624355, -2.027298]], [[53.624355, -2.027298], [53.624264, -2.027257]], [[53.623614, -2.027037], [53.623514, -2.027062]], [[53.623054, -2.026877], [53.622966, -2.026826]], [[53.622966, -2.026826], [53.622863, -2.026823]], [[53.622224, -2.026694], [53.622127, -2.026652]], [[53.622127, -2.026652], [53.622035, -2.026641]], [[53.621752, -2.026575], [53.621656, -2.026535]], [[53.621364, -2.026538], [53.621282, -2.026453]], [[53.621282, -2.026453], [53.621196, -2.026389]], [[53.620751, -2.02613], [53.620661, -2.02611]], [[53.619145, -2.025748], [53.619043, -2.025703]], [[53.619043, -2.025703], [53.618947, -2.025711]], [[53.618862, -2.025657], [53.61878, -2.025594]], [[53.61878, -2.025594], [53.618695, -2.025542]], [[53.618522, -2.025441], [53.618433, -2.025422]], [[53.618433, -2.025422], [53.618336, -2.025385]], [[53.617886, -2.025141], [53.617789, -2.025131]], [[53.616703, -2.023192], [53.616691, -2.023041]], [[53.616691, -2.023041], [53.616677, -2.02289]], [[53.616463, -2.022352], [53.616374, -2.022276]], [[53.616374, -2.022276], [53.616316, -2.022161]], [[53.616269, -2.021997], [53.616184, -2.021908]], [[53.616184, -2.021908], [53.616138, -2.02176]], [[53.616138, -2.02176], [53.616116, -2.021613]], [[53.616116, -2.021613], [53.616098, -2.021461]], [[53.616098, -2.021461], [53.616059, -2.021312]], [[53.615975, -2.021031], [53.615912, -2.020891]], [[53.615866, -2.020759], [53.615797, -2.02066]], [[53.615714, -2.020335], [53.615658, -2.020207]], [[53.615541, -2.019955], [53.615533, -2.019788]], [[53.61557, -2.018984], [53.615542, -2.018837]], [[53.615542, -2.018837], [53.615525, -2.018685]], [[53.615525, -2.018685], [53.61549, -2.01854]], [[53.615468, -2.018393], [53.615443, -2.018234]], [[53.615443, -2.018234], [53.615432, -2.018074]], [[53.615432, -2.018074], [53.615396, -2.017929]], [[53.615396, -2.017929], [53.615335, -2.017794]], [[53.615335, -2.017794], [53.615295, -2.017641]], [[53.615316, -2.017316], [53.615336, -2.017157]], [[53.615336, -2.017157], [53.615326, -2.017002]], [[53.615302, -2.016401], [53.615326, -2.016247]], [[53.615326, -2.016247], [53.615308, -2.016093]], [[53.615308, -2.016093], [53.615259, -2.015961]], [[53.615259, -2.015961], [53.615234, -2.015815]], [[53.614887, -2.014484], [53.614845, -2.01434]], [[53.614845, -2.01434], [53.614805, -2.014189]], [[53.61478, -2.014034], [53.614724, -2.013898]], [[53.614724, -2.013898], [53.614648, -2.013793]], [[53.614648, -2.013793], [53.614596, -2.013669]], [[53.614546, -2.013516], [53.614498, -2.013366]], [[53.614453, -2.013068], [53.614446, -2.012912]], [[53.614404, -2.012574], [53.614416, -2.012419]], [[53.614411, -2.012262], [53.614423, -2.01209]], [[53.614423, -2.01209], [53.614425, -2.011937]], [[53.614403, -2.011636], [53.61436, -2.011484]], [[53.614344, -2.01133], [53.614286, -2.011196]], [[53.614231, -2.011057], [53.614248, -2.010895]], [[53.614241, -2.010425], [53.614181, -2.010298]], [[53.614181, -2.010298], [53.614128, -2.010171]], [[53.614128, -2.010171], [53.6141, -2.01002]], [[53.613974, -2.009757], [53.613919, -2.009608]], [[53.613919, -2.009608], [53.613862, -2.009482]], [[53.613862, -2.009482], [53.613805, -2.009347]], [[53.613805, -2.009347], [53.613738, -2.009219]], [[53.613738, -2.009219], [53.613662, -2.00912]], [[53.613589, -2.009], [53.613524, -2.008864]], [[53.613151, -2.008575], [53.613067, -2.008513]], [[53.612973, -2.008451], [53.612889, -2.008354]], [[53.612889, -2.008354], [53.612848, -2.008217]], [[53.612709, -2.008004], [53.612637, -2.007909]], [[53.612637, -2.007909], [53.612585, -2.007778]], [[53.612525, -2.007466], [53.612429, -2.007417]], [[53.611778, -2.006497], [53.611735, -2.00636]], [[53.611735, -2.00636], [53.6117, -2.006219]], [[53.61155, -2.005809], [53.611482, -2.005693]], [[53.611394, -2.005418], [53.611347, -2.005271]], [[53.610998, -2.004518], [53.610918, -2.004423]], [[53.610592, -2.003827], [53.61052, -2.003723]], [[53.610439, -2.00364], [53.610365, -2.003524]], [[53.610365, -2.003524], [53.610299, -2.003414]], [[53.610299, -2.003414], [53.610223, -2.003329]], [[53.610223, -2.003329], [53.610167, -2.003208]], [[53.610167, -2.003208], [53.610104, -2.003075]], [[53.610104, -2.003075], [53.610041, -2.00296]], [[53.610041, -2.00296], [53.609977, -2.00283]], [[53.609828, -2.002629], [53.609764, -2.002513]], [[53.609573, -2.002268], [53.609504, -2.00215]], [[53.609445, -2.002029], [53.609374, -2.001904]], [[53.609374, -2.001904], [53.609314, -2.001784]], [[53.609314, -2.001784], [53.609251, -2.001656]], [[53.608982, -2.001178], [53.608902, -2.001096]], [[53.608902, -2.001096], [53.608832, -2.000968]], [[53.60864, -2.000581], [53.608575, -2.000458]], [[53.608575, -2.000458], [53.608486, -2.000365]], [[53.608325, -2.000215], [53.608248, -2.00011]], [[53.608248, -2.00011], [53.60818, -2.000007]], [[53.60797, -1.999651], [53.607888, -1.999581]], [[53.607888, -1.999581], [53.607799, -1.999496]], [[53.607737, -1.999387], [53.607653, -1.999291]], [[53.607563, -1.999218], [53.607491, -1.9991]], [[53.607491, -1.9991], [53.607436, -1.998953]], [[53.607436, -1.998953], [53.607388, -1.998807]], [[53.607388, -1.998807], [53.607326, -1.998682]], [[53.607326, -1.998682], [53.607244, -1.998574]], [[53.607244, -1.998574], [53.607186, -1.998435]], [[53.607186, -1.998435], [53.607152, -1.998285]], [[53.607152, -1.998285], [53.607155, -1.998119]], [[53.607219, -1.998012], [53.607177, -1.997864]], [[53.607073, -1.997543], [53.607057, -1.997379]], [[53.607057, -1.997379], [53.607004, -1.997248]], [[53.606906, -1.99721], [53.606818, -1.997157]], [[53.606818, -1.997157], [53.606739, -1.997071]], [[53.606679, -1.996945], [53.606624, -1.99682]], [[53.606624, -1.99682], [53.60654, -1.996709]], [[53.606473, -1.996582], [53.606393, -1.996476]], [[53.605763, -1.995725], [53.605669, -1.995674]], [[53.605575, -1.995648], [53.605476, -1.995626]], [[53.605476, -1.995626], [53.605377, -1.995572]], [[53.605377, -1.995572], [53.60529, -1.995533]], [[53.60529, -1.995533], [53.605194, -1.995479]], [[53.605103, -1.995407], [53.605006, -1.995368]], [[53.605006, -1.995368], [53.604908, -1.995346]], [[53.604908, -1.995346], [53.604806, -1.995358]], [[53.604806, -1.995358], [53.604709, -1.995311]], [[53.603483, -1.994881], [53.603399, -1.994817]], [[53.60298, -1.994528], [53.602907, -1.994433]], [[53.602737, -1.994258], [53.60264, -1.994224]], [[53.60264, -1.994224], [53.602558, -1.994137]], [[53.602558, -1.994137], [53.602466, -1.994076]], [[53.602466, -1.994076], [53.602368, -1.994028]], [[53.602368, -1.994028], [53.602277, -1.993964]], [[53.602277, -1.993964], [53.602181, -1.993902]], [[53.602181, -1.993902], [53.602094, -1.993819]], [[53.602094, -1.993819], [53.602012, -1.993752]], [[53.601842, -1.99359], [53.60175, -1.993544]], [[53.60175, -1.993544], [53.601662, -1.993503]], [[53.601662, -1.993503], [53.601571, -1.993475]], [[53.601571, -1.993475], [53.601469, -1.993431]], [[53.601469, -1.993431], [53.60137, -1.9934]], [[53.60137, -1.9934], [53.601271, -1.993393]], [[53.601271, -1.993393], [53.601174, -1.99334]], [[53.601174, -1.99334], [53.601077, -1.993308]], [[53.600877, -1.99331], [53.600787, -1.993287]], [[53.600787, -1.993287], [53.600691, -1.993293]], [[53.600691, -1.993293], [53.600597, -1.993347]], [[53.600506, -1.993364], [53.600415, -1.993342]], [[53.600317, -1.993354], [53.600218, -1.993339]], [[53.600218, -1.993339], [53.600123, -1.993376]], [[53.600123, -1.993376], [53.600021, -1.99336]], [[53.600021, -1.99336], [53.599928, -1.993407]], [[53.599765, -1.993558], [53.599677, -1.993591]], [[53.599506, -1.993682], [53.599405, -1.993719]], [[53.599405, -1.993719], [53.599334, -1.993824]], [[53.599334, -1.993824], [53.599264, -1.993951]], [[53.599264, -1.993951], [53.599175, -1.993986]], [[53.599076, -1.994025], [53.598983, -1.994067]], [[53.598597, -1.994123], [53.598514, -1.994191]], [[53.598514, -1.994191], [53.598439, -1.994279]], [[53.598164, -1.994673], [53.598072, -1.994697]], [[53.59669, -1.99354], [53.596608, -1.993467]], [[53.596608, -1.993467], [53.596524, -1.993391]], [[53.596524, -1.993391], [53.596465, -1.993268]], [[53.596465, -1.993268], [53.596418, -1.993124]], [[53.596102, -1.99235], [53.596052, -1.992203]], [[53.595435, -1.991189], [53.595372, -1.991071]], [[53.59506, -1.99045], [53.594998, -1.990323]], [[53.594998, -1.990323], [53.594957, -1.990174]], [[53.594537, -1.989532], [53.594453, -1.989461]], [[53.594453, -1.989461], [53.594376, -1.989367]], [[53.594376, -1.989367], [53.59429, -1.989302]], [[53.59429, -1.989302], [53.594219, -1.989191]], [[53.594219, -1.989191], [53.594132, -1.989123]], [[53.593783, -1.988333], [53.593705, -1.988241]], [[53.593705, -1.988241], [53.593653, -1.988091]], [[53.593653, -1.988091], [53.593615, -1.987944]], [[53.593496, -1.987536], [53.593454, -1.987401]], [[53.593454, -1.987401], [53.593422, -1.98725]], [[53.593248, -1.986897], [53.593189, -1.986779]], [[53.593098, -1.986479], [53.593063, -1.986324]], [[53.593063, -1.986324], [53.592999, -1.986206]], [[53.592812, -1.985825], [53.59277, -1.985673]], [[53.59277, -1.985673], [53.59272, -1.985531]], [[53.59272, -1.985531], [53.592704, -1.985366]], [[53.592401, -1.984605], [53.592359, -1.984471]], [[53.592359, -1.984471], [53.592282, -1.984358]], [[53.592221, -1.98424], [53.592167, -1.984116]], [[53.592167, -1.984116], [53.592105, -1.984005]], [[53.591983, -1.983746], [53.591895, -1.983655]], [[53.591895, -1.983655], [53.591813, -1.983561]], [[53.591543, -1.983382], [53.591447, -1.983348]], [[53.591447, -1.983348], [53.591355, -1.983281]], [[53.590906, -1.98299], [53.590819, -1.982942]], [[53.590819, -1.982942], [53.590722, -1.982953]], [[53.59036, -1.982758], [53.590286, -1.982659]], [[53.590286, -1.982659], [53.590197, -1.982601]], [[53.590197, -1.982601], [53.590118, -1.982488]], [[53.590118, -1.982488], [53.590048, -1.982391]], [[53.589873, -1.982268], [53.589792, -1.982179]], [[53.589713, -1.982102], [53.589644, -1.981998]], [[53.589644, -1.981998], [53.589556, -1.981911]], [[53.589375, -1.981771], [53.589304, -1.981654]], [[53.589035, -1.981468], [53.588954, -1.981382]], [[53.588861, -1.981337], [53.588768, -1.981298]], [[53.588768, -1.981298], [53.58868, -1.981243]], [[53.588106, -1.980712], [53.58801, -1.980661]], [[53.587929, -1.980736], [53.587834, -1.980743]], [[53.587742, -1.980697], [53.587654, -1.980665]], [[53.587654, -1.980665], [53.587569, -1.980586]], [[53.587389, -1.980567], [53.587288, -1.980499]], [[53.587201, -1.980461], [53.587112, -1.980401]], [[53.587018, -1.980356], [53.58692, -1.980313]], [[53.58692, -1.980313], [53.586835, -1.980263]], [[53.586655, -1.980184], [53.58657, -1.980096]], [[53.586143, -1.979871], [53.586083, -1.979749]], [[53.586083, -1.979749], [53.586056, -1.979583]], [[53.584703, -1.978437], [53.584596, -1.978416]], [[53.584596, -1.978416], [53.584502, -1.978433]], [[53.584502, -1.978433], [53.584401, -1.978435]], [[53.584401, -1.978435], [53.584306, -1.978449]], [[53.584126, -1.978365], [53.584029, -1.978383]], [[53.584029, -1.978383], [53.583926, -1.978408]], [[53.583926, -1.978408], [53.583836, -1.978398]], [[53.583636, -1.978323], [53.583548, -1.978271]], [[53.583548, -1.978271], [53.583454, -1.978257]], [[53.583252, -1.978138], [53.583226, -1.978289]], [[53.583055, -1.977752], [53.583051, -1.977596]], [[53.583063, -1.976784], [53.583094, -1.976623]], [[53.583094, -1.976623], [53.583106, -1.976468]], [[53.583106, -1.976468], [53.583125, -1.976295]], [[53.583125, -1.976295], [53.583153, -1.976129]], [[53.583153, -1.976129], [53.583142, -1.975969]], [[53.583142, -1.975969], [53.583119, -1.975819]], [[53.582885, -1.974651], [53.582811, -1.974556]], [[53.582811, -1.974556], [53.58273, -1.974469]], [[53.58273, -1.974469], [53.58265, -1.974397]], [[53.58265, -1.974397], [53.582577, -1.974296]], [[53.582577, -1.974296], [53.5825, -1.974197]], [[53.5825, -1.974197], [53.582421, -1.974104]], [[53.582421, -1.974104], [53.582351, -1.973999]], [[53.582351, -1.973999], [53.582269, -1.973925]], [[53.581977, -1.973425], [53.581978, -1.973271]], [[53.582283, -1.972053], [53.582334, -1.971905]], [[53.582334, -1.971905], [53.58238, -1.971769]], [[53.58264, -1.970625], [53.582684, -1.970483]], [[53.582745, -1.970359], [53.582786, -1.97021]], [[53.5828, -1.970055], [53.582836, -1.969915]], [[53.582933, -1.969277], [53.582931, -1.969097]], [[53.582931, -1.969097], [53.58291, -1.968933]], [[53.582903, -1.968772], [53.582921, -1.968615]], [[53.582921, -1.968615], [53.582892, -1.968455]], [[53.582623, -1.966896], [53.582594, -1.966746]], [[53.582594, -1.966746], [53.582583, -1.966587]], [[53.582569, -1.966426], [53.582514, -1.966281]], [[53.582496, -1.965958], [53.582465, -1.96581]], [[53.582441, -1.96547], [53.582394, -1.965336]], [[53.5822, -1.964339], [53.58216, -1.964187]], [[53.582044, -1.963914], [53.582006, -1.963768]], [[53.581884, -1.963326], [53.58184, -1.963193]], [[53.58184, -1.963193], [53.581817, -1.963042]], [[53.58173, -1.962775], [53.581689, -1.962621]], [[53.581689, -1.962621], [53.581648, -1.962463]], [[53.581652, -1.961994], [53.581626, -1.961845]], [[53.581626, -1.961845], [53.581614, -1.961693]], [[53.581614, -1.961693], [53.581581, -1.961531]], [[53.581554, -1.961384], [53.581544, -1.961218]], [[53.581237, -1.960389], [53.581162, -1.960283]], [[53.581162, -1.960283], [53.581076, -1.960217]], [[53.580986, -1.960135], [53.580904, -1.960062]], [[53.580904, -1.960062], [53.58081, -1.960025]], [[53.58074, -1.959922], [53.58066, -1.959837]], [[53.58066, -1.959837], [53.580577, -1.959759]], [[53.580317, -1.959404], [53.580255, -1.959278]], [[53.580255, -1.959278], [53.580178, -1.959171]], [[53.580178, -1.959171], [53.580111, -1.959059]], [[53.579978, -1.958839], [53.579887, -1.958788]], [[53.579887, -1.958788], [53.579801, -1.958736]], [[53.57779, -1.957397], [53.577709, -1.957288]], [[53.577709, -1.957288], [53.577641, -1.957177]], [[53.577129, -1.953098], [53.577132, -1.952935]], [[53.577229, -1.952642], [53.577219, -1.952486]], [[53.577219, -1.952486], [53.577246, -1.952339]], [[53.57731, -1.952026], [53.577357, -1.951871]], [[53.577357, -1.951871], [53.577388, -1.951728]], [[53.577389, -1.951567], [53.577444, -1.951429]], [[53.577492, -1.951281], [53.577438, -1.95113]], [[53.577438, -1.95113], [53.577395, -1.950989]], [[53.577395, -1.950989], [53.577349, -1.950857]], [[53.57712, -1.950582], [53.577046, -1.950465]], [[53.576979, -1.950344], [53.576927, -1.950218]], [[53.576876, -1.950089], [53.576806, -1.949975]], [[53.576651, -1.949752], [53.576582, -1.949647]], [[53.576582, -1.949647], [53.576499, -1.94955]], [[53.576334, -1.949413], [53.57626, -1.9493]], [[53.57626, -1.9493], [53.57616, -1.949303]], [[53.575817, -1.948787], [53.575714, -1.948735]], [[53.575714, -1.948735], [53.575648, -1.948632]], [[53.57539, -1.947848], [53.575355, -1.947707]], [[53.575245, -1.947113], [53.575259, -1.946953]], [[53.575239, -1.946339], [53.575282, -1.946186]], [[53.575207, -1.94574], [53.575135, -1.945638]], [[53.575135, -1.945638], [53.575087, -1.945508]], [[53.575087, -1.945508], [53.575077, -1.945335]], [[53.575039, -1.945023], [53.575036, -1.94487]], [[53.575036, -1.94487], [53.575047, -1.944696]], [[53.57501, -1.944539], [53.574958, -1.944402]], [[53.574958, -1.944402], [53.574939, -1.94425]], [[53.574939, -1.94425], [53.574925, -1.944094]], [[53.574925, -1.944094], [53.574944, -1.943944]], [[53.574944, -1.943944], [53.574939, -1.943785]], [[53.574786, -1.942891], [53.574806, -1.942725]], [[53.575004, -1.94204], [53.575029, -1.941887]], [[53.574978, -1.941757], [53.575012, -1.941606]], [[53.57527, -1.94096], [53.575272, -1.940787]], [[53.575272, -1.940787], [53.575263, -1.940636]], [[53.575263, -1.940636], [53.575277, -1.940478]], [[53.575373, -1.940203], [53.575438, -1.940097]], [[53.575569, -1.939702], [53.575663, -1.939616]], [[53.575663, -1.939616], [53.575707, -1.939461]], [[53.575858, -1.939041], [53.575945, -1.938954]], [[53.575967, -1.938788], [53.575977, -1.938631]], [[53.576043, -1.938333], [53.57609, -1.938189]], [[53.576251, -1.937799], [53.576281, -1.937641]], [[53.576281, -1.937641], [53.576305, -1.937491]], [[53.576305, -1.937491], [53.57637, -1.937381]], [[53.57637, -1.937381], [53.576418, -1.937247]], [[53.576678, -1.936757], [53.576765, -1.936677]], [[53.576765, -1.936677], [53.576849, -1.936601]], [[53.576849, -1.936601], [53.576879, -1.936456]], [[53.576879, -1.936456], [53.576955, -1.936357]], [[53.57703, -1.936269], [53.577096, -1.936153]], [[53.577287, -1.935828], [53.577276, -1.935666]], [[53.577276, -1.935666], [53.577262, -1.935511]], [[53.577172, -1.934769], [53.577239, -1.934641]], [[53.577367, -1.933529], [53.577406, -1.933383]], [[53.577406, -1.933383], [53.577453, -1.933238]], [[53.577453, -1.933238], [53.577445, -1.933071]], [[53.577445, -1.933071], [53.577475, -1.93292]], [[53.577475, -1.93292], [53.577539, -1.932803]], [[53.577539, -1.932803], [53.577518, -1.932641]], [[53.577518, -1.932641], [53.577492, -1.932493]], [[53.577492, -1.932493], [53.57749, -1.932323]], [[53.57749, -1.932323], [53.577479, -1.932163]], [[53.577479, -1.932163], [53.577434, -1.93203]], [[53.577434, -1.93203], [53.577413, -1.931871]], [[53.577443, -1.931262], [53.577406, -1.931106]], [[53.577406, -1.931106], [53.577443, -1.930948]], [[53.577443, -1.930948], [53.577496, -1.930826]], [[53.577253, -1.928458], [53.577235, -1.928304]], [[53.577177, -1.928167], [53.577091, -1.928105]], [[53.577091, -1.928105], [53.576992, -1.928095]], [[53.576913, -1.927998], [53.57685, -1.927884]], [[53.57685, -1.927884], [53.576814, -1.927738]], [[53.576814, -1.927738], [53.576808, -1.927578]], [[53.576808, -1.927578], [53.576776, -1.927418]], [[53.576776, -1.927418], [53.576724, -1.927285]], [[53.576724, -1.927285], [53.576646, -1.927182]], [[53.576646, -1.927182], [53.576577, -1.927084]], [[53.576577, -1.927084], [53.57653, -1.926939]], [[53.57653, -1.926939], [53.576533, -1.926786]], [[53.57634, -1.925808], [53.576243, -1.925814]], [[53.576161, -1.924542], [53.576148, -1.924376]], [[53.576148, -1.924376], [53.576149, -1.924221]], [[53.576149, -1.924221], [53.576151, -1.924063]], [[53.57615, -1.923911], [53.576195, -1.92378]], [[53.576195, -1.92378], [53.576251, -1.923647]], [[53.576251, -1.923647], [53.576257, -1.923494]], [[53.577309, -1.921389], [53.577229, -1.921269]], [[53.577337, -1.921295], [53.577368, -1.921468]], [[53.577911, -1.920591], [53.57781, -1.920619]], [[53.577529, -1.92064], [53.577447, -1.920536]], [[53.577171, -1.920077], [53.577091, -1.920003]], [[53.576832, -1.91979], [53.576756, -1.919704]], [[53.576598, -1.919], [53.576635, -1.918859]], [[53.576635, -1.918859], [53.57657, -1.918735]], [[53.57657, -1.918735], [53.576532, -1.91858]], [[53.576402, -1.918399], [53.576313, -1.918317]], [[53.576313, -1.918317], [53.576256, -1.918196]], [[53.576175, -1.918111], [53.576088, -1.918045]], [[53.575993, -1.917972], [53.576015, -1.917813]], [[53.575936, -1.917534], [53.575884, -1.917407]], [[53.575884, -1.917407], [53.575838, -1.917271]], [[53.575616, -1.916412], [53.575593, -1.916252]], [[53.575593, -1.916252], [53.575571, -1.916096]], [[53.575805, -1.914075], [53.575778, -1.913909]], [[53.575466, -1.912786], [53.575414, -1.912645]], [[53.575414, -1.912645], [53.575365, -1.912508]], [[53.575365, -1.912508], [53.57536, -1.912337]], [[53.575346, -1.912183], [53.575256, -1.912184]], [[53.575062, -1.911765], [53.575029, -1.911593]], [[53.575029, -1.911593], [53.574999, -1.911434]], [[53.574957, -1.91129], [53.574931, -1.91113]], [[53.574931, -1.91113], [53.574872, -1.911003]], [[53.574776, -1.910928], [53.574712, -1.910805]], [[53.574668, -1.910339], [53.574693, -1.910183]], [[53.574693, -1.910183], [53.574656, -1.910032]], [[53.574483, -1.909653], [53.574449, -1.909504]], [[53.574311, -1.908593], [53.574362, -1.908453]], [[53.574362, -1.908453], [53.574308, -1.908314]], [[53.574308, -1.908314], [53.57424, -1.908207]], [[53.574238, -1.908045], [53.574237, -1.907878]], [[53.574683, -1.907174], [53.574728, -1.907026]], [[53.574549, -1.906811], [53.574457, -1.9068]], [[53.574457, -1.9068], [53.574368, -1.906767]], [[53.574269, -1.906784], [53.574184, -1.906866]], [[53.573582, -1.906855], [53.573535, -1.906712]], [[53.573535, -1.906712], [53.573468, -1.906595]], [[53.572934, -1.905958], [53.57284, -1.905914]], [[53.57284, -1.905914], [53.572757, -1.905825]], [[53.572527, -1.905528], [53.572473, -1.905383]], [[53.572249, -1.904972], [53.572175, -1.904884]], [[53.572033, -1.904657], [53.571957, -1.904574]], [[53.571607, -1.904041], [53.571559, -1.903898]], [[53.571559, -1.903898], [53.571474, -1.903811]], [[53.571168, -1.903231], [53.57115, -1.903081]], [[53.57115, -1.903081], [53.571077, -1.902987]], [[53.570758, -1.902429], [53.570753, -1.902264]], [[53.570753, -1.902264], [53.570726, -1.902108]], [[53.570726, -1.902108], [53.570671, -1.901959]], [[53.570671, -1.901959], [53.570605, -1.901835]], [[53.570605, -1.901835], [53.570531, -1.901725]], [[53.570531, -1.901725], [53.570489, -1.901573]], [[53.570447, -1.901426], [53.570377, -1.901324]], [[53.569909, -1.899957], [53.569843, -1.899854]], [[53.569753, -1.899266], [53.569749, -1.899098]], [[53.569749, -1.899098], [53.569799, -1.898957]], [[53.569799, -1.898957], [53.569796, -1.898797]], [[53.568941, -1.899128], [53.568849, -1.899067]], [[53.568849, -1.899067], [53.568759, -1.899057]], [[53.568482, -1.898949], [53.568381, -1.898903]], [[53.568381, -1.898903], [53.568301, -1.898826]], [[53.568301, -1.898826], [53.568229, -1.898734]], [[53.568229, -1.898734], [53.56817, -1.898611]], [[53.567845, -1.898267], [53.567784, -1.898149]], [[53.567268, -1.89724], [53.567199, -1.897129]], [[53.567199, -1.897129], [53.567174, -1.896964]], [[53.567118, -1.896815], [53.567034, -1.896744]], [[53.566267, -1.895715], [53.566201, -1.895601]], [[53.565954, -1.895366], [53.565894, -1.895234]], [[53.565396, -1.893471], [53.565428, -1.8933]], [[53.565486, -1.893168], [53.565532, -1.893029]], [[53.565751, -1.892171], [53.565803, -1.892041]], [[53.565858, -1.891734], [53.565898, -1.891592]], [[53.565932, -1.890994], [53.565882, -1.890859]], [[53.565882, -1.890859], [53.565845, -1.890722]], [[53.565601, -1.889846], [53.565625, -1.889677]], [[53.565625, -1.889677], [53.565609, -1.889516]], [[53.565549, -1.889225], [53.56548, -1.88912]], [[53.565456, -1.888835], [53.565467, -1.888679]], [[53.565304, -1.888128], [53.565274, -1.887977]], [[53.565085, -1.88761], [53.565061, -1.887453]], [[53.565061, -1.887453], [53.565021, -1.887296]], [[53.564962, -1.886826], [53.564932, -1.88668]], [[53.564318, -1.884786], [53.564229, -1.884719]], [[53.564229, -1.884719], [53.564144, -1.884655]], [[53.563679, -1.884564], [53.563587, -1.884574]], [[53.563587, -1.884574], [53.563493, -1.884588]], [[53.563493, -1.884588], [53.563401, -1.884619]], [[53.563401, -1.884619], [53.563313, -1.884673]], [[53.563313, -1.884673], [53.563228, -1.884743]], [[53.563228, -1.884743], [53.563137, -1.884804]], [[53.563137, -1.884804], [53.563052, -1.884881]], [[53.563052, -1.884881], [53.562966, -1.88495]], [[53.562966, -1.88495], [53.562891, -1.885047]], [[53.562891, -1.885047], [53.562806, -1.885128]], [[53.562806, -1.885128], [53.562711, -1.885171]], [[53.562629, -1.88527], [53.562549, -1.88536]], [[53.562549, -1.88536], [53.562465, -1.885431]], [[53.562465, -1.885431], [53.562385, -1.885538]], [[53.562385, -1.885538], [53.562293, -1.885605]], [[53.562214, -1.885681], [53.562135, -1.885762]], [[53.561953, -1.885874], [53.561877, -1.885956]], [[53.561877, -1.885956], [53.561835, -1.886101]], [[53.561673, -1.886506], [53.56165, -1.886665]], [[53.56165, -1.886665], [53.561588, -1.886791]], [[53.561346, -1.887488], [53.561283, -1.887596]], [[53.560693, -1.887377], [53.560629, -1.887233]], [[53.560629, -1.887233], [53.560551, -1.887151]], [[53.560374, -1.887026], [53.560315, -1.886901]], [[53.560102, -1.886571], [53.560017, -1.886496]], [[53.560017, -1.886496], [53.559923, -1.886466]], [[53.559923, -1.886466], [53.559826, -1.886445]], [[53.559682, -1.88623], [53.559602, -1.886129]], [[53.559459, -1.885929], [53.55937, -1.885868]], [[53.558736, -1.885584], [53.558738, -1.885419]], [[53.558706, -1.885252], [53.558688, -1.885097]], [[53.558688, -1.885097], [53.558651, -1.884956]], [[53.558453, -1.884669], [53.558362, -1.884654]], [[53.55812, -1.88439], [53.558034, -1.884301]], [[53.558034, -1.884301], [53.557954, -1.884216]], [[53.557954, -1.884216], [53.557874, -1.884137]], [[53.55753, -1.883876], [53.557448, -1.883788]], [[53.557448, -1.883788], [53.557371, -1.883697]], [[53.557101, -1.883605], [53.557051, -1.883471]], [[53.556978, -1.883378], [53.55689, -1.883311]], [[53.556799, -1.883267], [53.556755, -1.883124]], [[53.556689, -1.883015], [53.556602, -1.882956]], [[53.555109, -1.88152], [53.555035, -1.881417]], [[53.555035, -1.881417], [53.554959, -1.88133]], [[53.554552, -1.880905], [53.554469, -1.880834]], [[53.554469, -1.880834], [53.55439, -1.880728]], [[53.55439, -1.880728], [53.554291, -1.880688]], [[53.553776, -1.880129], [53.553686, -1.880111]], [[53.553686, -1.880111], [53.553602, -1.880029]], [[53.553124, -1.879709], [53.553048, -1.879593]], [[53.5529, -1.879403], [53.552814, -1.879347]], [[53.552466, -1.87914], [53.552398, -1.879024]], [[53.552398, -1.879024], [53.55232, -1.878929]], [[53.551823, -1.878548], [53.551745, -1.878473]], [[53.551745, -1.878473], [53.551646, -1.878484]], [[53.551576, -1.878374], [53.551553, -1.878218]], [[53.550987, -1.877776], [53.550943, -1.877638]], [[53.550943, -1.877638], [53.550868, -1.877532]], [[53.549801, -1.877008], [53.5497, -1.87702]], [[53.5497, -1.87702], [53.54961, -1.877077]], [[53.549168, -1.877154], [53.549067, -1.877162]], [[53.548014, -1.877134], [53.547928, -1.877051]], [[53.54366, -1.880212], [53.543578, -1.880276]], [[53.5433, -1.880336], [53.543209, -1.880369]], [[53.542866, -1.880646], [53.542785, -1.880738]], [[53.542785, -1.880738], [53.542699, -1.880819]], [[53.542295, -1.88117], [53.54221, -1.881241]], [[53.54221, -1.881241], [53.542134, -1.881336]], [[53.540103, -1.882577], [53.540028, -1.882691]], [[53.539952, -1.882795], [53.539896, -1.882914]], [[53.539828, -1.88302], [53.539744, -1.883109]], [[53.539744, -1.883109], [53.539641, -1.883124]], [[53.539454, -1.883031], [53.539364, -1.883028]], [[53.539097, -1.88316], [53.539008, -1.883228]], [[53.538601, -1.88387], [53.538535, -1.883979]], [[53.538535, -1.883979], [53.53846, -1.884076]], [[53.53846, -1.884076], [53.538433, -1.884237]], [[53.538294, -1.884635], [53.538211, -1.884735]], [[53.538211, -1.884735], [53.538139, -1.88485]], [[53.538117, -1.885001], [53.538032, -1.885104]], [[53.537882, -1.885297], [53.53782, -1.885411]], [[53.53782, -1.885411], [53.537803, -1.885566]], [[53.537803, -1.885566], [53.53778, -1.885732]], [[53.53778, -1.885732], [53.537714, -1.885843]], [[53.537714, -1.885843], [53.537661, -1.885982]], [[53.537661, -1.885982], [53.537657, -1.886155]], [[53.537575, -1.886427], [53.53749, -1.88651]], [[53.53749, -1.88651], [53.537417, -1.886608]], [[53.537417, -1.886608], [53.537354, -1.886722]], [[53.537195, -1.887107], [53.53716, -1.887261]], [[53.537145, -1.887412], [53.537136, -1.887569]], [[53.537049, -1.887851], [53.536969, -1.887922]], [[53.536969, -1.887922], [53.536923, -1.888062]], [[53.536831, -1.888083], [53.536755, -1.88818]], [[53.536567, -1.88866], [53.536507, -1.888787]], [[53.536507, -1.888787], [53.53646, -1.888922]], [[53.53646, -1.888922], [53.5364, -1.889059]], [[53.536204, -1.889379], [53.53615, -1.889502]], [[53.53615, -1.889502], [53.536108, -1.889653]], [[53.536108, -1.889653], [53.536057, -1.889798]], [[53.536057, -1.889798], [53.536022, -1.889941]], [[53.535742, -1.890327], [53.535751, -1.890492]], [[53.535695, -1.890646], [53.535629, -1.890774]], [[53.535629, -1.890774], [53.535545, -1.890859]], [[53.535545, -1.890859], [53.5355, -1.891008]], [[53.535439, -1.891123], [53.535391, -1.891252]], [[53.535391, -1.891252], [53.535352, -1.891403]], [[53.535352, -1.891403], [53.535326, -1.891566]], [[53.535326, -1.891566], [53.535319, -1.891721]], [[53.535319, -1.891721], [53.535267, -1.891874]], [[53.53521, -1.892005], [53.535231, -1.892161]], [[53.535194, -1.892611], [53.535138, -1.892747]], [[53.535138, -1.892747], [53.535118, -1.892896]], [[53.535074, -1.893039], [53.535045, -1.893189]], [[53.534178, -1.894129], [53.534099, -1.894247]], [[53.534099, -1.894247], [53.534024, -1.894351]], [[53.533945, -1.894442], [53.533886, -1.894564]], [[53.533886, -1.894564], [53.53382, -1.894667]], [[53.533706, -1.894911], [53.533615, -1.894984]], [[53.533615, -1.894984], [53.533566, -1.895124]], [[53.533566, -1.895124], [53.533515, -1.895252]], [[53.533215, -1.895873], [53.533186, -1.896037]], [[53.533186, -1.896037], [53.533179, -1.896203]], [[53.532959, -1.896529], [53.532892, -1.896647]], [[53.532789, -1.896919], [53.532747, -1.897067]], [[53.532678, -1.897186], [53.532596, -1.897261]], [[53.532301, -1.897688], [53.532246, -1.897828]], [[53.532246, -1.897828], [53.532196, -1.897959]], [[53.532126, -1.898245], [53.53207, -1.898389]], [[53.53207, -1.898389], [53.53201, -1.898525]], [[53.532015, -1.898997], [53.532007, -1.899165]], [[53.532007, -1.899165], [53.531985, -1.899329]], [[53.531985, -1.899329], [53.531976, -1.899496]], [[53.531957, -1.899654], [53.531916, -1.899803]], [[53.531916, -1.899803], [53.531874, -1.899957]], [[53.531856, -1.900124], [53.531847, -1.900298]], [[53.531847, -1.900298], [53.531817, -1.900451]], [[53.531796, -1.900754], [53.531757, -1.900901]], [[53.531757, -1.900901], [53.53169, -1.901017]], [[53.53169, -1.901017], [53.531644, -1.90116]], [[53.531487, -1.901531], [53.531416, -1.901635]], [[53.531416, -1.901635], [53.531374, -1.901785]], [[53.531374, -1.901785], [53.531311, -1.901894]], [[53.531243, -1.902006], [53.53117, -1.902123]], [[53.530788, -1.902535], [53.530708, -1.902608]], [[53.530708, -1.902608], [53.530655, -1.902741]], [[53.53052, -1.902982], [53.530462, -1.903117]], [[53.530462, -1.903117], [53.53039, -1.903219]], [[53.53039, -1.903219], [53.530316, -1.903314]], [[53.529735, -1.904048], [53.529699, -1.90419]], [[53.529699, -1.90419], [53.529664, -1.904335]], [[53.529664, -1.904335], [53.529594, -1.904436]], [[53.528906, -1.904596], [53.528814, -1.904582]], [[53.528156, -1.905067], [53.528084, -1.905162]], [[53.527836, -1.905623], [53.527743, -1.905703]], [[53.527743, -1.905703], [53.527661, -1.905769]], [[53.527019, -1.906255], [53.526924, -1.906232]], [[53.524534, -1.907946], [53.524445, -1.908016]], [[53.524445, -1.908016], [53.524364, -1.908091]], [[53.522431, -1.909229], [53.522377, -1.909351]], [[53.513096, -1.914211], [53.513028, -1.914327]], [[53.507912, -1.915968], [53.507829, -1.915903]], [[53.502918, -1.910092], [53.502841, -1.910003]], [[53.499301, -1.905942], [53.499273, -1.905778]], [[53.498097, -1.904082], [53.498037, -1.903969]], [[53.497441, -1.903251], [53.497383, -1.903112]], [[53.497383, -1.903112], [53.49731, -1.903021]], [[53.495655, -1.902003], [53.495569, -1.901939]], [[53.495569, -1.901939], [53.49548, -1.901871]], [[53.494392, -1.900136], [53.494299, -1.900081]], [[53.494299, -1.900081], [53.494205, -1.900068]], [[53.492935, -1.897036], [53.492868, -1.896915]], [[53.492868, -1.896915], [53.49279, -1.896821]], [[53.49287, -1.896362], [53.492868, -1.896208]], [[53.492868, -1.896208], [53.492884, -1.896056]], [[53.492763, -1.895323], [53.492707, -1.895195]], [[53.492407, -1.894617], [53.49233, -1.894539]], [[53.491871, -1.893966], [53.491799, -1.893844]], [[53.491728, -1.893722], [53.491649, -1.893604]], [[53.491649, -1.893604], [53.491561, -1.893535]], [[53.491561, -1.893535], [53.491465, -1.893542]], [[53.491298, -1.89342], [53.491227, -1.893527]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_2aebec62f97890323ecc2f1dd37b6cf9 = L.polyline(
                [[[53.749742, -2.057767], [53.749772, -2.057594]], [[53.749781, -2.05726], [53.749705, -2.057168]], [[53.749724, -2.05669], [53.749764, -2.056518]], [[53.749663, -2.054822], [53.749633, -2.054647]], [[53.749603, -2.054494], [53.749607, -2.05434]], [[53.749565, -2.05402], [53.749556, -2.053844]], [[53.749752, -2.052483], [53.749783, -2.052341]], [[53.749783, -2.052341], [53.749799, -2.052182]], [[53.749648, -2.048749], [53.749649, -2.048582]], [[53.749548, -2.048302], [53.749554, -2.048131]], [[53.749554, -2.048131], [53.749543, -2.047969]], [[53.749447, -2.047673], [53.749447, -2.047513]], [[53.749447, -2.047513], [53.749463, -2.047349]], [[53.749382, -2.046893], [53.74932, -2.046774]], [[53.74932, -2.046774], [53.749285, -2.046617]], [[53.74925, -2.046187], [53.749261, -2.046021]], [[53.749076, -2.044076], [53.749171, -2.044049]], [[53.749194, -2.044215], [53.749171, -2.044364]], [[53.749171, -2.044364], [53.74914, -2.044518]], [[53.749111, -2.045033], [53.749065, -2.045164]], [[53.749145, -2.045431], [53.749215, -2.045539]], [[53.749215, -2.045539], [53.749203, -2.045705]], [[53.749203, -2.045705], [53.74916, -2.045881]], [[53.749189, -2.046044], [53.749212, -2.046208]], [[53.74927, -2.04643], [53.749344, -2.046552]], [[53.749344, -2.046552], [53.749409, -2.04673]], [[53.749564, -2.047424], [53.749533, -2.047583]], [[53.749533, -2.047583], [53.749571, -2.047722]], [[53.749584, -2.048028], [53.74959, -2.048198]], [[53.743943, -2.050465], [53.743868, -2.050574]], [[53.743535, -2.050289], [53.743524, -2.050448]], [[53.743491, -2.050591], [53.743386, -2.050595]], [[53.742956, -2.050435], [53.742903, -2.050294]], [[53.742903, -2.050294], [53.742816, -2.050248]], [[53.742031, -2.050128], [53.74195, -2.050022]], [[53.74168, -2.049812], [53.741603, -2.049701]], [[53.741603, -2.049701], [53.741533, -2.0496]], [[53.741394, -2.049366], [53.741296, -2.04933]], [[53.740978, -2.049074], [53.74088, -2.04902]], [[53.74048, -2.048935], [53.740377, -2.048948]], [[53.739823, -2.048374], [53.739746, -2.048279]], [[53.739746, -2.048279], [53.739685, -2.048161]], [[53.739413, -2.047965], [53.739324, -2.047931]], [[53.738847, -2.047532], [53.738844, -2.047365]], [[53.738539, -2.045243], [53.738491, -2.045019]], [[53.738541, -2.044431], [53.738535, -2.044589]], [[53.738535, -2.044589], [53.738575, -2.044734]], [[53.73723, -2.046413], [53.737169, -2.046533]], [[53.736385, -2.047981], [53.736318, -2.048116]], [[53.73617, -2.048479], [53.736083, -2.048593]], [[53.736083, -2.048593], [53.73601, -2.048715]], [[53.73601, -2.048715], [53.73594, -2.048813]], [[53.73594, -2.048813], [53.735871, -2.048916]], [[53.735481, -2.049462], [53.73551, -2.049274]], [[53.735801, -2.048012], [53.735826, -2.047861]], [[53.735874, -2.047058], [53.73583, -2.046919]], [[53.73583, -2.046919], [53.735837, -2.046763]], [[53.734002, -2.043663], [53.733902, -2.0436]], [[53.734709, -2.040714], [53.734785, -2.040614]], [[53.734785, -2.040614], [53.734838, -2.040469]], [[53.73533, -2.037632], [53.735279, -2.037473]], [[53.735193, -2.037372], [53.735254, -2.037247]], [[53.735139, -2.036558], [53.735207, -2.036454]], [[53.734617, -2.035181], [53.734622, -2.035027]], [[53.734622, -2.035027], [53.734569, -2.034885]], [[53.734187, -2.033664], [53.734127, -2.03354]], [[53.73242, -2.032114], [53.732321, -2.032111]], [[53.730903, -2.032155], [53.730816, -2.032205]], [[53.730383, -2.032014], [53.730294, -2.031965]], [[53.730294, -2.031965], [53.730198, -2.031949]], [[53.729926, -2.03212], [53.729841, -2.032043]], [[53.729385, -2.031152], [53.729294, -2.031115]], [[53.726296, -2.030484], [53.726205, -2.030455]], [[53.723013, -2.034119], [53.722912, -2.034177]], [[53.713911, -2.042082], [53.713819, -2.042047]], [[53.709274, -2.043757], [53.70917, -2.043763]], [[53.707922, -2.044958], [53.707838, -2.045027]], [[53.705553, -2.048868], [53.705635, -2.048968]], [[53.705635, -2.048968], [53.705638, -2.049139]], [[53.698174, -2.054675], [53.698072, -2.054702]], [[53.698072, -2.054702], [53.697978, -2.0547]], [[53.694472, -2.055656], [53.694389, -2.055557]], [[53.694389, -2.055557], [53.694304, -2.055623]], [[53.693614, -2.056206], [53.693529, -2.056307]], [[53.693529, -2.056307], [53.693452, -2.056418]], [[53.693088, -2.057166], [53.693006, -2.057238]], [[53.692938, -2.05735], [53.692837, -2.057414]], [[53.692837, -2.057414], [53.692758, -2.057493]], [[53.692621, -2.057694], [53.692544, -2.057789]], [[53.692544, -2.057789], [53.692466, -2.057876]], [[53.692133, -2.058182], [53.692077, -2.058318]], [[53.692077, -2.058318], [53.692017, -2.058434]], [[53.692017, -2.058434], [53.691943, -2.058549]], [[53.691703, -2.058752], [53.69163, -2.058871]], [[53.691247, -2.059777], [53.691262, -2.059945]], [[53.691247, -2.060102], [53.691233, -2.060272]], [[53.691065, -2.06156], [53.69112, -2.061683]], [[53.69112, -2.061683], [53.691055, -2.061826]], [[53.691055, -2.061826], [53.691027, -2.061992]], [[53.691012, -2.062596], [53.691029, -2.062747]], [[53.691029, -2.062747], [53.691075, -2.062882]], [[53.69125, -2.063283], [53.691269, -2.063432]], [[53.691342, -2.063891], [53.691381, -2.064032]], [[53.691479, -2.064326], [53.691492, -2.064505]], [[53.691492, -2.064505], [53.691502, -2.064659]], [[53.691502, -2.064659], [53.691522, -2.064814]], [[53.691522, -2.064814], [53.691571, -2.064969]], [[53.691571, -2.064969], [53.691612, -2.065109]], [[53.691998, -2.067297], [53.692011, -2.067451]], [[53.692011, -2.067451], [53.69204, -2.06762]], [[53.691369, -2.069178], [53.691268, -2.069213]], [[53.691268, -2.069213], [53.691176, -2.069253]], [[53.690913, -2.06943], [53.690809, -2.069443]], [[53.688429, -2.069638], [53.688344, -2.069544]], [[53.688344, -2.069544], [53.688254, -2.069492]], [[53.688254, -2.069492], [53.68816, -2.069398]], [[53.68816, -2.069398], [53.688076, -2.069329]], [[53.687698, -2.069149], [53.68761, -2.069065]], [[53.68761, -2.069065], [53.687511, -2.06902]], [[53.686625, -2.068461], [53.68655, -2.068333]], [[53.68655, -2.068333], [53.686469, -2.068233]], [[53.686302, -2.068091], [53.686214, -2.068049]], [[53.686036, -2.067924], [53.685958, -2.067804]], [[53.685958, -2.067804], [53.685866, -2.067763]], [[53.684669, -2.066858], [53.68458, -2.066792]], [[53.683885, -2.066307], [53.683799, -2.066236]], [[53.682033, -2.06509], [53.681951, -2.064991]], [[53.681112, -2.063893], [53.681054, -2.063757]], [[53.681054, -2.063757], [53.681006, -2.063623]], [[53.680627, -2.062695], [53.680573, -2.062573]], [[53.680573, -2.062573], [53.680516, -2.062435]], [[53.680319, -2.06187], [53.680275, -2.061709]], [[53.680275, -2.061709], [53.680219, -2.061588]], [[53.679958, -2.060945], [53.679896, -2.060821]], [[53.678948, -2.060006], [53.678854, -2.05996]], [[53.678376, -2.059805], [53.67829, -2.059727]], [[53.677862, -2.059371], [53.677792, -2.059267]], [[53.677792, -2.059267], [53.677701, -2.05921]], [[53.677508, -2.059185], [53.677421, -2.059113]], [[53.677332, -2.059027], [53.677249, -2.05895]], [[53.676511, -2.058951], [53.676416, -2.058987]], [[53.676416, -2.058987], [53.67632, -2.05897]], [[53.674404, -2.057727], [53.674325, -2.057632]], [[53.673921, -2.057261], [53.673854, -2.057147]], [[53.673766, -2.057072], [53.673683, -2.056973]], [[53.673609, -2.056871], [53.673529, -2.056773]], [[53.673093, -2.056479], [53.672998, -2.056485]], [[53.672998, -2.056485], [53.67292, -2.05657]], [[53.672024, -2.058084], [53.671955, -2.058192]], [[53.669763, -2.05752], [53.669701, -2.057383]], [[53.669701, -2.057383], [53.669642, -2.057234]], [[53.669642, -2.057234], [53.669584, -2.057102]], [[53.666465, -2.054839], [53.666375, -2.054899]], [[53.666096, -2.055061], [53.666009, -2.055128]], [[53.664777, -2.056039], [53.664678, -2.056032]], [[53.662175, -2.055785], [53.662088, -2.055713]], [[53.661374, -2.055256], [53.661285, -2.055193]], [[53.66082, -2.055043], [53.660728, -2.05497]], [[53.659977, -2.053864], [53.659938, -2.053713]], [[53.65991, -2.053543], [53.659894, -2.053383]], [[53.659894, -2.053383], [53.659895, -2.053205]], [[53.660219, -2.05196], [53.660205, -2.051796]], [[53.660205, -2.051796], [53.660205, -2.051628]], [[53.660205, -2.051628], [53.660213, -2.051461]], [[53.660213, -2.051461], [53.660183, -2.051312]], [[53.659809, -2.050122], [53.659794, -2.04996]], [[53.659041, -2.048747], [53.65895, -2.048659]], [[53.65895, -2.048659], [53.658889, -2.048526]], [[53.658889, -2.048526], [53.658824, -2.048393]], [[53.657938, -2.047405], [53.657884, -2.047539]], [[53.651965, -2.051678], [53.651878, -2.051618]], [[53.651878, -2.051618], [53.651787, -2.051573]], [[53.651208, -2.051084], [53.65113, -2.050986]], [[53.65113, -2.050986], [53.651062, -2.050884]], [[53.6506, -2.049717], [53.650612, -2.049555]], [[53.650238, -2.048854], [53.650223, -2.048699]], [[53.634438, -2.03477], [53.634354, -2.034704]], [[53.633158, -2.033485], [53.633085, -2.033375]], [[53.632266, -2.03277], [53.632174, -2.032728]], [[53.628833, -2.026463], [53.628739, -2.026426]], [[53.626404, -2.027329], [53.626305, -2.027297]], [[53.617417, -2.02503], [53.617342, -2.024932]], [[53.617342, -2.024932], [53.617254, -2.024873]], [[53.616316, -2.022161], [53.616269, -2.021997]], [[53.615912, -2.020891], [53.615866, -2.020759]], [[53.614596, -2.013669], [53.614546, -2.013516]], [[53.614416, -2.012419], [53.614411, -2.012262]], [[53.614286, -2.011196], [53.614231, -2.011057]], [[53.613524, -2.008864], [53.613445, -2.00875]], [[53.613445, -2.00875], [53.613349, -2.00875]], [[53.610658, -2.003956], [53.610592, -2.003827]], [[53.609251, -2.001656], [53.609187, -2.00152]], [[53.609187, -2.00152], [53.609133, -2.001399]], [[53.609133, -2.001399], [53.609058, -2.001291]], [[53.609058, -2.001291], [53.608982, -2.001178]], [[53.608697, -2.000715], [53.60864, -2.000581]], [[53.60818, -2.000007], [53.608106, -1.999907]], [[53.608106, -1.999907], [53.60804, -1.999774]], [[53.60804, -1.999774], [53.60797, -1.999651]], [[53.607653, -1.999291], [53.607563, -1.999218]], [[53.607155, -1.998119], [53.607219, -1.998012]], [[53.60654, -1.996709], [53.606473, -1.996582]], [[53.606002, -1.996009], [53.605922, -1.995926]], [[53.605194, -1.995479], [53.605103, -1.995407]], [[53.604709, -1.995311], [53.604608, -1.995249]], [[53.604517, -1.995199], [53.60442, -1.995141]], [[53.599175, -1.993986], [53.599076, -1.994025]], [[53.597973, -1.994697], [53.597882, -1.994691]], [[53.589792, -1.982179], [53.589713, -1.982102]], [[53.589304, -1.981654], [53.589209, -1.981583]], [[53.589209, -1.981583], [53.589124, -1.981523]], [[53.589124, -1.981523], [53.589035, -1.981468]], [[53.58801, -1.980661], [53.587929, -1.980736]], [[53.587288, -1.980499], [53.587201, -1.980461]], [[53.585277, -1.978471], [53.585182, -1.978411]], [[53.585085, -1.978359], [53.584987, -1.978362]], [[53.582684, -1.970483], [53.582745, -1.970359]], [[53.582465, -1.96581], [53.582447, -1.96563]], [[53.582447, -1.96563], [53.582441, -1.96547]], [[53.58232, -1.965039], [53.582315, -1.964862]], [[53.582267, -1.964635], [53.582239, -1.964491]], [[53.582239, -1.964491], [53.5822, -1.964339]], [[53.58193, -1.963474], [53.581884, -1.963326]], [[53.581635, -1.962148], [53.581652, -1.961994]], [[53.577132, -1.952935], [53.577191, -1.952784]], [[53.577191, -1.952784], [53.577229, -1.952642]], [[53.577444, -1.951429], [53.577492, -1.951281]], [[53.577046, -1.950465], [53.576979, -1.950344]], [[53.576927, -1.950218], [53.576876, -1.950089]], [[53.575301, -1.946808], [53.575294, -1.946655]], [[53.575282, -1.946186], [53.57526, -1.946033]], [[53.574826, -1.94241], [53.574885, -1.94229]], [[53.574885, -1.94229], [53.574952, -1.942169]], [[53.574952, -1.942169], [53.575004, -1.94204]], [[53.575012, -1.941606], [53.575091, -1.941492]], [[53.575161, -1.941378], [53.575225, -1.941255]], [[53.575438, -1.940097], [53.575508, -1.939986]], [[53.575508, -1.939986], [53.575563, -1.939859]], [[53.577096, -1.936153], [53.577178, -1.936091]], [[53.577324, -1.929158], [53.577337, -1.929008]], [[53.577241, -1.920181], [53.577171, -1.920077]], [[53.576756, -1.919704], [53.576694, -1.919571]], [[53.576694, -1.919571], [53.576634, -1.919447]], [[53.576634, -1.919447], [53.576588, -1.919311]], [[53.575562, -1.915325], [53.575548, -1.915162]], [[53.575778, -1.913909], [53.57572, -1.913785]], [[53.574872, -1.911003], [53.574776, -1.910928]], [[53.57424, -1.908207], [53.574238, -1.908045]], [[53.572757, -1.905825], [53.572672, -1.905734]], [[53.571957, -1.904574], [53.571881, -1.904483]], [[53.570489, -1.901573], [53.570447, -1.901426]], [[53.569974, -1.900258], [53.569916, -1.900113]], [[53.569916, -1.900113], [53.569909, -1.899957]], [[53.566201, -1.895601], [53.566148, -1.895454]], [[53.565894, -1.895234], [53.565816, -1.895129]], [[53.565816, -1.895129], [53.565732, -1.895058]], [[53.565428, -1.8933], [53.565486, -1.893168]], [[53.562293, -1.885605], [53.562214, -1.885681]], [[53.562135, -1.885762], [53.562048, -1.885805]], [[53.562048, -1.885805], [53.561953, -1.885874]], [[53.561283, -1.887596], [53.561193, -1.88766]], [[53.560183, -1.886673], [53.560102, -1.886571]], [[53.557051, -1.883471], [53.556978, -1.883378]], [[53.556755, -1.883124], [53.556689, -1.883015]], [[53.551975, -1.878697], [53.551911, -1.878579]], [[53.551911, -1.878579], [53.551823, -1.878548]], [[53.551553, -1.878218], [53.551455, -1.878227]], [[53.540028, -1.882691], [53.539952, -1.882795]], [[53.538139, -1.88485], [53.538117, -1.885001]], [[53.53716, -1.887261], [53.537145, -1.887412]], [[53.536923, -1.888062], [53.536831, -1.888083]], [[53.535751, -1.890492], [53.535695, -1.890646]], [[53.535267, -1.891874], [53.53521, -1.892005]], [[53.534024, -1.894351], [53.533945, -1.894442]], [[53.533354, -1.895652], [53.53328, -1.895752]], [[53.53328, -1.895752], [53.533215, -1.895873]], [[53.533179, -1.896203], [53.533099, -1.896306]], [[53.533018, -1.896388], [53.532959, -1.896529]], [[53.532892, -1.896647], [53.532852, -1.896784]], [[53.532852, -1.896784], [53.532789, -1.896919]], [[53.532596, -1.897261], [53.532509, -1.897339]], [[53.532509, -1.897339], [53.532443, -1.897456]], [[53.532443, -1.897456], [53.532365, -1.89757]], [[53.532365, -1.89757], [53.532301, -1.897688]], [[53.53201, -1.898525], [53.531993, -1.898682]], [[53.531993, -1.898682], [53.532018, -1.898842]], [[53.531311, -1.901894], [53.531243, -1.902006]], [[53.504843, -1.91317], [53.504943, -1.913461]], [[53.499273, -1.905778], [53.499256, -1.905628]], [[53.491799, -1.893844], [53.491728, -1.893722]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_53c26f79242cff824030432bbc4c91d7 = L.polyline(
                [[[53.749772, -2.057594], [53.749778, -2.057429]], [[53.749764, -2.056518], [53.749764, -2.056357]], [[53.749716, -2.055922], [53.749719, -2.055737]], [[53.749719, -2.055737], [53.749701, -2.055561]], [[53.749556, -2.053844], [53.749594, -2.053688]], [[53.749429, -2.047208], [53.749397, -2.047052]], [[53.749221, -2.045853], [53.749208, -2.045696]], [[53.749208, -2.045696], [53.749192, -2.045544]], [[53.749192, -2.045544], [53.749207, -2.045447]], [[53.749137, -2.044554], [53.749148, -2.044289]], [[53.749148, -2.044289], [53.749065, -2.044177]], [[53.749065, -2.044177], [53.748979, -2.044119]], [[53.73855, -2.04453], [53.738597, -2.044382]], [[53.738673, -2.044286], [53.738635, -2.044117]], [[53.737026, -2.047129], [53.736944, -2.047207]], [[53.735776, -2.048504], [53.735798, -2.048342]], [[53.734729, -2.044163], [53.73466, -2.044302]], [[53.733902, -2.0436], [53.733836, -2.04349]], [[53.734486, -2.04136], [53.734515, -2.041214]], [[53.735279, -2.037473], [53.735193, -2.037372]], [[53.735207, -2.036454], [53.735254, -2.036315]], [[53.734268, -2.033775], [53.734187, -2.033664]], [[53.732217, -2.032114], [53.732124, -2.032134]], [[53.729622, -2.031657], [53.729581, -2.0315]], [[53.583069, -1.978086], [53.58306, -1.977929]], [[53.553048, -1.879593], [53.552979, -1.879478]], [[53.552979, -1.879478], [53.5529, -1.879403]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff8b00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_ed43ea18db4d6efed6b8830a78d79e55 = L.polyline(
                [[[53.749778, -2.057429], [53.749781, -2.05726]], [[53.749751, -2.056026], [53.749718, -2.055858]], [[53.737413, -2.04622], [53.737327, -2.046333]], [[53.737136, -2.047071], [53.737026, -2.047129]], [[53.73551, -2.049274], [53.735553, -2.049105]], [[53.735619, -2.048954], [53.735669, -2.048824]], [[53.735669, -2.048824], [53.735732, -2.048682]], [[53.735732, -2.048682], [53.735776, -2.048504]], [[53.73479, -2.044048], [53.734729, -2.044163]], [[53.735394, -2.038146], [53.73536, -2.037957]], [[53.732321, -2.032111], [53.732217, -2.032114]], [[53.493082, -1.897467], [53.493016, -1.89732]], [[53.493016, -1.89732], [53.492983, -1.897176]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5d00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff5d00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_67e16fa0a7ebbd3920612ab72bf5f17b = L.polyline(
                [[[53.749705, -2.057168], [53.749689, -2.057006]], [[53.749689, -2.057006], [53.749714, -2.056851]], [[53.749723, -2.052951], [53.749744, -2.052788]], [[53.749805, -2.050748], [53.749809, -2.050639]], [[53.749809, -2.050639], [53.749803, -2.050483]], [[53.749247, -2.046482], [53.74924, -2.046325]], [[53.749173, -2.044825], [53.74917, -2.044908]], [[53.749212, -2.046208], [53.749204, -2.046137]], [[53.749657, -2.049874], [53.749565, -2.049881]], [[53.749565, -2.049881], [53.749471, -2.04989]], [[53.749338, -2.049778], [53.749273, -2.049894]], [[53.749035, -2.050003], [53.748946, -2.05006]], [[53.74885, -2.050051], [53.748781, -2.05012]], [[53.748781, -2.05012], [53.748689, -2.050152]], [[53.748689, -2.050152], [53.748593, -2.05014]], [[53.748593, -2.05014], [53.748503, -2.050108]], [[53.748503, -2.050108], [53.748411, -2.050068]], [[53.748301, -2.050206], [53.748211, -2.050184]], [[53.74803, -2.050173], [53.747938, -2.050172]], [[53.747938, -2.050172], [53.747852, -2.050244]], [[53.747852, -2.050244], [53.747784, -2.050357]], [[53.747784, -2.050357], [53.747695, -2.050321]], [[53.747695, -2.050321], [53.747607, -2.050264]], [[53.747435, -2.050207], [53.747344, -2.050196]], [[53.747344, -2.050196], [53.747265, -2.050275]], [[53.747094, -2.050412], [53.747002, -2.050468]], [[53.746831, -2.050581], [53.746741, -2.05056]], [[53.746561, -2.05057], [53.746466, -2.050592]], [[53.746466, -2.050592], [53.746381, -2.050657]], [[53.746381, -2.050657], [53.746283, -2.050669]], [[53.746283, -2.050669], [53.746213, -2.05077]], [[53.746213, -2.05077], [53.746141, -2.050877]], [[53.746141, -2.050877], [53.746049, -2.050815]], [[53.743681, -2.050502], [53.743604, -2.050399]], [[53.742816, -2.050248], [53.742724, -2.050202]], [[53.742724, -2.050202], [53.742639, -2.05015]], [[53.740668, -2.048931], [53.740572, -2.048939]], [[53.739037, -2.047931], [53.738948, -2.047958]], [[53.738948, -2.047958], [53.738888, -2.047824]], [[53.738847, -2.047688], [53.738852, -2.047686]], [[53.738852, -2.047686], [53.738847, -2.047532]], [[53.738855, -2.046865], [53.738564, -2.045635]], [[53.73858, -2.044106], [53.738561, -2.044266]], [[53.737697, -2.04605], [53.737597, -2.046071]], [[53.736872, -2.047303], [53.736811, -2.047437]], [[53.736025, -2.045731], [53.736001, -2.045687]], [[53.735784, -2.045372], [53.735705, -2.045474]], [[53.735352, -2.045196], [53.735326, -2.045143]], [[53.734508, -2.044444], [53.734477, -2.044398]], [[53.7344, -2.044491], [53.734311, -2.044551]], [[53.734105, -2.044357], [53.73411, -2.044191]], [[53.733933, -2.042962], [53.733996, -2.042904]], [[53.733996, -2.042904], [53.734045, -2.042751]], [[53.734231, -2.042241], [53.734295, -2.042108]], [[53.734305, -2.041951], [53.734258, -2.041996]], [[53.734258, -2.041996], [53.734342, -2.041922]], [[53.734911, -2.040366], [53.734968, -2.040236]], [[53.73482, -2.035966], [53.734881, -2.035833]], [[53.734501, -2.034765], [53.734438, -2.03475]], [[53.734439, -2.034424], [53.734354, -2.034337]], [[53.734051, -2.033453], [53.733964, -2.033514]], [[53.733331, -2.032938], [53.733247, -2.032878]], [[53.733152, -2.032847], [53.733085, -2.032782]], [[53.733085, -2.032782], [53.732987, -2.032732]], [[53.7329, -2.03269], [53.732824, -2.032776]], [[53.732588, -2.032506], [53.732534, -2.032368]], [[53.732038, -2.032085], [53.731955, -2.032025]], [[53.731396, -2.032074], [53.731295, -2.032132]], [[53.73075, -2.032319], [53.730675, -2.032414]], [[53.729763, -2.031914], [53.729695, -2.031795]], [[53.72872, -2.03063], [53.728633, -2.030585]], [[53.727712, -2.030313], [53.727614, -2.030304]], [[53.725205, -2.031315], [53.725118, -2.031386]], [[53.724475, -2.031981], [53.724399, -2.031879]], [[53.724347, -2.031734], [53.724295, -2.031589]], [[53.724017, -2.031145], [53.724069, -2.031274]], [[53.724475, -2.031956], [53.724411, -2.032057]], [[53.724411, -2.032057], [53.724321, -2.032133]], [[53.723176, -2.033771], [53.723161, -2.033935]], [[53.722764, -2.034341], [53.722702, -2.034451]], [[53.722612, -2.034484], [53.722519, -2.034414]], [[53.721366, -2.034251], [53.721279, -2.034197]], [[53.720347, -2.032407], [53.720279, -2.032308]], [[53.720279, -2.032308], [53.720219, -2.032194]], [[53.720052, -2.032071], [53.71997, -2.03201]], [[53.71997, -2.03201], [53.71988, -2.031945]], [[53.71988, -2.031945], [53.71981, -2.031842]], [[53.71981, -2.031842], [53.719757, -2.031708]], [[53.719668, -2.031652], [53.719585, -2.031573]], [[53.719585, -2.031573], [53.719492, -2.031527]], [[53.719492, -2.031527], [53.719408, -2.031473]], [[53.718891, -2.031675], [53.7188, -2.031729]], [[53.7188, -2.031729], [53.7187, -2.031739]], [[53.717602, -2.032893], [53.717509, -2.032937]], [[53.717509, -2.032937], [53.717419, -2.033007]], [[53.717419, -2.033007], [53.717336, -2.033071]], [[53.717336, -2.033071], [53.71725, -2.033146]], [[53.71725, -2.033146], [53.717204, -2.033281]], [[53.717204, -2.033281], [53.717113, -2.033328]], [[53.717113, -2.033328], [53.717025, -2.033401]], [[53.717025, -2.033401], [53.716944, -2.03347]], [[53.716944, -2.03347], [53.716856, -2.033502]], [[53.716766, -2.033483], [53.716679, -2.033555]], [[53.716679, -2.033555], [53.716605, -2.033658]], [[53.716399, -2.033988], [53.716317, -2.034077]], [[53.716317, -2.034077], [53.716219, -2.034109]], [[53.715942, -2.034115], [53.715845, -2.034143]], [[53.715845, -2.034143], [53.715748, -2.034182]], [[53.714963, -2.034843], [53.714987, -2.034997]], [[53.714784, -2.036611], [53.714751, -2.036755]], [[53.714726, -2.036906], [53.714709, -2.03707]], [[53.71466, -2.037993], [53.714647, -2.038147]], [[53.714647, -2.038147], [53.714637, -2.038309]], [[53.714637, -2.038309], [53.714602, -2.038459]], [[53.714517, -2.039746], [53.714485, -2.039877]], [[53.714474, -2.040188], [53.714484, -2.040299]], [[53.71449, -2.04062], [53.714473, -2.040762]], [[53.714473, -2.040762], [53.714448, -2.040921]], [[53.714441, -2.041079], [53.71442, -2.041245]], [[53.71442, -2.041245], [53.714412, -2.041398]], [[53.714413, -2.041718], [53.714371, -2.041853]], [[53.714094, -2.042191], [53.714004, -2.042137]], [[53.713364, -2.041837], [53.713271, -2.041812]], [[53.713271, -2.041812], [53.713178, -2.041786]], [[53.711816, -2.041718], [53.711726, -2.041768]], [[53.711726, -2.041768], [53.711649, -2.041871]], [[53.711649, -2.041871], [53.711555, -2.041922]], [[53.70576, -2.048213], [53.705708, -2.048356]], [[53.703159, -2.052748], [53.703069, -2.052795]], [[53.703069, -2.052795], [53.70297, -2.052839]], [[53.70297, -2.052839], [53.702874, -2.052877]], [[53.702874, -2.052877], [53.702775, -2.052892]], [[53.702775, -2.052892], [53.702688, -2.05295]], [[53.702513, -2.053025], [53.702418, -2.053062]], [[53.701549, -2.053456], [53.701474, -2.053544]], [[53.700146, -2.054277], [53.700054, -2.054302]], [[53.698625, -2.054583], [53.698539, -2.054631]], [[53.697806, -2.054876], [53.697712, -2.054922]], [[53.696687, -2.055243], [53.696608, -2.055289]], [[53.696608, -2.055289], [53.696509, -2.055304]], [[53.691857, -2.069122], [53.691769, -2.069158]], [[53.68967, -2.070325], [53.689635, -2.070196]], [[53.68955, -2.070248], [53.689445, -2.070255]], [[53.689152, -2.070005], [53.689055, -2.069966]], [[53.680453, -2.062115], [53.68041, -2.06216]], [[53.675232, -2.058541], [53.67515, -2.058467]], [[53.67515, -2.058467], [53.675055, -2.058415]], [[53.668456, -2.055596], [53.668492, -2.055575]], [[53.660182, -2.052421], [53.660212, -2.052266]], [[53.65814, -2.047475], [53.658048, -2.047499]], [[53.656539, -2.050454], [53.656443, -2.050413]], [[53.655798, -2.050566], [53.655701, -2.050611]], [[53.655701, -2.050611], [53.655621, -2.050531]], [[53.655362, -2.049899], [53.655276, -2.049824]], [[53.655276, -2.049824], [53.655189, -2.049785]], [[53.653155, -2.052045], [53.653064, -2.052072]], [[53.653064, -2.052072], [53.652972, -2.052055]], [[53.649594, -2.047052], [53.649598, -2.046898]], [[53.649637, -2.046747], [53.649654, -2.046578]], [[53.649654, -2.046578], [53.649668, -2.046411]], [[53.649668, -2.046411], [53.649665, -2.046252]], [[53.649665, -2.046252], [53.649624, -2.046104]], [[53.649624, -2.046104], [53.649638, -2.045951]], [[53.649638, -2.045951], [53.649658, -2.045802]], [[53.649658, -2.045802], [53.649647, -2.045641]], [[53.649647, -2.045641], [53.649657, -2.04549]], [[53.649657, -2.04549], [53.649635, -2.045334]], [[53.649635, -2.045334], [53.649611, -2.045183]], [[53.649611, -2.045183], [53.649612, -2.04503]], [[53.649654, -2.044732], [53.649684, -2.044581]], [[53.649684, -2.044581], [53.649691, -2.044429]], [[53.649687, -2.043981], [53.64971, -2.043823]], [[53.649774, -2.043241], [53.649775, -2.043076]], [[53.649775, -2.043076], [53.649772, -2.042919]], [[53.650013, -2.041909], [53.650067, -2.041784]], [[53.649923, -2.041669], [53.649838, -2.041746]], [[53.64958, -2.0419], [53.649507, -2.042007]], [[53.648242, -2.042281], [53.648147, -2.042273]], [[53.648147, -2.042273], [53.648054, -2.042285]], [[53.648054, -2.042285], [53.647964, -2.042264]], [[53.647964, -2.042264], [53.647869, -2.042231]], [[53.647592, -2.042247], [53.647501, -2.042329]], [[53.64703, -2.042373], [53.646947, -2.042313]], [[53.646947, -2.042313], [53.646852, -2.042339]], [[53.646852, -2.042339], [53.646751, -2.042322]], [[53.646751, -2.042322], [53.646665, -2.042373]], [[53.646588, -2.042459], [53.646517, -2.042556]], [[53.646517, -2.042556], [53.646457, -2.042684]], [[53.646457, -2.042684], [53.646403, -2.042812]], [[53.646403, -2.042812], [53.646361, -2.042955]], [[53.646361, -2.042955], [53.646312, -2.043082]], [[53.646312, -2.043082], [53.646266, -2.043213]], [[53.646092, -2.04326], [53.645992, -2.043247]], [[53.645792, -2.043239], [53.645713, -2.04332]], [[53.645713, -2.04332], [53.645624, -2.043282]], [[53.645624, -2.043282], [53.645574, -2.04315]], [[53.645525, -2.043157], [53.645436, -2.043199]], [[53.645436, -2.043199], [53.645355, -2.04312]], [[53.645355, -2.04312], [53.645267, -2.043077]], [[53.645267, -2.043077], [53.645172, -2.043076]], [[53.644985, -2.043081], [53.644904, -2.043148]], [[53.64444, -2.043244], [53.644341, -2.043266]], [[53.644341, -2.043266], [53.644257, -2.043323]], [[53.644257, -2.043323], [53.644171, -2.043385]], [[53.643927, -2.043464], [53.643841, -2.043541]], [[53.643656, -2.043438], [53.643568, -2.043402]], [[53.643289, -2.043363], [53.643211, -2.043255]], [[53.64305, -2.043128], [53.642985, -2.043019]], [[53.642844, -2.042812], [53.642756, -2.04276]], [[53.636484, -2.036513], [53.636399, -2.036428]], [[53.635777, -2.035497], [53.635684, -2.035485]], [[53.630995, -2.031745], [53.630905, -2.031685]], [[53.630012, -2.026883], [53.629956, -2.026748]], [[53.629476, -2.026399], [53.629391, -2.026416]], [[53.62911, -2.026435], [53.629015, -2.026462]], [[53.628483, -2.026465], [53.628391, -2.026535]], [[53.628391, -2.026535], [53.628317, -2.026644]], [[53.628039, -2.02674], [53.627962, -2.026841]], [[53.626774, -2.027308], [53.626692, -2.027384]], [[53.625197, -2.027549], [53.625102, -2.027538]], [[53.623947, -2.027429], [53.623902, -2.027287]], [[53.62378, -2.027016], [53.623707, -2.027024]], [[53.623707, -2.027024], [53.623614, -2.027037]], [[53.621938, -2.026653], [53.621847, -2.026624]], [[53.62156, -2.026552], [53.621461, -2.026542]], [[53.620936, -2.026202], [53.620839, -2.026174]], [[53.617699, -2.025115], [53.617606, -2.025104]], [[53.616973, -2.02478], [53.616899, -2.024685]], [[53.616747, -2.023923], [53.616694, -2.023835]], [[53.616704, -2.023674], [53.616717, -2.023519]], [[53.613219, -2.008697], [53.613151, -2.008575]], [[53.612848, -2.008217], [53.612776, -2.008115]], [[53.612776, -2.008115], [53.612709, -2.008004]], [[53.612375, -2.007542], [53.612282, -2.007553]], [[53.612033, -2.006915], [53.611941, -2.006879]], [[53.611941, -2.006879], [53.611878, -2.006757]], [[53.6113, -2.005123], [53.611265, -2.004979]], [[53.611265, -2.004979], [53.611212, -2.004839]], [[53.611169, -2.004697], [53.611075, -2.004638]], [[53.609764, -2.002513], [53.60971, -2.00249]], [[53.60711, -1.997756], [53.607137, -1.997662]], [[53.607137, -1.997662], [53.607073, -1.997543]], [[53.603307, -1.994821], [53.603219, -1.994781]], [[53.598072, -1.994697], [53.598066, -1.994699]], [[53.597091, -1.993993], [53.597012, -1.993895]], [[53.596359, -1.992993], [53.596297, -1.992862]], [[53.595971, -1.992099], [53.595914, -1.991979]], [[53.595914, -1.991979], [53.595835, -1.991874]], [[53.595756, -1.991786], [53.595682, -1.991677]], [[53.595682, -1.991677], [53.595619, -1.991553]], [[53.595319, -1.990942], [53.595263, -1.990806]], [[53.594817, -1.989959], [53.594752, -1.989847]], [[53.594752, -1.989847], [53.594674, -1.989757]], [[53.594674, -1.989757], [53.594609, -1.989632]], [[53.593606, -1.987788], [53.593561, -1.987654]], [[53.590722, -1.982953], [53.590635, -1.982875]], [[53.590445, -1.98282], [53.59036, -1.982758]], [[53.588579, -1.981194], [53.588492, -1.981143]], [[53.588259, -1.980895], [53.58818, -1.980821]], [[53.58818, -1.980821], [53.588106, -1.980712]], [[53.587834, -1.980743], [53.587742, -1.980697]], [[53.586297, -1.980054], [53.58621, -1.979987]], [[53.58565, -1.978906], [53.585578, -1.978805]], [[53.585514, -1.978684], [53.58545, -1.978627]], [[53.58341, -1.97812], [53.583328, -1.978045]], [[53.583226, -1.978289], [53.583147, -1.97821]], [[53.583072, -1.975164], [53.583045, -1.97505]], [[53.583005, -1.974908], [53.582943, -1.974774]], [[53.582097, -1.973682], [53.582034, -1.973555]], [[53.581978, -1.973271], [53.582056, -1.973244]], [[53.582049, -1.973526], [53.582003, -1.973394]], [[53.5821, -1.972953], [53.582123, -1.9728]], [[53.582223, -1.972358], [53.582252, -1.9722]], [[53.582393, -1.971618], [53.582431, -1.971476]], [[53.582431, -1.971476], [53.582434, -1.971324]], [[53.582434, -1.971324], [53.582465, -1.971166]], [[53.582465, -1.971166], [53.582504, -1.971024]], [[53.582852, -1.968099], [53.582836, -1.967948]], [[53.58272, -1.96733], [53.582724, -1.967168]], [[53.582394, -1.965336], [53.582364, -1.965176]], [[53.58151, -1.960742], [53.581416, -1.960704]], [[53.581416, -1.960704], [53.58133, -1.960648]], [[53.58133, -1.960648], [53.581357, -1.960503]], [[53.581357, -1.960503], [53.58133, -1.960355]], [[53.58133, -1.960355], [53.581237, -1.960389]], [[53.580577, -1.959759], [53.580499, -1.959767]], [[53.580499, -1.959767], [53.580456, -1.959623]], [[53.579571, -1.958468], [53.579514, -1.958333]], [[53.579514, -1.958333], [53.579422, -1.958268]], [[53.579422, -1.958268], [53.579333, -1.958232]], [[53.579333, -1.958232], [53.579238, -1.958204]], [[53.579238, -1.958204], [53.579143, -1.958237]], [[53.579143, -1.958237], [53.57906, -1.958154]], [[53.57906, -1.958154], [53.579, -1.958032]], [[53.578872, -1.957818], [53.57879, -1.957736]], [[53.578697, -1.957675], [53.5786, -1.957663]], [[53.5786, -1.957663], [53.578519, -1.957735]], [[53.578519, -1.957735], [53.578424, -1.957685]], [[53.578235, -1.95765], [53.578142, -1.95761]], [[53.578142, -1.95761], [53.578061, -1.957526]], [[53.578061, -1.957526], [53.577981, -1.957456]], [[53.577981, -1.957456], [53.577882, -1.957455]], [[53.577381, -1.95672], [53.577302, -1.956694]], [[53.57717, -1.956254], [53.577093, -1.956154]], [[53.576663, -1.95532], [53.576614, -1.955185]], [[53.576479, -1.95445], [53.576544, -1.954339]], [[53.576544, -1.954339], [53.576584, -1.954201]], [[53.576584, -1.954201], [53.576642, -1.954065]], [[53.576642, -1.954065], [53.576696, -1.953939]], [[53.577267, -1.950773], [53.577196, -1.950672]], [[53.575489, -1.948255], [53.575498, -1.948104]], [[53.574907, -1.943641], [53.574851, -1.943513]], [[53.574851, -1.943513], [53.574808, -1.943373]], [[53.575225, -1.941255], [53.575269, -1.941118]], [[53.576503, -1.937147], [53.576569, -1.937025]], [[53.577271, -1.934491], [53.577287, -1.934321]], [[53.577433, -1.931718], [53.577465, -1.931566]], [[53.577465, -1.931566], [53.577489, -1.931416]], [[53.5775, -1.930674], [53.577516, -1.930514]], [[53.577216, -1.928607], [53.577253, -1.928458]], [[53.576521, -1.926633], [53.576495, -1.926485]], [[53.576469, -1.926203], [53.57643, -1.92608]], [[53.576188, -1.925684], [53.5762, -1.925531]], [[53.576237, -1.925004], [53.576197, -1.924866]], [[53.576197, -1.924866], [53.576185, -1.924696]], [[53.576244, -1.922859], [53.576272, -1.922701]], [[53.576191, -1.922416], [53.576224, -1.922332]], [[53.576453, -1.922082], [53.576524, -1.921986]], [[53.576524, -1.921986], [53.576596, -1.921885]], [[53.576596, -1.921885], [53.576692, -1.921866]], [[53.576999, -1.921602], [53.577095, -1.921612]], [[53.577095, -1.921612], [53.57719, -1.921599]], [[53.57719, -1.921599], [53.577274, -1.921538]], [[53.577274, -1.921538], [53.577309, -1.921389]], [[53.577229, -1.921269], [53.57724, -1.921261]], [[53.577447, -1.921545], [53.577503, -1.921407]], [[53.577551, -1.921266], [53.577601, -1.921157]], [[53.577764, -1.920786], [53.577852, -1.920721]], [[53.577852, -1.920721], [53.577941, -1.920677]], [[53.577091, -1.920003], [53.576991, -1.919984]], [[53.576991, -1.919984], [53.576907, -1.919914]], [[53.576907, -1.919914], [53.576832, -1.91979]], [[53.576015, -1.917813], [53.575962, -1.917689]], [[53.575838, -1.917271], [53.575782, -1.917153]], [[53.575782, -1.917153], [53.575756, -1.917007]], [[53.575578, -1.915015], [53.575631, -1.914876]], [[53.57563, -1.914597], [53.575671, -1.914458]], [[53.575674, -1.914347], [53.575771, -1.914343]], [[53.57567, -1.913643], [53.57564, -1.913491]], [[53.575592, -1.913196], [53.57559, -1.91303]], [[53.574712, -1.910805], [53.574697, -1.910646]], [[53.574697, -1.910646], [53.574688, -1.910487]], [[53.574213, -1.907724], [53.574275, -1.907604]], [[53.574275, -1.907604], [53.574367, -1.907616]], [[53.574728, -1.907026], [53.574717, -1.906944]], [[53.574105, -1.906945], [53.574015, -1.906949]], [[53.57259, -1.905655], [53.572527, -1.905528]], [[53.572473, -1.905383], [53.572454, -1.90532]], [[53.572321, -1.905095], [53.572249, -1.904972]], [[53.571808, -1.90438], [53.571731, -1.904297]], [[53.571731, -1.904297], [53.571684, -1.904162]], [[53.570156, -1.900651], [53.570089, -1.90054]], [[53.569791, -1.899727], [53.569765, -1.899579]], [[53.569765, -1.899579], [53.569757, -1.899423]], [[53.569796, -1.898797], [53.569731, -1.898673]], [[53.569451, -1.898749], [53.569364, -1.898811]], [[53.569364, -1.898811], [53.569279, -1.898896]], [[53.569039, -1.899102], [53.568941, -1.899128]], [[53.568662, -1.899064], [53.568574, -1.899007]], [[53.567711, -1.89805], [53.56765, -1.897936]], [[53.567543, -1.897693], [53.567475, -1.897568]], [[53.566938, -1.896739], [53.566885, -1.896601]], [[53.566795, -1.896317], [53.566728, -1.896215]], [[53.566499, -1.895983], [53.566417, -1.89591]], [[53.566417, -1.89591], [53.56634, -1.89582]], [[53.56634, -1.89582], [53.566267, -1.895715]], [[53.565482, -1.894242], [53.565484, -1.89423]], [[53.565635, -1.892769], [53.565679, -1.892637]], [[53.564784, -1.886085], [53.564729, -1.885955]], [[53.564608, -1.885335], [53.564592, -1.885217]], [[53.564592, -1.885217], [53.564561, -1.885063]], [[53.56148, -1.887065], [53.561443, -1.887211]], [[53.561443, -1.887211], [53.561391, -1.887339]], [[53.561025, -1.887619], [53.560967, -1.887503]], [[53.558845, -1.88582], [53.558763, -1.885895]], [[53.55875, -1.885753], [53.558736, -1.885584]], [[53.558275, -1.884581], [53.558187, -1.8845]], [[53.557691, -1.884052], [53.557609, -1.883975]], [[53.556525, -1.882874], [53.556445, -1.882834]], [[53.55635, -1.882805], [53.55626, -1.882835]], [[53.55626, -1.882835], [53.556179, -1.882764]], [[53.555692, -1.882081], [53.555596, -1.882038]], [[53.555596, -1.882038], [53.55553, -1.881932]], [[53.55553, -1.881932], [53.55544, -1.881851]], [[53.555266, -1.881727], [53.555189, -1.881628]], [[53.554879, -1.881256], [53.554796, -1.881188]], [[53.55347, -1.879811], [53.553375, -1.879825]], [[53.553375, -1.879825], [53.553283, -1.87979]], [[53.553283, -1.87979], [53.553196, -1.879824]], [[53.553196, -1.879824], [53.553124, -1.879709]], [[53.552634, -1.879261], [53.552542, -1.879231]], [[53.552542, -1.879231], [53.552466, -1.87914]], [[53.552066, -1.87873], [53.551975, -1.878697]], [[53.551388, -1.878112], [53.55132, -1.878005]], [[53.55132, -1.878005], [53.55123, -1.878029]], [[53.55123, -1.878029], [53.551147, -1.877968]], [[53.550794, -1.877423], [53.550703, -1.877356]], [[53.550328, -1.877242], [53.550236, -1.877256]], [[53.550236, -1.877256], [53.550156, -1.877184]], [[53.549363, -1.877183], [53.549263, -1.877185]], [[53.548974, -1.877157], [53.548884, -1.877198]], [[53.548884, -1.877198], [53.548792, -1.877185]], [[53.548613, -1.877106], [53.548528, -1.877164]], [[53.548528, -1.877164], [53.548434, -1.877179]], [[53.548434, -1.877179], [53.548342, -1.877189]], [[53.548255, -1.877246], [53.548177, -1.877264]], [[53.547643, -1.877082], [53.547573, -1.877197]], [[53.547573, -1.877197], [53.547496, -1.877287]], [[53.547496, -1.877287], [53.547402, -1.87729]], [[53.547193, -1.87752], [53.547114, -1.87761]], [[53.547114, -1.87761], [53.547021, -1.877571]], [[53.547021, -1.877571], [53.546925, -1.877581]], [[53.546422, -1.877986], [53.546363, -1.878114]], [[53.546363, -1.878114], [53.546277, -1.87816]], [[53.546277, -1.87816], [53.546198, -1.878238]], [[53.546198, -1.878238], [53.546116, -1.878301]], [[53.546116, -1.878301], [53.546037, -1.878393]], [[53.546037, -1.878393], [53.545946, -1.878435]], [[53.545478, -1.879082], [53.545412, -1.879187]], [[53.545412, -1.879187], [53.545321, -1.8792]], [[53.545062, -1.879252], [53.544966, -1.87928]], [[53.544887, -1.879368], [53.5448, -1.879444]], [[53.5448, -1.879444], [53.544724, -1.879536]], [[53.543491, -1.880343], [53.543391, -1.880342]], [[53.543125, -1.880441], [53.543039, -1.880499]], [[53.543039, -1.880499], [53.542959, -1.880592]], [[53.542568, -1.880976], [53.542473, -1.881028]], [[53.542048, -1.881387], [53.541952, -1.881423]], [[53.541268, -1.881906], [53.541173, -1.881932]], [[53.541173, -1.881932], [53.541088, -1.881995]], [[53.54041, -1.882505], [53.540318, -1.882525]], [[53.538661, -1.883747], [53.538601, -1.88387]], [[53.535956, -1.890065], [53.535866, -1.890123]], [[53.535866, -1.890123], [53.535777, -1.890174]], [[53.534967, -1.893297], [53.534879, -1.893359]], [[53.534879, -1.893359], [53.534874, -1.893522]], [[53.535076, -1.893745], [53.535028, -1.893874]], [[53.534795, -1.893958], [53.534706, -1.893886]], [[53.534706, -1.893886], [53.534607, -1.893848]], [[53.534516, -1.893848], [53.534432, -1.893922]], [[53.530975, -1.902436], [53.53089, -1.902513]], [[53.529226, -1.904434], [53.529149, -1.904516]], [[53.52909, -1.904627], [53.528999, -1.904618]], [[53.528764, -1.904709], [53.528679, -1.904779]], [[53.528679, -1.904779], [53.528588, -1.904813]], [[53.528588, -1.904813], [53.528493, -1.90484]], [[53.528031, -1.90529], [53.527944, -1.905361]], [[53.527944, -1.905361], [53.527904, -1.905515]], [[53.527574, -1.905838], [53.527518, -1.905974]], [[53.527188, -1.906217], [53.527105, -1.906304]], [[53.525799, -1.906895], [53.525709, -1.906877]], [[53.525709, -1.906877], [53.525626, -1.906944]], [[53.525626, -1.906944], [53.525554, -1.907045]], [[53.525554, -1.907045], [53.525487, -1.907166]], [[53.525487, -1.907166], [53.525416, -1.907269]], [[53.525196, -1.907637], [53.525136, -1.90777]], [[53.525136, -1.90777], [53.525047, -1.907832]], [[53.524795, -1.907871], [53.524706, -1.907913]], [[53.524706, -1.907913], [53.524619, -1.907869]], [[53.52426, -1.908346], [53.524172, -1.90842]], [[53.524172, -1.90842], [53.524081, -1.908412]], [[53.524081, -1.908412], [53.523986, -1.90836]], [[53.523814, -1.908258], [53.523756, -1.908385]], [[53.523756, -1.908385], [53.523676, -1.908458]], [[53.523676, -1.908458], [53.523624, -1.908588]], [[53.523624, -1.908588], [53.523546, -1.908677]], [[53.523546, -1.908677], [53.52346, -1.908614]], [[53.523375, -1.90856], [53.523284, -1.908594]], [[53.523284, -1.908594], [53.523197, -1.908646]], [[53.523197, -1.908646], [53.523118, -1.908728]], [[53.522948, -1.908877], [53.522858, -1.908909]], [[53.52277, -1.908968], [53.52269, -1.909046]], [[53.52269, -1.909046], [53.522597, -1.909107]], [[53.522281, -1.909381], [53.522204, -1.909475]], [[53.521993, -1.909934], [53.521963, -1.910092]], [[53.521858, -1.910086], [53.521771, -1.910027]], [[53.521771, -1.910027], [53.521684, -1.909988]], [[53.521684, -1.909988], [53.521592, -1.909983]], [[53.521592, -1.909983], [53.521497, -1.909997]], [[53.521128, -1.909983], [53.521046, -1.910053]], [[53.521046, -1.910053], [53.520959, -1.910007]], [[53.520865, -1.909981], [53.520776, -1.909999]], [[53.520776, -1.909999], [53.520689, -1.910053]], [[53.520404, -1.910113], [53.520311, -1.910131]], [[53.520037, -1.910101], [53.519954, -1.91003]], [[53.519489, -1.909893], [53.519395, -1.909898]], [[53.5193, -1.909894], [53.519225, -1.909991]], [[53.519225, -1.909991], [53.519133, -1.909948]], [[53.519071, -1.909819], [53.518986, -1.909753]], [[53.51865, -1.90979], [53.518552, -1.909802]], [[53.518552, -1.909802], [53.518477, -1.909717]], [[53.518244, -1.909602], [53.518162, -1.909511]], [[53.518162, -1.909511], [53.518069, -1.909574]], [[53.518069, -1.909574], [53.518002, -1.909693]], [[53.518002, -1.909693], [53.517917, -1.909747]], [[53.517669, -1.909738], [53.517594, -1.909838]], [[53.517594, -1.909838], [53.517521, -1.909938]], [[53.517521, -1.909938], [53.517434, -1.909988]], [[53.517434, -1.909988], [53.517341, -1.91001]], [[53.517341, -1.91001], [53.517248, -1.909991]], [[53.517248, -1.909991], [53.517161, -1.910036]], [[53.517161, -1.910036], [53.517065, -1.910015]], [[53.516987, -1.910096], [53.51689, -1.910108]], [[53.51689, -1.910108], [53.516787, -1.910101]], [[53.516545, -1.91036], [53.51646, -1.91043]], [[53.516387, -1.910518], [53.516297, -1.910515]], [[53.516297, -1.910515], [53.5162, -1.910518]], [[53.516121, -1.910607], [53.516031, -1.91064]], [[53.516031, -1.91064], [53.515953, -1.910729]], [[53.515875, -1.910829], [53.515805, -1.910949]], [[53.515805, -1.910949], [53.515732, -1.911038]], [[53.515732, -1.911038], [53.51564, -1.911096]], [[53.51555, -1.911141], [53.515461, -1.911201]], [[53.515461, -1.911201], [53.515387, -1.911295]], [[53.515188, -1.911639], [53.515113, -1.911745]], [[53.515057, -1.91188], [53.514958, -1.911886]], [[53.514796, -1.912027], [53.514736, -1.912148]], [[53.514608, -1.912346], [53.514551, -1.912465]], [[53.514482, -1.912568], [53.514392, -1.912561]], [[53.514156, -1.912804], [53.514074, -1.912898]], [[53.514074, -1.912898], [53.514033, -1.912957]], [[53.513641, -1.913406], [53.513554, -1.913482]], [[53.513554, -1.913482], [53.513498, -1.913609]], [[53.513498, -1.913609], [53.51342, -1.913698]], [[53.513327, -1.913932], [53.513261, -1.914046]], [[53.513261, -1.914046], [53.513179, -1.914141]], [[53.512949, -1.914412], [53.512852, -1.91441]], [[53.512852, -1.91441], [53.512774, -1.914487]], [[53.512774, -1.914487], [53.512711, -1.914598]], [[53.512711, -1.914598], [53.512629, -1.914665]], [[53.512352, -1.914789], [53.512259, -1.914844]], [[53.512259, -1.914844], [53.51217, -1.914892]], [[53.512009, -1.914998], [53.511915, -1.91502]], [[53.511915, -1.91502], [53.511821, -1.915009]], [[53.511651, -1.915161], [53.511566, -1.915238]], [[53.511566, -1.915238], [53.511472, -1.915212]], [[53.511472, -1.915212], [53.511386, -1.91527]], [[53.511386, -1.91527], [53.511301, -1.915342]], [[53.511301, -1.915342], [53.511209, -1.91535]], [[53.511209, -1.91535], [53.511125, -1.915427]], [[53.511125, -1.915427], [53.51103, -1.91545]], [[53.51103, -1.91545], [53.510942, -1.915487]], [[53.510942, -1.915487], [53.510845, -1.915469]], [[53.510845, -1.915469], [53.510759, -1.915415]], [[53.510759, -1.915415], [53.510669, -1.915432]], [[53.510498, -1.915564], [53.510408, -1.915604]], [[53.510408, -1.915604], [53.510325, -1.915663]], [[53.510325, -1.915663], [53.510239, -1.915717]], [[53.509966, -1.91578], [53.509872, -1.915822]], [[53.509872, -1.915822], [53.509795, -1.915926]], [[53.509308, -1.916334], [53.509232, -1.916414]], [[53.509232, -1.916414], [53.509139, -1.916373]], [[53.509139, -1.916373], [53.509053, -1.916442]], [[53.508797, -1.916289], [53.5087, -1.916285]], [[53.50854, -1.916142], [53.508448, -1.916109]], [[53.508358, -1.916108], [53.508269, -1.916038]], [[53.508177, -1.916], [53.508082, -1.916025]], [[53.508082, -1.916025], [53.507992, -1.916057]], [[53.507829, -1.915903], [53.507746, -1.915837]], [[53.5075, -1.915589], [53.507414, -1.915516]], [[53.507414, -1.915516], [53.507317, -1.915485]], [[53.507317, -1.915485], [53.50726, -1.915354]], [[53.506926, -1.915168], [53.506842, -1.915084]], [[53.506842, -1.915084], [53.506775, -1.914962]], [[53.506485, -1.914585], [53.50639, -1.914609]], [[53.50639, -1.914609], [53.506301, -1.914534]], [[53.506301, -1.914534], [53.506264, -1.914393]], [[53.506264, -1.914393], [53.506174, -1.914374]], [[53.506081, -1.914363], [53.506002, -1.914282]], [[53.505918, -1.914274], [53.50583, -1.914207]], [[53.50583, -1.914207], [53.505746, -1.914124]], [[53.505746, -1.914124], [53.505664, -1.914054]], [[53.505664, -1.914054], [53.505612, -1.913925]], [[53.505551, -1.913798], [53.505528, -1.913641]], [[53.505528, -1.913641], [53.505463, -1.913528]], [[53.505463, -1.913528], [53.505391, -1.913428]], [[53.505391, -1.913428], [53.5053, -1.9134]], [[53.50522, -1.913475], [53.505142, -1.913373]], [[53.505142, -1.913373], [53.505102, -1.913235]], [[53.505102, -1.913235], [53.505079, -1.913087]], [[53.505079, -1.913087], [53.504999, -1.913164]], [[53.504999, -1.913164], [53.504907, -1.9132]], [[53.504868, -1.913378], [53.504836, -1.913234]], [[53.504836, -1.913234], [53.504801, -1.913091]], [[53.504801, -1.913091], [53.504764, -1.912937]], [[53.504751, -1.912778], [53.50473, -1.912626]], [[53.50473, -1.912626], [53.504696, -1.912484]], [[53.504696, -1.912484], [53.504678, -1.912327]], [[53.504678, -1.912327], [53.504625, -1.912195]], [[53.504377, -1.911783], [53.504288, -1.91174]], [[53.504288, -1.91174], [53.504242, -1.911601]], [[53.504072, -1.911479], [53.503981, -1.911503]], [[53.503981, -1.911503], [53.503893, -1.911538]], [[53.503893, -1.911538], [53.503801, -1.911574]], [[53.503641, -1.911512], [53.503545, -1.911547]], [[53.503545, -1.911547], [53.503468, -1.91146]], [[53.503468, -1.91146], [53.503374, -1.911444]], [[53.503374, -1.911444], [53.503314, -1.911317]], [[53.503276, -1.911167], [53.503262, -1.911003]], [[53.503262, -1.911003], [53.503233, -1.910852]], [[53.503233, -1.910852], [53.503199, -1.91071]], [[53.50315, -1.910557], [53.503109, -1.910422]], [[53.503109, -1.910422], [53.503028, -1.91033]], [[53.503028, -1.91033], [53.502961, -1.910227]], [[53.502961, -1.910227], [53.502918, -1.910092]], [[53.502756, -1.909947], [53.50269, -1.909823]], [[53.50269, -1.909823], [53.502615, -1.909739]], [[53.502615, -1.909739], [53.502555, -1.909617]], [[53.502555, -1.909617], [53.50249, -1.909508]], [[53.50249, -1.909508], [53.502427, -1.909401]], [[53.501946, -1.908962], [53.501851, -1.908954]], [[53.501851, -1.908954], [53.501756, -1.908973]], [[53.501756, -1.908973], [53.501675, -1.9089]], [[53.501675, -1.9089], [53.501586, -1.908865]], [[53.501516, -1.908855], [53.501427, -1.908783]], [[53.501427, -1.908783], [53.501333, -1.908725]], [[53.501333, -1.908725], [53.501246, -1.908681]], [[53.501246, -1.908681], [53.501211, -1.908529]], [[53.501211, -1.908529], [53.501131, -1.908442]], [[53.500725, -1.907558], [53.500645, -1.907472]], [[53.500496, -1.907276], [53.500442, -1.907148]], [[53.500442, -1.907148], [53.500354, -1.907195]], [[53.500354, -1.907195], [53.500259, -1.907171]], [[53.500259, -1.907171], [53.500165, -1.907128]], [[53.49996, -1.906789], [53.49991, -1.906655]], [[53.49991, -1.906655], [53.499843, -1.906527]], [[53.499843, -1.906527], [53.499769, -1.906418]], [[53.499702, -1.906317], [53.499646, -1.906196]], [[53.499646, -1.906196], [53.499563, -1.906121]], [[53.499389, -1.906018], [53.499301, -1.905942]], [[53.499172, -1.905204], [53.499111, -1.905092]], [[53.499021, -1.905048], [53.498975, -1.904912]], [[53.498828, -1.904649], [53.498735, -1.904653]], [[53.498735, -1.904653], [53.498681, -1.90453]], [[53.498681, -1.90453], [53.498602, -1.904435]], [[53.497966, -1.903868], [53.497916, -1.903737]], [[53.497916, -1.903737], [53.497856, -1.903621]], [[53.497856, -1.903621], [53.497774, -1.903525]], [[53.497608, -1.903387], [53.497509, -1.903377]], [[53.497509, -1.903377], [53.497441, -1.903251]], [[53.496848, -1.902832], [53.496753, -1.90283]], [[53.496753, -1.90283], [53.496658, -1.902838]], [[53.496658, -1.902838], [53.496577, -1.902768]], [[53.496577, -1.902768], [53.496497, -1.902689]], [[53.496412, -1.902638], [53.496336, -1.902552]], [[53.496336, -1.902552], [53.496263, -1.902461]], [[53.496008, -1.902252], [53.495919, -1.902187]], [[53.495832, -1.902126], [53.495743, -1.902075]], [[53.495743, -1.902075], [53.495655, -1.902003]], [[53.495025, -1.901628], [53.494933, -1.901572]], [[53.494933, -1.901572], [53.494845, -1.90152]], [[53.494845, -1.90152], [53.49475, -1.901497]], [[53.494415, -1.900526], [53.494435, -1.900368]], [[53.494435, -1.900368], [53.494468, -1.900223]], [[53.494205, -1.900068], [53.494131, -1.899976]], [[53.494131, -1.899976], [53.494051, -1.899896]], [[53.493963, -1.899827], [53.493898, -1.899708]], [[53.49328, -1.897824], [53.493279, -1.897665]], [[53.493279, -1.897665], [53.493299, -1.897517]], [[53.493299, -1.897517], [53.493257, -1.897376]], [[53.492567, -1.894826], [53.492483, -1.894738]], [[53.492194, -1.894318], [53.492121, -1.894227]], [[53.492121, -1.894227], [53.492041, -1.894127]], [[53.490939, -1.893638], [53.490892, -1.893666]], [[53.491041, -1.893676], [53.49111, -1.893792]], [[53.49111, -1.893792], [53.491135, -1.893835]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_2ea01c6198912c439a329dce756f5965 = L.polyline(
                [[[53.749718, -2.055858], [53.749726, -2.056087]], [[53.749726, -2.056087], [53.749716, -2.055922]], [[53.749151, -2.044732], [53.749137, -2.044554]], [[53.737507, -2.04611], [53.737413, -2.04622]], [[53.734402, -2.041475], [53.734486, -2.04136]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_f7a5f591eed427aba32e32bdcc31ed05 = L.polyline(
                [[[53.749633, -2.054647], [53.749603, -2.054494]], [[53.749594, -2.053688], [53.74954, -2.053555]], [[53.749705, -2.049525], [53.749726, -2.049365]], [[53.749726, -2.049365], [53.749745, -2.049195]], [[53.749463, -2.047349], [53.749429, -2.047208]], [[53.749397, -2.047052], [53.749382, -2.046893]], [[53.749261, -2.046021], [53.749221, -2.045853]], [[53.749207, -2.045447], [53.749195, -2.044905]], [[53.749171, -2.044049], [53.749194, -2.044215]], [[53.74916, -2.045881], [53.749189, -2.046044]], [[53.741533, -2.0496], [53.74146, -2.049513]], [[53.74146, -2.049513], [53.741394, -2.049366]], [[53.739938, -2.048611], [53.739876, -2.0485]], [[53.739876, -2.0485], [53.739823, -2.048374]], [[53.738491, -2.045019], [53.738511, -2.044867]], [[53.738511, -2.044867], [53.738517, -2.044681]], [[53.738517, -2.044681], [53.73855, -2.04453]], [[53.738378, -2.045239], [53.738317, -2.045092]], [[53.737597, -2.046071], [53.737507, -2.04611]], [[53.737327, -2.046333], [53.73723, -2.046413]], [[53.735798, -2.048342], [53.735803, -2.04818]], [[53.735803, -2.04818], [53.735801, -2.048012]], [[53.735911, -2.047555], [53.735896, -2.047396]], [[53.735929, -2.045471], [53.735857, -2.045375]], [[53.734884, -2.044034], [53.73479, -2.044048]], [[53.733836, -2.04349], [53.733766, -2.043375]], [[53.734304, -2.041737], [53.734339, -2.041591]], [[53.735372, -2.038318], [53.735394, -2.038146]], [[53.735336, -2.037787], [53.73533, -2.037632]], [[53.731295, -2.032132], [53.7312, -2.032168]], [[53.7312, -2.032168], [53.731099, -2.032131]], [[53.729581, -2.0315], [53.729503, -2.031393]], [[53.729431, -2.031295], [53.729385, -2.031152]], [[53.72639, -2.030533], [53.726296, -2.030484]], [[53.691262, -2.059945], [53.691247, -2.060102]], [[53.684412, -2.0667], [53.684337, -2.066598]], [[53.684337, -2.066598], [53.684239, -2.066543]], [[53.677421, -2.059113], [53.677332, -2.059027]], [[53.673683, -2.056973], [53.673609, -2.056871]], [[53.659794, -2.04996], [53.659747, -2.049818]], [[53.608832, -2.000968], [53.608753, -2.000841]], [[53.608753, -2.000841], [53.608697, -2.000715]], [[53.608486, -2.000365], [53.608394, -2.000312]], [[53.608394, -2.000312], [53.608325, -2.000215]], [[53.605922, -1.995926], [53.60584, -1.995817]], [[53.60584, -1.995817], [53.605763, -1.995725]], [[53.604608, -1.995249], [53.604517, -1.995199]], [[53.597882, -1.994691], [53.59779, -1.994699]], [[53.585182, -1.978411], [53.585085, -1.978359]], [[53.58306, -1.977929], [53.583055, -1.977752]], [[53.575259, -1.946953], [53.575301, -1.946808]], [[53.575091, -1.941492], [53.575161, -1.941378]], [[53.577337, -1.929008], [53.577325, -1.928857]], [[53.576088, -1.918045], [53.575993, -1.917972]], [[53.575256, -1.912184], [53.575168, -1.912145]], [[53.560315, -1.886901], [53.560267, -1.886757]], [[53.560267, -1.886757], [53.560183, -1.886673]], [[53.559602, -1.886129], [53.559519, -1.886046]], [[53.559519, -1.886046], [53.559459, -1.885929]], [[53.533099, -1.896306], [53.533018, -1.896388]], [[53.504943, -1.913461], [53.504868, -1.913378]], [[53.493125, -1.897644], [53.493082, -1.897467]], [[53.492983, -1.897176], [53.492935, -1.897036]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_0cf43fa3cb29c9679f711f62a7a9efc3 = L.polyline(
                [[[53.749195, -2.044905], [53.749151, -2.044732]], [[53.738635, -2.044117], [53.738604, -2.043966]], [[53.735553, -2.049105], [53.735619, -2.048954]], [[53.734339, -2.041591], [53.734402, -2.041475]], [[53.73536, -2.037957], [53.735336, -2.037787]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2e00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff2e00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            var poly_line_64966520b8988aa00aafe94d41074a2e = L.polyline(
                [[[53.719267, -2.031503], [53.719176, -2.031583]], [[53.714168, -2.042174], [53.714169, -2.042196]], [[53.616912, -2.024658], [53.616869, -2.024521]], [[53.615792, -2.020621], [53.615767, -2.020468]], [[53.60971, -2.00249], [53.609631, -2.002388]], [[53.582079, -1.97325], [53.582056, -1.973088]], [[53.582718, -1.967178], [53.582662, -1.967046]], [[53.582284, -1.96479], [53.582334, -1.964918]], [[53.577283, -1.95654], [53.57727, -1.956531]], [[53.573731, -1.906923], [53.573644, -1.906983]], [[53.572454, -1.90532], [53.572386, -1.905209]], [[53.565484, -1.89423], [53.565491, -1.894068]], [[53.565682, -1.892639], [53.565713, -1.892492]], [[53.540296, -1.882515], [53.540198, -1.882548]], [[53.536737, -1.888253], [53.536687, -1.888386]], [[53.507272, -1.91537], [53.507177, -1.915357]], [[53.498955, -1.904876], [53.498874, -1.90478]], [[53.490892, -1.893666], [53.491041, -1.893676]], [[53.491135, -1.893835], [53.491138, -1.893855]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_05e80f72730d7f66785fbe5c97a26b7a);
        
    
            color_line_05e80f72730d7f66785fbe5c97a26b7a.addTo(map_bc44483bd14b90711259523493d75c9d);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="day-12---crowden-to-edale" class="level3">
<h3 class="anchored" data-anchor-id="day-12---crowden-to-edale">Day 12 - Crowden to Edale</h3>
<p>28km to cover before 15:00, my self-imposed finish time to ensure I can claim to have completed The Way in 12 days so up early. Unconventionally for me I had one of my remaining two meals for breakfast, pasta and mushrooms, to see me through as there are no shops or pubs between Crowden and Edale. I packed the tent up damp from the previous nights rain, not caring as I was heading home today and could dry it once there. I said goodbye to Mike who was in no rush after the previous days efforts and thanked him for his company the previous day. Wished the father and son pair good luck on their the rest of their trip over-nighting on Kinder and then heading to Hathersage and their planned Arctic trip.</p>
<p>Clear blue skies and warm sun helped me set a decent pace as I headed down to the dam of Torside Researvoir and crossed over to the steep climb up onto the Bleaklow plateau.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53947356727_daa871cbd4_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qc9iE8" target="_blank">Torside Reservoir</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948581129_ed5cd8f435_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcfzCv" target="_blank">To Bleaklow Head</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53993224230_9da0cd0309_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qgcot9" target="_blank">Torside Reservoir</a></figcaption>
</figure>
</div>
<p>Half-way up the steep section whilst snapping pictures with the Sony for some bizarre reason it stopped taking pictures, it would focus and do everything except actually take and save the picture. I wasted about 15-20 minutes trying to sort it before deciding it would have to wait and besides I had a 12-month warranty on it courtesy of Harrison Cameras excellent second-hand policy, so continued up the remaining section of the trail that runs round the edge of Torside Clough. As I crossed over the clough at the top I had another go at fixing the camera and resetting all settings seemed to sort it out. Will have to keep an eye on this though and consider returning it if the problem recurs.</p>
<p>Bleaklow Head was easy to find, but the wind had picked up a bit and it was starting to feel chilly when exposed.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53991908927_4766c12c0b_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qg5Dtv" target="_blank">Bleaklow Head</a></figcaption>
</figure>
</div>
<p>I had forgotten what a pain it was navigating through the groughs on Bleaklow, compounded by the fact it had rained recently and/or overnight so many had running water in them and navigating round them slowed me down a bit, but soon the number of people I was passing, most going to look at the remains of the plane crash, increased and I soon reached the head of the Alport River.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53993112889_cbb242606d_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qgbPnt" target="_blank">Alport River Head</a></figcaption>
</figure>
</div>
<p>Having walked from here to Kinder a few weeks previously when training I knew exactly where to go. Not that its hard, a massive path and paving slabs lead you to the crossing of the A57. A few kilometres of paving slab followed before swinging south and heading up the North tip of Kinder Scout. It was pretty windy on the edge of the plateau but there were plenty of people about, presumably going to see the inverted waterfall phenomenon which occurs when the wind is high as the water falling off of <a href="https://en.wikipedia.org/wiki/River_Kinder" target="_blank">Kinder Downfall</a> gets blown back up in an endless cycle, although being the end of summer it wasn’t as impressive as it can be in autumn.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53992799321_76ad1a55ca_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qgada8" target="_blank">Kinder North</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53992799176_c9700eb929_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qgad7C" target="_blank">Kinder Reservoir</a></figcaption>
</figure>
</div>
<p>Grateful of the poles I traversed the edge of the plateau passing behind the Upfall and heading South towards Edale Rocks and Jacobs Ladder. Lots of people were out on the hills which is great to see but something of a shock given how quiet it had been along most of The Way. I had my eye on the clock to make sure I got to Edale before 15:00 so didn’t hang around and apart from offering a bit of advice to people who looked lost and talking to a couple who had been keeping pace and talking loudly about how to stay fit (they were impressed with having walked +400km in 12 days) I kept moving and got to Barber Booth.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53993031033_fc7850119c_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qgbp3a" target="_blank">Jacobs Ladder</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948514518_3b931a4635_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcfeQ3" target="_blank">Edale 1 1/4 miles</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53948514373_e4f508bee9_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qcfeMx" target="_blank">Great Ridge Edale Valley</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53947356477_e6db90f92b_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qc9izP" target="_blank">The last Stretch</a></figcaption>
</figure>
</div>
<p>I’d forgotten The Way has one very small bit of uphill to return to Edale here but it passed quickly and I was soon bouncing down through the last field to take the track that goes along a small brook into Edale. With no fanfare I exited the path and was done, I had reached <a href="https://www.the-old-nags-head.co.uk/" target="_blank">The Nags Head</a>, the time was 14:51 so I had walked there from <a href="https://en.wikipedia.org/wiki/Kirk_Yetholm" target="_blank">Kirk Yetholm</a> in pretty much 12 days of hiking and was delighted, if a little tired.</p>
<p>Three members of <a href="https://edalemrt.co.uk/" target="_blank">Edale Mountain Rescue</a> were out collecting donations to fund their excellent work so I approached them and asked if one of them would mind snapping a couple of pictures of me. “<em>Only because you’ve got a Podsacs rucksack</em>” said one of them. My riposte was simple “<em>Does hiking the Pennine Way in 12 days qualify for a picture?</em>”. The gentleman was more than happy to oblige me and suggested we go over to the wall where there was a plaque as well as snapping pictures next to the pub. I ducked inside to grab a pint and asked if there was a log book to sign which there was, much smaller than the one at <a href="https://en.wikipedia.org/wiki/Kirk_Yetholm" target="_blank">Kirk Yetholm</a> but I recorded my walk and took my pint (and a pint of water) outside to chat to the guys from Mountain Rescue and check train times.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53993223615_db168c1299_3k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qgcohx" target="_blank">They got the sign wrong</a></figcaption>
</figure>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53993224290_c07223472e_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flic.kr/p/2qgcoub" target="_blank">Propping up The Nags Head</a></figcaption>
</figure>
</div>
<p>Hydrated I wandered down to the train station to catch the 15:33 train which was typically delayed and did some stretching of my tired legs and was rudely reminded of why I enjoy being in quiet places because some drunk idiot started making fun of me for doing “yoga”. Train arrived late and whisked me back to Sheffield and I was grateful of the free ride as no ticket inspector passed through the carriage I was in. My wife and daughter were out so I walked home, not that I’d have accepted a lift anyway, stopping for a pint in a local pub (<a href="https://www1.camra.org.uk/pubs/brothers-arms-sheffield-south-147577" target="_blank">The Brothers Arms</a>) before heading home.</p>
<p>Having been away for 12 days there were tons of leaves on our drive and in the street so before heading in I put my pack down and grabbed my broom and set about clearing them. After five minutes or so the front door opened and my wife and daughter asked if I was going to actually come in. I felt bad when I did as my daughter had made a lovely finishing banner for me to break through with “<em>Welcome Home Daddy</em>” in rainbow letters. She had apparently been peeking out the window keeping an eye out for me.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-13-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-13-1" aria-controls="tabset-13-1" aria-selected="true">R</a></li><li class="nav-item"><a class="nav-link" id="tabset-13-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-13-2" aria-controls="tabset-13-2" aria-selected="false">Python</a></li></ul>
<div class="tab-content">
<div id="tabset-13-1" class="tab-pane active" aria-labelledby="tabset-13-1-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb25" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb25-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">plot_day</span>(gps_df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-25"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div class="leaflet html-widget html-fill-item" id="htmlwidget-3122b39c803f0be1aa17" style="width:100%;height:464px;"></div>
<script type="application/json" data-for="htmlwidget-3122b39c803f0be1aa17">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>,  <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPolylines","args":[[[[{"lng":[-1.893824,-1.893807,-1.893736,-1.893655,-1.893526,-1.893471,-1.893629,-1.893781,-1.893932,-1.894078,-1.894207,-1.894348,-1.894481,-1.894602,-1.894742,-1.894873,-1.894992,-1.895073,-1.895113,-1.895123,-1.895163,-1.895188,-1.895179,-1.895159,-1.895177,-1.895233,-1.895324,-1.895335,-1.895384,-1.895383,-1.895445,-1.895554,-1.8956,-1.895729,-1.895835,-1.895974,-1.896114,-1.896222,-1.896325,-1.896402,-1.896481,-1.896576,-1.896697,-1.896836,-1.896914,-1.897035,-1.897161,-1.897285,-1.897429,-1.897565,-1.897735,-1.897876,-1.89801,-1.898146,-1.89821,-1.898354,-1.898501,-1.898642,-1.898797,-1.898917,-1.899069,-1.899226,-1.89938,-1.899501,-1.899644,-1.899787,-1.89992,-1.900068,-1.900215,-1.900358,-1.900478,-1.900624,-1.900777,-1.900944,-1.901072,-1.901226,-1.90137,-1.901507,-1.901655,-1.901789,-1.901937,-1.902078,-1.902244,-1.902386,-1.902495,-1.902608,-1.902755,-1.902868,-1.903003,-1.903128,-1.903254,-1.903396,-1.903537,-1.903632,-1.90377,-1.903884,-1.904019,-1.904142,-1.904255,-1.904376,-1.904506,-1.904645,-1.904759,-1.904891,-1.905017,-1.905137,-1.905252,-1.905338,-1.90541,-1.905494,-1.905601,-1.905702,-1.905823,-1.905951,-1.906064,-1.906208,-1.906345,-1.906483,-1.906611,-1.906752,-1.9069,-1.90705,-1.907203,-1.907371,-1.907531,-1.907684,-1.907835,-1.908004,-1.908158,-1.908223,-1.908384,-1.908528,-1.908692,-1.908852,-1.909005,-1.909169,-1.90933,-1.909486,-1.909634,-1.909788,-1.909943,-1.9101,-1.910074,-1.910225,-1.910387,-1.910451,-1.910496,-1.910599,-1.910745,-1.910855,-1.910954,-1.911103,-1.911275,-1.911429,-1.911554,-1.911709,-1.911855,-1.911997,-1.91215,-1.912302,-1.912455,-1.912607,-1.912753,-1.912891,-1.91308,-1.913254,-1.913405,-1.913579,-1.913734,-1.913889,-1.914044,-1.914213,-1.914388,-1.914544,-1.91471,-1.914871,-1.91498,-1.915133,-1.915288,-1.915428,-1.915508,-1.91544,-1.915594,-1.915758,-1.915947,-1.916092,-1.916282,-1.916494,-1.916683,-1.916845,-1.917007,-1.917156,-1.917293,-1.917473,-1.917632,-1.917791,-1.917855,-1.917839,-1.917797,-1.917728,-1.917646,-1.917545,-1.917469,-1.917457,-1.917442,-1.91744,-1.917462,-1.917438,-1.917452,-1.917453,-1.91746,-1.917448,-1.917454,-1.91744,-1.917461,-1.917448,-1.917443,-1.917457,-1.917445,-1.917414,-1.917416,-1.917434,-1.917498,-1.917477,-1.917443,-1.917439,-1.917467,-1.917459,-1.917436,-1.917394,-1.917339,-1.917212,-1.917074,-1.916922,-1.916761,-1.916617,-1.916471,-1.916335,-1.916163,-1.916002,-1.915847,-1.915707,-1.915555,-1.915403,-1.915249,-1.915094,-1.914946,-1.9148,-1.914658,-1.914507,-1.914357,-1.914206,-1.914061,-1.914139,-1.91429,-1.914437,-1.91458,-1.914739,-1.914897,-1.915045,-1.914993,-1.914827,-1.914669,-1.91452,-1.914391,-1.914249,-1.914115,-1.913975,-1.913824,-1.913685,-1.913535,-1.913368,-1.913223,-1.913069,-1.912905,-1.912734,-1.91257,-1.912421,-1.912258,-1.9121,-1.911948,-1.911795,-1.911661,-1.911498,-1.911361,-1.911213,-1.911068,-1.910901,-1.910747,-1.910598,-1.910434,-1.910271,-1.910111,-1.90994,-1.90979,-1.909637,-1.909498,-1.909346,-1.909207,-1.909055,-1.908905,-1.908765,-1.908626,-1.908465,-1.90832,-1.908157,-1.908038,-1.907933,-1.907823,-1.907705,-1.907615,-1.907517,-1.907435,-1.907354,-1.907286,-1.907171,-1.907048,-1.906919,-1.906778,-1.90666,-1.906543,-1.906461,-1.90634,-1.906237,-1.906116,-1.90612,-1.906144,-1.906053,-1.905936,-1.905951,-1.90599,-1.906011,-1.906022,-1.905972,-1.905971,-1.905927,-1.905917,-1.905912,-1.905938,-1.9059,-1.905968,-1.906071,-1.906174,-1.906222,-1.906303,-1.90636,-1.90644,-1.906492,-1.906593,-1.906669,-1.906702,-1.906657,-1.90656,-1.906582,-1.906528,-1.906504,-1.906468,-1.906433,-1.906396,-1.906327,-1.906299,-1.906298,-1.906262,-1.906254,-1.906213,-1.906182,-1.906146,-1.906107,-1.90612,-1.906064,-1.906035,-1.906001,-1.905955,-1.905928,-1.905892,-1.905878,-1.905883,-1.905845,-1.905807,-1.905805,-1.905752,-1.905682,-1.905602,-1.905487,-1.905424,-1.905308,-1.90523,-1.905201,-1.905125,-1.905119,-1.905041,-1.904919,-1.904779,-1.904665,-1.904644,-1.904546,-1.904492,-1.904388,-1.904313,-1.904213,-1.904115,-1.904006,-1.903996,-1.903895,-1.903852,-1.90374,-1.903633,-1.903529,-1.90342,-1.903323,-1.903176,-1.90304,-1.902931,-1.90278,-1.902623,-1.90248,-1.902331,-1.902177,-1.902022,-1.901883,-1.90175,-1.901593,-1.901435,-1.901279,-1.90112,-1.900968,-1.900819,-1.900653,-1.900487,-1.90033,-1.900181,-1.90004,-1.899889,-1.899727,-1.899572,-1.899422,-1.899268,-1.899111,-1.898948,-1.898791,-1.898631,-1.898484,-1.898334,-1.898185,-1.898038,-1.897873,-1.897736,-1.897578,-1.897447,-1.897305,-1.897148,-1.896986,-1.896841,-1.89669,-1.896531,-1.896373,-1.896207,-1.896046,-1.895887,-1.895743,-1.895586,-1.895426,-1.895362,-1.895203,-1.895047,-1.894887,-1.894737,-1.894594,-1.894431,-1.894272,-1.894126,-1.893984,-1.893848,-1.893688,-1.893593,-1.893545,-1.893428,-1.893287,-1.893174,-1.893024,-1.892872,-1.892719,-1.892554,-1.892404,-1.892266,-1.892107,-1.891953,-1.891802,-1.891641,-1.891481,-1.891335,-1.891191,-1.891032,-1.890878,-1.890739,-1.890623,-1.890468,-1.890334,-1.890185,-1.890035,-1.88988,-1.889729,-1.889596,-1.889441,-1.889316,-1.88916,-1.88903,-1.888886,-1.888736,-1.888592,-1.888452,-1.888302,-1.888157,-1.887997,-1.887838,-1.887681,-1.88753,-1.887373,-1.88721,-1.887062,-1.886919,-1.886815,-1.886724,-1.886566,-1.886432,-1.886279,-1.88618,-1.886105,-1.885952,-1.885784,-1.885653,-1.885502,-1.885365,-1.88522,-1.885117,-1.885026,-1.884889,-1.884738,-1.884576,-1.88442,-1.884265,-1.884113,-1.883968,-1.883806,-1.883652,-1.883499,-1.883383,-1.883276,-1.883164,-1.883028,-1.882888,-1.88279,-1.882676,-1.882656,-1.882604,-1.882538,-1.882478,-1.882417,-1.882354,-1.882305,-1.882223,-1.882105,-1.881996,-1.88188,-1.881831,-1.881735,-1.881636,-1.881492,-1.881333,-1.881198,-1.881081,-1.880952,-1.880852,-1.880739,-1.880677,-1.880633,-1.880516,-1.880422,-1.880356,-1.880266,-1.88016,-1.880095,-1.880068,-1.880117,-1.88006,-1.880039,-1.879984,-1.879903,-1.879821,-1.879666,-1.879534,-1.879478,-1.879405,-1.879304,-1.879147,-1.879027,-1.878868,-1.878731,-1.878613,-1.878457,-1.878316,-1.878152,-1.877999,-1.877849,-1.877695,-1.877542,-1.877383,-1.877233,-1.877076,-1.876918,-1.876795,-1.876636,-1.876491,-1.876343,-1.876175,-1.876019,-1.875872,-1.875714,-1.875553,-1.875401,-1.875249,-1.875104,-1.874943,-1.874808,-1.874676,-1.874516,-1.874358,-1.874213,-1.874062,-1.873897,-1.873744,-1.873594,-1.873439,-1.873284,-1.873137,-1.872976,-1.87285,-1.872695,-1.872542,-1.872386,-1.872221,-1.872059,-1.871918,-1.871762,-1.871602,-1.87144,-1.871276,-1.871122,-1.870986,-1.8709,-1.870766,-1.870617,-1.870465,-1.87033,-1.870207,-1.870056,-1.869895,-1.869762,-1.869627,-1.869464,-1.869304,-1.869157,-1.869006,-1.868846,-1.868706,-1.868588,-1.868453,-1.868297,-1.868138,-1.867977,-1.867815,-1.867666,-1.867509,-1.867343,-1.867189,-1.867038,-1.866878,-1.866719,-1.866594,-1.866435,-1.866276,-1.866107,-1.865943,-1.865791,-1.86563,-1.865481,-1.865342,-1.865171,-1.865022,-1.864884,-1.864714,-1.864553,-1.864399,-1.864242,-1.864159,-1.864008,-1.863894,-1.863743,-1.863576,-1.863412,-1.863257,-1.863097,-1.862951,-1.862867,-1.862751,-1.862619,-1.862598,-1.862548,-1.862534,-1.862483,-1.862465,-1.862498,-1.862454,-1.862389,-1.862336,-1.862332,-1.862204,-1.862141,-1.862086,-1.861962,-1.86183,-1.861736,-1.861779,-1.8618,-1.86168,-1.86155,-1.861446,-1.861364,-1.861323,-1.861268,-1.861184,-1.861103,-1.861044,-1.861051,-1.86111,-1.86117,-1.861128,-1.860996,-1.860932,-1.860881,-1.86085,-1.860815,-1.860797,-1.86074,-1.860749,-1.860711,-1.86063,-1.860497,-1.860341,-1.860272,-1.86017,-1.860135,-1.860095,-1.860049,-1.85999,-1.859904,-1.859835,-1.859767,-1.859705,-1.859702,-1.859743,-1.859808,-1.859859,-1.860001,-1.860096,-1.860211,-1.860263,-1.860291,-1.860402,-1.860499,-1.860532,-1.860631,-1.860749,-1.860855,-1.860926,-1.860894,-1.860888,-1.860854,-1.860736,-1.860596,-1.860468,-1.860366,-1.860281,-1.860224,-1.860157,-1.860259,-1.860338,-1.860262,-1.860145,-1.859993,-1.859893,-1.859881,-1.859882,-1.859843,-1.859904,-1.859932,-1.859945,-1.86002,-1.860126,-1.860128,-1.860182,-1.860282,-1.8602,-1.86016,-1.860263,-1.86033,-1.860388,-1.860403,-1.860496,-1.860539,-1.860612,-1.860716,-1.860813,-1.86088,-1.860932,-1.860989,-1.860833,-1.860796,-1.860841,-1.860919,-1.861051,-1.861093,-1.860984,-1.860887,-1.860858,-1.860748,-1.860837,-1.860676,-1.860518,-1.860416,-1.860284,-1.860218,-1.860116,-1.85997,-1.859893,-1.859753,-1.85967,-1.859636,-1.859665,-1.859745,-1.859891,-1.859881,-1.85996,-1.860003,-1.859851,-1.859728,-1.859767,-1.859842,-1.859746,-1.859879,-1.859844,-1.859743,-1.859627,-1.85952,-1.859506,-1.859434,-1.85933,-1.859268,-1.859151,-1.85906,-1.85895,-1.858821,-1.858708,-1.858608,-1.858513,-1.858507,-1.85843,-1.858298,-1.858162,-1.858012,-1.857881,-1.857744,-1.857616,-1.85749,-1.857343,-1.857289,-1.857179,-1.857028,-1.856916,-1.856805,-1.856739,-1.856627,-1.856625,-1.856559,-1.856445,-1.856305,-1.856302,-1.856239,-1.856202,-1.856096,-1.856017,-1.856033,-1.856052,-1.856036,-1.85604,-1.855993,-1.855914,-1.856002,-1.855877,-1.855817,-1.855855,-1.855696,-1.855677,-1.855633,-1.855609,-1.855624,-1.855644,-1.855617,-1.855588,-1.855586,-1.855591,-1.855547,-1.855545,-1.855583,-1.855537,-1.855488,-1.855352,-1.855222,-1.855112,-1.854972,-1.854832,-1.85468,-1.85457,-1.854435,-1.854283,-1.854145,-1.853981,-1.853852,-1.853707,-1.853565,-1.853479,-1.85353,-1.853494,-1.853558,-1.853725,-1.853845,-1.853888,-1.853918,-1.853855,-1.853766,-1.853629,-1.853486,-1.853376,-1.853264,-1.853118,-1.852975,-1.852845,-1.852771,-1.852727,-1.852703,-1.852574,-1.852467,-1.85237,-1.852363,-1.852393,-1.852442,-1.85252,-1.852649,-1.852721,-1.852841,-1.85281,-1.852661,-1.852554,-1.852635,-1.852652,-1.852711,-1.852793,-1.852697,-1.852568,-1.852528,-1.852622,-1.852623,-1.852638,-1.852658,-1.852727,-1.85279,-1.852889,-1.852939,-1.852961,-1.852957,-1.85298,-1.853065,-1.853108,-1.853129,-1.853192,-1.853294,-1.853411,-1.853525,-1.853631,-1.853739,-1.853811,-1.853942,-1.854066,-1.854152,-1.854248,-1.85437,-1.854493,-1.854588,-1.854695,-1.854809,-1.854934,-1.855042,-1.855107,-1.855213,-1.855332,-1.855435,-1.855558,-1.855638,-1.855712,-1.855817,-1.85593,-1.85599,-1.856128,-1.856229,-1.856323,-1.856437,-1.856515,-1.856643,-1.856753,-1.856903,-1.85702,-1.857115,-1.857243,-1.857335,-1.857466,-1.857584,-1.857697,-1.857811,-1.857942,-1.858082,-1.858208,-1.858348,-1.858475,-1.858589,-1.85871,-1.858859,-1.859012,-1.859109,-1.859184,-1.859333,-1.85946,-1.859604,-1.859696,-1.859815,-1.859966,-1.86008,-1.860182,-1.860318,-1.860447,-1.860596,-1.860712,-1.860799,-1.860886,-1.861018,-1.861171,-1.861261,-1.861378,-1.861508,-1.861594,-1.86171,-1.861853,-1.862006,-1.862138,-1.862252,-1.862334,-1.862463,-1.86255,-1.862657,-1.862776,-1.862899,-1.86301,-1.863115,-1.863248,-1.863384,-1.86348,-1.863555,-1.86361,-1.863702,-1.863805,-1.863936,-1.864052,-1.864143,-1.864269,-1.864378,-1.864495,-1.864619,-1.864748,-1.86486,-1.864952,-1.865024,-1.865119,-1.865225,-1.865298,-1.865364,-1.865442,-1.865527,-1.865617,-1.865702,-1.865801,-1.865891,-1.865974,-1.866094,-1.866219,-1.86628,-1.866353,-1.866432,-1.866523,-1.866611,-1.866618,-1.866654,-1.866731,-1.866787,-1.866852,-1.866913,-1.866973,-1.867064,-1.86714,-1.86724,-1.867307,-1.867383,-1.867439,-1.867521,-1.867594,-1.867656,-1.867721,-1.867811,-1.867863,-1.867922,-1.867991,-1.868001,-1.8681,-1.868176,-1.868262,-1.868344,-1.868412,-1.868468,-1.868538,-1.868595,-1.868649,-1.868707,-1.868742,-1.868745,-1.868773,-1.868808,-1.868846,-1.868898,-1.868933,-1.868968,-1.868984,-1.869051,-1.869102,-1.869105,-1.869101,-1.869099,-1.869124,-1.869106,-1.869105,-1.869082,-1.869155,-1.869248,-1.869365,-1.869435,-1.869422,-1.869343,-1.869251,-1.86931,-1.869364,-1.869329,-1.869398,-1.869484,-1.869586,-1.869682,-1.86968,-1.869654,-1.869646,-1.869658,-1.869634,-1.869669,-1.869774,-1.869905,-1.870028,-1.870115,-1.870224,-1.870315,-1.870391,-1.870446,-1.870535,-1.870615,-1.870724,-1.870779,-1.870844,-1.870929,-1.87097,-1.871097,-1.8711,-1.871158,-1.871181,-1.871198,-1.871293,-1.871389,-1.871515,-1.871643,-1.871746,-1.87186,-1.871957,-1.872069,-1.872159,-1.872289,-1.872323,-1.872419,-1.872546,-1.87269,-1.872827,-1.87295,-1.873085,-1.873198,-1.8733,-1.873393,-1.873402,-1.873486,-1.873617,-1.873673,-1.873722,-1.873742,-1.873767,-1.873775,-1.873912,-1.874035,-1.874136,-1.874209,-1.874301,-1.874466,-1.874627,-1.874789,-1.874914,-1.875068,-1.875223,-1.875358,-1.875514,-1.875686,-1.87584,-1.875997,-1.876083,-1.876229,-1.876396,-1.876571,-1.876718,-1.876868,-1.877024,-1.877184,-1.877336,-1.87748,-1.877658,-1.877824,-1.877993,-1.878118,-1.878266,-1.87843,-1.878582,-1.878736,-1.878898,-1.87906,-1.879193,-1.879347,-1.879472,-1.879601,-1.879744,-1.879875,-1.880014,-1.880177,-1.880306,-1.88042,-1.880554,-1.880688,-1.88077,-1.880829,-1.88091,-1.881013,-1.88111,-1.881219,-1.881348,-1.881484,-1.881608,-1.881737,-1.88188,-1.882042,-1.882147,-1.882277,-1.882427,-1.882564,-1.882709,-1.88286,-1.883001,-1.88313,-1.88323,-1.883339,-1.883465,-1.883602,-1.883751,-1.883918,-1.884087,-1.884237,-1.884364,-1.884502,-1.884635,-1.88478,-1.884908,-1.88498,-1.885033,-1.885173,-1.8853,-1.885442,-1.885555,-1.885656,-1.885721,-1.885759,-1.885865,-1.885996,-1.886082,-1.886176,-1.886297,-1.886439,-1.886551,-1.886645,-1.88676,-1.886903,-1.887041,-1.887091,-1.887106,-1.887254,-1.887388,-1.887548,-1.887681,-1.88779,-1.887897,-1.888051,-1.888217,-1.888382,-1.888511,-1.888649,-1.888775,-1.88892,-1.889083,-1.889233,-1.889375,-1.889492,-1.889555,-1.889695,-1.889835,-1.889963,-1.890097,-1.890186,-1.890332,-1.890477,-1.890621,-1.890699,-1.890823,-1.890973,-1.891125,-1.891287,-1.891439,-1.89161,-1.891764,-1.891937,-1.89209,-1.892258,-1.892412,-1.892559,-1.892726,-1.892879,-1.893031,-1.89318,-1.893352,-1.893508,-1.89367,-1.893825,-1.893995,-1.894158,-1.894295,-1.894441,-1.894593,-1.894762,-1.89492,-1.895073,-1.895235,-1.895398,-1.895555,-1.895706,-1.895864,-1.896028,-1.896192,-1.896351,-1.896511,-1.896661,-1.896828,-1.896962,-1.897126,-1.897267,-1.897408,-1.897553,-1.897711,-1.897796,-1.897898,-1.898019,-1.898143,-1.898267,-1.898374,-1.89848,-1.898591,-1.898725,-1.898853,-1.898967,-1.899074,-1.899223,-1.899327,-1.899433,-1.899548,-1.899635,-1.899781,-1.89992,-1.900058,-1.900192,-1.90027,-1.900416,-1.900575,-1.900727,-1.900881,-1.901024,-1.901142,-1.901262,-1.901402,-1.901559,-1.901657,-1.901689,-1.901805,-1.901917,-1.901975,-1.901985,-1.902104,-1.902194,-1.90223,-1.902327,-1.902388,-1.902503,-1.902651,-1.902785,-1.902881,-1.902924,-1.902997,-1.903088,-1.903162,-1.903225,-1.903293,-1.903376,-1.903481,-1.903588,-1.903635,-1.903687,-1.903744,-1.903818,-1.903949,-1.904049,-1.904177,-1.90426,-1.904325,-1.904417,-1.9045,-1.904579,-1.904649,-1.904713,-1.904802,-1.904855,-1.904945,-1.905034,-1.905107,-1.905188,-1.905258,-1.905342,-1.905419,-1.905487,-1.905549,-1.905617,-1.90573,-1.905822,-1.905906,-1.905991,-1.906081,-1.906139,-1.906263,-1.906393,-1.906487,-1.906547,-1.906588,-1.906666,-1.906705,-1.906802,-1.906933,-1.907034,-1.907101,-1.907173,-1.907256,-1.907325,-1.907388,-1.90746,-1.907562,-1.907667,-1.907765,-1.907868,-1.907976,-1.908064,-1.908148,-1.908242,-1.908288,-1.908375,-1.908488,-1.908553,-1.908639,-1.908706,-1.908794,-1.908911,-1.908995,-1.909095,-1.909148,-1.909215,-1.909266,-1.909328,-1.909387,-1.909402,-1.909336,-1.909256,-1.909143,-1.909023,-1.908931,-1.90881,-1.908662,-1.908542,-1.908416,-1.908266,-1.908116,-1.90797,-1.907839,-1.907699,-1.90755,-1.907419,-1.907291,-1.907168,-1.907021,-1.906871,-1.906728,-1.906609,-1.906501,-1.906427,-1.906304,-1.90614,-1.906044,-1.90595,-1.905841,-1.905751,-1.905635,-1.905545,-1.905429,-1.905347,-1.905284,-1.90516,-1.905054,-1.905044,-1.904983,-1.904918,-1.904819,-1.904749,-1.904614,-1.904486,-1.904385,-1.904296,-1.9042,-1.904102,-1.903951,-1.903826,-1.903708,-1.903582,-1.90344,-1.903351,-1.903214,-1.903066,-1.90293,-1.902784,-1.902642,-1.90252,-1.902422,-1.902317,-1.902162,-1.902049,-1.901909,-1.901821,-1.901725,-1.901633,-1.901497,-1.90147,-1.90133,-1.901269,-1.901148,-1.901073,-1.900987,-1.900912,-1.900882,-1.900884,-1.900835,-1.90073,-1.90066,-1.900702,-1.900735,-1.900695,-1.900647,-1.900606,-1.900539,-1.900604,-1.900591,-1.900544,-1.900501,-1.900514,-1.900487,-1.900427,-1.90042,-1.900405,-1.900267,-1.900214,-1.900098,-1.900019,-1.899903,-1.89983,-1.899739,-1.899659,-1.899583,-1.899462,-1.899328,-1.899217,-1.899075,-1.898921,-1.898787,-1.898639,-1.898487,-1.89833,-1.898169,-1.898016,-1.897868,-1.897739,-1.897579,-1.897442,-1.897291,-1.897173,-1.897058,-1.896922,-1.896811,-1.896671,-1.896538,-1.896441,-1.896329,-1.896189,-1.896031,-1.895886,-1.895737,-1.895638,-1.895626,-1.895523,-1.89539,-1.895251,-1.895344,-1.895278,-1.895241,-1.895303,-1.895256,-1.89524,-1.895203,-1.895187,-1.895217,-1.895113,-1.895164,-1.895191,-1.895257,-1.895307,-1.895296,-1.895278,-1.895286,-1.895233,-1.895088,-1.894935,-1.894768,-1.894625,-1.894465,-1.894315,-1.894158,-1.894005,-1.893843,-1.893705,-1.893552,-1.893396,-1.893249,-1.893133,-1.893014,-1.892889,-1.892752,-1.892633,-1.892517,-1.892407,-1.892268,-1.89212,-1.891962,-1.891806,-1.891644,-1.891489,-1.891358,-1.891193,-1.891043,-1.890908,-1.890775,-1.890641,-1.890483,-1.890339,-1.890203,-1.890037,-1.889884,-1.889743,-1.889675,-1.889533,-1.88939,-1.88923,-1.889079,-1.888934,-1.888784,-1.888644,-1.888485,-1.888319,-1.888166,-1.888019,-1.887864,-1.887721,-1.887566,-1.887416,-1.887272,-1.887112,-1.886967,-1.886849,-1.886717,-1.886573,-1.88641,-1.886266,-1.886132,-1.885998,-1.88586,-1.885745,-1.885595,-1.885467,-1.885333,-1.885176,-1.88504,-1.884899,-1.884766,-1.884632,-1.884528,-1.884376,-1.884234,-1.884082,-1.883941,-1.883804,-1.883649,-1.883492,-1.88335,-1.88329,-1.883142,-1.883021,-1.88289,-1.882764,-1.88261,-1.882468,-1.882329,-1.882188,-1.882063,-1.881939,-1.881837,-1.881679,-1.881526,-1.881379,-1.881228,-1.881075,-1.880934,-1.880816,-1.880656,-1.880502,-1.880373,-1.880236,-1.880107,-1.879958,-1.87981,-1.879651,-1.879504,-1.879337,-1.879171,-1.879043,-1.878879,-1.878727,-1.878578,-1.878415,-1.878248,-1.878089,-1.877923,-1.877781,-1.877618,-1.87745,-1.877297,-1.877152,-1.877001,-1.876843,-1.876705,-1.876538,-1.876399,-1.876251,-1.876303,-1.87629,-1.876364,-1.876482,-1.876583,-1.876645,-1.876748,-1.876788,-1.876835,-1.876923,-1.876927,-1.876909,-1.876966,-1.877015,-1.877065,-1.877086,-1.877172,-1.877224,-1.877277,-1.877362,-1.8774,-1.877482,-1.877532,-1.877553,-1.8776,-1.877634,-1.877624,-1.877536,-1.877616,-1.877639,-1.87762,-1.877637,-1.877704,-1.877766,-1.877824,-1.87791,-1.878032,-1.878071,-1.878142,-1.878228,-1.878215,-1.878309,-1.878347,-1.878344,-1.878373,-1.878494,-1.878577,-1.878646,-1.878654,-1.878723,-1.878658,-1.87864,-1.878712,-1.878669,-1.878644,-1.878623,-1.878659,-1.878738,-1.878752,-1.878779,-1.878824,-1.878752,-1.878772,-1.878818,-1.878859,-1.878949,-1.87907,-1.879127,-1.879126,-1.879196,-1.879296,-1.879357,-1.879421,-1.879517,-1.879582,-1.879602,-1.879581,-1.879635,-1.879652,-1.879623,-1.879683,-1.879798,-1.879854,-1.879938,-1.880024,-1.880092,-1.880151,-1.880223,-1.880353,-1.880475,-1.880551,-1.88057,-1.880527,-1.880482,-1.880456,-1.880424,-1.88045,-1.880422,-1.880473,-1.880407,-1.880414,-1.880453,-1.880569,-1.880726,-1.88088,-1.881035,-1.881181,-1.881327,-1.881471,-1.881625,-1.881762,-1.881897,-1.882,-1.881962,-1.882094,-1.882213,-1.8822,-1.882247,-1.882361,-1.882508,-1.882617,-1.88268,-1.882754,-1.88285,-1.882872,-1.882898,-1.882972,-1.882943,-1.882862,-1.882851,-1.882818,-1.882799,-1.882917,-1.882903,-1.882995,-1.883065,-1.883096,-1.883139,-1.883259,-1.883313,-1.883371,-1.883391,-1.883367,-1.883377,-1.883363,-1.883355,-1.883354,-1.883349,-1.883451,-1.883531,-1.883626,-1.8836,-1.883695,-1.883775,-1.883838,-1.883934,-1.884074,-1.884187,-1.884216,-1.884302,-1.884389,-1.884453,-1.884467,-1.884517,-1.884423,-1.884426,-1.884358,-1.884279,-1.884196,-1.884126,-1.884008,-1.88388,-1.883754,-1.883692,-1.883582,-1.883466,-1.883389,-1.883236,-1.883083,-1.882975,-1.882837,-1.882811,-1.882818,-1.882759,-1.882749,-1.88265,-1.882607,-1.882525,-1.882442,-1.882424,-1.882374,-1.882371,-1.882353,-1.882303,-1.882215,-1.882145,-1.882102,-1.88212,-1.882161,-1.882133,-1.882161,-1.882196,-1.88227,-1.882307,-1.88238,-1.882452,-1.882515,-1.882547,-1.882602,-1.882571,-1.882544,-1.882628,-1.882659,-1.882631,-1.882613,-1.882565,-1.882646,-1.882661,-1.882655,-1.88267,-1.882694,-1.882723,-1.88279,-1.882812,-1.882829,-1.88279,-1.8827,-1.882618,-1.882601,-1.882519,-1.882483,-1.882438,-1.882391,-1.882402,-1.882379,-1.88237,-1.882374,-1.882383,-1.882289,-1.882215,-1.882246,-1.882284,-1.882211,-1.882184,-1.882213,-1.882152,-1.882131,-1.882159,-1.882137,-1.882063,-1.88199,-1.881901,-1.881851,-1.881818,-1.881786,-1.881851,-1.881874,-1.881835,-1.881843,-1.881876,-1.881928,-1.881987,-1.882074,-1.882113,-1.882094,-1.882092,-1.882054,-1.881921,-1.88183,-1.88173,-1.881727,-1.881775,-1.881821,-1.881837,-1.881811,-1.8819,-1.881895,-1.88184,-1.881836,-1.881845,-1.881824,-1.881852,-1.881881,-1.881899,-1.881888,-1.881801,-1.881726,-1.881674,-1.881613,-1.881551,-1.881503,-1.881513,-1.881454,-1.881395,-1.881332,-1.881255,-1.881162,-1.881057,-1.880945,-1.880825,-1.880688,-1.880553,-1.880414,-1.880264,-1.880122,-1.879962,-1.879797,-1.879659,-1.879503,-1.879332,-1.879178,-1.879013,-1.878855,-1.878692,-1.878536,-1.878384,-1.878229,-1.878076,-1.877925,-1.877783,-1.877632,-1.877481,-1.877314,-1.877168,-1.877005,-1.876843,-1.876685,-1.876523,-1.876363,-1.876206,-1.876065,-1.875915,-1.875763,-1.87561,-1.875452,-1.875304,-1.875153,-1.87501,-1.874852,-1.874716,-1.874571,-1.874408,-1.874247,-1.874079,-1.873939,-1.873787,-1.873632,-1.873472,-1.873323,-1.873175,-1.873018,-1.872863,-1.872709,-1.872544,-1.872383,-1.872231,-1.872079,-1.871921,-1.871765,-1.87161,-1.871464,-1.87131,-1.871193,-1.87124,-1.871258,-1.871252,-1.87127,-1.871215,-1.871112,-1.87098,-1.870858,-1.870713,-1.870568,-1.87042,-1.870269,-1.870153,-1.870003,-1.869835,-1.869686,-1.869561,-1.869511,-1.869401,-1.869419,-1.869443,-1.86941,-1.869438,-1.869377,-1.869334,-1.869212,-1.869072,-1.868921,-1.868766,-1.868664,-1.868681,-1.868728,-1.868774,-1.868758,-1.868778,-1.86867,-1.868535,-1.86851,-1.868571,-1.868533,-1.868494,-1.868423,-1.868341,-1.868232,-1.868135,-1.868023,-1.867879,-1.867721,-1.867552,-1.867395,-1.867234,-1.867087,-1.866928,-1.866768,-1.866646,-1.866488,-1.866332,-1.866228,-1.866098,-1.86596,-1.865813,-1.865646,-1.865503,-1.865385,-1.865239,-1.865079,-1.864967,-1.864818,-1.864683,-1.864559,-1.864459,-1.864322,-1.864192,-1.864057,-1.863935,-1.86382,-1.863703,-1.863576,-1.863481,-1.863355,-1.863243,-1.863117,-1.862972,-1.862891,-1.862778,-1.862662,-1.862538,-1.862397,-1.862268,-1.862115,-1.861996,-1.861894,-1.861761,-1.861622,-1.861487,-1.861351,-1.861239,-1.861088,-1.860945,-1.860805,-1.860679,-1.860552,-1.86044,-1.860283,-1.860132,-1.859977,-1.859862,-1.859752,-1.859675,-1.859614,-1.859584,-1.859486,-1.859366,-1.859242,-1.859129,-1.859001,-1.858847,-1.858706,-1.85857,-1.858458,-1.858357,-1.858283,-1.85821,-1.858104,-1.858037,-1.857934,-1.85786,-1.857729,-1.857594,-1.857451,-1.857308,-1.857164,-1.857007,-1.856847,-1.856684,-1.856534,-1.856393,-1.85629,-1.856157,-1.856037,-1.8559,-1.85574,-1.85559,-1.85547,-1.85533,-1.855197,-1.855041,-1.854881,-1.854728,-1.854576,-1.854417,-1.854269,-1.854111,-1.85395,-1.853784,-1.853628,-1.853477,-1.85332,-1.853167,-1.853005,-1.852843,-1.852686,-1.852521,-1.852418,-1.852272,-1.852108,-1.851953,-1.85179,-1.851624,-1.851468,-1.851313,-1.851188,-1.851071,-1.850946,-1.850794,-1.850635,-1.850478,-1.850307,-1.850143,-1.849986,-1.849821,-1.849683,-1.849629,-1.849493,-1.849351,-1.849215,-1.849092,-1.848951,-1.84885,-1.848725,-1.848657,-1.848581,-1.848484,-1.848406,-1.848301,-1.848175,-1.848068,-1.847927,-1.847768,-1.84761,-1.847668,-1.847559,-1.847447,-1.847467,-1.847302,-1.847333,-1.847265,-1.847165,-1.847085,-1.846971,-1.846825,-1.846669,-1.846518,-1.846408,-1.846254,-1.846074,-1.846031,-1.845678,-1.845525,-1.845443,-1.845295,-1.845138,-1.844978,-1.844823,-1.844664,-1.84451,-1.844352,-1.844186,-1.844021,-1.843858,-1.843701,-1.843537,-1.84338,-1.843237,-1.843077,-1.842967,-1.842847,-1.842733,-1.842591,-1.842436,-1.842331,-1.842249,-1.842204,-1.842077,-1.841927,-1.84178,-1.841706,-1.841583,-1.84142,-1.841307,-1.841162,-1.841009,-1.840935,-1.840806,-1.840703,-1.840594,-1.840439,-1.840333,-1.840247,-1.840107,-1.839951,-1.839803,-1.839641,-1.839565,-1.839495,-1.839334,-1.839226,-1.839112,-1.839014,-1.838869,-1.838755,-1.838613,-1.838482,-1.838331,-1.838207,-1.838083,-1.837937,-1.837778,-1.837617,-1.837466,-1.837349,-1.837203,-1.837058,-1.836914,-1.836759,-1.836599,-1.836452,-1.836305,-1.836176,-1.836035,-1.835878,-1.835718,-1.835564,-1.835405,-1.835237,-1.835075,-1.834923,-1.834764,-1.834611,-1.834446,-1.834295,-1.83414,-1.834061,-1.833912,-1.833785,-1.833609,-1.833442,-1.833289,-1.833127,-1.832963,-1.832837,-1.832669,-1.832515,-1.832356,-1.832214,-1.832071,-1.83193,-1.831798,-1.831649,-1.831489,-1.831407,-1.831289,-1.831172,-1.831012,-1.830852,-1.83069,-1.830544,-1.830388,-1.830253,-1.830081,-1.829929,-1.829908,-1.829835,-1.829671,-1.829529,-1.829379,-1.829228,-1.829066,-1.828915,-1.828756,-1.828623,-1.828497,-1.828342,-1.828179,-1.828049,-1.827952,-1.827803,-1.827671,-1.827577,-1.827452,-1.827355,-1.827198,-1.827054,-1.826883,-1.826718,-1.826578,-1.826421,-1.82628,-1.826138,-1.825984,-1.825826,-1.82569,-1.825545,-1.825384,-1.825263,-1.825143,-1.825031,-1.824904,-1.824772,-1.824642,-1.824544,-1.824413,-1.824292,-1.82423,-1.824137,-1.82399,-1.823835,-1.823688,-1.823589,-1.823436,-1.823288,-1.823141,-1.822996,-1.822843,-1.822692,-1.822563,-1.822405,-1.822247,-1.822089,-1.821932,-1.82186,-1.821699,-1.821549,-1.821393,-1.82128,-1.821128,-1.820997,-1.820839,-1.820699,-1.820589,-1.820459,-1.820338,-1.820188,-1.820066,-1.819909,-1.819749,-1.819581,-1.819412,-1.819272,-1.819096,-1.818947,-1.818769,-1.818617,-1.818462,-1.818323,-1.818166,-1.818029,-1.817889,-1.817751,-1.8176,-1.817446,-1.8173,-1.817141,-1.816976,-1.816823,-1.816688,-1.816676,-1.816836,-1.816909,-1.817066,-1.817197,-1.81705,-1.816915,-1.816906,-1.81692,-1.81678,-1.816766,-1.816794,-1.816792,-1.816772,-1.81666,-1.816585,-1.816469,-1.816367,-1.81625,-1.816203,-1.816108,-1.81602,-1.816009,-1.816056,-1.816175,-1.815882,-1.815818,-1.815867,-1.815974,-1.815903,-1.815797,-1.815706,-1.8156,-1.815498,-1.815361,-1.81533,-1.815362,-1.815365,-1.815384,-1.815422,-1.815443,-1.815443,-1.815467,-1.815518,-1.815548,-1.815589,-1.815624,-1.815698,-1.815747,-1.815808,-1.815895,-1.816022,-1.816158,-1.816271,-1.816353,-1.816453,-1.816509,-1.816561,-1.816571,-1.816563],"lat":[53.49123,53.491163,53.491265,53.491349,53.491399,53.491367,53.491398,53.491396,53.491364,53.491342,53.491288,53.491235,53.491179,53.491122,53.491076,53.491011,53.490952,53.490869,53.490771,53.490722,53.49063,53.490541,53.490443,53.490352,53.49025,53.490155,53.490076,53.489973,53.489885,53.489794,53.489706,53.48963,53.48954,53.489477,53.489399,53.489349,53.489315,53.489243,53.489177,53.489089,53.489005,53.488924,53.488865,53.488818,53.488733,53.488674,53.488623,53.488565,53.48853,53.488483,53.488467,53.488426,53.488368,53.488321,53.4883,53.488255,53.4882,53.488142,53.488124,53.488055,53.488017,53.487996,53.487952,53.487896,53.487848,53.487803,53.487752,53.487716,53.487687,53.487642,53.48757,53.487527,53.487494,53.487461,53.487413,53.487372,53.487319,53.487262,53.487223,53.487181,53.487135,53.487089,53.487066,53.487028,53.486966,53.48689,53.486843,53.48677,53.48671,53.486644,53.486578,53.486525,53.486485,53.486414,53.486362,53.48629,53.486246,53.486192,53.486117,53.486038,53.485975,53.485917,53.485843,53.485779,53.485718,53.485646,53.485575,53.485482,53.48539,53.485308,53.485233,53.485149,53.485091,53.485032,53.484968,53.48491,53.484866,53.48482,53.484805,53.484753,53.484717,53.484706,53.484722,53.484727,53.484705,53.484681,53.484691,53.484683,53.48465,53.484661,53.484664,53.484696,53.484691,53.484705,53.484709,53.484669,53.484655,53.484639,53.484675,53.48468,53.484668,53.484632,53.484541,53.484519,53.484517,53.484431,53.484342,53.48427,53.484231,53.484167,53.484164,53.484109,53.484087,53.484067,53.484008,53.483979,53.483937,53.483889,53.483862,53.483843,53.483817,53.483773,53.483746,53.483691,53.483685,53.48368,53.483684,53.483647,53.483601,53.483579,53.483571,53.483594,53.483606,53.483599,53.483586,53.483586,53.483516,53.483514,53.483538,53.483491,53.483571,53.483487,53.483529,53.483525,53.483488,53.483424,53.483389,53.48339,53.483369,53.483337,53.483287,53.483277,53.483319,53.483318,53.483311,53.483276,53.483194,53.483094,53.483004,53.48292,53.482834,53.482759,53.482677,53.482581,53.48249,53.482395,53.482297,53.482201,53.4821,53.482007,53.481914,53.481818,53.481719,53.48162,53.481526,53.48149,53.481391,53.4813,53.481201,53.481098,53.480987,53.48089,53.480804,53.480709,53.480616,53.480526,53.480431,53.480332,53.480236,53.480142,53.480043,53.479988,53.479938,53.479898,53.479875,53.479832,53.479799,53.479756,53.47974,53.479695,53.479653,53.479618,53.479573,53.479535,53.479519,53.479489,53.47946,53.479409,53.479378,53.479358,53.479337,53.479352,53.479324,53.479296,53.479274,53.479232,53.47918,53.47914,53.4791,53.479069,53.478985,53.478946,53.478925,53.478889,53.478831,53.478785,53.478745,53.478706,53.478667,53.47862,53.478593,53.478582,53.478551,53.478535,53.47852,53.478503,53.478493,53.47847,53.47846,53.478431,53.478399,53.478382,53.47833,53.478291,53.47824,53.478203,53.478166,53.478152,53.478147,53.478173,53.478188,53.478165,53.47816,53.478163,53.478152,53.478108,53.478062,53.478028,53.477986,53.477952,53.477909,53.477867,53.477827,53.47782,53.477848,53.477876,53.477812,53.477742,53.477677,53.477606,53.477533,53.477455,53.477375,53.477298,53.477216,53.47715,53.477086,53.477029,53.476997,53.476931,53.476874,53.476796,53.476741,53.47667,53.476612,53.476584,53.476492,53.476429,53.47637,53.476284,53.476189,53.476093,53.475995,53.475904,53.475814,53.475726,53.47563,53.475588,53.475493,53.475408,53.475326,53.475267,53.4752,53.47522,53.47514,53.475104,53.475027,53.474973,53.474902,53.474856,53.474767,53.474687,53.474614,53.474524,53.474443,53.474353,53.474257,53.474161,53.474073,53.473988,53.473894,53.473803,53.473715,53.473618,53.473528,53.473438,53.473347,53.473249,53.473155,53.473062,53.47297,53.472882,53.472795,53.472724,53.472635,53.472542,53.472446,53.472356,53.472263,53.472163,53.472075,53.471986,53.471906,53.471832,53.471806,53.471744,53.471662,53.471626,53.471548,53.471549,53.471463,53.471395,53.471343,53.471279,53.47126,53.471187,53.471165,53.471094,53.471038,53.470964,53.470889,53.470824,53.470833,53.470766,53.470745,53.470679,53.470648,53.470577,53.470505,53.470428,53.470395,53.47035,53.470281,53.470237,53.470198,53.470154,53.470132,53.470109,53.470087,53.470029,53.469981,53.469954,53.469933,53.46991,53.469882,53.469857,53.469829,53.469847,53.469848,53.469837,53.469802,53.469761,53.469768,53.469757,53.469751,53.469718,53.469712,53.469688,53.469693,53.469684,53.469684,53.469659,53.469651,53.469633,53.469611,53.469602,53.469564,53.469539,53.469493,53.469453,53.469425,53.469399,53.469367,53.469336,53.469337,53.469324,53.469307,53.469308,53.469327,53.469357,53.469351,53.469326,53.469326,53.469291,53.469265,53.469247,53.46923,53.469196,53.469184,53.469152,53.469108,53.469064,53.46902,53.469021,53.469091,53.46918,53.469241,53.469209,53.469143,53.46914,53.469104,53.469067,53.469073,53.469089,53.469131,53.469121,53.469123,53.469158,53.469149,53.469131,53.469155,53.469195,53.469208,53.469217,53.469256,53.469194,53.469173,53.469129,53.469091,53.46908,53.469065,53.469056,53.469012,53.469021,53.469079,53.469066,53.469008,53.468977,53.468965,53.468995,53.468944,53.468914,53.468883,53.46889,53.468903,53.468877,53.468888,53.468856,53.468831,53.468793,53.468755,53.468687,53.468613,53.468579,53.468533,53.4685,53.468428,53.468352,53.468341,53.468327,53.468274,53.468235,53.468188,53.468142,53.468062,53.467986,53.467938,53.467923,53.46791,53.467924,53.467935,53.467921,53.467892,53.467888,53.467855,53.467832,53.467762,53.467693,53.467626,53.467562,53.467516,53.467443,53.467378,53.467289,53.467198,53.467113,53.467031,53.466948,53.466855,53.466767,53.466685,53.466619,53.466553,53.466485,53.466401,53.466322,53.46625,53.466217,53.4662,53.466152,53.466089,53.466039,53.465967,53.465902,53.465819,53.465729,53.465658,53.465602,53.465518,53.465439,53.465373,53.465286,53.465195,53.465109,53.465025,53.464965,53.464875,53.464791,53.464706,53.464685,53.464631,53.464594,53.46468,53.464741,53.464723,53.46467,53.464681,53.464679,53.464735,53.464751,53.464794,53.464798,53.464813,53.464842,53.464846,53.46485,53.464871,53.464889,53.464893,53.464911,53.464966,53.464958,53.464986,53.465015,53.465014,53.465045,53.465068,53.465069,53.465077,53.465074,53.465082,53.465108,53.465132,53.46518,53.465231,53.465232,53.465272,53.465314,53.46533,53.465324,53.465349,53.46537,53.465395,53.465422,53.465452,53.465459,53.465409,53.465393,53.465396,53.46538,53.465361,53.465348,53.465313,53.465292,53.465281,53.465263,53.46525,53.465264,53.46532,53.465396,53.465437,53.465458,53.465487,53.465536,53.465593,53.465613,53.465633,53.465693,53.465751,53.465752,53.465745,53.465785,53.465818,53.465832,53.465885,53.465955,53.466004,53.466031,53.466053,53.466048,53.466033,53.466015,53.466053,53.466071,53.466093,53.466112,53.466114,53.466129,53.466183,53.466159,53.466173,53.466178,53.466185,53.466176,53.466147,53.466171,53.466212,53.466216,53.46619,53.466148,53.466133,53.466108,53.466085,53.46607,53.465991,53.465975,53.465907,53.465871,53.465886,53.465898,53.465891,53.465861,53.465835,53.465757,53.46569,53.465641,53.465543,53.465454,53.465364,53.46527,53.465168,53.465077,53.464984,53.464902,53.464809,53.464711,53.464652,53.464569,53.464484,53.464431,53.464372,53.464292,53.464204,53.46411,53.464051,53.463998,53.463923,53.463842,53.46375,53.463663,53.463584,53.463504,53.463413,53.463315,53.463228,53.463137,53.463049,53.462994,53.462909,53.462823,53.462733,53.462639,53.462548,53.462455,53.462363,53.462274,53.462191,53.462145,53.462112,53.462031,53.461962,53.46188,53.461791,53.461704,53.461612,53.461529,53.461444,53.461359,53.461319,53.461229,53.461141,53.461051,53.460957,53.460914,53.460911,53.460842,53.460746,53.460646,53.460578,53.460499,53.460405,53.460336,53.460269,53.460201,53.46011,53.460011,53.459918,53.459818,53.459748,53.459713,53.45966,53.459587,53.459509,53.459424,53.45934,53.459259,53.459176,53.459096,53.459024,53.458984,53.458906,53.458811,53.458716,53.458628,53.45854,53.458443,53.458354,53.458268,53.458199,53.458106,53.458015,53.457945,53.457865,53.457768,53.457691,53.457604,53.457511,53.457417,53.457346,53.457251,53.457168,53.457103,53.457029,53.456947,53.456855,53.45677,53.456745,53.456655,53.456558,53.456479,53.456433,53.456339,53.456268,53.456196,53.456099,53.456027,53.455966,53.455952,53.455964,53.455897,53.455836,53.45574,53.455666,53.455614,53.455532,53.455484,53.4554,53.455301,53.455209,53.455126,53.455086,53.454995,53.454915,53.454826,53.454845,53.454788,53.454702,53.454621,53.454555,53.454503,53.45441,53.454328,53.454271,53.454203,53.454109,53.45402,53.453943,53.453856,53.453787,53.453702,53.453628,53.453576,53.453505,53.453432,53.453361,53.453332,53.453254,53.453189,53.453141,53.453099,53.453043,53.453004,53.452956,53.452906,53.452875,53.452844,53.452764,53.452743,53.452682,53.452607,53.452521,53.452453,53.452358,53.452273,53.452207,53.452169,53.452095,53.452009,53.451921,53.451848,53.451766,53.451667,53.451614,53.451514,53.451505,53.45141,53.451332,53.451282,53.451218,53.45113,53.451049,53.45105,53.450959,53.450872,53.450779,53.450689,53.450591,53.450493,53.450402,53.45031,53.450209,53.45012,53.450018,53.449923,53.449832,53.449742,53.449702,53.449657,53.449592,53.449546,53.449502,53.449484,53.449412,53.449367,53.449344,53.449299,53.449275,53.449216,53.449181,53.449148,53.449071,53.448985,53.448891,53.448809,53.448783,53.448721,53.448622,53.448534,53.448438,53.448358,53.448304,53.448259,53.448196,53.448132,53.448086,53.448057,53.447992,53.447922,53.447823,53.447723,53.447673,53.447601,53.447532,53.447442,53.447348,53.447251,53.447173,53.447118,53.447032,53.446955,53.446854,53.446806,53.446733,53.446647,53.446544,53.446449,53.446367,53.446297,53.446238,53.446141,53.446061,53.445969,53.445877,53.445776,53.445688,53.445593,53.445522,53.445434,53.44534,53.445238,53.445146,53.445068,53.444981,53.444873,53.444785,53.44471,53.444636,53.444564,53.444499,53.444426,53.444346,53.444301,53.444227,53.444135,53.444054,53.44399,53.443928,53.443849,53.443782,53.443723,53.443664,53.443589,53.443498,53.443433,53.443367,53.443301,53.443236,53.443147,53.443057,53.44299,53.44292,53.442836,53.442781,53.442702,53.442624,53.442555,53.442477,53.442414,53.442346,53.442307,53.442236,53.442163,53.442108,53.442037,53.441974,53.441911,53.441847,53.441778,53.441721,53.441675,53.441611,53.441564,53.441497,53.441431,53.441361,53.44132,53.441285,53.44121,53.441131,53.441085,53.441023,53.440967,53.440895,53.44083,53.440799,53.440722,53.440647,53.440589,53.440531,53.440497,53.440436,53.440345,53.44026,53.440212,53.440196,53.440116,53.440047,53.439988,53.439909,53.439836,53.439784,53.439743,53.439692,53.439632,53.439553,53.439489,53.439404,53.439327,53.439262,53.439205,53.439127,53.439056,53.439002,53.438943,53.438868,53.43878,53.438688,53.438603,53.438536,53.438478,53.438419,53.438337,53.438265,53.438203,53.438125,53.438061,53.438001,53.437934,53.437853,53.437765,53.437691,53.437618,53.437532,53.437444,53.437364,53.437281,53.437208,53.437129,53.437061,53.436976,53.436896,53.436824,53.436769,53.436672,53.436588,53.436501,53.436418,53.43633,53.436239,53.43614,53.436048,53.435956,53.435867,53.435781,53.435697,53.435612,53.435527,53.435457,53.435365,53.435276,53.435178,53.435089,53.435009,53.434923,53.434838,53.434754,53.434667,53.434571,53.434484,53.434443,53.434375,53.434295,53.434202,53.434125,53.434034,53.433941,53.433858,53.433766,53.433679,53.433585,53.433492,53.433391,53.433294,53.433199,53.433104,53.433007,53.432912,53.432824,53.432776,53.432687,53.432597,53.432498,53.432397,53.432296,53.432206,53.432116,53.43202,53.431931,53.431849,53.431767,53.431707,53.431622,53.43153,53.431453,53.431374,53.431274,53.431181,53.431094,53.431005,53.430917,53.430836,53.430763,53.430656,53.430563,53.430464,53.430374,53.43028,53.430191,53.430114,53.430051,53.429979,53.429895,53.429818,53.429736,53.429641,53.429554,53.429476,53.429383,53.429319,53.429235,53.429152,53.429066,53.428968,53.428907,53.428808,53.428723,53.428633,53.428544,53.428461,53.428376,53.428326,53.42826,53.42818,53.428109,53.428031,53.427961,53.427882,53.427822,53.427732,53.42765,53.427594,53.427538,53.427478,53.427424,53.427359,53.427296,53.42723,53.427156,53.427051,53.426965,53.426904,53.426819,53.426734,53.426637,53.426538,53.426447,53.426409,53.426351,53.426274,53.426187,53.426102,53.426074,53.426085,53.426075,53.426016,53.426032,53.425993,53.425945,53.425918,53.425927,53.425925,53.425886,53.425972,53.426003,53.426031,53.425992,53.425943,53.425938,53.425912,53.425911,53.425932,53.425972,53.425984,53.425977,53.425984,53.42593,53.425902,53.425898,53.425868,53.425866,53.425853,53.425825,53.425775,53.425739,53.425679,53.425615,53.42557,53.425524,53.425488,53.425463,53.425403,53.425339,53.42529,53.42523,53.42514,53.425048,53.424968,53.424896,53.424818,53.424743,53.424691,53.42463,53.424568,53.42451,53.424478,53.424466,53.424402,53.42435,53.424309,53.42425,53.4242,53.424171,53.424134,53.42407,53.423988,53.423923,53.423868,53.423816,53.423768,53.423765,53.423739,53.423686,53.423637,53.423598,53.423551,53.42349,53.423435,53.423345,53.423261,53.4232,53.42314,53.423104,53.423037,53.422957,53.422867,53.422779,53.422703,53.422637,53.42256,53.422487,53.422428,53.422392,53.42233,53.422257,53.422184,53.422149,53.422094,53.422001,53.42191,53.421878,53.421825,53.421792,53.421732,53.421669,53.421604,53.42156,53.421548,53.42151,53.421441,53.421386,53.421323,53.421299,53.42128,53.421242,53.4212,53.421122,53.421035,53.42098,53.420921,53.420868,53.4208,53.42072,53.420674,53.420633,53.420572,53.42048,53.420418,53.420374,53.420344,53.420311,53.420284,53.420276,53.420293,53.420301,53.420301,53.420296,53.420281,53.420233,53.420191,53.420168,53.420167,53.420186,53.420183,53.420184,53.420161,53.420144,53.420115,53.420128,53.420175,53.420207,53.420212,53.420213,53.420207,53.420187,53.420163,53.420169,53.420143,53.42013,53.420131,53.42013,53.420128,53.420104,53.420078,53.420055,53.420046,53.42,53.419971,53.419928,53.419869,53.419838,53.419805,53.419729,53.419658,53.419605,53.419549,53.419487,53.419419,53.419354,53.419281,53.419237,53.419167,53.419086,53.419015,53.418964,53.418893,53.418812,53.41875,53.418711,53.41867,53.41862,53.418571,53.41852,53.418432,53.418386,53.418372,53.418386,53.418387,53.418345,53.41828,53.418212,53.418178,53.418141,53.41806,53.417965,53.417893,53.417823,53.417734,53.417739,53.417682,53.4176,53.417509,53.417429,53.417345,53.417267,53.417224,53.417161,53.417079,53.416977,53.416887,53.416808,53.416718,53.416626,53.416532,53.416451,53.416382,53.416308,53.416213,53.416117,53.416034,53.415952,53.415891,53.415824,53.415768,53.415691,53.415609,53.415524,53.415448,53.41537,53.41529,53.415199,53.415126,53.415036,53.414952,53.414872,53.414793,53.414713,53.414629,53.414541,53.414461,53.414371,53.414278,53.414184,53.414114,53.414037,53.41395,53.413872,53.413786,53.413741,53.413688,53.413625,53.413539,53.41345,53.413354,53.413264,53.413173,53.413098,53.413035,53.412959,53.412877,53.41279,53.41271,53.412625,53.412538,53.412457,53.412379,53.412306,53.412225,53.412155,53.412078,53.412003,53.411926,53.411854,53.41176,53.411681,53.411612,53.411528,53.411454,53.411365,53.411279,53.411207,53.411127,53.411049,53.410962,53.410872,53.410777,53.410693,53.410606,53.410515,53.410421,53.410342,53.410281,53.410223,53.41015,53.410092,53.410054,53.409984,53.409935,53.409924,53.409872,53.409838,53.409778,53.40972,53.409686,53.409629,53.409574,53.409514,53.409474,53.409462,53.409425,53.409364,53.409288,53.4092,53.409134,53.409096,53.409012,53.408935,53.408871,53.408793,53.408724,53.408647,53.408587,53.408511,53.408428,53.408359,53.408282,53.408189,53.408102,53.408006,53.407926,53.407838,53.407784,53.407729,53.40766,53.407583,53.407509,53.407439,53.407411,53.407357,53.407285,53.407234,53.407203,53.407125,53.407088,53.407063,53.407011,53.406979,53.406949,53.406895,53.406824,53.406803,53.406793,53.406807,53.406768,53.406725,53.406656,53.406654,53.406609,53.406567,53.406525,53.406477,53.406421,53.406365,53.406276,53.406192,53.406097,53.406006,53.405921,53.405839,53.405756,53.405662,53.40557,53.405482,53.40539,53.405298,53.405216,53.405126,53.405035,53.404946,53.404857,53.404763,53.404674,53.404581,53.404486,53.404398,53.404349,53.404308,53.40424,53.404162,53.404094,53.404007,53.403923,53.403844,53.403764,53.403707,53.403665,53.403592,53.403537,53.403499,53.403458,53.403414,53.403377,53.403338,53.403307,53.403296,53.40327,53.403223,53.4032,53.403161,53.403124,53.403058,53.402999,53.402942,53.402878,53.402827,53.40278,53.402702,53.40263,53.402589,53.402551,53.402524,53.402486,53.402411,53.402316,53.402249,53.402198,53.402156,53.402083,53.401999,53.401907,53.401825,53.401734,53.401638,53.401544,53.401447,53.401359,53.401286,53.401193,53.401098,53.401012,53.400927,53.400833,53.400735,53.40064,53.400551,53.400523,53.40055,53.400562,53.400615,53.400597,53.400628,53.400616,53.400617,53.400623,53.400582,53.400551,53.400534,53.400503,53.400443,53.400387,53.400335,53.40029,53.400234,53.400177,53.400113,53.40006,53.400014,53.399981,53.399988,53.399997,53.399974,53.399925,53.399913,53.399873,53.399821,53.399779,53.399736,53.399707,53.399666,53.399625,53.399645,53.399621,53.399579,53.399497,53.399452,53.399488,53.399512,53.399544,53.399594,53.399623,53.39967,53.399676,53.399676,53.399641,53.399616,53.399624,53.39959,53.399564,53.399526,53.399486,53.399454,53.399417,53.399361,53.399315,53.399272,53.399264,53.399222,53.399166,53.399114,53.39906,53.399001,53.398983,53.398927,53.398882,53.39885,53.398799,53.398736,53.398683,53.398637,53.398571,53.398538,53.398502,53.398484,53.398432,53.398394,53.398389,53.398392,53.398355,53.39827,53.398234,53.398175,53.398127,53.398072,53.398044,53.398012,53.397958,53.397909,53.397851,53.397801,53.397733,53.397734,53.397743,53.397696,53.397687,53.397674,53.39764,53.397582,53.397567,53.397521,53.397468,53.39741,53.39736,53.397326,53.397285,53.397281,53.397259,53.397256,53.39726,53.397312,53.397322,53.397295,53.397282,53.397277,53.397272,53.397246,53.397225,53.397194,53.397193,53.397193,53.397224,53.39726,53.397306,53.397302,53.397344,53.397363,53.397313,53.397296,53.397222,53.397123,53.397045,53.396986,53.396918,53.396835,53.396763,53.396676,53.396583,53.396505,53.396409,53.396316,53.396226,53.396137,53.396045,53.395948,53.395864,53.395776,53.395689,53.395605,53.395515,53.395438,53.395351,53.395259,53.395171,53.395077,53.394986,53.394907,53.394821,53.394723,53.394632,53.394541,53.394459,53.394366,53.394282,53.3942,53.39414,53.394044,53.393958,53.393883,53.393788,53.393713,53.393624,53.393596,53.393505,53.393444,53.393363,53.393283,53.393187,53.393105,53.393019,53.392927,53.39284,53.392743,53.392648,53.39255,53.392459,53.392374,53.392273,53.39218,53.392093,53.392009,53.391919,53.391829,53.391734,53.391657,53.391603,53.391512,53.39142,53.391336,53.39126,53.391165,53.391076,53.390997,53.390908,53.390806,53.390711,53.390621,53.39052,53.390428,53.39034,53.390269,53.390179,53.390104,53.390023,53.389941,53.389856,53.389775,53.389713,53.389658,53.389575,53.389484,53.389387,53.3893,53.389199,53.3891,53.389002,53.388912,53.388825,53.388742,53.388652,53.388562,53.388503,53.388527,53.388532,53.388536,53.388505,53.388452,53.388417,53.38843,53.388384,53.388322,53.388246,53.388155,53.388103,53.388036,53.387946,53.387856,53.387797,53.387764,53.3877,53.387612,53.387522,53.387443,53.387345,53.387256,53.387168,53.387072,53.386993,53.386897,53.386805,53.386713,53.386657,53.386566,53.38648,53.386393,53.386297,53.386203,53.386137,53.386044,53.385953,53.385861,53.385772,53.38568,53.385583,53.385488,53.385387,53.385296,53.385228,53.38515,53.385076,53.384985,53.384909,53.384829,53.384741,53.384663,53.384608,53.38454,53.384437,53.384356,53.384274,53.384188,53.384097,53.384008,53.383929,53.383823,53.383735,53.38365,53.383572,53.38349,53.383429,53.383376,53.383327,53.383245,53.383174,53.383116,53.38303,53.38299,53.382957,53.382885,53.38283,53.38274,53.38265,53.382558,53.382458,53.382383,53.382293,53.382212,53.382128,53.382028,53.381932,53.381837,53.381786,53.381699,53.381617,53.381524,53.381437,53.38134,53.381247,53.381148,53.381057,53.380961,53.380881,53.380782,53.380698,53.38061,53.380523,53.380434,53.380419,53.380321,53.380246,53.380163,53.380068,53.380097,53.380193,53.380233,53.380148,53.380048,53.379951,53.379852,53.379761,53.379662,53.379572,53.379483,53.379385,53.379295,53.379213,53.379136,53.379039,53.378958,53.378868,53.378773,53.378671,53.378569,53.378476,53.378377,53.378283,53.378187,53.378101,53.378021,53.377929,53.377844,53.37776,53.377671,53.377581,53.377498,53.377404,53.377309,53.377214,53.377135,53.377055,53.376976,53.37689,53.376794,53.376701,53.376605,53.376512,53.376416,53.37632,53.376222,53.376126,53.376043,53.375964,53.375866,53.375776,53.37568,53.375589,53.375538,53.37546,53.375381,53.375285,53.375198,53.375103,53.375012,53.374916,53.374838,53.374747,53.374656,53.374559,53.374461,53.374363,53.374267,53.374177,53.37408,53.37399,53.373909,53.373828,53.373737,53.373642,53.373559,53.373471,53.373459,53.373364,53.373272,53.373185,53.3731,53.373029,53.372955,53.372889,53.372821,53.372778,53.372725,53.372692,53.372644,53.372602,53.372586,53.372563,53.372524,53.372523,53.372515,53.37253,53.37254,53.372559,53.372576,53.372594,53.372586,53.372615,53.372658,53.37268,53.372712,53.372728,53.372736,53.372758,53.372785,53.372772,53.372781,53.372794,53.372809,53.37284,53.372851,53.372895,53.372927,53.372918,53.372903,53.372931,53.372951,53.372901,53.37286,53.37283,53.372786,53.372761,53.372749,53.372748,53.372766,53.372807,53.372809,53.372838,53.372855,53.372888,53.372914,53.372913,53.372912,53.37293,53.372919,53.372896,53.37292,53.372901,53.372894,53.372903,53.372934,53.372979,53.372992,53.372936,53.372941,53.373038,53.373136,53.373229,53.37332,53.373387,53.373434,53.373488,53.373545,53.373577,53.373538,53.373519,53.373505,53.373478,53.373489,53.37346,53.373408,53.373332,53.373267,53.373171,53.373079,53.372985,53.372892,53.372803,53.372715,53.372685,53.37272,53.372728,53.372756,53.372689,53.372596,53.372507,53.372409,53.372313,53.372224,53.372156,53.372107,53.372025,53.371931,53.371835,53.371748,53.371658,53.371581,53.371513,53.371434,53.371356,53.371325,53.371284,53.371274,53.371249,53.371223,53.371198,53.371194,53.371158,53.371092,53.371108,53.371069,53.371004,53.370956,53.37092,53.37087,53.370838,53.370803,53.370734,53.370692,53.370654,53.370581,53.370531,53.37049,53.370435,53.370366,53.370296,53.370237,53.370172,53.3701,53.370036,53.369968,53.369909,53.369838,53.369767,53.3697,53.369647,53.369612,53.369528,53.369452,53.369395,53.36933,53.369283,53.36923,53.369181,53.369109,53.369026,53.368981,53.368924,53.368865,53.368807,53.368745,53.368708,53.368669,53.368622,53.368557,53.368501,53.36844,53.368394,53.368366,53.368351,53.368289,53.368227,53.368139,53.368053,53.367961,53.367873,53.367814,53.367751,53.367681,53.367631,53.367588,53.367552,53.367507,53.367442,53.367369,53.36729,53.367209,53.367145,53.367063,53.366982,53.366895,53.366845,53.366784,53.366744,53.3667,53.366654,53.366623,53.36659,53.36658,53.36656,53.366593,53.366525,53.366469,53.366411,53.366371,53.366345,53.366323,53.366265,53.366211,53.366163,53.366146,53.366139,53.366116,53.366085,53.366063,53.366044,53.366014,53.365999,53.365972,53.365955,53.365941,53.365923,53.365925,53.365921,53.365914,53.36587,53.365858,53.365932,53.365964,53.365959,53.365953,53.365946,53.365947,53.365959,53.365911,53.365857,53.365791,53.365731,53.365723,53.365729,53.365728,53.365719,53.365721,53.365685,53.365658,53.365621,53.365602,53.365559,53.365522,53.365482,53.36543,53.365369,53.365299,53.365242,53.365153,53.365056,53.364975,53.364889,53.364819,53.364758,53.364689,53.364634,53.364661,53.364652,53.364612,53.364548,53.364455,53.364356,53.36436,53.364454,53.364547,53.36463,53.364715,53.364785,53.364833,53.364866,53.364903,53.364955,53.364958,53.364943,53.364907,53.364976,53.36501,53.365029,53.364983,53.365022,53.365018,53.364998,53.365001,53.364989,53.364975,53.364952,53.364942,53.364937,53.364963,53.364956,53.36497,53.365,53.365018,53.365083,53.36514,53.365204,53.365236,53.36527,53.365351,53.365439,53.365532,53.365583,53.36561,53.365629,53.36571,53.365764,53.365754,53.365817,53.36578,53.365779,53.365858,53.365918,53.365986,53.36606,53.366083,53.366063,53.366149,53.366192,53.366143,53.366108,53.366103,53.36619,53.366274,53.3663,53.366376,53.366439,53.366518,53.36656,53.36663,53.366671,53.366717,53.366694,53.366644,53.366593,53.366548,53.366561,53.366573,53.366586,53.366644,53.366609,53.36657,53.36652,53.366542,53.366553,53.366581,53.366605,53.366655,53.366615,53.366579,53.366586,53.366589,53.366598,53.3666,53.366612,53.36663,53.366623,53.366657,53.366643,53.366677,53.366703,53.366725,53.366741,53.366792,53.366777,53.366774,53.366802,53.366841,53.366884,53.366935,53.366965,53.366998,53.367007,53.367048,53.36708,53.367117,53.367178,53.367203,53.36723,53.36732,53.367394,53.367451,53.367464,53.367497,53.367513,53.367558,53.367587,53.367629,53.367609,53.36762,53.367718,53.367797,53.367784,53.36782,53.367853,53.367909,53.367961,53.368024,53.368074,53.368121,53.368188,53.368223,53.368252,53.368305,53.368378,53.368417,53.368473,53.368546,53.3686,53.368673,53.368695,53.368729,53.368746,53.368761,53.368816,53.368844,53.368898,53.368945,53.368975,53.368952,53.369013,53.369041,53.369079,53.369139,53.369193,53.369257,53.369313,53.369383,53.369449,53.36952,53.369574,53.369641,53.369723,53.369808,53.369843,53.369825,53.36985,53.369922,53.369952,53.369938,53.369967,53.37001,53.370018,53.37003,53.370082,53.370118,53.370146,53.370155,53.370178,53.370211,53.370193,53.370168,53.370152,53.370078,53.370038,53.370089,53.370154,53.370192,53.370267,53.370321,53.370385,53.370423,53.370496,53.370468,53.370472,53.370472,53.370435,53.370383,53.370381,53.370419,53.370415,53.370421,53.370442,53.370406,53.370399,53.370437,53.370482,53.370427,53.370397,53.370371,53.370406,53.370401,53.370417,53.370456,53.3705,53.37048,53.370474,53.370442,53.370414,53.370389,53.37043,53.37048,53.370574,53.370585,53.370627,53.370625,53.370533,53.370528,53.370431,53.370341,53.370261,53.370188,53.370113,53.370051,53.369948,53.369863,53.369788,53.369695,53.369654,53.369598,53.369388,53.369301,53.369215,53.369144,53.369063,53.36898,53.368885,53.368805,53.36873,53.368687,53.368596,53.368505,53.368413,53.368318,53.368231,53.368133,53.368031,53.367935,53.367839,53.36774,53.367647,53.367546,53.367464,53.367375,53.367288,53.36721,53.367145,53.367104,53.367037,53.366959,53.366885,53.366799,53.366711,53.366612,53.366529]}]]],null,null,{"interactive":true,"className":"","stroke":true,"color":"#03F","weight":5,"opacity":0.5,"fill":false,"fillColor":"#03F","fillOpacity":0.2,"smoothFactor":1,"noClip":false},null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"limits":{"lat":[53.364356,53.491399],"lng":[-1.917855,-1.81533]}},"evals":[],"jsHooks":[]}</script>
</div>
</div>
</div>
<div id="tabset-13-2" class="tab-pane" aria-labelledby="tabset-13-2-tab">
<div class="cell" data-code-link="true" data-code-tools="true">
<details class="code-fold">
<summary>Code</summary>
<div class="sourceCode cell-code" id="cb26" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb26-1">plot_gpx_df(gps_df<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>gpx[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-08-25"</span>], colors<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"speed"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_948a38572a1498d97f3b685e6597b483 {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
            <div class=&quot;folium-map&quot; id=&quot;map_948a38572a1498d97f3b685e6597b483&quot; ></div>
        
</body>
<script>
    
    
            var map_948a38572a1498d97f3b685e6597b483 = L.map(
                &quot;map_948a38572a1498d97f3b685e6597b483&quot;,
                {
                    center: [53.4234351358349, -1.8770262851782364],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 10,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_bdd3dc5911d91ff887677fcf86463076 = L.tileLayer(
                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 19,
  &quot;maxNativeZoom&quot;: 19,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;\u0026copy; \u003ca href=\&quot;https://www.openstreetmap.org/copyright\&quot;\u003eOpenStreetMap\u003c/a\u003e contributors&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_bdd3dc5911d91ff887677fcf86463076.addTo(map_948a38572a1498d97f3b685e6597b483);
        
    
            var tile_layer_6c70fd1260045d7a873123fcb5a4cbfc = L.tileLayer(
                &quot;http://tile.stamen.com/terrain/{z}/{x}/{y}.jpg&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 18,
  &quot;maxNativeZoom&quot;: 18,
  &quot;noWrap&quot;: false,
  &quot;attribution&quot;: &quot;terrain-bcg&quot;,
  &quot;subdomains&quot;: &quot;abc&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_6c70fd1260045d7a873123fcb5a4cbfc.addTo(map_948a38572a1498d97f3b685e6597b483);
        
    
            var color_line_5a0f0329bd74daac7b4ebc39c67f99d3 = L.featureGroup(
                {
}
            );
        
    
            var poly_line_8a7586a7bf2cf04a9cbe54b8cf94e916 = L.polyline(
                [[[53.49123, -1.893824], [53.491163, -1.893807]], [[53.491399, -1.893526], [53.491367, -1.893471]], [[53.491398, -1.893629], [53.491396, -1.893781]], [[53.491364, -1.893932], [53.491342, -1.894078]], [[53.490771, -1.895113], [53.490722, -1.895123]], [[53.490722, -1.895123], [53.49063, -1.895163]], [[53.488321, -1.898146], [53.4883, -1.89821]], [[53.488255, -1.898354], [53.4882, -1.898501]], [[53.484805, -1.906611], [53.484753, -1.906752]], [[53.484661, -1.908223], [53.484664, -1.908384]], [[53.484167, -1.910855], [53.484164, -1.910954]], [[53.483571, -1.915508], [53.483487, -1.91544]], [[53.483487, -1.91544], [53.483529, -1.915594]], [[53.481526, -1.917461], [53.48149, -1.917448]], [[53.479324, -1.914061], [53.479296, -1.914139]], [[53.479274, -1.91429], [53.479232, -1.914437]], [[53.477375, -1.907435], [53.477298, -1.907354]], [[53.477298, -1.907354], [53.477216, -1.907286]], [[53.476874, -1.906543], [53.476796, -1.906461]], [[53.476796, -1.906461], [53.476741, -1.90634]], [[53.476741, -1.90634], [53.47667, -1.906237]], [[53.47667, -1.906237], [53.476612, -1.906116]], [[53.476429, -1.906053], [53.47637, -1.905936]], [[53.47637, -1.905936], [53.476284, -1.905951]], [[53.476284, -1.905951], [53.476189, -1.90599]], [[53.475814, -1.905971], [53.475726, -1.905927]], [[53.475726, -1.905927], [53.47563, -1.905917]], [[53.475408, -1.9059], [53.475326, -1.905968]], [[53.475326, -1.905968], [53.475267, -1.906071]], [[53.475267, -1.906071], [53.4752, -1.906174]], [[53.474767, -1.906702], [53.474687, -1.906657]], [[53.474687, -1.906657], [53.474614, -1.90656]], [[53.474614, -1.90656], [53.474524, -1.906582]], [[53.474524, -1.906582], [53.474443, -1.906528]], [[53.474073, -1.906396], [53.473988, -1.906327]], [[53.473988, -1.906327], [53.473894, -1.906299]], [[53.473894, -1.906299], [53.473803, -1.906298]], [[53.473803, -1.906298], [53.473715, -1.906262]], [[53.473715, -1.906262], [53.473618, -1.906254]], [[53.473618, -1.906254], [53.473528, -1.906213]], [[53.473528, -1.906213], [53.473438, -1.906182]], [[53.473438, -1.906182], [53.473347, -1.906146]], [[53.473155, -1.90612], [53.473062, -1.906064]], [[53.473062, -1.906064], [53.47297, -1.906035]], [[53.47297, -1.906035], [53.472882, -1.906001]], [[53.472882, -1.906001], [53.472795, -1.905955]], [[53.472795, -1.905955], [53.472724, -1.905928]], [[53.472724, -1.905928], [53.472635, -1.905892]], [[53.472635, -1.905892], [53.472542, -1.905878]], [[53.472542, -1.905878], [53.472446, -1.905883]], [[53.472446, -1.905883], [53.472356, -1.905845]], [[53.472356, -1.905845], [53.472263, -1.905807]], [[53.471832, -1.905487], [53.471806, -1.905424]], [[53.471744, -1.905308], [53.471662, -1.90523]], [[53.471662, -1.90523], [53.471626, -1.905201]], [[53.471463, -1.905041], [53.471395, -1.904919]], [[53.471038, -1.904313], [53.470964, -1.904213]], [[53.470964, -1.904213], [53.470889, -1.904115]], [[53.470889, -1.904115], [53.470824, -1.904006]], [[53.470428, -1.903323], [53.470395, -1.903176]], [[53.469326, -1.895426], [53.469326, -1.895362]], [[53.469326, -1.895362], [53.469291, -1.895203]], [[53.469247, -1.894887], [53.46923, -1.894737]], [[53.469091, -1.893593], [53.46918, -1.893545]], [[53.46918, -1.893545], [53.469241, -1.893428]], [[53.469065, -1.88988], [53.469056, -1.889729]], [[53.468977, -1.888886], [53.468965, -1.888736]], [[53.468914, -1.888302], [53.468883, -1.888157]], [[53.468428, -1.88618], [53.468352, -1.886105]], [[53.468352, -1.886105], [53.468341, -1.885952]], [[53.468341, -1.885952], [53.468327, -1.885784]], [[53.467986, -1.885026], [53.467938, -1.884889]], [[53.467938, -1.884889], [53.467923, -1.884738]], [[53.467923, -1.884738], [53.46791, -1.884576]], [[53.467888, -1.883806], [53.467855, -1.883652]], [[53.466767, -1.882305], [53.466685, -1.882223]], [[53.466485, -1.88188], [53.466401, -1.881831]], [[53.466401, -1.881831], [53.466322, -1.881735]], [[53.465658, -1.880516], [53.465602, -1.880422]], [[53.465602, -1.880422], [53.465518, -1.880356]], [[53.465439, -1.880266], [53.465373, -1.88016]], [[53.465109, -1.880117], [53.465025, -1.88006]], [[53.464965, -1.880039], [53.464875, -1.879984]], [[53.464706, -1.879821], [53.464685, -1.879666]], [[53.464685, -1.879666], [53.464631, -1.879534]], [[53.464594, -1.879478], [53.46468, -1.879405]], [[53.46468, -1.879405], [53.464741, -1.879304]], [[53.46467, -1.879027], [53.464681, -1.878868]], [[53.464681, -1.878868], [53.464679, -1.878731]], [[53.464679, -1.878731], [53.464735, -1.878613]], [[53.464735, -1.878613], [53.464751, -1.878457]], [[53.464986, -1.876491], [53.465015, -1.876343]], [[53.46537, -1.873594], [53.465395, -1.873439]], [[53.465395, -1.873439], [53.465422, -1.873284]], [[53.465422, -1.873284], [53.465452, -1.873137]], [[53.465313, -1.871918], [53.465292, -1.871762]], [[53.461962, -1.86017], [53.46188, -1.860135]], [[53.461359, -1.859767], [53.461319, -1.859705]], [[53.461229, -1.859702], [53.461141, -1.859743]], [[53.460914, -1.860001], [53.460911, -1.860096]], [[53.460911, -1.860096], [53.460842, -1.860211]], [[53.458628, -1.859843], [53.45854, -1.859904]], [[53.45677, -1.860989], [53.456745, -1.860833]], [[53.455966, -1.860837], [53.455952, -1.860676]], [[53.454788, -1.859728], [53.454702, -1.859767]], [[53.454702, -1.859767], [53.454621, -1.859842]], [[53.454621, -1.859842], [53.454555, -1.859746]], [[53.454555, -1.859746], [53.454503, -1.859879]], [[53.453361, -1.858513], [53.453332, -1.858507]], [[53.452875, -1.857343], [53.452844, -1.857289]], [[53.452764, -1.857179], [53.452743, -1.857028]], [[53.452095, -1.856302], [53.452009, -1.856239]], [[53.451848, -1.856096], [53.451766, -1.856017]], [[53.451667, -1.856033], [53.451614, -1.856052]], [[53.451505, -1.85604], [53.45141, -1.855993]], [[53.451218, -1.855877], [53.45113, -1.855817]], [[53.45113, -1.855817], [53.451049, -1.855855]], [[53.451049, -1.855855], [53.45105, -1.855696]], [[53.449412, -1.85457], [53.449367, -1.854435]], [[53.449367, -1.854435], [53.449344, -1.854283]], [[53.434484, -1.867991], [53.434443, -1.868001]], [[53.432206, -1.869124], [53.432116, -1.869106]], [[53.417734, -1.901975], [53.417739, -1.901985]], [[53.413786, -1.906081], [53.413741, -1.906139]], [[53.413741, -1.906139], [53.413688, -1.906263]], [[53.406979, -1.902784], [53.406949, -1.902642]], [[53.406949, -1.902642], [53.406895, -1.90252]], [[53.406895, -1.90252], [53.406824, -1.902422]], [[53.406824, -1.902422], [53.406803, -1.902317]], [[53.406803, -1.902317], [53.406793, -1.902162]], [[53.406654, -1.901633], [53.406609, -1.901497]], [[53.406477, -1.901269], [53.406421, -1.901148]], [[53.406421, -1.901148], [53.406365, -1.901073]], [[53.406365, -1.901073], [53.406276, -1.900987]], [[53.404486, -1.90042], [53.404398, -1.900405]], [[53.402198, -1.89539], [53.402156, -1.895251]], [[53.397296, -1.876251], [53.397222, -1.876303]], [[53.397222, -1.876303], [53.397123, -1.87629]], [[53.397123, -1.87629], [53.397045, -1.876364]], [[53.395605, -1.877362], [53.395515, -1.8774]], [[53.395515, -1.8774], [53.395438, -1.877482]], [[53.393624, -1.878347], [53.393596, -1.878344]], [[53.393505, -1.878373], [53.393444, -1.878494]], [[53.384097, -1.884467], [53.384008, -1.884517]], [[53.384008, -1.884517], [53.383929, -1.884423]], [[53.381837, -1.882371], [53.381786, -1.882353]], [[53.381786, -1.882353], [53.381699, -1.882303]], [[53.380246, -1.882544], [53.380163, -1.882628]], [[53.380068, -1.882659], [53.380097, -1.882631]], [[53.380097, -1.882631], [53.380193, -1.882613]], [[53.380193, -1.882613], [53.380233, -1.882565]], [[53.380233, -1.882565], [53.380148, -1.882646]], [[53.377844, -1.882284], [53.37776, -1.882211]], [[53.37399, -1.881888], [53.373909, -1.881801]], [[53.373909, -1.881801], [53.373828, -1.881726]], [[53.373471, -1.881503], [53.373459, -1.881513]], [[53.373459, -1.881513], [53.373364, -1.881454]], [[53.37268, -1.877925], [53.372712, -1.877783]], [[53.372712, -1.877783], [53.372728, -1.877632]], [[53.373038, -1.871258], [53.373136, -1.871252]], [[53.373434, -1.87098], [53.373488, -1.870858]], [[53.373519, -1.870269], [53.373505, -1.870153]], [[53.373505, -1.870153], [53.373478, -1.870003]], [[53.373408, -1.869561], [53.373332, -1.869511]], [[53.373332, -1.869511], [53.373267, -1.869401]], [[53.373171, -1.869419], [53.373079, -1.869443]], [[53.373079, -1.869443], [53.372985, -1.86941]], [[53.372985, -1.86941], [53.372892, -1.869438]], [[53.372803, -1.869377], [53.372715, -1.869334]], [[53.372715, -1.869334], [53.372685, -1.869212]], [[53.372685, -1.869212], [53.37272, -1.869072]], [[53.37272, -1.869072], [53.372728, -1.868921]], [[53.372728, -1.868921], [53.372756, -1.868766]], [[53.372756, -1.868766], [53.372689, -1.868664]], [[53.365621, -1.849683], [53.365602, -1.849629]], [[53.365602, -1.849629], [53.365559, -1.849493]], [[53.364652, -1.84761], [53.364612, -1.847668]], [[53.366083, -1.840439], [53.366063, -1.840333]], [[53.366717, -1.838482], [53.366694, -1.838331]], [[53.366694, -1.838331], [53.366644, -1.838207]], [[53.366703, -1.83414], [53.366725, -1.834061]], [[53.366741, -1.833912], [53.366792, -1.833785]], [[53.368673, -1.827355], [53.368695, -1.827198]], [[53.370211, -1.82186], [53.370193, -1.821699]], [[53.370442, -1.816909], [53.370414, -1.817066]], [[53.370414, -1.817066], [53.370389, -1.817197]], [[53.37043, -1.81705], [53.37048, -1.816915]], [[53.370574, -1.816906], [53.370585, -1.81692]], [[53.369654, -1.816056], [53.369598, -1.816175]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#5dae00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#5dae00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_c4b536162f911351edfca192c5e98984 = L.polyline(
                [[[53.491163, -1.893807], [53.491265, -1.893736]], [[53.491367, -1.893471], [53.491398, -1.893629]], [[53.4883, -1.89821], [53.488255, -1.898354]], [[53.476612, -1.906116], [53.476584, -1.90612]], [[53.476492, -1.906144], [53.476429, -1.906053]], [[53.47563, -1.905917], [53.475588, -1.905912]], [[53.475588, -1.905912], [53.475493, -1.905938]], [[53.475493, -1.905938], [53.475408, -1.9059]], [[53.4752, -1.906174], [53.47522, -1.906222]], [[53.47522, -1.906222], [53.47514, -1.906303]], [[53.47514, -1.906303], [53.475104, -1.90636]], [[53.475104, -1.90636], [53.475027, -1.90644]], [[53.475027, -1.90644], [53.474973, -1.906492]], [[53.474973, -1.906492], [53.474902, -1.906593]], [[53.474902, -1.906593], [53.474856, -1.906669]], [[53.474856, -1.906669], [53.474767, -1.906702]], [[53.474443, -1.906528], [53.474353, -1.906504]], [[53.474353, -1.906504], [53.474257, -1.906468]], [[53.471626, -1.905201], [53.471548, -1.905125]], [[53.471279, -1.904665], [53.47126, -1.904644]], [[53.471165, -1.904492], [53.471094, -1.904388]], [[53.471094, -1.904388], [53.471038, -1.904313]], [[53.470824, -1.904006], [53.470833, -1.903996]], [[53.470766, -1.903895], [53.470745, -1.903852]], [[53.470745, -1.903852], [53.470679, -1.90374]], [[53.470679, -1.90374], [53.470648, -1.903633]], [[53.470577, -1.903529], [53.470505, -1.90342]], [[53.465025, -1.88006], [53.464965, -1.880039]], [[53.464631, -1.879534], [53.464594, -1.879478]], [[53.464741, -1.879304], [53.464723, -1.879147]], [[53.464723, -1.879147], [53.46467, -1.879027]], [[53.453332, -1.858507], [53.453254, -1.85843]], [[53.452844, -1.857289], [53.452764, -1.857179]], [[53.451282, -1.856002], [53.451218, -1.855877]], [[53.434443, -1.868001], [53.434375, -1.8681]], [[53.406793, -1.902162], [53.406807, -1.902049]], [[53.406807, -1.902049], [53.406768, -1.901909]], [[53.406768, -1.901909], [53.406725, -1.901821]], [[53.406725, -1.901821], [53.406656, -1.901725]], [[53.406656, -1.901725], [53.406654, -1.901633]], [[53.406609, -1.901497], [53.406567, -1.90147]], [[53.406567, -1.90147], [53.406525, -1.90133]], [[53.406525, -1.90133], [53.406477, -1.901269]], [[53.401359, -1.895217], [53.401286, -1.895113]], [[53.401286, -1.895113], [53.401193, -1.895164]], [[53.393596, -1.878344], [53.393505, -1.878373]], [[53.380419, -1.882602], [53.380321, -1.882571]], [[53.380321, -1.882571], [53.380246, -1.882544]], [[53.372936, -1.871193], [53.372941, -1.87124]], [[53.365029, -1.845443], [53.364983, -1.845295]], [[53.366725, -1.834061], [53.366741, -1.833912]], [[53.370474, -1.816836], [53.370442, -1.816909]], [[53.370389, -1.817197], [53.37043, -1.81705]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#2e9700ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#2e9700ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_96474965e0b8b8a8cd62307b8f4dcb09 = L.polyline(
                [[[53.491265, -1.893736], [53.491349, -1.893655]], [[53.490952, -1.894992], [53.490869, -1.895073]], [[53.490869, -1.895073], [53.490771, -1.895113]], [[53.490352, -1.895159], [53.49025, -1.895177]], [[53.49025, -1.895177], [53.490155, -1.895233]], [[53.490155, -1.895233], [53.490076, -1.895324]], [[53.489706, -1.895445], [53.48963, -1.895554]], [[53.48963, -1.895554], [53.48954, -1.8956]], [[53.48954, -1.8956], [53.489477, -1.895729]], [[53.4882, -1.898501], [53.488142, -1.898642]], [[53.488142, -1.898642], [53.488124, -1.898797]], [[53.487952, -1.89938], [53.487896, -1.899501]], [[53.487848, -1.899644], [53.487803, -1.899787]], [[53.487642, -1.900358], [53.48757, -1.900478]], [[53.487413, -1.901072], [53.487372, -1.901226]], [[53.487372, -1.901226], [53.487319, -1.90137]], [[53.487262, -1.901507], [53.487223, -1.901655]], [[53.487223, -1.901655], [53.487181, -1.901789]], [[53.487181, -1.901789], [53.487135, -1.901937]], [[53.487028, -1.902386], [53.486966, -1.902495]], [[53.486966, -1.902495], [53.48689, -1.902608]], [[53.48689, -1.902608], [53.486843, -1.902755]], [[53.486843, -1.902755], [53.48677, -1.902868]], [[53.48677, -1.902868], [53.48671, -1.903003]], [[53.486414, -1.903632], [53.486362, -1.90377]], [[53.486362, -1.90377], [53.48629, -1.903884]], [[53.48629, -1.903884], [53.486246, -1.904019]], [[53.486246, -1.904019], [53.486192, -1.904142]], [[53.486192, -1.904142], [53.486117, -1.904255]], [[53.486117, -1.904255], [53.486038, -1.904376]], [[53.486038, -1.904376], [53.485975, -1.904506]], [[53.485975, -1.904506], [53.485917, -1.904645]], [[53.485917, -1.904645], [53.485843, -1.904759]], [[53.485843, -1.904759], [53.485779, -1.904891]], [[53.485779, -1.904891], [53.485718, -1.905017]], [[53.485575, -1.905252], [53.485482, -1.905338]], [[53.485482, -1.905338], [53.48539, -1.90541]], [[53.48539, -1.90541], [53.485308, -1.905494]], [[53.485308, -1.905494], [53.485233, -1.905601]], [[53.485233, -1.905601], [53.485149, -1.905702]], [[53.485091, -1.905823], [53.485032, -1.905951]], [[53.485032, -1.905951], [53.484968, -1.906064]], [[53.484968, -1.906064], [53.48491, -1.906208]], [[53.48491, -1.906208], [53.484866, -1.906345]], [[53.484681, -1.907684], [53.484691, -1.907835]], [[53.484691, -1.907835], [53.484683, -1.908004]], [[53.484705, -1.908852], [53.484709, -1.909005]], [[53.484669, -1.909169], [53.484655, -1.90933]], [[53.484655, -1.90933], [53.484639, -1.909486]], [[53.484675, -1.909634], [53.48468, -1.909788]], [[53.484668, -1.909943], [53.484632, -1.9101]], [[53.484632, -1.9101], [53.484541, -1.910074]], [[53.484342, -1.910496], [53.48427, -1.910599]], [[53.484109, -1.911103], [53.484087, -1.911275]], [[53.483937, -1.911855], [53.483889, -1.911997]], [[53.483889, -1.911997], [53.483862, -1.91215]], [[53.483685, -1.91308], [53.48368, -1.913254]], [[53.483516, -1.91498], [53.483514, -1.915133]], [[53.483311, -1.917632], [53.483276, -1.917791]], [[53.482677, -1.917469], [53.482581, -1.917457]], [[53.482581, -1.917457], [53.48249, -1.917442]], [[53.48249, -1.917442], [53.482395, -1.91744]], [[53.482007, -1.917453], [53.481914, -1.91746]], [[53.481914, -1.91746], [53.481818, -1.917448]], [[53.481818, -1.917448], [53.481719, -1.917454]], [[53.481719, -1.917454], [53.48162, -1.91744]], [[53.4813, -1.917457], [53.481201, -1.917445]], [[53.481201, -1.917445], [53.481098, -1.917414]], [[53.480987, -1.917416], [53.48089, -1.917434]], [[53.480709, -1.917477], [53.480616, -1.917443]], [[53.480616, -1.917443], [53.480526, -1.917439]], [[53.480526, -1.917439], [53.480431, -1.917467]], [[53.480431, -1.917467], [53.480332, -1.917459]], [[53.480332, -1.917459], [53.480236, -1.917436]], [[53.480236, -1.917436], [53.480142, -1.917394]], [[53.479988, -1.917212], [53.479938, -1.917074]], [[53.479938, -1.917074], [53.479898, -1.916922]], [[53.479898, -1.916922], [53.479875, -1.916761]], [[53.47974, -1.916163], [53.479695, -1.916002]], [[53.479695, -1.916002], [53.479653, -1.915847]], [[53.479573, -1.915555], [53.479535, -1.915403]], [[53.479535, -1.915403], [53.479519, -1.915249]], [[53.47918, -1.91458], [53.47914, -1.914739]], [[53.47914, -1.914739], [53.4791, -1.914897]], [[53.478946, -1.914827], [53.478925, -1.914669]], [[53.478203, -1.911213], [53.478166, -1.911068]], [[53.478166, -1.911068], [53.478152, -1.910901]], [[53.478152, -1.910901], [53.478147, -1.910747]], [[53.478188, -1.910434], [53.478165, -1.910271]], [[53.477986, -1.909207], [53.477952, -1.909055]], [[53.477952, -1.909055], [53.477909, -1.908905]], [[53.477909, -1.908905], [53.477867, -1.908765]], [[53.477867, -1.908765], [53.477827, -1.908626]], [[53.477827, -1.908626], [53.47782, -1.908465]], [[53.470109, -1.902177], [53.470087, -1.902022]], [[53.467516, -1.882888], [53.467443, -1.88279]], [[53.466093, -1.867189], [53.466112, -1.867038]], [[53.466112, -1.867038], [53.466114, -1.866878]], [[53.466114, -1.866878], [53.466129, -1.866719]], [[53.466129, -1.866719], [53.466183, -1.866594]], [[53.466176, -1.865791], [53.466147, -1.86563]], [[53.466147, -1.86563], [53.466171, -1.865481]], [[53.466171, -1.865481], [53.466212, -1.865342]], [[53.466212, -1.865342], [53.466216, -1.865171]], [[53.466216, -1.865171], [53.46619, -1.865022]], [[53.46619, -1.865022], [53.466148, -1.864884]], [[53.466133, -1.864714], [53.466108, -1.864553]], [[53.460746, -1.860263], [53.460646, -1.860291]], [[53.460646, -1.860291], [53.460578, -1.860402]], [[53.460578, -1.860402], [53.460499, -1.860499]], [[53.460499, -1.860499], [53.460405, -1.860532]], [[53.459713, -1.860596], [53.45966, -1.860468]], [[53.45966, -1.860468], [53.459587, -1.860366]], [[53.459096, -1.860262], [53.459024, -1.860145]], [[53.457865, -1.8602], [53.457768, -1.86016]], [[53.455301, -1.859636], [53.455209, -1.859665]], [[53.455209, -1.859665], [53.455126, -1.859745]], [[53.45441, -1.859844], [53.454328, -1.859743]], [[53.454328, -1.859743], [53.454271, -1.859627]], [[53.453856, -1.859268], [53.453787, -1.859151]], [[53.453787, -1.859151], [53.453702, -1.85906]], [[53.452207, -1.856445], [53.452169, -1.856305]], [[53.449702, -1.855352], [53.449657, -1.855222]], [[53.449275, -1.853981], [53.449216, -1.853852]], [[53.448438, -1.853855], [53.448358, -1.853766]], [[53.448086, -1.853118], [53.448057, -1.852975]], [[53.447823, -1.852727], [53.447723, -1.852703]], [[53.447442, -1.852363], [53.447348, -1.852393]], [[53.447173, -1.85252], [53.447118, -1.852649]], [[53.447032, -1.852721], [53.446955, -1.852841]], [[53.446955, -1.852841], [53.446854, -1.85281]], [[53.446449, -1.852711], [53.446367, -1.852793]], [[53.446297, -1.852697], [53.446238, -1.852568]], [[53.446238, -1.852568], [53.446141, -1.852528]], [[53.446141, -1.852528], [53.446061, -1.852622]], [[53.446061, -1.852622], [53.445969, -1.852623]], [[53.445969, -1.852623], [53.445877, -1.852638]], [[53.445877, -1.852638], [53.445776, -1.852658]], [[53.445776, -1.852658], [53.445688, -1.852727]], [[53.445688, -1.852727], [53.445593, -1.85279]], [[53.445593, -1.85279], [53.445522, -1.852889]], [[53.445522, -1.852889], [53.445434, -1.852939]], [[53.445238, -1.852957], [53.445146, -1.85298]], [[53.445146, -1.85298], [53.445068, -1.853065]], [[53.445068, -1.853065], [53.444981, -1.853108]], [[53.444981, -1.853108], [53.444873, -1.853129]], [[53.444873, -1.853129], [53.444785, -1.853192]], [[53.44471, -1.853294], [53.444636, -1.853411]], [[53.444636, -1.853411], [53.444564, -1.853525]], [[53.444227, -1.854066], [53.444135, -1.854152]], [[53.444135, -1.854152], [53.444054, -1.854248]], [[53.444054, -1.854248], [53.44399, -1.85437]], [[53.443589, -1.855042], [53.443498, -1.855107]], [[53.443498, -1.855107], [53.443433, -1.855213]], [[53.443433, -1.855213], [53.443367, -1.855332]], [[53.443367, -1.855332], [53.443301, -1.855435]], [[53.443301, -1.855435], [53.443236, -1.855558]], [[53.443236, -1.855558], [53.443147, -1.855638]], [[53.443147, -1.855638], [53.443057, -1.855712]], [[53.442781, -1.856128], [53.442702, -1.856229]], [[53.442702, -1.856229], [53.442624, -1.856323]], [[53.442346, -1.856753], [53.442307, -1.856903]], [[53.442236, -1.85702], [53.442163, -1.857115]], [[53.442163, -1.857115], [53.442108, -1.857243]], [[53.442108, -1.857243], [53.442037, -1.857335]], [[53.442037, -1.857335], [53.441974, -1.857466]], [[53.441497, -1.858475], [53.441431, -1.858589]], [[53.441431, -1.858589], [53.441361, -1.85871]], [[53.441285, -1.859012], [53.44121, -1.859109]], [[53.441023, -1.85946], [53.440967, -1.859604]], [[53.440722, -1.86008], [53.440647, -1.860182]], [[53.440436, -1.860712], [53.440345, -1.860799]], [[53.440345, -1.860799], [53.44026, -1.860886]], [[53.44026, -1.860886], [53.440212, -1.861018]], [[53.439988, -1.861508], [53.439909, -1.861594]], [[53.439784, -1.861853], [53.439743, -1.862006]], [[53.439743, -1.862006], [53.439692, -1.862138]], [[53.439553, -1.862334], [53.439489, -1.862463]], [[53.439489, -1.862463], [53.439404, -1.86255]], [[53.439404, -1.86255], [53.439327, -1.862657]], [[53.439327, -1.862657], [53.439262, -1.862776]], [[53.439056, -1.863115], [53.439002, -1.863248]], [[53.439002, -1.863248], [53.438943, -1.863384]], [[53.438943, -1.863384], [53.438868, -1.86348]], [[53.438688, -1.86361], [53.438603, -1.863702]], [[53.438603, -1.863702], [53.438536, -1.863805]], [[53.438478, -1.863936], [53.438419, -1.864052]], [[53.438419, -1.864052], [53.438337, -1.864143]], [[53.438337, -1.864143], [53.438265, -1.864269]], [[53.438265, -1.864269], [53.438203, -1.864378]], [[53.438203, -1.864378], [53.438125, -1.864495]], [[53.438125, -1.864495], [53.438061, -1.864619]], [[53.438061, -1.864619], [53.438001, -1.864748]], [[53.438001, -1.864748], [53.437934, -1.86486]], [[53.437934, -1.86486], [53.437853, -1.864952]], [[53.437853, -1.864952], [53.437765, -1.865024]], [[53.437765, -1.865024], [53.437691, -1.865119]], [[53.437691, -1.865119], [53.437618, -1.865225]], [[53.437618, -1.865225], [53.437532, -1.865298]], [[53.437532, -1.865298], [53.437444, -1.865364]], [[53.437061, -1.865801], [53.436976, -1.865891]], [[53.436976, -1.865891], [53.436896, -1.865974]], [[53.436896, -1.865974], [53.436824, -1.866094]], [[53.436824, -1.866094], [53.436769, -1.866219]], [[53.436769, -1.866219], [53.436672, -1.86628]], [[53.436418, -1.866523], [53.43633, -1.866611]], [[53.43633, -1.866611], [53.436239, -1.866618]], [[53.436239, -1.866618], [53.43614, -1.866654]], [[53.43614, -1.866654], [53.436048, -1.866731]], [[53.435781, -1.866913], [53.435697, -1.866973]], [[53.435697, -1.866973], [53.435612, -1.867064]], [[53.435612, -1.867064], [53.435527, -1.86714]], [[53.435527, -1.86714], [53.435457, -1.86724]], [[53.435457, -1.86724], [53.435365, -1.867307]], [[53.435365, -1.867307], [53.435276, -1.867383]], [[53.435276, -1.867383], [53.435178, -1.867439]], [[53.435178, -1.867439], [53.435089, -1.867521]], [[53.435089, -1.867521], [53.435009, -1.867594]], [[53.434923, -1.867656], [53.434838, -1.867721]], [[53.434838, -1.867721], [53.434754, -1.867811]], [[53.434754, -1.867811], [53.434667, -1.867863]], [[53.434667, -1.867863], [53.434571, -1.867922]], [[53.434571, -1.867922], [53.434484, -1.867991]], [[53.434295, -1.868176], [53.434202, -1.868262]], [[53.434202, -1.868262], [53.434125, -1.868344]], [[53.434125, -1.868344], [53.434034, -1.868412]], [[53.434034, -1.868412], [53.433941, -1.868468]], [[53.433941, -1.868468], [53.433858, -1.868538]], [[53.433585, -1.868707], [53.433492, -1.868742]], [[53.433492, -1.868742], [53.433391, -1.868745]], [[53.432687, -1.869051], [53.432597, -1.869102]], [[53.431931, -1.869082], [53.431849, -1.869155]], [[53.431767, -1.869248], [53.431707, -1.869365]], [[53.431707, -1.869365], [53.431622, -1.869435]], [[53.431622, -1.869435], [53.43153, -1.869422]], [[53.43153, -1.869422], [53.431453, -1.869343]], [[53.431453, -1.869343], [53.431374, -1.869251]], [[53.431374, -1.869251], [53.431274, -1.86931]], [[53.431274, -1.86931], [53.431181, -1.869364]], [[53.431181, -1.869364], [53.431094, -1.869329]], [[53.431094, -1.869329], [53.431005, -1.869398]], [[53.431005, -1.869398], [53.430917, -1.869484]], [[53.430917, -1.869484], [53.430836, -1.869586]], [[53.430464, -1.869646], [53.430374, -1.869658]], [[53.43028, -1.869634], [53.430191, -1.869669]], [[53.430191, -1.869669], [53.430114, -1.869774]], [[53.430114, -1.869774], [53.430051, -1.869905]], [[53.429895, -1.870115], [53.429818, -1.870224]], [[53.429818, -1.870224], [53.429736, -1.870315]], [[53.429736, -1.870315], [53.429641, -1.870391]], [[53.429641, -1.870391], [53.429554, -1.870446]], [[53.429554, -1.870446], [53.429476, -1.870535]], [[53.429476, -1.870535], [53.429383, -1.870615]], [[53.429383, -1.870615], [53.429319, -1.870724]], [[53.429319, -1.870724], [53.429235, -1.870779]], [[53.429235, -1.870779], [53.429152, -1.870844]], [[53.429152, -1.870844], [53.429066, -1.870929]], [[53.428968, -1.87097], [53.428907, -1.871097]], [[53.428907, -1.871097], [53.428808, -1.8711]], [[53.428808, -1.8711], [53.428723, -1.871158]], [[53.428633, -1.871181], [53.428544, -1.871198]], [[53.428544, -1.871198], [53.428461, -1.871293]], [[53.428461, -1.871293], [53.428376, -1.871389]], [[53.428326, -1.871515], [53.42826, -1.871643]], [[53.42826, -1.871643], [53.42818, -1.871746]], [[53.42818, -1.871746], [53.428109, -1.87186]], [[53.428109, -1.87186], [53.428031, -1.871957]], [[53.428031, -1.871957], [53.427961, -1.872069]], [[53.427961, -1.872069], [53.427882, -1.872159]], [[53.42765, -1.872419], [53.427594, -1.872546]], [[53.427594, -1.872546], [53.427538, -1.87269]], [[53.427478, -1.872827], [53.427424, -1.87295]], [[53.427424, -1.87295], [53.427359, -1.873085]], [[53.427359, -1.873085], [53.427296, -1.873198]], [[53.427156, -1.873393], [53.427051, -1.873402]], [[53.427051, -1.873402], [53.426965, -1.873486]], [[53.426965, -1.873486], [53.426904, -1.873617]], [[53.426637, -1.873742], [53.426538, -1.873767]], [[53.426538, -1.873767], [53.426447, -1.873775]], [[53.426447, -1.873775], [53.426409, -1.873912]], [[53.426409, -1.873912], [53.426351, -1.874035]], [[53.426351, -1.874035], [53.426274, -1.874136]], [[53.426274, -1.874136], [53.426187, -1.874209]], [[53.426187, -1.874209], [53.426102, -1.874301]], [[53.426102, -1.874301], [53.426074, -1.874466]], [[53.426075, -1.874789], [53.426016, -1.874914]], [[53.426016, -1.874914], [53.426032, -1.875068]], [[53.426032, -1.875068], [53.425993, -1.875223]], [[53.425993, -1.875223], [53.425945, -1.875358]], [[53.425945, -1.875358], [53.425918, -1.875514]], [[53.425918, -1.875514], [53.425927, -1.875686]], [[53.425927, -1.875686], [53.425925, -1.87584]], [[53.425925, -1.87584], [53.425886, -1.875997]], [[53.425886, -1.875997], [53.425972, -1.876083]], [[53.425943, -1.876718], [53.425938, -1.876868]], [[53.425912, -1.877024], [53.425911, -1.877184]], [[53.425911, -1.877184], [53.425932, -1.877336]], [[53.425984, -1.877658], [53.425977, -1.877824]], [[53.425977, -1.877824], [53.425984, -1.877993]], [[53.425984, -1.877993], [53.42593, -1.878118]], [[53.42593, -1.878118], [53.425902, -1.878266]], [[53.425902, -1.878266], [53.425898, -1.87843]], [[53.425898, -1.87843], [53.425868, -1.878582]], [[53.425775, -1.879193], [53.425739, -1.879347]], [[53.425339, -1.88042], [53.42529, -1.880554]], [[53.42514, -1.88077], [53.425048, -1.880829]], [[53.425048, -1.880829], [53.424968, -1.88091]], [[53.424968, -1.88091], [53.424896, -1.881013]], [[53.424309, -1.882427], [53.42425, -1.882564]], [[53.42425, -1.882564], [53.4242, -1.882709]], [[53.4242, -1.882709], [53.424171, -1.88286]], [[53.424171, -1.88286], [53.424134, -1.883001]], [[53.424134, -1.883001], [53.42407, -1.88313]], [[53.42407, -1.88313], [53.423988, -1.88323]], [[53.423988, -1.88323], [53.423923, -1.883339]], [[53.423923, -1.883339], [53.423868, -1.883465]], [[53.423868, -1.883465], [53.423816, -1.883602]], [[53.423816, -1.883602], [53.423768, -1.883751]], [[53.423739, -1.884087], [53.423686, -1.884237]], [[53.423686, -1.884237], [53.423637, -1.884364]], [[53.423598, -1.884502], [53.423551, -1.884635]], [[53.423551, -1.884635], [53.42349, -1.88478]], [[53.423435, -1.884908], [53.423345, -1.88498]], [[53.423345, -1.88498], [53.423261, -1.885033]], [[53.423261, -1.885033], [53.4232, -1.885173]], [[53.4232, -1.885173], [53.42314, -1.8853]], [[53.422957, -1.885656], [53.422867, -1.885721]], [[53.422867, -1.885721], [53.422779, -1.885759]], [[53.422487, -1.886176], [53.422428, -1.886297]], [[53.422428, -1.886297], [53.422392, -1.886439]], [[53.422392, -1.886439], [53.42233, -1.886551]], [[53.422094, -1.887041], [53.422001, -1.887091]], [[53.422001, -1.887091], [53.42191, -1.887106]], [[53.42151, -1.888382], [53.421441, -1.888511]], [[53.421441, -1.888511], [53.421386, -1.888649]], [[53.421386, -1.888649], [53.421323, -1.888775]], [[53.421323, -1.888775], [53.421299, -1.88892]], [[53.421299, -1.88892], [53.42128, -1.889083]], [[53.421122, -1.889492], [53.421035, -1.889555]], [[53.421035, -1.889555], [53.42098, -1.889695]], [[53.420868, -1.889963], [53.4208, -1.890097]], [[53.420572, -1.890621], [53.42048, -1.890699]], [[53.42048, -1.890699], [53.420418, -1.890823]], [[53.420418, -1.890823], [53.420374, -1.890973]], [[53.420374, -1.890973], [53.420344, -1.891125]], [[53.420344, -1.891125], [53.420311, -1.891287]], [[53.420293, -1.891764], [53.420301, -1.891937]], [[53.420301, -1.891937], [53.420301, -1.89209]], [[53.420281, -1.892412], [53.420233, -1.892559]], [[53.420233, -1.892559], [53.420191, -1.892726]], [[53.420186, -1.89318], [53.420183, -1.893352]], [[53.420183, -1.893352], [53.420184, -1.893508]], [[53.420144, -1.893825], [53.420115, -1.893995]], [[53.420115, -1.893995], [53.420128, -1.894158]], [[53.42013, -1.895706], [53.420131, -1.895864]], [[53.420131, -1.895864], [53.42013, -1.896028]], [[53.42013, -1.896028], [53.420128, -1.896192]], [[53.420104, -1.896351], [53.420078, -1.896511]], [[53.419838, -1.897553], [53.419805, -1.897711]], [[53.419805, -1.897711], [53.419729, -1.897796]], [[53.419729, -1.897796], [53.419658, -1.897898]], [[53.419549, -1.898143], [53.419487, -1.898267]], [[53.419487, -1.898267], [53.419419, -1.898374]], [[53.419419, -1.898374], [53.419354, -1.89848]], [[53.419354, -1.89848], [53.419281, -1.898591]], [[53.419237, -1.898725], [53.419167, -1.898853]], [[53.419167, -1.898853], [53.419086, -1.898967]], [[53.419086, -1.898967], [53.419015, -1.899074]], [[53.419015, -1.899074], [53.418964, -1.899223]], [[53.418812, -1.899433], [53.41875, -1.899548]], [[53.41862, -1.89992], [53.418571, -1.900058]], [[53.418571, -1.900058], [53.41852, -1.900192]], [[53.418432, -1.90027], [53.418386, -1.900416]], [[53.418386, -1.900416], [53.418372, -1.900575]], [[53.418372, -1.900575], [53.418386, -1.900727]], [[53.418386, -1.900727], [53.418387, -1.900881]], [[53.418387, -1.900881], [53.418345, -1.901024]], [[53.418345, -1.901024], [53.41828, -1.901142]], [[53.41828, -1.901142], [53.418212, -1.901262]], [[53.418212, -1.901262], [53.418178, -1.901402]], [[53.418178, -1.901402], [53.418141, -1.901559]], [[53.418141, -1.901559], [53.41806, -1.901657]], [[53.41806, -1.901657], [53.417965, -1.901689]], [[53.417965, -1.901689], [53.417893, -1.901805]], [[53.417893, -1.901805], [53.417823, -1.901917]], [[53.417823, -1.901917], [53.417734, -1.901975]], [[53.4176, -1.902194], [53.417509, -1.90223]], [[53.417509, -1.90223], [53.417429, -1.902327]], [[53.417429, -1.902327], [53.417345, -1.902388]], [[53.417345, -1.902388], [53.417267, -1.902503]], [[53.417267, -1.902503], [53.417224, -1.902651]], [[53.417224, -1.902651], [53.417161, -1.902785]], [[53.417161, -1.902785], [53.417079, -1.902881]], [[53.417079, -1.902881], [53.416977, -1.902924]], [[53.416977, -1.902924], [53.416887, -1.902997]], [[53.416887, -1.902997], [53.416808, -1.903088]], [[53.416808, -1.903088], [53.416718, -1.903162]], [[53.416718, -1.903162], [53.416626, -1.903225]], [[53.416626, -1.903225], [53.416532, -1.903293]], [[53.416532, -1.903293], [53.416451, -1.903376]], [[53.416451, -1.903376], [53.416382, -1.903481]], [[53.416382, -1.903481], [53.416308, -1.903588]], [[53.416308, -1.903588], [53.416213, -1.903635]], [[53.416213, -1.903635], [53.416117, -1.903687]], [[53.416117, -1.903687], [53.416034, -1.903744]], [[53.416034, -1.903744], [53.415952, -1.903818]], [[53.415768, -1.904177], [53.415691, -1.90426]], [[53.415126, -1.904802], [53.415036, -1.904855]], [[53.415036, -1.904855], [53.414952, -1.904945]], [[53.414952, -1.904945], [53.414872, -1.905034]], [[53.414872, -1.905034], [53.414793, -1.905107]], [[53.414184, -1.905617], [53.414114, -1.90573]], [[53.414114, -1.90573], [53.414037, -1.905822]], [[53.413625, -1.906393], [53.413539, -1.906487]], [[53.413354, -1.906588], [53.413264, -1.906666]], [[53.413264, -1.906666], [53.413173, -1.906705]], [[53.413173, -1.906705], [53.413098, -1.906802]], [[53.41271, -1.907256], [53.412625, -1.907325]], [[53.412625, -1.907325], [53.412538, -1.907388]], [[53.411612, -1.908488], [53.411528, -1.908553]], [[53.409924, -1.908266], [53.409872, -1.908116]], [[53.409872, -1.908116], [53.409838, -1.90797]], [[53.409838, -1.90797], [53.409778, -1.907839]], [[53.409778, -1.907839], [53.40972, -1.907699]], [[53.409629, -1.907419], [53.409574, -1.907291]], [[53.409574, -1.907291], [53.409514, -1.907168]], [[53.409514, -1.907168], [53.409474, -1.907021]], [[53.409474, -1.907021], [53.409462, -1.906871]], [[53.409462, -1.906871], [53.409425, -1.906728]], [[53.409425, -1.906728], [53.409364, -1.906609]], [[53.409288, -1.906501], [53.4092, -1.906427]], [[53.4092, -1.906427], [53.409134, -1.906304]], [[53.409134, -1.906304], [53.409096, -1.90614]], [[53.409012, -1.906044], [53.408935, -1.90595]], [[53.408935, -1.90595], [53.408871, -1.905841]], [[53.408428, -1.905284], [53.408359, -1.90516]], [[53.408359, -1.90516], [53.408282, -1.905054]], [[53.407583, -1.904296], [53.407509, -1.9042]], [[53.407439, -1.904102], [53.407411, -1.903951]], [[53.407285, -1.903708], [53.407234, -1.903582]], [[53.407234, -1.903582], [53.407203, -1.90344]], [[53.407203, -1.90344], [53.407125, -1.903351]], [[53.405839, -1.90073], [53.405756, -1.90066]], [[53.403592, -1.899217], [53.403537, -1.899075]], [[53.403537, -1.899075], [53.403499, -1.898921]], [[53.403458, -1.898787], [53.403414, -1.898639]], [[53.403307, -1.898169], [53.403296, -1.898016]], [[53.402589, -1.896189], [53.402551, -1.896031]], [[53.402551, -1.896031], [53.402524, -1.895886]], [[53.402524, -1.895886], [53.402486, -1.895737]], [[53.402316, -1.895626], [53.402249, -1.895523]], [[53.401907, -1.895241], [53.401825, -1.895303]], [[53.401825, -1.895303], [53.401734, -1.895256]], [[53.401734, -1.895256], [53.401638, -1.89524]], [[53.400927, -1.895307], [53.400833, -1.895296]], [[53.40055, -1.894935], [53.400562, -1.894768]], [[53.400562, -1.894768], [53.400615, -1.894625]], [[53.400615, -1.894625], [53.400597, -1.894465]], [[53.400597, -1.894465], [53.400628, -1.894315]], [[53.399873, -1.891043], [53.399821, -1.890908]], [[53.399821, -1.890908], [53.399779, -1.890775]], [[53.399736, -1.890641], [53.399707, -1.890483]], [[53.399707, -1.890483], [53.399666, -1.890339]], [[53.399594, -1.888934], [53.399623, -1.888784]], [[53.399623, -1.888784], [53.39967, -1.888644]], [[53.399676, -1.888485], [53.399676, -1.888319]], [[53.399641, -1.888166], [53.399616, -1.888019]], [[53.398736, -1.884899], [53.398683, -1.884766]], [[53.398432, -1.883941], [53.398394, -1.883804]], [[53.397281, -1.879651], [53.397259, -1.879504]], [[53.39726, -1.879171], [53.397312, -1.879043]], [[53.396316, -1.876909], [53.396226, -1.876966]], [[53.396226, -1.876966], [53.396137, -1.877015]], [[53.391336, -1.879196], [53.39126, -1.879296]], [[53.39126, -1.879296], [53.391165, -1.879357]], [[53.391165, -1.879357], [53.391076, -1.879421]], [[53.391076, -1.879421], [53.390997, -1.879517]], [[53.390997, -1.879517], [53.390908, -1.879582]], [[53.390908, -1.879582], [53.390806, -1.879602]], [[53.390711, -1.879581], [53.390621, -1.879635]], [[53.390621, -1.879635], [53.39052, -1.879652]], [[53.39034, -1.879683], [53.390269, -1.879798]], [[53.390104, -1.879938], [53.390023, -1.880024]], [[53.389387, -1.880527], [53.3893, -1.880482]], [[53.385953, -1.883371], [53.385861, -1.883391]], [[53.385861, -1.883391], [53.385772, -1.883367]], [[53.384437, -1.884216], [53.384356, -1.884302]], [[53.382293, -1.882607], [53.382212, -1.882525]], [[53.382128, -1.882442], [53.382028, -1.882424]], [[53.382028, -1.882424], [53.381932, -1.882374]], [[53.381932, -1.882374], [53.381837, -1.882371]], [[53.381617, -1.882215], [53.381524, -1.882145]], [[53.381524, -1.882145], [53.381437, -1.882102]], [[53.381148, -1.882133], [53.381057, -1.882161]], [[53.381057, -1.882161], [53.380961, -1.882196]], [[53.38061, -1.882452], [53.380523, -1.882515]], [[53.380523, -1.882515], [53.380434, -1.882547]], [[53.378671, -1.882391], [53.378569, -1.882402]], [[53.376605, -1.881851], [53.376512, -1.881874]], [[53.376512, -1.881874], [53.376416, -1.881835]], [[53.373272, -1.881395], [53.373185, -1.881332]], [[53.372778, -1.880688], [53.372725, -1.880553]], [[53.372563, -1.879797], [53.372524, -1.879659]], [[53.372615, -1.878229], [53.372658, -1.878076]], [[53.372766, -1.874079], [53.372807, -1.873939]], [[53.372807, -1.873939], [53.372809, -1.873787]], [[53.372156, -1.86867], [53.372107, -1.868535]], [[53.371434, -1.868135], [53.371356, -1.868023]], [[53.371356, -1.868023], [53.371325, -1.867879]], [[53.371325, -1.867879], [53.371284, -1.867721]], [[53.371274, -1.867552], [53.371249, -1.867395]], [[53.371249, -1.867395], [53.371223, -1.867234]], [[53.371223, -1.867234], [53.371198, -1.867087]], [[53.371158, -1.866768], [53.371092, -1.866646]], [[53.371092, -1.866646], [53.371108, -1.866488]], [[53.371108, -1.866488], [53.371069, -1.866332]], [[53.371004, -1.866228], [53.370956, -1.866098]], [[53.37087, -1.865813], [53.370838, -1.865646]], [[53.370838, -1.865646], [53.370803, -1.865503]], [[53.370734, -1.865385], [53.370692, -1.865239]], [[53.370692, -1.865239], [53.370654, -1.865079]], [[53.370531, -1.864818], [53.37049, -1.864683]], [[53.37049, -1.864683], [53.370435, -1.864559]], [[53.370366, -1.864459], [53.370296, -1.864322]], [[53.370296, -1.864322], [53.370237, -1.864192]], [[53.370237, -1.864192], [53.370172, -1.864057]], [[53.370172, -1.864057], [53.3701, -1.863935]], [[53.369767, -1.863355], [53.3697, -1.863243]], [[53.369452, -1.862778], [53.369395, -1.862662]], [[53.36923, -1.862268], [53.369181, -1.862115]], [[53.369026, -1.861894], [53.368981, -1.861761]], [[53.368981, -1.861761], [53.368924, -1.861622]], [[53.368924, -1.861622], [53.368865, -1.861487]], [[53.368865, -1.861487], [53.368807, -1.861351]], [[53.368807, -1.861351], [53.368745, -1.861239]], [[53.368745, -1.861239], [53.368708, -1.861088]], [[53.368622, -1.860805], [53.368557, -1.860679]], [[53.368557, -1.860679], [53.368501, -1.860552]], [[53.368501, -1.860552], [53.36844, -1.86044]], [[53.367961, -1.859584], [53.367873, -1.859486]], [[53.367814, -1.859366], [53.367751, -1.859242]], [[53.367552, -1.858706], [53.367507, -1.85857]], [[53.36729, -1.858283], [53.367209, -1.85821]], [[53.366411, -1.856037], [53.366371, -1.8559]], [[53.366371, -1.8559], [53.366345, -1.85574]], [[53.366146, -1.855041], [53.366139, -1.854881]], [[53.366116, -1.854728], [53.366085, -1.854576]], [[53.366085, -1.854576], [53.366063, -1.854417]], [[53.366063, -1.854417], [53.366044, -1.854269]], [[53.366014, -1.854111], [53.365999, -1.85395]], [[53.365999, -1.85395], [53.365972, -1.853784]], [[53.365972, -1.853784], [53.365955, -1.853628]], [[53.365955, -1.853628], [53.365941, -1.853477]], [[53.365925, -1.853167], [53.365921, -1.853005]], [[53.365921, -1.853005], [53.365914, -1.852843]], [[53.365914, -1.852843], [53.36587, -1.852686]], [[53.36587, -1.852686], [53.365858, -1.852521]], [[53.365932, -1.852418], [53.365964, -1.852272]], [[53.365964, -1.852272], [53.365959, -1.852108]], [[53.365959, -1.852108], [53.365953, -1.851953]], [[53.365947, -1.851624], [53.365959, -1.851468]], [[53.365959, -1.851468], [53.365911, -1.851313]], [[53.365911, -1.851313], [53.365857, -1.851188]], [[53.365731, -1.850946], [53.365723, -1.850794]], [[53.365721, -1.850143], [53.365685, -1.849986]], [[53.365685, -1.849986], [53.365658, -1.849821]], [[53.365658, -1.849821], [53.365621, -1.849683]], [[53.365559, -1.849493], [53.365522, -1.849351]], [[53.365522, -1.849351], [53.365482, -1.849215]], [[53.365482, -1.849215], [53.36543, -1.849092]], [[53.36543, -1.849092], [53.365369, -1.848951]], [[53.365299, -1.84885], [53.365242, -1.848725]], [[53.365153, -1.848657], [53.365056, -1.848581]], [[53.365056, -1.848581], [53.364975, -1.848484]], [[53.364758, -1.848175], [53.364689, -1.848068]], [[53.364689, -1.848068], [53.364634, -1.847927]], [[53.364634, -1.847927], [53.364661, -1.847768]], [[53.36463, -1.847165], [53.364715, -1.847085]], [[53.364715, -1.847085], [53.364785, -1.846971]], [[53.364785, -1.846971], [53.364833, -1.846825]], [[53.364833, -1.846825], [53.364866, -1.846669]], [[53.364866, -1.846669], [53.364903, -1.846518]], [[53.364958, -1.846254], [53.364943, -1.846074]], [[53.364989, -1.84451], [53.364975, -1.844352]], [[53.364975, -1.844352], [53.364952, -1.844186]], [[53.364937, -1.843858], [53.364963, -1.843701]], [[53.36527, -1.842436], [53.365351, -1.842331]], [[53.365351, -1.842331], [53.365439, -1.842249]], [[53.365532, -1.842204], [53.365583, -1.842077]], [[53.36571, -1.841706], [53.365764, -1.841583]], [[53.366103, -1.839641], [53.36619, -1.839565]], [[53.36619, -1.839565], [53.366274, -1.839495]], [[53.366586, -1.835718], [53.366589, -1.835564]], [[53.366965, -1.832669], [53.366998, -1.832515]], [[53.366998, -1.832515], [53.367007, -1.832356]], [[53.367007, -1.832356], [53.367048, -1.832214]], [[53.367048, -1.832214], [53.36708, -1.832071]], [[53.367117, -1.83193], [53.367178, -1.831798]], [[53.367178, -1.831798], [53.367203, -1.831649]], [[53.367203, -1.831649], [53.36723, -1.831489]], [[53.367394, -1.831289], [53.367451, -1.831172]], [[53.367451, -1.831172], [53.367464, -1.831012]], [[53.367464, -1.831012], [53.367497, -1.830852]], [[53.367497, -1.830852], [53.367513, -1.83069]], [[53.367587, -1.830388], [53.367629, -1.830253]], [[53.367629, -1.830253], [53.367609, -1.830081]], [[53.367609, -1.830081], [53.36762, -1.829929]], [[53.36762, -1.829929], [53.367718, -1.829908]], [[53.367718, -1.829908], [53.367797, -1.829835]], [[53.36782, -1.829529], [53.367853, -1.829379]], [[53.368188, -1.828497], [53.368223, -1.828342]], [[53.368252, -1.828179], [53.368305, -1.828049]], [[53.368305, -1.828049], [53.368378, -1.827952]], [[53.368417, -1.827803], [53.368473, -1.827671]], [[53.368844, -1.826421], [53.368898, -1.82628]], [[53.368898, -1.82628], [53.368945, -1.826138]], [[53.368945, -1.826138], [53.368975, -1.825984]], [[53.369041, -1.825545], [53.369079, -1.825384]], [[53.369139, -1.825263], [53.369193, -1.825143]], [[53.369257, -1.825031], [53.369313, -1.824904]], [[53.369449, -1.824642], [53.36952, -1.824544]], [[53.36952, -1.824544], [53.369574, -1.824413]], [[53.369641, -1.824292], [53.369723, -1.82423]], [[53.369825, -1.823835], [53.36985, -1.823688]], [[53.36985, -1.823688], [53.369922, -1.823589]], [[53.369952, -1.823436], [53.369938, -1.823288]], [[53.369938, -1.823288], [53.369967, -1.823141]], [[53.369967, -1.823141], [53.37001, -1.822996]], [[53.370155, -1.822089], [53.370178, -1.821932]], [[53.370152, -1.821393], [53.370078, -1.82128]], [[53.370496, -1.820066], [53.370468, -1.819909]], [[53.370381, -1.819096], [53.370419, -1.818947]], [[53.370442, -1.818462], [53.370406, -1.818323]], [[53.370399, -1.818166], [53.370437, -1.818029]], [[53.370437, -1.818029], [53.370482, -1.817889]], [[53.370482, -1.817889], [53.370427, -1.817751]], [[53.370417, -1.816976], [53.370456, -1.816823]], [[53.370456, -1.816823], [53.3705, -1.816688]], [[53.370113, -1.816367], [53.370051, -1.81625]], [[53.370051, -1.81625], [53.369948, -1.816203]], [[53.369301, -1.815818], [53.369215, -1.815867]], [[53.368596, -1.81533], [53.368505, -1.815362]], [[53.368505, -1.815362], [53.368413, -1.815365]], [[53.368231, -1.815422], [53.368133, -1.815443]], [[53.368031, -1.815443], [53.367935, -1.815467]], [[53.367935, -1.815467], [53.367839, -1.815518]], [[53.367839, -1.815518], [53.36774, -1.815548]], [[53.367546, -1.815624], [53.367464, -1.815698]], [[53.367464, -1.815698], [53.367375, -1.815747]], [[53.367145, -1.816022], [53.367104, -1.816158]], [[53.367104, -1.816158], [53.367037, -1.816271]], [[53.367037, -1.816271], [53.366959, -1.816353]], [[53.366959, -1.816353], [53.366885, -1.816453]], [[53.366885, -1.816453], [53.366799, -1.816509]], [[53.366799, -1.816509], [53.366711, -1.816561]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e8f400ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e8f400ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_14bcf7923397ead5bbf2134a3ffccdb1 = L.polyline(
                [[[53.491349, -1.893655], [53.491399, -1.893526]], [[53.487896, -1.899501], [53.487848, -1.899644]], [[53.484866, -1.906345], [53.48482, -1.906483]], [[53.484683, -1.908004], [53.48465, -1.908158]], [[53.484709, -1.909005], [53.484669, -1.909169]], [[53.484639, -1.909486], [53.484675, -1.909634]], [[53.484087, -1.911275], [53.484067, -1.911429]], [[53.483594, -1.914213], [53.483606, -1.914388]], [[53.483538, -1.915288], [53.483491, -1.915428]], [[53.483277, -1.917156], [53.483319, -1.917293]], [[53.481098, -1.917414], [53.480987, -1.917416]], [[53.448057, -1.852975], [53.447992, -1.852845]], [[53.447348, -1.852393], [53.447251, -1.852442]], [[53.447251, -1.852442], [53.447173, -1.85252]], [[53.446854, -1.85281], [53.446806, -1.852661]], [[53.446806, -1.852661], [53.446733, -1.852554]], [[53.439909, -1.861594], [53.439836, -1.86171]], [[53.439836, -1.86171], [53.439784, -1.861853]], [[53.431849, -1.869155], [53.431767, -1.869248]], [[53.430836, -1.869586], [53.430763, -1.869682]], [[53.430763, -1.869682], [53.430656, -1.86968]], [[53.430656, -1.86968], [53.430563, -1.869654]], [[53.430563, -1.869654], [53.430464, -1.869646]], [[53.430051, -1.869905], [53.429979, -1.870028]], [[53.429979, -1.870028], [53.429895, -1.870115]], [[53.429066, -1.870929], [53.428968, -1.87097]], [[53.428376, -1.871389], [53.428326, -1.871515]], [[53.426074, -1.874466], [53.426085, -1.874627]], [[53.426085, -1.874627], [53.426075, -1.874789]], [[53.426031, -1.876396], [53.425992, -1.876571]], [[53.425992, -1.876571], [53.425943, -1.876718]], [[53.425853, -1.878898], [53.425825, -1.87906]], [[53.425825, -1.87906], [53.425775, -1.879193]], [[53.420168, -1.892879], [53.420167, -1.893031]], [[53.41867, -1.899781], [53.41862, -1.89992]], [[53.409096, -1.90614], [53.409012, -1.906044]], [[53.407509, -1.9042], [53.407439, -1.904102]], [[53.403499, -1.898921], [53.403458, -1.898787]], [[53.39967, -1.888644], [53.399676, -1.888485]], [[53.398683, -1.884766], [53.398637, -1.884632]], [[53.385387, -1.883354], [53.385296, -1.883349]], [[53.385296, -1.883349], [53.385228, -1.883451]], [[53.383823, -1.884426], [53.383735, -1.884358]], [[53.383735, -1.884358], [53.38365, -1.884279]], [[53.382212, -1.882525], [53.382128, -1.882442]], [[53.372602, -1.880122], [53.372586, -1.879962]], [[53.372586, -1.879962], [53.372563, -1.879797]], [[53.371284, -1.867721], [53.371274, -1.867552]], [[53.371069, -1.866332], [53.371004, -1.866228]], [[53.370581, -1.864967], [53.370531, -1.864818]], [[53.367873, -1.859486], [53.367814, -1.859366]], [[53.366139, -1.854881], [53.366116, -1.854728]], [[53.365858, -1.852521], [53.365932, -1.852418]], [[53.365369, -1.848951], [53.365299, -1.84885]], [[53.365439, -1.842249], [53.365532, -1.842204]], [[53.366774, -1.833442], [53.366802, -1.833289]], [[53.366802, -1.833289], [53.366841, -1.833127]], [[53.36732, -1.831407], [53.367394, -1.831289]], [[53.367961, -1.829066], [53.368024, -1.828915]], [[53.368074, -1.828756], [53.368121, -1.828623]], [[53.368223, -1.828342], [53.368252, -1.828179]], [[53.368378, -1.827952], [53.368417, -1.827803]], [[53.369079, -1.825384], [53.369139, -1.825263]], [[53.369193, -1.825143], [53.369257, -1.825031]], [[53.369922, -1.823589], [53.369952, -1.823436]], [[53.37003, -1.822692], [53.370082, -1.822563]], [[53.370118, -1.822405], [53.370146, -1.822247]], [[53.370078, -1.82128], [53.370038, -1.821128]], [[53.370192, -1.820699], [53.370267, -1.820589]], [[53.370423, -1.820188], [53.370496, -1.820066]], [[53.370421, -1.818617], [53.370442, -1.818462]], [[53.370427, -1.817751], [53.370397, -1.8176]], [[53.370371, -1.817446], [53.370406, -1.8173]], [[53.370188, -1.816469], [53.370113, -1.816367]], [[53.369788, -1.81602], [53.369695, -1.816009]], [[53.369144, -1.815974], [53.369063, -1.815903]], [[53.36873, -1.815498], [53.368687, -1.815361]], [[53.368687, -1.815361], [53.368596, -1.81533]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffe800ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffe800ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_07ca09bf3c9b30b6c2acd070cd9a3aa0 = L.polyline(
                [[[53.491396, -1.893781], [53.491364, -1.893932]], [[53.491342, -1.894078], [53.491288, -1.894207]], [[53.49063, -1.895163], [53.490541, -1.895188]], [[53.490541, -1.895188], [53.490443, -1.895179]], [[53.489315, -1.896114], [53.489243, -1.896222]], [[53.489243, -1.896222], [53.489177, -1.896325]], [[53.488055, -1.898917], [53.488017, -1.899069]], [[53.488017, -1.899069], [53.487996, -1.899226]], [[53.484727, -1.907371], [53.484705, -1.907531]], [[53.484664, -1.908384], [53.484696, -1.908528]], [[53.484696, -1.908528], [53.484691, -1.908692]], [[53.484519, -1.910225], [53.484517, -1.910387]], [[53.484231, -1.910745], [53.484167, -1.910855]], [[53.484164, -1.910954], [53.484109, -1.911103]], [[53.483691, -1.912891], [53.483685, -1.91308]], [[53.483579, -1.913889], [53.483571, -1.914044]], [[53.483586, -1.91471], [53.483586, -1.914871]], [[53.483276, -1.917791], [53.483194, -1.917855]], [[53.483194, -1.917855], [53.483094, -1.917839]], [[53.48292, -1.917728], [53.482834, -1.917646]], [[53.481391, -1.917443], [53.4813, -1.917457]], [[53.479069, -1.915045], [53.478985, -1.914993]], [[53.478985, -1.914993], [53.478946, -1.914827]], [[53.477876, -1.908157], [53.477812, -1.908038]], [[53.477812, -1.908038], [53.477742, -1.907933]], [[53.477742, -1.907933], [53.477677, -1.907823]], [[53.477677, -1.907823], [53.477606, -1.907705]], [[53.477606, -1.907705], [53.477533, -1.907615]], [[53.477533, -1.907615], [53.477455, -1.907517]], [[53.477455, -1.907517], [53.477375, -1.907435]], [[53.477216, -1.907286], [53.47715, -1.907171]], [[53.47715, -1.907171], [53.477086, -1.907048]], [[53.477086, -1.907048], [53.477029, -1.906919]], [[53.477029, -1.906919], [53.476997, -1.906778]], [[53.476997, -1.906778], [53.476931, -1.90666]], [[53.476931, -1.90666], [53.476874, -1.906543]], [[53.476189, -1.90599], [53.476093, -1.906011]], [[53.476093, -1.906011], [53.475995, -1.906022]], [[53.475904, -1.905972], [53.475814, -1.905971]], [[53.474257, -1.906468], [53.474161, -1.906433]], [[53.474161, -1.906433], [53.474073, -1.906396]], [[53.473347, -1.906146], [53.473249, -1.906107]], [[53.473249, -1.906107], [53.473155, -1.90612]], [[53.472263, -1.905807], [53.472163, -1.905805]], [[53.471395, -1.904919], [53.471343, -1.904779]], [[53.471343, -1.904779], [53.471279, -1.904665]], [[53.470505, -1.90342], [53.470428, -1.903323]], [[53.470395, -1.903176], [53.47035, -1.90304]], [[53.47035, -1.90304], [53.470281, -1.902931]], [[53.46991, -1.901279], [53.469882, -1.90112]], [[53.469882, -1.90112], [53.469857, -1.900968]], [[53.469857, -1.900968], [53.469829, -1.900819]], [[53.469829, -1.900819], [53.469847, -1.900653]], [[53.469847, -1.900653], [53.469848, -1.900487]], [[53.469802, -1.900181], [53.469761, -1.90004]], [[53.469761, -1.90004], [53.469768, -1.899889]], [[53.469659, -1.898484], [53.469651, -1.898334]], [[53.469651, -1.898334], [53.469633, -1.898185]], [[53.469602, -1.897873], [53.469564, -1.897736]], [[53.469564, -1.897736], [53.469539, -1.897578]], [[53.469539, -1.897578], [53.469493, -1.897447]], [[53.469493, -1.897447], [53.469453, -1.897305]], [[53.469337, -1.896531], [53.469324, -1.896373]], [[53.469357, -1.895743], [53.469351, -1.895586]], [[53.469351, -1.895586], [53.469326, -1.895426]], [[53.469291, -1.895203], [53.469265, -1.895047]], [[53.469265, -1.895047], [53.469247, -1.894887]], [[53.46923, -1.894737], [53.469196, -1.894594]], [[53.469196, -1.894594], [53.469184, -1.894431]], [[53.469184, -1.894431], [53.469152, -1.894272]], [[53.469064, -1.893984], [53.46902, -1.893848]], [[53.46902, -1.893848], [53.469021, -1.893688]], [[53.469021, -1.893688], [53.469091, -1.893593]], [[53.469241, -1.893428], [53.469209, -1.893287]], [[53.469143, -1.893174], [53.46914, -1.893024]], [[53.46914, -1.893024], [53.469104, -1.892872]], [[53.469067, -1.892719], [53.469073, -1.892554]], [[53.469121, -1.892107], [53.469123, -1.891953]], [[53.469123, -1.891953], [53.469158, -1.891802]], [[53.469158, -1.891802], [53.469149, -1.891641]], [[53.469149, -1.891641], [53.469131, -1.891481]], [[53.469131, -1.891481], [53.469155, -1.891335]], [[53.469155, -1.891335], [53.469195, -1.891191]], [[53.469195, -1.891191], [53.469208, -1.891032]], [[53.469208, -1.891032], [53.469217, -1.890878]], [[53.469194, -1.890623], [53.469173, -1.890468]], [[53.469173, -1.890468], [53.469129, -1.890334]], [[53.469091, -1.890185], [53.46908, -1.890035]], [[53.46908, -1.890035], [53.469065, -1.88988]], [[53.469056, -1.889729], [53.469012, -1.889596]], [[53.469012, -1.889596], [53.469021, -1.889441]], [[53.469021, -1.889441], [53.469079, -1.889316]], [[53.469066, -1.88916], [53.469008, -1.88903]], [[53.469008, -1.88903], [53.468977, -1.888886]], [[53.468965, -1.888736], [53.468995, -1.888592]], [[53.468883, -1.888157], [53.46889, -1.887997]], [[53.46889, -1.887997], [53.468903, -1.887838]], [[53.468903, -1.887838], [53.468877, -1.887681]], [[53.468877, -1.887681], [53.468888, -1.88753]], [[53.468888, -1.88753], [53.468856, -1.887373]], [[53.468856, -1.887373], [53.468831, -1.88721]], [[53.468831, -1.88721], [53.468793, -1.887062]], [[53.468793, -1.887062], [53.468755, -1.886919]], [[53.468755, -1.886919], [53.468687, -1.886815]], [[53.468687, -1.886815], [53.468613, -1.886724]], [[53.468613, -1.886724], [53.468579, -1.886566]], [[53.468579, -1.886566], [53.468533, -1.886432]], [[53.468533, -1.886432], [53.4685, -1.886279]], [[53.4685, -1.886279], [53.468428, -1.88618]], [[53.468327, -1.885784], [53.468274, -1.885653]], [[53.468235, -1.885502], [53.468188, -1.885365]], [[53.468188, -1.885365], [53.468142, -1.88522]], [[53.468062, -1.885117], [53.467986, -1.885026]], [[53.46791, -1.884576], [53.467924, -1.88442]], [[53.467924, -1.88442], [53.467935, -1.884265]], [[53.467935, -1.884265], [53.467921, -1.884113]], [[53.467921, -1.884113], [53.467892, -1.883968]], [[53.467892, -1.883968], [53.467888, -1.883806]], [[53.467855, -1.883652], [53.467832, -1.883499]], [[53.467832, -1.883499], [53.467762, -1.883383]], [[53.467762, -1.883383], [53.467693, -1.883276]], [[53.467378, -1.882676], [53.467289, -1.882656]], [[53.467289, -1.882656], [53.467198, -1.882604]], [[53.467198, -1.882604], [53.467113, -1.882538]], [[53.467113, -1.882538], [53.467031, -1.882478]], [[53.466855, -1.882354], [53.466767, -1.882305]], [[53.466685, -1.882223], [53.466619, -1.882105]], [[53.466619, -1.882105], [53.466553, -1.881996]], [[53.466553, -1.881996], [53.466485, -1.88188]], [[53.466322, -1.881735], [53.46625, -1.881636]], [[53.46625, -1.881636], [53.466217, -1.881492]], [[53.466217, -1.881492], [53.4662, -1.881333]], [[53.4662, -1.881333], [53.466152, -1.881198]], [[53.466039, -1.880952], [53.465967, -1.880852]], [[53.465967, -1.880852], [53.465902, -1.880739]], [[53.465902, -1.880739], [53.465819, -1.880677]], [[53.465819, -1.880677], [53.465729, -1.880633]], [[53.465729, -1.880633], [53.465658, -1.880516]], [[53.465518, -1.880356], [53.465439, -1.880266]], [[53.465373, -1.88016], [53.465286, -1.880095]], [[53.465286, -1.880095], [53.465195, -1.880068]], [[53.465195, -1.880068], [53.465109, -1.880117]], [[53.464875, -1.879984], [53.464791, -1.879903]], [[53.464791, -1.879903], [53.464706, -1.879821]], [[53.464751, -1.878457], [53.464794, -1.878316]], [[53.464794, -1.878316], [53.464798, -1.878152]], [[53.464798, -1.878152], [53.464813, -1.877999]], [[53.464813, -1.877999], [53.464842, -1.877849]], [[53.464842, -1.877849], [53.464846, -1.877695]], [[53.464846, -1.877695], [53.46485, -1.877542]], [[53.46485, -1.877542], [53.464871, -1.877383]], [[53.464871, -1.877383], [53.464889, -1.877233]], [[53.464889, -1.877233], [53.464893, -1.877076]], [[53.464893, -1.877076], [53.464911, -1.876918]], [[53.464911, -1.876918], [53.464966, -1.876795]], [[53.464966, -1.876795], [53.464958, -1.876636]], [[53.464958, -1.876636], [53.464986, -1.876491]], [[53.465015, -1.876343], [53.465014, -1.876175]], [[53.465014, -1.876175], [53.465045, -1.876019]], [[53.465045, -1.876019], [53.465068, -1.875872]], [[53.465068, -1.875872], [53.465069, -1.875714]], [[53.465069, -1.875714], [53.465077, -1.875553]], [[53.465077, -1.875553], [53.465074, -1.875401]], [[53.465074, -1.875401], [53.465082, -1.875249]], [[53.465082, -1.875249], [53.465108, -1.875104]], [[53.465108, -1.875104], [53.465132, -1.874943]], [[53.465132, -1.874943], [53.46518, -1.874808]], [[53.465314, -1.874213], [53.46533, -1.874062]], [[53.46533, -1.874062], [53.465324, -1.873897]], [[53.465324, -1.873897], [53.465349, -1.873744]], [[53.465349, -1.873744], [53.46537, -1.873594]], [[53.465452, -1.873137], [53.465459, -1.872976]], [[53.465459, -1.872976], [53.465409, -1.87285]], [[53.465409, -1.87285], [53.465393, -1.872695]], [[53.465393, -1.872695], [53.465396, -1.872542]], [[53.465396, -1.872542], [53.46538, -1.872386]], [[53.46538, -1.872386], [53.465361, -1.872221]], [[53.465361, -1.872221], [53.465348, -1.872059]], [[53.465348, -1.872059], [53.465313, -1.871918]], [[53.465292, -1.871762], [53.465281, -1.871602]], [[53.465281, -1.871602], [53.465263, -1.87144]], [[53.465264, -1.871122], [53.46532, -1.870986]], [[53.46532, -1.870986], [53.465396, -1.8709]], [[53.465396, -1.8709], [53.465437, -1.870766]], [[53.465437, -1.870766], [53.465458, -1.870617]], [[53.465458, -1.870617], [53.465487, -1.870465]], [[53.465487, -1.870465], [53.465536, -1.87033]], [[53.465536, -1.87033], [53.465593, -1.870207]], [[53.465593, -1.870207], [53.465613, -1.870056]], [[53.465613, -1.870056], [53.465633, -1.869895]], [[53.465633, -1.869895], [53.465693, -1.869762]], [[53.465693, -1.869762], [53.465751, -1.869627]], [[53.465785, -1.869157], [53.465818, -1.869006]], [[53.465818, -1.869006], [53.465832, -1.868846]], [[53.466004, -1.868453], [53.466031, -1.868297]], [[53.466031, -1.868297], [53.466053, -1.868138]], [[53.466053, -1.868138], [53.466048, -1.867977]], [[53.46607, -1.864242], [53.465991, -1.864159]], [[53.465991, -1.864159], [53.465975, -1.864008]], [[53.465835, -1.862951], [53.465757, -1.862867]], [[53.465757, -1.862867], [53.46569, -1.862751]], [[53.465641, -1.862619], [53.465543, -1.862598]], [[53.465543, -1.862598], [53.465454, -1.862548]], [[53.465168, -1.862465], [53.465077, -1.862498]], [[53.465077, -1.862498], [53.464984, -1.862454]], [[53.464984, -1.862454], [53.464902, -1.862389]], [[53.464902, -1.862389], [53.464809, -1.862336]], [[53.464809, -1.862336], [53.464711, -1.862332]], [[53.464711, -1.862332], [53.464652, -1.862204]], [[53.464652, -1.862204], [53.464569, -1.862141]], [[53.464204, -1.861779], [53.46411, -1.8618]], [[53.46411, -1.8618], [53.464051, -1.86168]], [[53.464051, -1.86168], [53.463998, -1.86155]], [[53.463998, -1.86155], [53.463923, -1.861446]], [[53.463923, -1.861446], [53.463842, -1.861364]], [[53.463663, -1.861268], [53.463584, -1.861184]], [[53.463413, -1.861044], [53.463315, -1.861051]], [[53.463315, -1.861051], [53.463228, -1.86111]], [[53.463228, -1.86111], [53.463137, -1.86117]], [[53.463137, -1.86117], [53.463049, -1.861128]], [[53.463049, -1.861128], [53.462994, -1.860996]], [[53.462994, -1.860996], [53.462909, -1.860932]], [[53.462909, -1.860932], [53.462823, -1.860881]], [[53.462363, -1.860749], [53.462274, -1.860711]], [[53.462274, -1.860711], [53.462191, -1.86063]], [[53.462191, -1.86063], [53.462145, -1.860497]], [[53.462112, -1.860341], [53.462031, -1.860272]], [[53.462031, -1.860272], [53.461962, -1.86017]], [[53.46188, -1.860135], [53.461791, -1.860095]], [[53.461444, -1.859835], [53.461359, -1.859767]], [[53.459509, -1.860281], [53.459424, -1.860224]], [[53.459424, -1.860224], [53.45934, -1.860157]], [[53.458906, -1.859893], [53.458811, -1.859881]], [[53.458811, -1.859881], [53.458716, -1.859882]], [[53.458716, -1.859882], [53.458628, -1.859843]], [[53.45854, -1.859904], [53.458443, -1.859932]], [[53.458443, -1.859932], [53.458354, -1.859945]], [[53.458354, -1.859945], [53.458268, -1.86002]], [[53.458268, -1.86002], [53.458199, -1.860126]], [[53.458199, -1.860126], [53.458106, -1.860128]], [[53.458106, -1.860128], [53.458015, -1.860182]], [[53.457691, -1.860263], [53.457604, -1.86033]], [[53.457604, -1.86033], [53.457511, -1.860388]], [[53.457511, -1.860388], [53.457417, -1.860403]], [[53.457417, -1.860403], [53.457346, -1.860496]], [[53.457029, -1.860813], [53.456947, -1.86088]], [[53.456947, -1.86088], [53.456855, -1.860932]], [[53.456855, -1.860932], [53.45677, -1.860989]], [[53.456745, -1.860833], [53.456655, -1.860796]], [[53.456558, -1.860841], [53.456479, -1.860919]], [[53.456479, -1.860919], [53.456433, -1.861051]], [[53.456433, -1.861051], [53.456339, -1.861093]], [[53.456339, -1.861093], [53.456268, -1.860984]], [[53.456268, -1.860984], [53.456196, -1.860887]], [[53.456099, -1.860858], [53.456027, -1.860748]], [[53.456027, -1.860748], [53.455966, -1.860837]], [[53.455952, -1.860676], [53.455964, -1.860518]], [[53.455964, -1.860518], [53.455897, -1.860416]], [[53.455897, -1.860416], [53.455836, -1.860284]], [[53.455614, -1.85997], [53.455532, -1.859893]], [[53.455532, -1.859893], [53.455484, -1.859753]], [[53.455126, -1.859745], [53.455086, -1.859891]], [[53.455086, -1.859891], [53.454995, -1.859881]], [[53.454995, -1.859881], [53.454915, -1.85996]], [[53.454915, -1.85996], [53.454826, -1.860003]], [[53.454826, -1.860003], [53.454845, -1.859851]], [[53.454845, -1.859851], [53.454788, -1.859728]], [[53.454503, -1.859879], [53.45441, -1.859844]], [[53.453254, -1.85843], [53.453189, -1.858298]], [[53.453141, -1.858162], [53.453099, -1.858012]], [[53.453099, -1.858012], [53.453043, -1.857881]], [[53.453043, -1.857881], [53.453004, -1.857744]], [[53.453004, -1.857744], [53.452956, -1.857616]], [[53.452906, -1.85749], [53.452875, -1.857343]], [[53.452743, -1.857028], [53.452682, -1.856916]], [[53.452521, -1.856739], [53.452453, -1.856627]], [[53.452453, -1.856627], [53.452358, -1.856625]], [[53.452358, -1.856625], [53.452273, -1.856559]], [[53.452169, -1.856305], [53.452095, -1.856302]], [[53.452009, -1.856239], [53.451921, -1.856202]], [[53.451921, -1.856202], [53.451848, -1.856096]], [[53.451766, -1.856017], [53.451667, -1.856033]], [[53.451332, -1.855914], [53.451282, -1.856002]], [[53.45105, -1.855696], [53.450959, -1.855677]], [[53.450959, -1.855677], [53.450872, -1.855633]], [[53.450872, -1.855633], [53.450779, -1.855609]], [[53.450779, -1.855609], [53.450689, -1.855624]], [[53.450689, -1.855624], [53.450591, -1.855644]], [[53.450402, -1.855588], [53.45031, -1.855586]], [[53.450018, -1.855545], [53.449923, -1.855583]], [[53.449832, -1.855537], [53.449742, -1.855488]], [[53.449592, -1.855112], [53.449546, -1.854972]], [[53.449546, -1.854972], [53.449502, -1.854832]], [[53.449484, -1.85468], [53.449412, -1.85457]], [[53.449344, -1.854283], [53.449299, -1.854145]], [[53.449071, -1.853479], [53.448985, -1.85353]], [[53.448985, -1.85353], [53.448891, -1.853494]], [[53.448891, -1.853494], [53.448809, -1.853558]], [[53.447922, -1.852771], [53.447823, -1.852727]], [[53.443782, -1.854695], [53.443723, -1.854809]], [[53.441778, -1.857811], [53.441721, -1.857942]], [[53.441721, -1.857942], [53.441675, -1.858082]], [[53.441131, -1.859184], [53.441085, -1.859333]], [[53.44083, -1.859815], [53.440799, -1.859966]], [[53.440196, -1.861171], [53.440116, -1.861261]], [[53.439205, -1.862899], [53.439127, -1.86301]], [[53.434375, -1.8681], [53.434295, -1.868176]], [[53.433766, -1.868595], [53.433679, -1.868649]], [[53.433679, -1.868649], [53.433585, -1.868707]], [[53.432824, -1.868968], [53.432776, -1.868984]], [[53.432776, -1.868984], [53.432687, -1.869051]], [[53.432296, -1.869099], [53.432206, -1.869124]], [[53.432116, -1.869106], [53.43202, -1.869105]], [[53.421604, -1.887897], [53.42156, -1.888051]], [[53.42156, -1.888051], [53.421548, -1.888217]], [[53.41875, -1.899548], [53.418711, -1.899635]], [[53.418711, -1.899635], [53.41867, -1.899781]], [[53.417682, -1.902104], [53.4176, -1.902194]], [[53.412306, -1.907667], [53.412225, -1.907765]], [[53.410342, -1.909256], [53.410281, -1.909143]], [[53.410281, -1.909143], [53.410223, -1.909023]], [[53.410223, -1.909023], [53.41015, -1.908931]], [[53.41015, -1.908931], [53.410092, -1.90881]], [[53.410092, -1.90881], [53.410054, -1.908662]], [[53.410054, -1.908662], [53.409984, -1.908542]], [[53.409984, -1.908542], [53.409935, -1.908416]], [[53.408793, -1.905751], [53.408724, -1.905635]], [[53.408724, -1.905635], [53.408647, -1.905545]], [[53.408189, -1.905044], [53.408102, -1.904983]], [[53.407838, -1.904749], [53.407784, -1.904614]], [[53.407784, -1.904614], [53.407729, -1.904486]], [[53.407729, -1.904486], [53.40766, -1.904385]], [[53.407088, -1.903214], [53.407063, -1.903066]], [[53.407063, -1.903066], [53.407011, -1.90293]], [[53.407011, -1.90293], [53.406979, -1.902784]], [[53.406276, -1.900987], [53.406192, -1.900912]], [[53.406192, -1.900912], [53.406097, -1.900882]], [[53.406097, -1.900882], [53.406006, -1.900884]], [[53.406006, -1.900884], [53.405921, -1.900835]], [[53.40557, -1.900735], [53.405482, -1.900695]], [[53.405126, -1.900604], [53.405035, -1.900591]], [[53.404857, -1.900501], [53.404763, -1.900514]], [[53.404763, -1.900514], [53.404674, -1.900487]], [[53.404674, -1.900487], [53.404581, -1.900427]], [[53.404581, -1.900427], [53.404486, -1.90042]], [[53.404398, -1.900405], [53.404349, -1.900267]], [[53.404349, -1.900267], [53.404308, -1.900214]], [[53.404308, -1.900214], [53.40424, -1.900098]], [[53.404162, -1.900019], [53.404094, -1.899903]], [[53.404094, -1.899903], [53.404007, -1.89983]], [[53.403923, -1.899739], [53.403844, -1.899659]], [[53.403844, -1.899659], [53.403764, -1.899583]], [[53.403764, -1.899583], [53.403707, -1.899462]], [[53.403707, -1.899462], [53.403665, -1.899328]], [[53.403377, -1.898487], [53.403338, -1.89833]], [[53.403058, -1.897173], [53.402999, -1.897058]], [[53.402999, -1.897058], [53.402942, -1.896922]], [[53.402156, -1.895251], [53.402083, -1.895344]], [[53.401447, -1.895187], [53.401359, -1.895217]], [[53.40064, -1.895286], [53.400551, -1.895233]], [[53.400503, -1.893249], [53.400443, -1.893133]], [[53.400443, -1.893133], [53.400387, -1.893014]], [[53.400387, -1.893014], [53.400335, -1.892889]], [[53.400335, -1.892889], [53.40029, -1.892752]], [[53.40006, -1.892268], [53.400014, -1.89212]], [[53.399988, -1.891806], [53.399997, -1.891644]], [[53.399997, -1.891644], [53.399974, -1.891489]], [[53.399925, -1.891358], [53.399913, -1.891193]], [[53.399913, -1.891193], [53.399873, -1.891043]], [[53.399625, -1.890203], [53.399645, -1.890037]], [[53.399645, -1.890037], [53.399621, -1.889884]], [[53.399621, -1.889884], [53.399579, -1.889743]], [[53.399579, -1.889743], [53.399497, -1.889675]], [[53.399497, -1.889675], [53.399452, -1.889533]], [[53.399452, -1.889533], [53.399488, -1.88939]], [[53.39959, -1.887721], [53.399564, -1.887566]], [[53.399564, -1.887566], [53.399526, -1.887416]], [[53.399526, -1.887416], [53.399486, -1.887272]], [[53.399361, -1.886849], [53.399315, -1.886717]], [[53.399315, -1.886717], [53.399272, -1.886573]], [[53.399222, -1.886266], [53.399166, -1.886132]], [[53.399166, -1.886132], [53.399114, -1.885998]], [[53.399114, -1.885998], [53.39906, -1.88586]], [[53.39906, -1.88586], [53.399001, -1.885745]], [[53.399001, -1.885745], [53.398983, -1.885595]], [[53.398983, -1.885595], [53.398927, -1.885467]], [[53.398571, -1.884528], [53.398538, -1.884376]], [[53.398389, -1.883649], [53.398392, -1.883492]], [[53.398127, -1.88289], [53.398072, -1.882764]], [[53.398072, -1.882764], [53.398044, -1.88261]], [[53.397909, -1.882188], [53.397851, -1.882063]], [[53.397851, -1.882063], [53.397801, -1.881939]], [[53.397801, -1.881939], [53.397733, -1.881837]], [[53.397743, -1.881526], [53.397696, -1.881379]], [[53.397674, -1.881075], [53.39764, -1.880934]], [[53.39764, -1.880934], [53.397582, -1.880816]], [[53.397582, -1.880816], [53.397567, -1.880656]], [[53.39741, -1.880236], [53.39736, -1.880107]], [[53.397322, -1.878879], [53.397295, -1.878727]], [[53.397295, -1.878727], [53.397282, -1.878578]], [[53.397282, -1.878578], [53.397277, -1.878415]], [[53.397277, -1.878415], [53.397272, -1.878248]], [[53.397272, -1.878248], [53.397246, -1.878089]], [[53.397194, -1.877781], [53.397193, -1.877618]], [[53.397193, -1.877618], [53.397193, -1.87745]], [[53.397224, -1.877297], [53.39726, -1.877152]], [[53.39726, -1.877152], [53.397306, -1.877001]], [[53.397302, -1.876843], [53.397344, -1.876705]], [[53.397344, -1.876705], [53.397363, -1.876538]], [[53.397363, -1.876538], [53.397313, -1.876399]], [[53.397313, -1.876399], [53.397296, -1.876251]], [[53.397045, -1.876364], [53.396986, -1.876482]], [[53.396583, -1.876835], [53.396505, -1.876923]], [[53.396505, -1.876923], [53.396409, -1.876927]], [[53.395948, -1.877086], [53.395864, -1.877172]], [[53.395864, -1.877172], [53.395776, -1.877224]], [[53.395438, -1.877482], [53.395351, -1.877532]], [[53.395351, -1.877532], [53.395259, -1.877553]], [[53.395171, -1.8776], [53.395077, -1.877634]], [[53.395077, -1.877634], [53.394986, -1.877624]], [[53.394986, -1.877624], [53.394907, -1.877536]], [[53.394723, -1.877639], [53.394632, -1.87762]], [[53.394632, -1.87762], [53.394541, -1.877637]], [[53.394541, -1.877637], [53.394459, -1.877704]], [[53.394459, -1.877704], [53.394366, -1.877766]], [[53.394366, -1.877766], [53.394282, -1.877824]], [[53.394282, -1.877824], [53.3942, -1.87791]], [[53.393958, -1.878142], [53.393883, -1.878228]], [[53.393883, -1.878228], [53.393788, -1.878215]], [[53.393788, -1.878215], [53.393713, -1.878309]], [[53.393713, -1.878309], [53.393624, -1.878347]], [[53.393444, -1.878494], [53.393363, -1.878577]], [[53.393105, -1.878723], [53.393019, -1.878658]], [[53.393019, -1.878658], [53.392927, -1.87864]], [[53.392927, -1.87864], [53.39284, -1.878712]], [[53.392648, -1.878644], [53.39255, -1.878623]], [[53.39255, -1.878623], [53.392459, -1.878659]], [[53.392459, -1.878659], [53.392374, -1.878738]], [[53.392009, -1.878752], [53.391919, -1.878772]], [[53.391919, -1.878772], [53.391829, -1.878818]], [[53.391829, -1.878818], [53.391734, -1.878859]], [[53.391734, -1.878859], [53.391657, -1.878949]], [[53.391657, -1.878949], [53.391603, -1.87907]], [[53.389941, -1.880092], [53.389856, -1.880151]], [[53.388742, -1.880407], [53.388652, -1.880414]], [[53.388652, -1.880414], [53.388562, -1.880453]], [[53.388562, -1.880453], [53.388503, -1.880569]], [[53.388503, -1.880569], [53.388527, -1.880726]], [[53.388532, -1.88088], [53.388536, -1.881035]], [[53.388536, -1.881035], [53.388505, -1.881181]], [[53.38843, -1.881625], [53.388384, -1.881762]], [[53.388384, -1.881762], [53.388322, -1.881897]], [[53.388103, -1.882094], [53.388036, -1.882213]], [[53.387856, -1.882247], [53.387797, -1.882361]], [[53.387797, -1.882361], [53.387764, -1.882508]], [[53.3877, -1.882617], [53.387612, -1.88268]], [[53.387612, -1.88268], [53.387522, -1.882754]], [[53.387522, -1.882754], [53.387443, -1.88285]], [[53.387256, -1.882898], [53.387168, -1.882972]], [[53.387168, -1.882972], [53.387072, -1.882943]], [[53.387072, -1.882943], [53.386993, -1.882862]], [[53.386993, -1.882862], [53.386897, -1.882851]], [[53.386897, -1.882851], [53.386805, -1.882818]], [[53.386805, -1.882818], [53.386713, -1.882799]], [[53.38568, -1.883377], [53.385583, -1.883363]], [[53.385583, -1.883363], [53.385488, -1.883355]], [[53.38515, -1.883531], [53.385076, -1.883626]], [[53.385076, -1.883626], [53.384985, -1.8836]], [[53.384188, -1.884453], [53.384097, -1.884467]], [[53.38365, -1.884279], [53.383572, -1.884196]], [[53.383572, -1.884196], [53.38349, -1.884126]], [[53.383116, -1.883466], [53.38303, -1.883389]], [[53.382957, -1.883083], [53.382885, -1.882975]], [[53.382885, -1.882975], [53.38283, -1.882837]], [[53.38283, -1.882837], [53.38274, -1.882811]], [[53.38274, -1.882811], [53.38265, -1.882818]], [[53.38134, -1.88212], [53.381247, -1.882161]], [[53.380434, -1.882547], [53.380419, -1.882602]], [[53.380163, -1.882628], [53.380068, -1.882659]], [[53.379039, -1.882601], [53.378958, -1.882519]], [[53.378958, -1.882519], [53.378868, -1.882483]], [[53.378868, -1.882483], [53.378773, -1.882438]], [[53.378021, -1.882215], [53.377929, -1.882246]], [[53.377929, -1.882246], [53.377844, -1.882284]], [[53.37776, -1.882211], [53.377671, -1.882184]], [[53.377671, -1.882184], [53.377581, -1.882213]], [[53.377581, -1.882213], [53.377498, -1.882152]], [[53.377498, -1.882152], [53.377404, -1.882131]], [[53.377404, -1.882131], [53.377309, -1.882159]], [[53.377214, -1.882137], [53.377135, -1.882063]], [[53.377135, -1.882063], [53.377055, -1.88199]], [[53.377055, -1.88199], [53.376976, -1.881901]], [[53.376976, -1.881901], [53.37689, -1.881851]], [[53.376222, -1.881876], [53.376126, -1.881928]], [[53.37568, -1.882092], [53.375589, -1.882054]], [[53.375589, -1.882054], [53.375538, -1.881921]], [[53.375538, -1.881921], [53.37546, -1.88183]], [[53.37546, -1.88183], [53.375381, -1.88173]], [[53.375381, -1.88173], [53.375285, -1.881727]], [[53.375285, -1.881727], [53.375198, -1.881775]], [[53.375198, -1.881775], [53.375103, -1.881821]], [[53.375103, -1.881821], [53.375012, -1.881837]], [[53.374559, -1.881836], [53.374461, -1.881845]], [[53.374461, -1.881845], [53.374363, -1.881824]], [[53.374363, -1.881824], [53.374267, -1.881852]], [[53.374267, -1.881852], [53.374177, -1.881881]], [[53.374177, -1.881881], [53.37408, -1.881899]], [[53.37408, -1.881899], [53.37399, -1.881888]], [[53.373828, -1.881726], [53.373737, -1.881674]], [[53.373737, -1.881674], [53.373642, -1.881613]], [[53.372728, -1.877632], [53.372736, -1.877481]], [[53.372736, -1.877481], [53.372758, -1.877314]], [[53.372785, -1.877168], [53.372772, -1.877005]], [[53.372772, -1.877005], [53.372781, -1.876843]], [[53.372781, -1.876843], [53.372794, -1.876685]], [[53.372794, -1.876685], [53.372809, -1.876523]], [[53.372809, -1.876523], [53.37284, -1.876363]], [[53.37284, -1.876363], [53.372851, -1.876206]], [[53.372851, -1.876206], [53.372895, -1.876065]], [[53.372895, -1.876065], [53.372927, -1.875915]], [[53.372927, -1.875915], [53.372918, -1.875763]], [[53.372918, -1.875763], [53.372903, -1.87561]], [[53.372903, -1.87561], [53.372931, -1.875452]], [[53.372931, -1.875452], [53.372951, -1.875304]], [[53.37283, -1.874852], [53.372786, -1.874716]], [[53.372786, -1.874716], [53.372761, -1.874571]], [[53.372761, -1.874571], [53.372749, -1.874408]], [[53.372855, -1.873472], [53.372888, -1.873323]], [[53.372888, -1.873323], [53.372914, -1.873175]], [[53.372914, -1.873175], [53.372913, -1.873018]], [[53.372913, -1.873018], [53.372912, -1.872863]], [[53.372912, -1.872863], [53.37293, -1.872709]], [[53.37293, -1.872709], [53.372919, -1.872544]], [[53.372901, -1.872079], [53.372894, -1.871921]], [[53.372894, -1.871921], [53.372903, -1.871765]], [[53.372903, -1.871765], [53.372934, -1.87161]], [[53.372934, -1.87161], [53.372979, -1.871464]], [[53.372979, -1.871464], [53.372992, -1.87131]], [[53.372992, -1.87131], [53.372936, -1.871193]], [[53.373387, -1.871112], [53.373434, -1.87098]], [[53.373488, -1.870858], [53.373545, -1.870713]], [[53.373545, -1.870713], [53.373577, -1.870568]], [[53.373538, -1.87042], [53.373519, -1.870269]], [[53.373478, -1.870003], [53.373489, -1.869835]], [[53.373489, -1.869835], [53.37346, -1.869686]], [[53.37346, -1.869686], [53.373408, -1.869561]], [[53.373267, -1.869401], [53.373171, -1.869419]], [[53.372892, -1.869438], [53.372803, -1.869377]], [[53.372689, -1.868664], [53.372596, -1.868681]], [[53.372596, -1.868681], [53.372507, -1.868728]], [[53.372507, -1.868728], [53.372409, -1.868774]], [[53.372409, -1.868774], [53.372313, -1.868758]], [[53.372313, -1.868758], [53.372224, -1.868778]], [[53.372025, -1.86851], [53.371931, -1.868571]], [[53.371198, -1.867087], [53.371194, -1.866928]], [[53.36656, -1.856534], [53.366593, -1.856393]], [[53.366593, -1.856393], [53.366525, -1.85629]], [[53.366211, -1.85533], [53.366163, -1.855197]], [[53.364454, -1.847333], [53.364547, -1.847265]], [[53.364547, -1.847265], [53.36463, -1.847165]], [[53.364903, -1.846518], [53.364955, -1.846408]], [[53.364955, -1.846408], [53.364958, -1.846254]], [[53.364907, -1.846031], [53.364976, -1.845678]], [[53.36501, -1.845525], [53.365029, -1.845443]], [[53.364956, -1.843537], [53.36497, -1.84338]], [[53.365083, -1.842967], [53.36514, -1.842847]], [[53.36514, -1.842847], [53.365204, -1.842733]], [[53.36561, -1.841927], [53.365629, -1.84178]], [[53.365754, -1.84142], [53.365817, -1.841307]], [[53.365918, -1.840806], [53.365986, -1.840703]], [[53.36606, -1.840594], [53.366083, -1.840439]], [[53.366063, -1.840333], [53.366149, -1.840247]], [[53.3663, -1.839334], [53.366376, -1.839226]], [[53.366439, -1.839112], [53.366518, -1.839014]], [[53.36663, -1.838755], [53.366671, -1.838613]], [[53.366671, -1.838613], [53.366717, -1.838482]], [[53.366644, -1.838207], [53.366593, -1.838083]], [[53.366593, -1.838083], [53.366548, -1.837937]], [[53.366548, -1.837937], [53.366561, -1.837778]], [[53.366644, -1.837349], [53.366609, -1.837203]], [[53.366609, -1.837203], [53.36657, -1.837058]], [[53.36657, -1.837058], [53.36652, -1.836914]], [[53.36652, -1.836914], [53.366542, -1.836759]], [[53.366542, -1.836759], [53.366553, -1.836599]], [[53.366553, -1.836599], [53.366581, -1.836452]], [[53.366581, -1.836452], [53.366605, -1.836305]], [[53.366605, -1.836305], [53.366655, -1.836176]], [[53.366623, -1.834764], [53.366657, -1.834611]], [[53.366677, -1.834295], [53.366703, -1.83414]], [[53.366792, -1.833785], [53.366777, -1.833609]], [[53.368473, -1.827671], [53.368546, -1.827577]], [[53.368546, -1.827577], [53.3686, -1.827452]], [[53.3686, -1.827452], [53.368673, -1.827355]], [[53.368695, -1.827198], [53.368729, -1.827054]], [[53.369808, -1.824137], [53.369843, -1.82399]], [[53.370178, -1.821932], [53.370211, -1.82186]], [[53.3705, -1.816688], [53.37048, -1.816676]], [[53.369695, -1.816009], [53.369654, -1.816056]], [[53.368413, -1.815365], [53.368318, -1.815384]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#8bc600ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#8bc600ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_74a5c2467e1a2c886abfab8df55a0268 = L.polyline(
                [[[53.491288, -1.894207], [53.491235, -1.894348]], [[53.491235, -1.894348], [53.491179, -1.894481]], [[53.491179, -1.894481], [53.491122, -1.894602]], [[53.491122, -1.894602], [53.491076, -1.894742]], [[53.491076, -1.894742], [53.491011, -1.894873]], [[53.491011, -1.894873], [53.490952, -1.894992]], [[53.490443, -1.895179], [53.490352, -1.895159]], [[53.490076, -1.895324], [53.489973, -1.895335]], [[53.489973, -1.895335], [53.489885, -1.895384]], [[53.489885, -1.895384], [53.489794, -1.895383]], [[53.489794, -1.895383], [53.489706, -1.895445]], [[53.489477, -1.895729], [53.489399, -1.895835]], [[53.489399, -1.895835], [53.489349, -1.895974]], [[53.489349, -1.895974], [53.489315, -1.896114]], [[53.489177, -1.896325], [53.489089, -1.896402]], [[53.489089, -1.896402], [53.489005, -1.896481]], [[53.489005, -1.896481], [53.488924, -1.896576]], [[53.488924, -1.896576], [53.488865, -1.896697]], [[53.488865, -1.896697], [53.488818, -1.896836]], [[53.488818, -1.896836], [53.488733, -1.896914]], [[53.488733, -1.896914], [53.488674, -1.897035]], [[53.488674, -1.897035], [53.488623, -1.897161]], [[53.488623, -1.897161], [53.488565, -1.897285]], [[53.488565, -1.897285], [53.48853, -1.897429]], [[53.48853, -1.897429], [53.488483, -1.897565]], [[53.488483, -1.897565], [53.488467, -1.897735]], [[53.488467, -1.897735], [53.488426, -1.897876]], [[53.488426, -1.897876], [53.488368, -1.89801]], [[53.488368, -1.89801], [53.488321, -1.898146]], [[53.488124, -1.898797], [53.488055, -1.898917]], [[53.487996, -1.899226], [53.487952, -1.89938]], [[53.487803, -1.899787], [53.487752, -1.89992]], [[53.487752, -1.89992], [53.487716, -1.900068]], [[53.487716, -1.900068], [53.487687, -1.900215]], [[53.487687, -1.900215], [53.487642, -1.900358]], [[53.48757, -1.900478], [53.487527, -1.900624]], [[53.487527, -1.900624], [53.487494, -1.900777]], [[53.487494, -1.900777], [53.487461, -1.900944]], [[53.487461, -1.900944], [53.487413, -1.901072]], [[53.487319, -1.90137], [53.487262, -1.901507]], [[53.487135, -1.901937], [53.487089, -1.902078]], [[53.487089, -1.902078], [53.487066, -1.902244]], [[53.487066, -1.902244], [53.487028, -1.902386]], [[53.48671, -1.903003], [53.486644, -1.903128]], [[53.486644, -1.903128], [53.486578, -1.903254]], [[53.486578, -1.903254], [53.486525, -1.903396]], [[53.486525, -1.903396], [53.486485, -1.903537]], [[53.486485, -1.903537], [53.486414, -1.903632]], [[53.485718, -1.905017], [53.485646, -1.905137]], [[53.485646, -1.905137], [53.485575, -1.905252]], [[53.485149, -1.905702], [53.485091, -1.905823]], [[53.48482, -1.906483], [53.484805, -1.906611]], [[53.484753, -1.906752], [53.484717, -1.9069]], [[53.484717, -1.9069], [53.484706, -1.90705]], [[53.484706, -1.90705], [53.484722, -1.907203]], [[53.484722, -1.907203], [53.484727, -1.907371]], [[53.484705, -1.907531], [53.484681, -1.907684]], [[53.48465, -1.908158], [53.484661, -1.908223]], [[53.484691, -1.908692], [53.484705, -1.908852]], [[53.48468, -1.909788], [53.484668, -1.909943]], [[53.484541, -1.910074], [53.484519, -1.910225]], [[53.484517, -1.910387], [53.484431, -1.910451]], [[53.484431, -1.910451], [53.484342, -1.910496]], [[53.48427, -1.910599], [53.484231, -1.910745]], [[53.484067, -1.911429], [53.484008, -1.911554]], [[53.484008, -1.911554], [53.483979, -1.911709]], [[53.483979, -1.911709], [53.483937, -1.911855]], [[53.483862, -1.91215], [53.483843, -1.912302]], [[53.483843, -1.912302], [53.483817, -1.912455]], [[53.483817, -1.912455], [53.483773, -1.912607]], [[53.483773, -1.912607], [53.483746, -1.912753]], [[53.483746, -1.912753], [53.483691, -1.912891]], [[53.483601, -1.913734], [53.483579, -1.913889]], [[53.483571, -1.914044], [53.483594, -1.914213]], [[53.483599, -1.914544], [53.483586, -1.91471]], [[53.483586, -1.914871], [53.483516, -1.91498]], [[53.483491, -1.915428], [53.483571, -1.915508]], [[53.483529, -1.915594], [53.483525, -1.915758]], [[53.483094, -1.917839], [53.483004, -1.917797]], [[53.483004, -1.917797], [53.48292, -1.917728]], [[53.482834, -1.917646], [53.482759, -1.917545]], [[53.482759, -1.917545], [53.482677, -1.917469]], [[53.482395, -1.91744], [53.482297, -1.917462]], [[53.482297, -1.917462], [53.482201, -1.917438]], [[53.482201, -1.917438], [53.4821, -1.917452]], [[53.4821, -1.917452], [53.482007, -1.917453]], [[53.48162, -1.91744], [53.481526, -1.917461]], [[53.48089, -1.917434], [53.480804, -1.917498]], [[53.480804, -1.917498], [53.480709, -1.917477]], [[53.480142, -1.917394], [53.480043, -1.917339]], [[53.480043, -1.917339], [53.479988, -1.917212]], [[53.479875, -1.916761], [53.479832, -1.916617]], [[53.479832, -1.916617], [53.479799, -1.916471]], [[53.479799, -1.916471], [53.479756, -1.916335]], [[53.479756, -1.916335], [53.47974, -1.916163]], [[53.479653, -1.915847], [53.479618, -1.915707]], [[53.479618, -1.915707], [53.479573, -1.915555]], [[53.479519, -1.915249], [53.479489, -1.915094]], [[53.479489, -1.915094], [53.47946, -1.914946]], [[53.47946, -1.914946], [53.479409, -1.9148]], [[53.479409, -1.9148], [53.479378, -1.914658]], [[53.479378, -1.914658], [53.479358, -1.914507]], [[53.479358, -1.914507], [53.479337, -1.914357]], [[53.479337, -1.914357], [53.479352, -1.914206]], [[53.479352, -1.914206], [53.479324, -1.914061]], [[53.479232, -1.914437], [53.47918, -1.91458]], [[53.4791, -1.914897], [53.479069, -1.915045]], [[53.478925, -1.914669], [53.478889, -1.91452]], [[53.478889, -1.91452], [53.478831, -1.914391]], [[53.478831, -1.914391], [53.478785, -1.914249]], [[53.478785, -1.914249], [53.478745, -1.914115]], [[53.478745, -1.914115], [53.478706, -1.913975]], [[53.478706, -1.913975], [53.478667, -1.913824]], [[53.478667, -1.913824], [53.47862, -1.913685]], [[53.47862, -1.913685], [53.478593, -1.913535]], [[53.478593, -1.913535], [53.478582, -1.913368]], [[53.478582, -1.913368], [53.478551, -1.913223]], [[53.478551, -1.913223], [53.478535, -1.913069]], [[53.478535, -1.913069], [53.47852, -1.912905]], [[53.47852, -1.912905], [53.478503, -1.912734]], [[53.478503, -1.912734], [53.478493, -1.91257]], [[53.478493, -1.91257], [53.47847, -1.912421]], [[53.47847, -1.912421], [53.47846, -1.912258]], [[53.47846, -1.912258], [53.478431, -1.9121]], [[53.478431, -1.9121], [53.478399, -1.911948]], [[53.478399, -1.911948], [53.478382, -1.911795]], [[53.478382, -1.911795], [53.47833, -1.911661]], [[53.47833, -1.911661], [53.478291, -1.911498]], [[53.478291, -1.911498], [53.47824, -1.911361]], [[53.47824, -1.911361], [53.478203, -1.911213]], [[53.478147, -1.910747], [53.478173, -1.910598]], [[53.478173, -1.910598], [53.478188, -1.910434]], [[53.478165, -1.910271], [53.47816, -1.910111]], [[53.47816, -1.910111], [53.478163, -1.90994]], [[53.478163, -1.90994], [53.478152, -1.90979]], [[53.478152, -1.90979], [53.478108, -1.909637]], [[53.478108, -1.909637], [53.478062, -1.909498]], [[53.478062, -1.909498], [53.478028, -1.909346]], [[53.478028, -1.909346], [53.477986, -1.909207]], [[53.47782, -1.908465], [53.477848, -1.90832]], [[53.477848, -1.90832], [53.477876, -1.908157]], [[53.475995, -1.906022], [53.475904, -1.905972]], [[53.472163, -1.905805], [53.472075, -1.905752]], [[53.472075, -1.905752], [53.471986, -1.905682]], [[53.471986, -1.905682], [53.471906, -1.905602]], [[53.471906, -1.905602], [53.471832, -1.905487]], [[53.470281, -1.902931], [53.470237, -1.90278]], [[53.470237, -1.90278], [53.470198, -1.902623]], [[53.470198, -1.902623], [53.470154, -1.90248]], [[53.470154, -1.90248], [53.470132, -1.902331]], [[53.470132, -1.902331], [53.470109, -1.902177]], [[53.470087, -1.902022], [53.470029, -1.901883]], [[53.470029, -1.901883], [53.469981, -1.90175]], [[53.469981, -1.90175], [53.469954, -1.901593]], [[53.469954, -1.901593], [53.469933, -1.901435]], [[53.469933, -1.901435], [53.46991, -1.901279]], [[53.469848, -1.900487], [53.469837, -1.90033]], [[53.469837, -1.90033], [53.469802, -1.900181]], [[53.469768, -1.899889], [53.469757, -1.899727]], [[53.469757, -1.899727], [53.469751, -1.899572]], [[53.469751, -1.899572], [53.469718, -1.899422]], [[53.469718, -1.899422], [53.469712, -1.899268]], [[53.469712, -1.899268], [53.469688, -1.899111]], [[53.469688, -1.899111], [53.469693, -1.898948]], [[53.469693, -1.898948], [53.469684, -1.898791]], [[53.469684, -1.898791], [53.469684, -1.898631]], [[53.469684, -1.898631], [53.469659, -1.898484]], [[53.469633, -1.898185], [53.469611, -1.898038]], [[53.469611, -1.898038], [53.469602, -1.897873]], [[53.469453, -1.897305], [53.469425, -1.897148]], [[53.469425, -1.897148], [53.469399, -1.896986]], [[53.469399, -1.896986], [53.469367, -1.896841]], [[53.469367, -1.896841], [53.469336, -1.89669]], [[53.469336, -1.89669], [53.469337, -1.896531]], [[53.469324, -1.896373], [53.469307, -1.896207]], [[53.469307, -1.896207], [53.469308, -1.896046]], [[53.469308, -1.896046], [53.469327, -1.895887]], [[53.469327, -1.895887], [53.469357, -1.895743]], [[53.469152, -1.894272], [53.469108, -1.894126]], [[53.469108, -1.894126], [53.469064, -1.893984]], [[53.469209, -1.893287], [53.469143, -1.893174]], [[53.469104, -1.892872], [53.469067, -1.892719]], [[53.469073, -1.892554], [53.469089, -1.892404]], [[53.469089, -1.892404], [53.469131, -1.892266]], [[53.469131, -1.892266], [53.469121, -1.892107]], [[53.469217, -1.890878], [53.469256, -1.890739]], [[53.469256, -1.890739], [53.469194, -1.890623]], [[53.469129, -1.890334], [53.469091, -1.890185]], [[53.469079, -1.889316], [53.469066, -1.88916]], [[53.468995, -1.888592], [53.468944, -1.888452]], [[53.468944, -1.888452], [53.468914, -1.888302]], [[53.468274, -1.885653], [53.468235, -1.885502]], [[53.468142, -1.88522], [53.468062, -1.885117]], [[53.467693, -1.883276], [53.467626, -1.883164]], [[53.467626, -1.883164], [53.467562, -1.883028]], [[53.467562, -1.883028], [53.467516, -1.882888]], [[53.467443, -1.88279], [53.467378, -1.882676]], [[53.467031, -1.882478], [53.466948, -1.882417]], [[53.466948, -1.882417], [53.466855, -1.882354]], [[53.466152, -1.881198], [53.466089, -1.881081]], [[53.466089, -1.881081], [53.466039, -1.880952]], [[53.46518, -1.874808], [53.465231, -1.874676]], [[53.465231, -1.874676], [53.465232, -1.874516]], [[53.465232, -1.874516], [53.465272, -1.874358]], [[53.465272, -1.874358], [53.465314, -1.874213]], [[53.465263, -1.87144], [53.46525, -1.871276]], [[53.46525, -1.871276], [53.465264, -1.871122]], [[53.465751, -1.869627], [53.465752, -1.869464]], [[53.465752, -1.869464], [53.465745, -1.869304]], [[53.465745, -1.869304], [53.465785, -1.869157]], [[53.465832, -1.868846], [53.465885, -1.868706]], [[53.465885, -1.868706], [53.465955, -1.868588]], [[53.465955, -1.868588], [53.466004, -1.868453]], [[53.466048, -1.867977], [53.466033, -1.867815]], [[53.466033, -1.867815], [53.466015, -1.867666]], [[53.466015, -1.867666], [53.466053, -1.867509]], [[53.466053, -1.867509], [53.466071, -1.867343]], [[53.466071, -1.867343], [53.466093, -1.867189]], [[53.466183, -1.866594], [53.466159, -1.866435]], [[53.466159, -1.866435], [53.466173, -1.866276]], [[53.466173, -1.866276], [53.466178, -1.866107]], [[53.466178, -1.866107], [53.466185, -1.865943]], [[53.466185, -1.865943], [53.466176, -1.865791]], [[53.466148, -1.864884], [53.466133, -1.864714]], [[53.466108, -1.864553], [53.466085, -1.864399]], [[53.466085, -1.864399], [53.46607, -1.864242]], [[53.465975, -1.864008], [53.465907, -1.863894]], [[53.465907, -1.863894], [53.465871, -1.863743]], [[53.465871, -1.863743], [53.465886, -1.863576]], [[53.465886, -1.863576], [53.465898, -1.863412]], [[53.465898, -1.863412], [53.465891, -1.863257]], [[53.465891, -1.863257], [53.465861, -1.863097]], [[53.465861, -1.863097], [53.465835, -1.862951]], [[53.46569, -1.862751], [53.465641, -1.862619]], [[53.465454, -1.862548], [53.465364, -1.862534]], [[53.465364, -1.862534], [53.46527, -1.862483]], [[53.46527, -1.862483], [53.465168, -1.862465]], [[53.464569, -1.862141], [53.464484, -1.862086]], [[53.464484, -1.862086], [53.464431, -1.861962]], [[53.464431, -1.861962], [53.464372, -1.86183]], [[53.464372, -1.86183], [53.464292, -1.861736]], [[53.464292, -1.861736], [53.464204, -1.861779]], [[53.463842, -1.861364], [53.46375, -1.861323]], [[53.46375, -1.861323], [53.463663, -1.861268]], [[53.463584, -1.861184], [53.463504, -1.861103]], [[53.463504, -1.861103], [53.463413, -1.861044]], [[53.462823, -1.860881], [53.462733, -1.86085]], [[53.462733, -1.86085], [53.462639, -1.860815]], [[53.462639, -1.860815], [53.462548, -1.860797]], [[53.462548, -1.860797], [53.462455, -1.86074]], [[53.462455, -1.86074], [53.462363, -1.860749]], [[53.462145, -1.860497], [53.462112, -1.860341]], [[53.461791, -1.860095], [53.461704, -1.860049]], [[53.461704, -1.860049], [53.461612, -1.85999]], [[53.461612, -1.85999], [53.461529, -1.859904]], [[53.461529, -1.859904], [53.461444, -1.859835]], [[53.461141, -1.859743], [53.461051, -1.859808]], [[53.461051, -1.859808], [53.460957, -1.859859]], [[53.460957, -1.859859], [53.460914, -1.860001]], [[53.460842, -1.860211], [53.460746, -1.860263]], [[53.460405, -1.860532], [53.460336, -1.860631]], [[53.460336, -1.860631], [53.460269, -1.860749]], [[53.460269, -1.860749], [53.460201, -1.860855]], [[53.460201, -1.860855], [53.46011, -1.860926]], [[53.46011, -1.860926], [53.460011, -1.860894]], [[53.460011, -1.860894], [53.459918, -1.860888]], [[53.459918, -1.860888], [53.459818, -1.860854]], [[53.459818, -1.860854], [53.459748, -1.860736]], [[53.459748, -1.860736], [53.459713, -1.860596]], [[53.459587, -1.860366], [53.459509, -1.860281]], [[53.45934, -1.860157], [53.459259, -1.860259]], [[53.459259, -1.860259], [53.459176, -1.860338]], [[53.459176, -1.860338], [53.459096, -1.860262]], [[53.459024, -1.860145], [53.458984, -1.859993]], [[53.458984, -1.859993], [53.458906, -1.859893]], [[53.458015, -1.860182], [53.457945, -1.860282]], [[53.457945, -1.860282], [53.457865, -1.8602]], [[53.457768, -1.86016], [53.457691, -1.860263]], [[53.457346, -1.860496], [53.457251, -1.860539]], [[53.457251, -1.860539], [53.457168, -1.860612]], [[53.457168, -1.860612], [53.457103, -1.860716]], [[53.457103, -1.860716], [53.457029, -1.860813]], [[53.456655, -1.860796], [53.456558, -1.860841]], [[53.456196, -1.860887], [53.456099, -1.860858]], [[53.455836, -1.860284], [53.45574, -1.860218]], [[53.45574, -1.860218], [53.455666, -1.860116]], [[53.455666, -1.860116], [53.455614, -1.85997]], [[53.455484, -1.859753], [53.4554, -1.85967]], [[53.4554, -1.85967], [53.455301, -1.859636]], [[53.454271, -1.859627], [53.454203, -1.85952]], [[53.454203, -1.85952], [53.454109, -1.859506]], [[53.454109, -1.859506], [53.45402, -1.859434]], [[53.45402, -1.859434], [53.453943, -1.85933]], [[53.453943, -1.85933], [53.453856, -1.859268]], [[53.453702, -1.85906], [53.453628, -1.85895]], [[53.453628, -1.85895], [53.453576, -1.858821]], [[53.453576, -1.858821], [53.453505, -1.858708]], [[53.453505, -1.858708], [53.453432, -1.858608]], [[53.453432, -1.858608], [53.453361, -1.858513]], [[53.453189, -1.858298], [53.453141, -1.858162]], [[53.452956, -1.857616], [53.452906, -1.85749]], [[53.452682, -1.856916], [53.452607, -1.856805]], [[53.452607, -1.856805], [53.452521, -1.856739]], [[53.452273, -1.856559], [53.452207, -1.856445]], [[53.45141, -1.855993], [53.451332, -1.855914]], [[53.450591, -1.855644], [53.450493, -1.855617]], [[53.450493, -1.855617], [53.450402, -1.855588]], [[53.45031, -1.855586], [53.450209, -1.855591]], [[53.450209, -1.855591], [53.45012, -1.855547]], [[53.45012, -1.855547], [53.450018, -1.855545]], [[53.449923, -1.855583], [53.449832, -1.855537]], [[53.449742, -1.855488], [53.449702, -1.855352]], [[53.449657, -1.855222], [53.449592, -1.855112]], [[53.449502, -1.854832], [53.449484, -1.85468]], [[53.449299, -1.854145], [53.449275, -1.853981]], [[53.449216, -1.853852], [53.449181, -1.853707]], [[53.449181, -1.853707], [53.449148, -1.853565]], [[53.449148, -1.853565], [53.449071, -1.853479]], [[53.448809, -1.853558], [53.448783, -1.853725]], [[53.448783, -1.853725], [53.448721, -1.853845]], [[53.448721, -1.853845], [53.448622, -1.853888]], [[53.448622, -1.853888], [53.448534, -1.853918]], [[53.448534, -1.853918], [53.448438, -1.853855]], [[53.448358, -1.853766], [53.448304, -1.853629]], [[53.448304, -1.853629], [53.448259, -1.853486]], [[53.448259, -1.853486], [53.448196, -1.853376]], [[53.448196, -1.853376], [53.448132, -1.853264]], [[53.448132, -1.853264], [53.448086, -1.853118]], [[53.447992, -1.852845], [53.447922, -1.852771]], [[53.447723, -1.852703], [53.447673, -1.852574]], [[53.447673, -1.852574], [53.447601, -1.852467]], [[53.447601, -1.852467], [53.447532, -1.85237]], [[53.447532, -1.85237], [53.447442, -1.852363]], [[53.447118, -1.852649], [53.447032, -1.852721]], [[53.446733, -1.852554], [53.446647, -1.852635]], [[53.446647, -1.852635], [53.446544, -1.852652]], [[53.446544, -1.852652], [53.446449, -1.852711]], [[53.446367, -1.852793], [53.446297, -1.852697]], [[53.445434, -1.852939], [53.44534, -1.852961]], [[53.44534, -1.852961], [53.445238, -1.852957]], [[53.444785, -1.853192], [53.44471, -1.853294]], [[53.444564, -1.853525], [53.444499, -1.853631]], [[53.444499, -1.853631], [53.444426, -1.853739]], [[53.444426, -1.853739], [53.444346, -1.853811]], [[53.444346, -1.853811], [53.444301, -1.853942]], [[53.444301, -1.853942], [53.444227, -1.854066]], [[53.44399, -1.85437], [53.443928, -1.854493]], [[53.443928, -1.854493], [53.443849, -1.854588]], [[53.443849, -1.854588], [53.443782, -1.854695]], [[53.443723, -1.854809], [53.443664, -1.854934]], [[53.443664, -1.854934], [53.443589, -1.855042]], [[53.443057, -1.855712], [53.44299, -1.855817]], [[53.44299, -1.855817], [53.44292, -1.85593]], [[53.44292, -1.85593], [53.442836, -1.85599]], [[53.442836, -1.85599], [53.442781, -1.856128]], [[53.442624, -1.856323], [53.442555, -1.856437]], [[53.442555, -1.856437], [53.442477, -1.856515]], [[53.442477, -1.856515], [53.442414, -1.856643]], [[53.442414, -1.856643], [53.442346, -1.856753]], [[53.442307, -1.856903], [53.442236, -1.85702]], [[53.441974, -1.857466], [53.441911, -1.857584]], [[53.441911, -1.857584], [53.441847, -1.857697]], [[53.441847, -1.857697], [53.441778, -1.857811]], [[53.441675, -1.858082], [53.441611, -1.858208]], [[53.441611, -1.858208], [53.441564, -1.858348]], [[53.441564, -1.858348], [53.441497, -1.858475]], [[53.441361, -1.85871], [53.44132, -1.858859]], [[53.44132, -1.858859], [53.441285, -1.859012]], [[53.44121, -1.859109], [53.441131, -1.859184]], [[53.441085, -1.859333], [53.441023, -1.85946]], [[53.440967, -1.859604], [53.440895, -1.859696]], [[53.440895, -1.859696], [53.44083, -1.859815]], [[53.440799, -1.859966], [53.440722, -1.86008]], [[53.440647, -1.860182], [53.440589, -1.860318]], [[53.440589, -1.860318], [53.440531, -1.860447]], [[53.440531, -1.860447], [53.440497, -1.860596]], [[53.440497, -1.860596], [53.440436, -1.860712]], [[53.440212, -1.861018], [53.440196, -1.861171]], [[53.440116, -1.861261], [53.440047, -1.861378]], [[53.440047, -1.861378], [53.439988, -1.861508]], [[53.439692, -1.862138], [53.439632, -1.862252]], [[53.439632, -1.862252], [53.439553, -1.862334]], [[53.439262, -1.862776], [53.439205, -1.862899]], [[53.439127, -1.86301], [53.439056, -1.863115]], [[53.438868, -1.86348], [53.43878, -1.863555]], [[53.43878, -1.863555], [53.438688, -1.86361]], [[53.438536, -1.863805], [53.438478, -1.863936]], [[53.437444, -1.865364], [53.437364, -1.865442]], [[53.437364, -1.865442], [53.437281, -1.865527]], [[53.437281, -1.865527], [53.437208, -1.865617]], [[53.437208, -1.865617], [53.437129, -1.865702]], [[53.437129, -1.865702], [53.437061, -1.865801]], [[53.436672, -1.86628], [53.436588, -1.866353]], [[53.436588, -1.866353], [53.436501, -1.866432]], [[53.436501, -1.866432], [53.436418, -1.866523]], [[53.436048, -1.866731], [53.435956, -1.866787]], [[53.435956, -1.866787], [53.435867, -1.866852]], [[53.435867, -1.866852], [53.435781, -1.866913]], [[53.435009, -1.867594], [53.434923, -1.867656]], [[53.433858, -1.868538], [53.433766, -1.868595]], [[53.433391, -1.868745], [53.433294, -1.868773]], [[53.433294, -1.868773], [53.433199, -1.868808]], [[53.433199, -1.868808], [53.433104, -1.868846]], [[53.433104, -1.868846], [53.433007, -1.868898]], [[53.433007, -1.868898], [53.432912, -1.868933]], [[53.432912, -1.868933], [53.432824, -1.868968]], [[53.432597, -1.869102], [53.432498, -1.869105]], [[53.432498, -1.869105], [53.432397, -1.869101]], [[53.432397, -1.869101], [53.432296, -1.869099]], [[53.43202, -1.869105], [53.431931, -1.869082]], [[53.430374, -1.869658], [53.43028, -1.869634]], [[53.428723, -1.871158], [53.428633, -1.871181]], [[53.427882, -1.872159], [53.427822, -1.872289]], [[53.427822, -1.872289], [53.427732, -1.872323]], [[53.427732, -1.872323], [53.42765, -1.872419]], [[53.427538, -1.87269], [53.427478, -1.872827]], [[53.427296, -1.873198], [53.42723, -1.8733]], [[53.42723, -1.8733], [53.427156, -1.873393]], [[53.426904, -1.873617], [53.426819, -1.873673]], [[53.426819, -1.873673], [53.426734, -1.873722]], [[53.426734, -1.873722], [53.426637, -1.873742]], [[53.425972, -1.876083], [53.426003, -1.876229]], [[53.426003, -1.876229], [53.426031, -1.876396]], [[53.425938, -1.876868], [53.425912, -1.877024]], [[53.425932, -1.877336], [53.425972, -1.87748]], [[53.425972, -1.87748], [53.425984, -1.877658]], [[53.425868, -1.878582], [53.425866, -1.878736]], [[53.425866, -1.878736], [53.425853, -1.878898]], [[53.425739, -1.879347], [53.425679, -1.879472]], [[53.425679, -1.879472], [53.425615, -1.879601]], [[53.425615, -1.879601], [53.42557, -1.879744]], [[53.42557, -1.879744], [53.425524, -1.879875]], [[53.425524, -1.879875], [53.425488, -1.880014]], [[53.425488, -1.880014], [53.425463, -1.880177]], [[53.425463, -1.880177], [53.425403, -1.880306]], [[53.425403, -1.880306], [53.425339, -1.88042]], [[53.42529, -1.880554], [53.42523, -1.880688]], [[53.42523, -1.880688], [53.42514, -1.88077]], [[53.424896, -1.881013], [53.424818, -1.88111]], [[53.424818, -1.88111], [53.424743, -1.881219]], [[53.424743, -1.881219], [53.424691, -1.881348]], [[53.424691, -1.881348], [53.42463, -1.881484]], [[53.42463, -1.881484], [53.424568, -1.881608]], [[53.424568, -1.881608], [53.42451, -1.881737]], [[53.42451, -1.881737], [53.424478, -1.88188]], [[53.424478, -1.88188], [53.424466, -1.882042]], [[53.424466, -1.882042], [53.424402, -1.882147]], [[53.424402, -1.882147], [53.42435, -1.882277]], [[53.42435, -1.882277], [53.424309, -1.882427]], [[53.423768, -1.883751], [53.423765, -1.883918]], [[53.423765, -1.883918], [53.423739, -1.884087]], [[53.423637, -1.884364], [53.423598, -1.884502]], [[53.42349, -1.88478], [53.423435, -1.884908]], [[53.42314, -1.8853], [53.423104, -1.885442]], [[53.423104, -1.885442], [53.423037, -1.885555]], [[53.423037, -1.885555], [53.422957, -1.885656]], [[53.422779, -1.885759], [53.422703, -1.885865]], [[53.422703, -1.885865], [53.422637, -1.885996]], [[53.422637, -1.885996], [53.42256, -1.886082]], [[53.42256, -1.886082], [53.422487, -1.886176]], [[53.42233, -1.886551], [53.422257, -1.886645]], [[53.422257, -1.886645], [53.422184, -1.88676]], [[53.422184, -1.88676], [53.422149, -1.886903]], [[53.422149, -1.886903], [53.422094, -1.887041]], [[53.42191, -1.887106], [53.421878, -1.887254]], [[53.421878, -1.887254], [53.421825, -1.887388]], [[53.421825, -1.887388], [53.421792, -1.887548]], [[53.421792, -1.887548], [53.421732, -1.887681]], [[53.421732, -1.887681], [53.421669, -1.88779]], [[53.421669, -1.88779], [53.421604, -1.887897]], [[53.421548, -1.888217], [53.42151, -1.888382]], [[53.42128, -1.889083], [53.421242, -1.889233]], [[53.421242, -1.889233], [53.4212, -1.889375]], [[53.4212, -1.889375], [53.421122, -1.889492]], [[53.42098, -1.889695], [53.420921, -1.889835]], [[53.420921, -1.889835], [53.420868, -1.889963]], [[53.4208, -1.890097], [53.42072, -1.890186]], [[53.42072, -1.890186], [53.420674, -1.890332]], [[53.420674, -1.890332], [53.420633, -1.890477]], [[53.420633, -1.890477], [53.420572, -1.890621]], [[53.420311, -1.891287], [53.420284, -1.891439]], [[53.420284, -1.891439], [53.420276, -1.89161]], [[53.420276, -1.89161], [53.420293, -1.891764]], [[53.420301, -1.89209], [53.420296, -1.892258]], [[53.420296, -1.892258], [53.420281, -1.892412]], [[53.420167, -1.893031], [53.420186, -1.89318]], [[53.420184, -1.893508], [53.420161, -1.89367]], [[53.420161, -1.89367], [53.420144, -1.893825]], [[53.420128, -1.894158], [53.420175, -1.894295]], [[53.420175, -1.894295], [53.420207, -1.894441]], [[53.420207, -1.894441], [53.420212, -1.894593]], [[53.420212, -1.894593], [53.420213, -1.894762]], [[53.420213, -1.894762], [53.420207, -1.89492]], [[53.420207, -1.89492], [53.420187, -1.895073]], [[53.420187, -1.895073], [53.420163, -1.895235]], [[53.420163, -1.895235], [53.420169, -1.895398]], [[53.420169, -1.895398], [53.420143, -1.895555]], [[53.420143, -1.895555], [53.42013, -1.895706]], [[53.420128, -1.896192], [53.420104, -1.896351]], [[53.420078, -1.896511], [53.420055, -1.896661]], [[53.420055, -1.896661], [53.420046, -1.896828]], [[53.420046, -1.896828], [53.42, -1.896962]], [[53.42, -1.896962], [53.419971, -1.897126]], [[53.419971, -1.897126], [53.419928, -1.897267]], [[53.419928, -1.897267], [53.419869, -1.897408]], [[53.419869, -1.897408], [53.419838, -1.897553]], [[53.419658, -1.897898], [53.419605, -1.898019]], [[53.419605, -1.898019], [53.419549, -1.898143]], [[53.419281, -1.898591], [53.419237, -1.898725]], [[53.418964, -1.899223], [53.418893, -1.899327]], [[53.418893, -1.899327], [53.418812, -1.899433]], [[53.41852, -1.900192], [53.418432, -1.90027]], [[53.415952, -1.903818], [53.415891, -1.903949]], [[53.415891, -1.903949], [53.415824, -1.904049]], [[53.415824, -1.904049], [53.415768, -1.904177]], [[53.415691, -1.90426], [53.415609, -1.904325]], [[53.415609, -1.904325], [53.415524, -1.904417]], [[53.415524, -1.904417], [53.415448, -1.9045]], [[53.415448, -1.9045], [53.41537, -1.904579]], [[53.41537, -1.904579], [53.41529, -1.904649]], [[53.41529, -1.904649], [53.415199, -1.904713]], [[53.415199, -1.904713], [53.415126, -1.904802]], [[53.414793, -1.905107], [53.414713, -1.905188]], [[53.414713, -1.905188], [53.414629, -1.905258]], [[53.414629, -1.905258], [53.414541, -1.905342]], [[53.414541, -1.905342], [53.414461, -1.905419]], [[53.414461, -1.905419], [53.414371, -1.905487]], [[53.414371, -1.905487], [53.414278, -1.905549]], [[53.414278, -1.905549], [53.414184, -1.905617]], [[53.414037, -1.905822], [53.41395, -1.905906]], [[53.41395, -1.905906], [53.413872, -1.905991]], [[53.413872, -1.905991], [53.413786, -1.906081]], [[53.413688, -1.906263], [53.413625, -1.906393]], [[53.413539, -1.906487], [53.41345, -1.906547]], [[53.41345, -1.906547], [53.413354, -1.906588]], [[53.413098, -1.906802], [53.413035, -1.906933]], [[53.413035, -1.906933], [53.412959, -1.907034]], [[53.412959, -1.907034], [53.412877, -1.907101]], [[53.412877, -1.907101], [53.41279, -1.907173]], [[53.41279, -1.907173], [53.41271, -1.907256]], [[53.412538, -1.907388], [53.412457, -1.90746]], [[53.412457, -1.90746], [53.412379, -1.907562]], [[53.412379, -1.907562], [53.412306, -1.907667]], [[53.412225, -1.907765], [53.412155, -1.907868]], [[53.412155, -1.907868], [53.412078, -1.907976]], [[53.412078, -1.907976], [53.412003, -1.908064]], [[53.412003, -1.908064], [53.411926, -1.908148]], [[53.411926, -1.908148], [53.411854, -1.908242]], [[53.411854, -1.908242], [53.41176, -1.908288]], [[53.41176, -1.908288], [53.411681, -1.908375]], [[53.411681, -1.908375], [53.411612, -1.908488]], [[53.411528, -1.908553], [53.411454, -1.908639]], [[53.411454, -1.908639], [53.411365, -1.908706]], [[53.411365, -1.908706], [53.411279, -1.908794]], [[53.411279, -1.908794], [53.411207, -1.908911]], [[53.411207, -1.908911], [53.411127, -1.908995]], [[53.411127, -1.908995], [53.411049, -1.909095]], [[53.411049, -1.909095], [53.410962, -1.909148]], [[53.410962, -1.909148], [53.410872, -1.909215]], [[53.410872, -1.909215], [53.410777, -1.909266]], [[53.410777, -1.909266], [53.410693, -1.909328]], [[53.410693, -1.909328], [53.410606, -1.909387]], [[53.410606, -1.909387], [53.410515, -1.909402]], [[53.410515, -1.909402], [53.410421, -1.909336]], [[53.410421, -1.909336], [53.410342, -1.909256]], [[53.409935, -1.908416], [53.409924, -1.908266]], [[53.40972, -1.907699], [53.409686, -1.90755]], [[53.409686, -1.90755], [53.409629, -1.907419]], [[53.409364, -1.906609], [53.409288, -1.906501]], [[53.408871, -1.905841], [53.408793, -1.905751]], [[53.408647, -1.905545], [53.408587, -1.905429]], [[53.408587, -1.905429], [53.408511, -1.905347]], [[53.408511, -1.905347], [53.408428, -1.905284]], [[53.408282, -1.905054], [53.408189, -1.905044]], [[53.408102, -1.904983], [53.408006, -1.904918]], [[53.408006, -1.904918], [53.407926, -1.904819]], [[53.407926, -1.904819], [53.407838, -1.904749]], [[53.40766, -1.904385], [53.407583, -1.904296]], [[53.407411, -1.903951], [53.407357, -1.903826]], [[53.407357, -1.903826], [53.407285, -1.903708]], [[53.407125, -1.903351], [53.407088, -1.903214]], [[53.405921, -1.900835], [53.405839, -1.90073]], [[53.405756, -1.90066], [53.405662, -1.900702]], [[53.405662, -1.900702], [53.40557, -1.900735]], [[53.405482, -1.900695], [53.40539, -1.900647]], [[53.40539, -1.900647], [53.405298, -1.900606]], [[53.405298, -1.900606], [53.405216, -1.900539]], [[53.405216, -1.900539], [53.405126, -1.900604]], [[53.405035, -1.900591], [53.404946, -1.900544]], [[53.404946, -1.900544], [53.404857, -1.900501]], [[53.40424, -1.900098], [53.404162, -1.900019]], [[53.404007, -1.89983], [53.403923, -1.899739]], [[53.403665, -1.899328], [53.403592, -1.899217]], [[53.403414, -1.898639], [53.403377, -1.898487]], [[53.403338, -1.89833], [53.403307, -1.898169]], [[53.403296, -1.898016], [53.40327, -1.897868]], [[53.40327, -1.897868], [53.403223, -1.897739]], [[53.403223, -1.897739], [53.4032, -1.897579]], [[53.4032, -1.897579], [53.403161, -1.897442]], [[53.403161, -1.897442], [53.403124, -1.897291]], [[53.403124, -1.897291], [53.403058, -1.897173]], [[53.402942, -1.896922], [53.402878, -1.896811]], [[53.402878, -1.896811], [53.402827, -1.896671]], [[53.402827, -1.896671], [53.40278, -1.896538]], [[53.40278, -1.896538], [53.402702, -1.896441]], [[53.402702, -1.896441], [53.40263, -1.896329]], [[53.40263, -1.896329], [53.402589, -1.896189]], [[53.402486, -1.895737], [53.402411, -1.895638]], [[53.402411, -1.895638], [53.402316, -1.895626]], [[53.402249, -1.895523], [53.402198, -1.89539]], [[53.402083, -1.895344], [53.401999, -1.895278]], [[53.401999, -1.895278], [53.401907, -1.895241]], [[53.401638, -1.89524], [53.401544, -1.895203]], [[53.401544, -1.895203], [53.401447, -1.895187]], [[53.401193, -1.895164], [53.401098, -1.895191]], [[53.401098, -1.895191], [53.401012, -1.895257]], [[53.401012, -1.895257], [53.400927, -1.895307]], [[53.400833, -1.895296], [53.400735, -1.895278]], [[53.400735, -1.895278], [53.40064, -1.895286]], [[53.400551, -1.895233], [53.400523, -1.895088]], [[53.400523, -1.895088], [53.40055, -1.894935]], [[53.400628, -1.894315], [53.400616, -1.894158]], [[53.400616, -1.894158], [53.400617, -1.894005]], [[53.400617, -1.894005], [53.400623, -1.893843]], [[53.400623, -1.893843], [53.400582, -1.893705]], [[53.400582, -1.893705], [53.400551, -1.893552]], [[53.400551, -1.893552], [53.400534, -1.893396]], [[53.400534, -1.893396], [53.400503, -1.893249]], [[53.40029, -1.892752], [53.400234, -1.892633]], [[53.400234, -1.892633], [53.400177, -1.892517]], [[53.400177, -1.892517], [53.400113, -1.892407]], [[53.400113, -1.892407], [53.40006, -1.892268]], [[53.400014, -1.89212], [53.399981, -1.891962]], [[53.399981, -1.891962], [53.399988, -1.891806]], [[53.399974, -1.891489], [53.399925, -1.891358]], [[53.399779, -1.890775], [53.399736, -1.890641]], [[53.399666, -1.890339], [53.399625, -1.890203]], [[53.399488, -1.88939], [53.399512, -1.88923]], [[53.399512, -1.88923], [53.399544, -1.889079]], [[53.399544, -1.889079], [53.399594, -1.888934]], [[53.399676, -1.888319], [53.399641, -1.888166]], [[53.399616, -1.888019], [53.399624, -1.887864]], [[53.399624, -1.887864], [53.39959, -1.887721]], [[53.399486, -1.887272], [53.399454, -1.887112]], [[53.399454, -1.887112], [53.399417, -1.886967]], [[53.399417, -1.886967], [53.399361, -1.886849]], [[53.399272, -1.886573], [53.399264, -1.88641]], [[53.399264, -1.88641], [53.399222, -1.886266]], [[53.398927, -1.885467], [53.398882, -1.885333]], [[53.398882, -1.885333], [53.39885, -1.885176]], [[53.39885, -1.885176], [53.398799, -1.88504]], [[53.398799, -1.88504], [53.398736, -1.884899]], [[53.398637, -1.884632], [53.398571, -1.884528]], [[53.398538, -1.884376], [53.398502, -1.884234]], [[53.398502, -1.884234], [53.398484, -1.884082]], [[53.398484, -1.884082], [53.398432, -1.883941]], [[53.398394, -1.883804], [53.398389, -1.883649]], [[53.398392, -1.883492], [53.398355, -1.88335]], [[53.398355, -1.88335], [53.39827, -1.88329]], [[53.39827, -1.88329], [53.398234, -1.883142]], [[53.398234, -1.883142], [53.398175, -1.883021]], [[53.398175, -1.883021], [53.398127, -1.88289]], [[53.398044, -1.88261], [53.398012, -1.882468]], [[53.398012, -1.882468], [53.397958, -1.882329]], [[53.397958, -1.882329], [53.397909, -1.882188]], [[53.397733, -1.881837], [53.397734, -1.881679]], [[53.397734, -1.881679], [53.397743, -1.881526]], [[53.397696, -1.881379], [53.397687, -1.881228]], [[53.397687, -1.881228], [53.397674, -1.881075]], [[53.397567, -1.880656], [53.397521, -1.880502]], [[53.397521, -1.880502], [53.397468, -1.880373]], [[53.397468, -1.880373], [53.39741, -1.880236]], [[53.39736, -1.880107], [53.397326, -1.879958]], [[53.397326, -1.879958], [53.397285, -1.87981]], [[53.397285, -1.87981], [53.397281, -1.879651]], [[53.397259, -1.879504], [53.397256, -1.879337]], [[53.397256, -1.879337], [53.39726, -1.879171]], [[53.397312, -1.879043], [53.397322, -1.878879]], [[53.397246, -1.878089], [53.397225, -1.877923]], [[53.397225, -1.877923], [53.397194, -1.877781]], [[53.397193, -1.87745], [53.397224, -1.877297]], [[53.397306, -1.877001], [53.397302, -1.876843]], [[53.396986, -1.876482], [53.396918, -1.876583]], [[53.396918, -1.876583], [53.396835, -1.876645]], [[53.396835, -1.876645], [53.396763, -1.876748]], [[53.396763, -1.876748], [53.396676, -1.876788]], [[53.396676, -1.876788], [53.396583, -1.876835]], [[53.396409, -1.876927], [53.396316, -1.876909]], [[53.396137, -1.877015], [53.396045, -1.877065]], [[53.396045, -1.877065], [53.395948, -1.877086]], [[53.395776, -1.877224], [53.395689, -1.877277]], [[53.395689, -1.877277], [53.395605, -1.877362]], [[53.395259, -1.877553], [53.395171, -1.8776]], [[53.394907, -1.877536], [53.394821, -1.877616]], [[53.394821, -1.877616], [53.394723, -1.877639]], [[53.3942, -1.87791], [53.39414, -1.878032]], [[53.39414, -1.878032], [53.394044, -1.878071]], [[53.394044, -1.878071], [53.393958, -1.878142]], [[53.393363, -1.878577], [53.393283, -1.878646]], [[53.393283, -1.878646], [53.393187, -1.878654]], [[53.393187, -1.878654], [53.393105, -1.878723]], [[53.39284, -1.878712], [53.392743, -1.878669]], [[53.392743, -1.878669], [53.392648, -1.878644]], [[53.392374, -1.878738], [53.392273, -1.878752]], [[53.392273, -1.878752], [53.39218, -1.878779]], [[53.39218, -1.878779], [53.392093, -1.878824]], [[53.392093, -1.878824], [53.392009, -1.878752]], [[53.391603, -1.87907], [53.391512, -1.879127]], [[53.391512, -1.879127], [53.39142, -1.879126]], [[53.39142, -1.879126], [53.391336, -1.879196]], [[53.390806, -1.879602], [53.390711, -1.879581]], [[53.39052, -1.879652], [53.390428, -1.879623]], [[53.390428, -1.879623], [53.39034, -1.879683]], [[53.390269, -1.879798], [53.390179, -1.879854]], [[53.390179, -1.879854], [53.390104, -1.879938]], [[53.390023, -1.880024], [53.389941, -1.880092]], [[53.389856, -1.880151], [53.389775, -1.880223]], [[53.389775, -1.880223], [53.389713, -1.880353]], [[53.389713, -1.880353], [53.389658, -1.880475]], [[53.389658, -1.880475], [53.389575, -1.880551]], [[53.389575, -1.880551], [53.389484, -1.88057]], [[53.389484, -1.88057], [53.389387, -1.880527]], [[53.3893, -1.880482], [53.389199, -1.880456]], [[53.389199, -1.880456], [53.3891, -1.880424]], [[53.3891, -1.880424], [53.389002, -1.88045]], [[53.389002, -1.88045], [53.388912, -1.880422]], [[53.388912, -1.880422], [53.388825, -1.880473]], [[53.388825, -1.880473], [53.388742, -1.880407]], [[53.388527, -1.880726], [53.388532, -1.88088]], [[53.388505, -1.881181], [53.388452, -1.881327]], [[53.388452, -1.881327], [53.388417, -1.881471]], [[53.388417, -1.881471], [53.38843, -1.881625]], [[53.388322, -1.881897], [53.388246, -1.882]], [[53.388246, -1.882], [53.388155, -1.881962]], [[53.388155, -1.881962], [53.388103, -1.882094]], [[53.388036, -1.882213], [53.387946, -1.8822]], [[53.387946, -1.8822], [53.387856, -1.882247]], [[53.387764, -1.882508], [53.3877, -1.882617]], [[53.387443, -1.88285], [53.387345, -1.882872]], [[53.387345, -1.882872], [53.387256, -1.882898]], [[53.386713, -1.882799], [53.386657, -1.882917]], [[53.386657, -1.882917], [53.386566, -1.882903]], [[53.386566, -1.882903], [53.38648, -1.882995]], [[53.38648, -1.882995], [53.386393, -1.883065]], [[53.386393, -1.883065], [53.386297, -1.883096]], [[53.386297, -1.883096], [53.386203, -1.883139]], [[53.386203, -1.883139], [53.386137, -1.883259]], [[53.386137, -1.883259], [53.386044, -1.883313]], [[53.386044, -1.883313], [53.385953, -1.883371]], [[53.385772, -1.883367], [53.38568, -1.883377]], [[53.385488, -1.883355], [53.385387, -1.883354]], [[53.385228, -1.883451], [53.38515, -1.883531]], [[53.384985, -1.8836], [53.384909, -1.883695]], [[53.384909, -1.883695], [53.384829, -1.883775]], [[53.384829, -1.883775], [53.384741, -1.883838]], [[53.384741, -1.883838], [53.384663, -1.883934]], [[53.384663, -1.883934], [53.384608, -1.884074]], [[53.384608, -1.884074], [53.38454, -1.884187]], [[53.38454, -1.884187], [53.384437, -1.884216]], [[53.384356, -1.884302], [53.384274, -1.884389]], [[53.384274, -1.884389], [53.384188, -1.884453]], [[53.383929, -1.884423], [53.383823, -1.884426]], [[53.38349, -1.884126], [53.383429, -1.884008]], [[53.383429, -1.884008], [53.383376, -1.88388]], [[53.383376, -1.88388], [53.383327, -1.883754]], [[53.383327, -1.883754], [53.383245, -1.883692]], [[53.383245, -1.883692], [53.383174, -1.883582]], [[53.383174, -1.883582], [53.383116, -1.883466]], [[53.38303, -1.883389], [53.38299, -1.883236]], [[53.38299, -1.883236], [53.382957, -1.883083]], [[53.38265, -1.882818], [53.382558, -1.882759]], [[53.382558, -1.882759], [53.382458, -1.882749]], [[53.382458, -1.882749], [53.382383, -1.88265]], [[53.382383, -1.88265], [53.382293, -1.882607]], [[53.381699, -1.882303], [53.381617, -1.882215]], [[53.381437, -1.882102], [53.38134, -1.88212]], [[53.381247, -1.882161], [53.381148, -1.882133]], [[53.380961, -1.882196], [53.380881, -1.88227]], [[53.380881, -1.88227], [53.380782, -1.882307]], [[53.380782, -1.882307], [53.380698, -1.88238]], [[53.380698, -1.88238], [53.38061, -1.882452]], [[53.380148, -1.882646], [53.380048, -1.882661]], [[53.380048, -1.882661], [53.379951, -1.882655]], [[53.379951, -1.882655], [53.379852, -1.88267]], [[53.379852, -1.88267], [53.379761, -1.882694]], [[53.379761, -1.882694], [53.379662, -1.882723]], [[53.379662, -1.882723], [53.379572, -1.88279]], [[53.379572, -1.88279], [53.379483, -1.882812]], [[53.379483, -1.882812], [53.379385, -1.882829]], [[53.379385, -1.882829], [53.379295, -1.88279]], [[53.379295, -1.88279], [53.379213, -1.8827]], [[53.379213, -1.8827], [53.379136, -1.882618]], [[53.379136, -1.882618], [53.379039, -1.882601]], [[53.378773, -1.882438], [53.378671, -1.882391]], [[53.378569, -1.882402], [53.378476, -1.882379]], [[53.378476, -1.882379], [53.378377, -1.88237]], [[53.378377, -1.88237], [53.378283, -1.882374]], [[53.378283, -1.882374], [53.378187, -1.882383]], [[53.378187, -1.882383], [53.378101, -1.882289]], [[53.378101, -1.882289], [53.378021, -1.882215]], [[53.377309, -1.882159], [53.377214, -1.882137]], [[53.37689, -1.881851], [53.376794, -1.881818]], [[53.376794, -1.881818], [53.376701, -1.881786]], [[53.376701, -1.881786], [53.376605, -1.881851]], [[53.376416, -1.881835], [53.37632, -1.881843]], [[53.37632, -1.881843], [53.376222, -1.881876]], [[53.376126, -1.881928], [53.376043, -1.881987]], [[53.376043, -1.881987], [53.375964, -1.882074]], [[53.375964, -1.882074], [53.375866, -1.882113]], [[53.375866, -1.882113], [53.375776, -1.882094]], [[53.375776, -1.882094], [53.37568, -1.882092]], [[53.375012, -1.881837], [53.374916, -1.881811]], [[53.374916, -1.881811], [53.374838, -1.8819]], [[53.374838, -1.8819], [53.374747, -1.881895]], [[53.374747, -1.881895], [53.374656, -1.88184]], [[53.374656, -1.88184], [53.374559, -1.881836]], [[53.373642, -1.881613], [53.373559, -1.881551]], [[53.373559, -1.881551], [53.373471, -1.881503]], [[53.373364, -1.881454], [53.373272, -1.881395]], [[53.373185, -1.881332], [53.3731, -1.881255]], [[53.3731, -1.881255], [53.373029, -1.881162]], [[53.373029, -1.881162], [53.372955, -1.881057]], [[53.372955, -1.881057], [53.372889, -1.880945]], [[53.372889, -1.880945], [53.372821, -1.880825]], [[53.372821, -1.880825], [53.372778, -1.880688]], [[53.372725, -1.880553], [53.372692, -1.880414]], [[53.372692, -1.880414], [53.372644, -1.880264]], [[53.372644, -1.880264], [53.372602, -1.880122]], [[53.372524, -1.879659], [53.372523, -1.879503]], [[53.372523, -1.879503], [53.372515, -1.879332]], [[53.372515, -1.879332], [53.37253, -1.879178]], [[53.37253, -1.879178], [53.37254, -1.879013]], [[53.37254, -1.879013], [53.372559, -1.878855]], [[53.372559, -1.878855], [53.372576, -1.878692]], [[53.372576, -1.878692], [53.372594, -1.878536]], [[53.372594, -1.878536], [53.372586, -1.878384]], [[53.372586, -1.878384], [53.372615, -1.878229]], [[53.372658, -1.878076], [53.37268, -1.877925]], [[53.372758, -1.877314], [53.372785, -1.877168]], [[53.372951, -1.875304], [53.372901, -1.875153]], [[53.372901, -1.875153], [53.37286, -1.87501]], [[53.37286, -1.87501], [53.37283, -1.874852]], [[53.372749, -1.874408], [53.372748, -1.874247]], [[53.372748, -1.874247], [53.372766, -1.874079]], [[53.372809, -1.873787], [53.372838, -1.873632]], [[53.372838, -1.873632], [53.372855, -1.873472]], [[53.372919, -1.872544], [53.372896, -1.872383]], [[53.372896, -1.872383], [53.37292, -1.872231]], [[53.37292, -1.872231], [53.372901, -1.872079]], [[53.373136, -1.871252], [53.373229, -1.87127]], [[53.373229, -1.87127], [53.37332, -1.871215]], [[53.37332, -1.871215], [53.373387, -1.871112]], [[53.373577, -1.870568], [53.373538, -1.87042]], [[53.372224, -1.868778], [53.372156, -1.86867]], [[53.372107, -1.868535], [53.372025, -1.86851]], [[53.371931, -1.868571], [53.371835, -1.868533]], [[53.371835, -1.868533], [53.371748, -1.868494]], [[53.371748, -1.868494], [53.371658, -1.868423]], [[53.371658, -1.868423], [53.371581, -1.868341]], [[53.371581, -1.868341], [53.371513, -1.868232]], [[53.371513, -1.868232], [53.371434, -1.868135]], [[53.371194, -1.866928], [53.371158, -1.866768]], [[53.370956, -1.866098], [53.37092, -1.86596]], [[53.37092, -1.86596], [53.37087, -1.865813]], [[53.370803, -1.865503], [53.370734, -1.865385]], [[53.370435, -1.864559], [53.370366, -1.864459]], [[53.3701, -1.863935], [53.370036, -1.86382]], [[53.370036, -1.86382], [53.369968, -1.863703]], [[53.369968, -1.863703], [53.369909, -1.863576]], [[53.369909, -1.863576], [53.369838, -1.863481]], [[53.369838, -1.863481], [53.369767, -1.863355]], [[53.3697, -1.863243], [53.369647, -1.863117]], [[53.369647, -1.863117], [53.369612, -1.862972]], [[53.369612, -1.862972], [53.369528, -1.862891]], [[53.369528, -1.862891], [53.369452, -1.862778]], [[53.369395, -1.862662], [53.36933, -1.862538]], [[53.36933, -1.862538], [53.369283, -1.862397]], [[53.369283, -1.862397], [53.36923, -1.862268]], [[53.369181, -1.862115], [53.369109, -1.861996]], [[53.369109, -1.861996], [53.369026, -1.861894]], [[53.368708, -1.861088], [53.368669, -1.860945]], [[53.368669, -1.860945], [53.368622, -1.860805]], [[53.36844, -1.86044], [53.368394, -1.860283]], [[53.368394, -1.860283], [53.368366, -1.860132]], [[53.368366, -1.860132], [53.368351, -1.859977]], [[53.368351, -1.859977], [53.368289, -1.859862]], [[53.368289, -1.859862], [53.368227, -1.859752]], [[53.368227, -1.859752], [53.368139, -1.859675]], [[53.368139, -1.859675], [53.368053, -1.859614]], [[53.368053, -1.859614], [53.367961, -1.859584]], [[53.367751, -1.859242], [53.367681, -1.859129]], [[53.367681, -1.859129], [53.367631, -1.859001]], [[53.367631, -1.859001], [53.367588, -1.858847]], [[53.367588, -1.858847], [53.367552, -1.858706]], [[53.367507, -1.85857], [53.367442, -1.858458]], [[53.367442, -1.858458], [53.367369, -1.858357]], [[53.367369, -1.858357], [53.36729, -1.858283]], [[53.367209, -1.85821], [53.367145, -1.858104]], [[53.367145, -1.858104], [53.367063, -1.858037]], [[53.367063, -1.858037], [53.366982, -1.857934]], [[53.366982, -1.857934], [53.366895, -1.85786]], [[53.366895, -1.85786], [53.366845, -1.857729]], [[53.366845, -1.857729], [53.366784, -1.857594]], [[53.366784, -1.857594], [53.366744, -1.857451]], [[53.366744, -1.857451], [53.3667, -1.857308]], [[53.3667, -1.857308], [53.366654, -1.857164]], [[53.366654, -1.857164], [53.366623, -1.857007]], [[53.366623, -1.857007], [53.36659, -1.856847]], [[53.36659, -1.856847], [53.36658, -1.856684]], [[53.36658, -1.856684], [53.36656, -1.856534]], [[53.366525, -1.85629], [53.366469, -1.856157]], [[53.366469, -1.856157], [53.366411, -1.856037]], [[53.366345, -1.85574], [53.366323, -1.85559]], [[53.366323, -1.85559], [53.366265, -1.85547]], [[53.366265, -1.85547], [53.366211, -1.85533]], [[53.366163, -1.855197], [53.366146, -1.855041]], [[53.366044, -1.854269], [53.366014, -1.854111]], [[53.365941, -1.853477], [53.365923, -1.85332]], [[53.365923, -1.85332], [53.365925, -1.853167]], [[53.365953, -1.851953], [53.365946, -1.85179]], [[53.365946, -1.85179], [53.365947, -1.851624]], [[53.365857, -1.851188], [53.365791, -1.851071]], [[53.365791, -1.851071], [53.365731, -1.850946]], [[53.365723, -1.850794], [53.365729, -1.850635]], [[53.365729, -1.850635], [53.365728, -1.850478]], [[53.365728, -1.850478], [53.365719, -1.850307]], [[53.365719, -1.850307], [53.365721, -1.850143]], [[53.365242, -1.848725], [53.365153, -1.848657]], [[53.364975, -1.848484], [53.364889, -1.848406]], [[53.364889, -1.848406], [53.364819, -1.848301]], [[53.364819, -1.848301], [53.364758, -1.848175]], [[53.364661, -1.847768], [53.364652, -1.84761]], [[53.364612, -1.847668], [53.364548, -1.847559]], [[53.36436, -1.847302], [53.364454, -1.847333]], [[53.364943, -1.846074], [53.364907, -1.846031]], [[53.364976, -1.845678], [53.36501, -1.845525]], [[53.364983, -1.845295], [53.365022, -1.845138]], [[53.364998, -1.844823], [53.365001, -1.844664]], [[53.365001, -1.844664], [53.364989, -1.84451]], [[53.364952, -1.844186], [53.364942, -1.844021]], [[53.364942, -1.844021], [53.364937, -1.843858]], [[53.364963, -1.843701], [53.364956, -1.843537]], [[53.36497, -1.84338], [53.365, -1.843237]], [[53.365, -1.843237], [53.365018, -1.843077]], [[53.365018, -1.843077], [53.365083, -1.842967]], [[53.365204, -1.842733], [53.365236, -1.842591]], [[53.365236, -1.842591], [53.36527, -1.842436]], [[53.365583, -1.842077], [53.36561, -1.841927]], [[53.365629, -1.84178], [53.36571, -1.841706]], [[53.365764, -1.841583], [53.365754, -1.84142]], [[53.365817, -1.841307], [53.36578, -1.841162]], [[53.36578, -1.841162], [53.365779, -1.841009]], [[53.365779, -1.841009], [53.365858, -1.840935]], [[53.365858, -1.840935], [53.365918, -1.840806]], [[53.365986, -1.840703], [53.36606, -1.840594]], [[53.366149, -1.840247], [53.366192, -1.840107]], [[53.366192, -1.840107], [53.366143, -1.839951]], [[53.366143, -1.839951], [53.366108, -1.839803]], [[53.366108, -1.839803], [53.366103, -1.839641]], [[53.366274, -1.839495], [53.3663, -1.839334]], [[53.366376, -1.839226], [53.366439, -1.839112]], [[53.366518, -1.839014], [53.36656, -1.838869]], [[53.36656, -1.838869], [53.36663, -1.838755]], [[53.366561, -1.837778], [53.366573, -1.837617]], [[53.366573, -1.837617], [53.366586, -1.837466]], [[53.366586, -1.837466], [53.366644, -1.837349]], [[53.366655, -1.836176], [53.366615, -1.836035]], [[53.366615, -1.836035], [53.366579, -1.835878]], [[53.366579, -1.835878], [53.366586, -1.835718]], [[53.366589, -1.835564], [53.366598, -1.835405]], [[53.366598, -1.835405], [53.3666, -1.835237]], [[53.3666, -1.835237], [53.366612, -1.835075]], [[53.366612, -1.835075], [53.36663, -1.834923]], [[53.36663, -1.834923], [53.366623, -1.834764]], [[53.366657, -1.834611], [53.366643, -1.834446]], [[53.366643, -1.834446], [53.366677, -1.834295]], [[53.366777, -1.833609], [53.366774, -1.833442]], [[53.36708, -1.832071], [53.367117, -1.83193]], [[53.367513, -1.83069], [53.367558, -1.830544]], [[53.367558, -1.830544], [53.367587, -1.830388]], [[53.367797, -1.829835], [53.367784, -1.829671]], [[53.367784, -1.829671], [53.36782, -1.829529]], [[53.368121, -1.828623], [53.368188, -1.828497]], [[53.368729, -1.827054], [53.368746, -1.826883]], [[53.368746, -1.826883], [53.368761, -1.826718]], [[53.368761, -1.826718], [53.368816, -1.826578]], [[53.368816, -1.826578], [53.368844, -1.826421]], [[53.368975, -1.825984], [53.368952, -1.825826]], [[53.368952, -1.825826], [53.369013, -1.82569]], [[53.369013, -1.82569], [53.369041, -1.825545]], [[53.369313, -1.824904], [53.369383, -1.824772]], [[53.369383, -1.824772], [53.369449, -1.824642]], [[53.369574, -1.824413], [53.369641, -1.824292]], [[53.369723, -1.82423], [53.369808, -1.824137]], [[53.369843, -1.82399], [53.369825, -1.823835]], [[53.37001, -1.822996], [53.370018, -1.822843]], [[53.370018, -1.822843], [53.37003, -1.822692]], [[53.370146, -1.822247], [53.370155, -1.822089]], [[53.370193, -1.821699], [53.370168, -1.821549]], [[53.370168, -1.821549], [53.370152, -1.821393]], [[53.370468, -1.819909], [53.370472, -1.819749]], [[53.370472, -1.819749], [53.370472, -1.819581]], [[53.370383, -1.819272], [53.370381, -1.819096]], [[53.370406, -1.818323], [53.370399, -1.818166]], [[53.370406, -1.8173], [53.370401, -1.817141]], [[53.370401, -1.817141], [53.370417, -1.816976]], [[53.37048, -1.816915], [53.370574, -1.816906]], [[53.370431, -1.816772], [53.370341, -1.81666]], [[53.369215, -1.815867], [53.369144, -1.815974]], [[53.368318, -1.815384], [53.368231, -1.815422]], [[53.368133, -1.815443], [53.368031, -1.815443]], [[53.36774, -1.815548], [53.367647, -1.815589]], [[53.367647, -1.815589], [53.367546, -1.815624]], [[53.367375, -1.815747], [53.367288, -1.815808]], [[53.367288, -1.815808], [53.36721, -1.815895]], [[53.36721, -1.815895], [53.367145, -1.816022]], [[53.366711, -1.816561], [53.366612, -1.816571]], [[53.366612, -1.816571], [53.366529, -1.816563]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#badd00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#badd00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_ef2247fad675f975aba7b3849e1fe96f = L.polyline(
                [[[53.48368, -1.913254], [53.483684, -1.913405]], [[53.483684, -1.913405], [53.483647, -1.913579]], [[53.483525, -1.915758], [53.483488, -1.915947]], [[53.483319, -1.917293], [53.483318, -1.917473]], [[53.483318, -1.917473], [53.483311, -1.917632]], [[53.364548, -1.847559], [53.364455, -1.847447]], [[53.365022, -1.845138], [53.365018, -1.844978]], [[53.370154, -1.820839], [53.370192, -1.820699]], [[53.370321, -1.820459], [53.370385, -1.820338]], [[53.370385, -1.820338], [53.370423, -1.820188]], [[53.370472, -1.819581], [53.370435, -1.819412]], [[53.370435, -1.819412], [53.370383, -1.819272]], [[53.370341, -1.81666], [53.370261, -1.816585]], [[53.369598, -1.816175], [53.369388, -1.815882]], [[53.368805, -1.8156], [53.36873, -1.815498]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff8b00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_681069365ed4d72479d5a13e938df1d2 = L.polyline(
                [[[53.483647, -1.913579], [53.483601, -1.913734]], [[53.483606, -1.914388], [53.483599, -1.914544]], [[53.483514, -1.915133], [53.483538, -1.915288]], [[53.483287, -1.917007], [53.483277, -1.917156]], [[53.420191, -1.892726], [53.420168, -1.892879]], [[53.370654, -1.865079], [53.370581, -1.864967]], [[53.364356, -1.847467], [53.36436, -1.847302]], [[53.365018, -1.844978], [53.364998, -1.844823]], [[53.366935, -1.832837], [53.366965, -1.832669]], [[53.36723, -1.831489], [53.36732, -1.831407]], [[53.367853, -1.829379], [53.367909, -1.829228]], [[53.367909, -1.829228], [53.367961, -1.829066]], [[53.368024, -1.828915], [53.368074, -1.828756]], [[53.370082, -1.822563], [53.370118, -1.822405]], [[53.370038, -1.821128], [53.370089, -1.820997]], [[53.370267, -1.820589], [53.370321, -1.820459]], [[53.370419, -1.818947], [53.370415, -1.818769]], [[53.370415, -1.818769], [53.370421, -1.818617]], [[53.370397, -1.8176], [53.370371, -1.817446]], [[53.370261, -1.816585], [53.370188, -1.816469]], [[53.369948, -1.816203], [53.369863, -1.816108]], [[53.369863, -1.816108], [53.369788, -1.81602]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ffba00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ffba00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_6ed404bab84529b2f7c50943f1fe6e79 = L.polyline(
                [[[53.483488, -1.915947], [53.483424, -1.916092]], [[53.364455, -1.847447], [53.364356, -1.847467]], [[53.369388, -1.815882], [53.369301, -1.815818]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff2e00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff2e00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_a36ac5ddcf9f08c9c78ff2f64b90fd62 = L.polyline(
                [[[53.483424, -1.916092], [53.483389, -1.916282]], [[53.483389, -1.916282], [53.48339, -1.916494]], [[53.483337, -1.916845], [53.483287, -1.917007]], [[53.366841, -1.833127], [53.366884, -1.832963]], [[53.366884, -1.832963], [53.366935, -1.832837]], [[53.370089, -1.820997], [53.370154, -1.820839]], [[53.369063, -1.815903], [53.36898, -1.815797]], [[53.36898, -1.815797], [53.368885, -1.815706]], [[53.368885, -1.815706], [53.368805, -1.8156]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff5d00ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff5d00ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_346097b513e85f27600ee08d7493ea18 = L.polyline(
                [[[53.48339, -1.916494], [53.483369, -1.916683]], [[53.483369, -1.916683], [53.483337, -1.916845]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#ff0000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            var poly_line_64242e3881d1f81169df24934c9f6efe = L.polyline(
                [[[53.48149, -1.917448], [53.481391, -1.917443]], [[53.479296, -1.914139], [53.479274, -1.91429]], [[53.476584, -1.90612], [53.476492, -1.906144]], [[53.471806, -1.905424], [53.471744, -1.905308]], [[53.471548, -1.905125], [53.471549, -1.905119]], [[53.471549, -1.905119], [53.471463, -1.905041]], [[53.47126, -1.904644], [53.471187, -1.904546]], [[53.471187, -1.904546], [53.471165, -1.904492]], [[53.470833, -1.903996], [53.470766, -1.903895]], [[53.470648, -1.903633], [53.470577, -1.903529]], [[53.461319, -1.859705], [53.461229, -1.859702]], [[53.451614, -1.856052], [53.451514, -1.856036]], [[53.451514, -1.856036], [53.451505, -1.85604]], [[53.417739, -1.901985], [53.417682, -1.902104]], [[53.372941, -1.87124], [53.373038, -1.871258]], [[53.37048, -1.816676], [53.370474, -1.816836]], [[53.370585, -1.81692], [53.370627, -1.81678]], [[53.370627, -1.81678], [53.370625, -1.816766]], [[53.370625, -1.816766], [53.370533, -1.816794]], [[53.370533, -1.816794], [53.370528, -1.816792]], [[53.370528, -1.816792], [53.370431, -1.816772]]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#008000ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#008000ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: null, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 4}
            ).addTo(color_line_5a0f0329bd74daac7b4ebc39c67f99d3);
        
    
            color_line_5a0f0329bd74daac7b4ebc39c67f99d3.addTo(map_948a38572a1498d97f3b685e6597b483);
        
</script>
</html>" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section id="reflections" class="level2">
<h2 class="anchored" data-anchor-id="reflections">Reflections</h2>
<p>The Pennine Way passes through a lot of rugged, remote and beautiful countryside and I would highly recommend hiking it in some manner at some point in your life.</p>
<ul>
<li>Hiking multiple days is <em>really</em> good fun.</li>
<li>Comfortable shoes are essential.</li>
<li>Sandals and shorts are great for wet weather and bogs. I used a pair of <a href="https://www.teva-eu.com/en/gb/" target="_blank">Teva’s</a> and have bought another spare pair.</li>
<li>Grass is the best thing for walking on, rubble the worst.</li>
<li>There are lots of really nice friendly people in the countryside. Get out of the town or city you live in and go and meet them and take the spirit back to the city.</li>
<li>Always say hello to the people you pass.</li>
<li><a href="https://journals.sagepub.com/doi/full/10.1580/1080-6032(2003)14%5b161:BP%5d2.0.CO;2" target="_blank">Backpacking-induced Paresthesias</a> (see also <a href="https://thetrek.co/numb-toes-after-finishing-your-thru-hike-heres-why/" target="_blank">here</a>) is weird and lasted for at least four weeks.</li>
<li>Rain isn’t that bad really, but combined with wind can be somewhat tiring.</li>
<li>Head winds are annoying, particularly if strong.</li>
<li>Walking poles are amazing for reducing stress on your knees and allowing you to go faster for longer.</li>
<li>You don’t have to go a long way to meet your neighbours!</li>
</ul>
</section>
<section id="summary-table" class="level2">
<h2 class="anchored" data-anchor-id="summary-table">Summary Table</h2>
<table class="caption-top table">
<colgroup>
<col style="width: 3%">
<col style="width: 8%">
<col style="width: 11%">
<col style="width: 11%">
<col style="width: 7%">
<col style="width: 6%">
<col style="width: 6%">
<col style="width: 9%">
<col style="width: 8%">
<col style="width: 10%">
<col style="width: 9%">
<col style="width: 9%">
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Day</th>
<th>Date</th>
<th>Start</th>
<th>Finish</th>
<th>Distance (km)</th>
<th>Ascent (m)</th>
<th>Descent (m)</th>
<th>Duration (h<span class="emoji" data-emoji="m">Ⓜ️</span>s)</th>
<th>Pauses (h<span class="emoji" data-emoji="m">Ⓜ️</span>s)</th>
<th>Total Time (h<span class="emoji" data-emoji="m">Ⓜ️</span>s)</th>
<th>Mean Speed (km/h)</th>
<th>Max Speed (km/h)</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">1</td>
<td>2024-08-14 Wed</td>
<td>Kirk Yetholm</td>
<td>Clennell Street</td>
<td>18.45</td>
<td>1129.24</td>
<td>705.14</td>
<td>4:45:11</td>
<td>0:1:18</td>
<td>4:46:29</td>
<td>3.88</td>
<td>5.7</td>
</tr>
<tr class="even">
<td style="text-align: left;">2</td>
<td>2024-08-15 Thu</td>
<td>Clennell Street</td>
<td>Bryness</td>
<td>23.554</td>
<td>736.15</td>
<td>1052.45</td>
<td>6:00:26</td>
<td>0:31:57</td>
<td>6:32:24</td>
<td>3.92</td>
<td>5.93</td>
</tr>
<tr class="odd">
<td style="text-align: left;">3</td>
<td>2024-08-16 Fri</td>
<td>Bryness</td>
<td>Hadrians Wall</td>
<td>47.904</td>
<td>1573.63</td>
<td>1503.53</td>
<td>11:12:51</td>
<td>3:43:42</td>
<td>14:56:34</td>
<td>4.27</td>
<td>6.15</td>
</tr>
<tr class="even">
<td style="text-align: left;">4</td>
<td>2024-08-17 Sat</td>
<td>Hadrians Wall</td>
<td>Garigill</td>
<td>49.112</td>
<td>1907.28</td>
<td>1871.28</td>
<td>13:23:58</td>
<td>1:44:56</td>
<td>15:08:54</td>
<td>3.67</td>
<td>6.14</td>
</tr>
<tr class="odd">
<td style="text-align: left;">5</td>
<td>2024-08-18 Sun</td>
<td>Garigill</td>
<td>High Cup Nick</td>
<td>33.094</td>
<td>1593.73</td>
<td>1381.03</td>
<td>8:38:28</td>
<td>2:53:02</td>
<td>11:31:31</td>
<td>3.83</td>
<td>6.51</td>
</tr>
<tr class="even">
<td style="text-align: left;">6</td>
<td>2024-08-19 Mon</td>
<td>High Cup Nick</td>
<td>Middleton in Teesdale</td>
<td>28.341</td>
<td>840.14</td>
<td>1190.44</td>
<td>7:14:33</td>
<td>0:8:54</td>
<td>7:23:27</td>
<td>3.91</td>
<td>6.59</td>
</tr>
<tr class="odd">
<td style="text-align: left;">7</td>
<td>2024-08-20 Tue</td>
<td>Middleton in Teesdale</td>
<td>Thwaite</td>
<td>42.736</td>
<td>1704.63</td>
<td>1684.63</td>
<td>10:23:16</td>
<td>2:27:48</td>
<td>12:51:04</td>
<td>4.11</td>
<td>6.07</td>
</tr>
<tr class="even">
<td style="text-align: left;">8</td>
<td>2024-08-21 Wed</td>
<td>Thwaite</td>
<td>Horton in Ribblesdale</td>
<td>40.691</td>
<td>1547.21</td>
<td>1619.61</td>
<td>9:30:41</td>
<td>2:43:40</td>
<td>12:14:22</td>
<td>4.28</td>
<td>6.24</td>
</tr>
<tr class="odd">
<td style="text-align: left;">9</td>
<td>2024-08-22 Thu</td>
<td>Horton in Ribblesdale</td>
<td>Gargrave</td>
<td>38.811</td>
<td>1759.36</td>
<td>1908.96</td>
<td>10:17:26</td>
<td>2:21:08</td>
<td>12:38:34</td>
<td>3.77</td>
<td>6.43</td>
</tr>
<tr class="even">
<td style="text-align: left;">10</td>
<td>2024-08-23 Fri</td>
<td>Gargrave</td>
<td>Colden</td>
<td>47.980</td>
<td>2302.5</td>
<td>2121.5</td>
<td>11:22:01</td>
<td>0:24:09</td>
<td>11:46:10</td>
<td>4.22</td>
<td>6.77</td>
</tr>
<tr class="odd">
<td style="text-align: left;">11</td>
<td>2024-08-24 Sat</td>
<td>Colden</td>
<td>Crowden</td>
<td>49.205</td>
<td>2512.51</td>
<td>2582.31</td>
<td>11:12:44</td>
<td>1:03:51</td>
<td>12:16:35</td>
<td>4.39</td>
<td>7.05</td>
</tr>
<tr class="even">
<td style="text-align: left;">12</td>
<td>2024-08-25 Sun</td>
<td>Crowden</td>
<td>Edale</td>
<td>28.535</td>
<td>1323.47</td>
<td>1305.07</td>
<td>6:58:46</td>
<td>0:20:43</td>
<td>7:19:29</td>
<td>4.09</td>
<td>6.62</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Total</td>
<td></td>
<td></td>
<td></td>
<td>448.413</td>
<td>18929.85</td>
<td>18925.95</td>
<td></td>
<td></td>
<td></td>
<td>4.0283333</td>
<td>7.05</td>
</tr>
</tbody>
</table>
<!-- The first, most basic thing to do is create a map showing a couple of points. -->
<!-- ::: {.panel-tabset} -->
<!-- ## R -->
<!-- ```{r} -->
<!-- #| label: r-leaflet -->
<!-- #| code-fold: true -->
<!-- #| code-link: true -->
<!-- #| code-tools: true -->
<!-- #| eval: false -->
<!-- #| echo: true -->
<!-- library(gtsummary) -->
<!-- library(htmlwidgets) -->
<!-- library(leaflet) -->
<!-- ## library(rgdal) -->
<!-- ## https://rstudio-pubs-static.s3.amazonaws.com/328775_2c54adb6ac734563b88c14bce515b012.html -->
<!-- ## https://digital-geography.com/gpx-overview-r-function-create-overview-gpx-files-using-leaflet-rgooglemaps/ -->
<!-- lat = c(55.546935, 53.370478) -->
<!-- lng = c(-2.275763, -1.816950) -->
<!-- gps = data.frame(lat, lng) -->
<!-- gps_names = c("Kirk Yetholm", "Edale") -->
<!-- row.names(gps) = gps_names -->
<!-- leaflet() |> -->
<!--   addTiles() |> -->
<!--   addMarkers(lat = gps["Kirk Yetholm", "lat"], -->
<!--              lng = gps["Kirk Yetholm", "lng"], -->
<!--              popup = "Start of the Pennine Way") |> -->
<!--   addMarkers(lat = gps["Edale", "lat"], lng = gps["Edale", "lng"], popup = "End of the Pennine Way") -->
<!-- ``` -->
<!-- ## Python -->
<!-- ```{python} -->
<!-- #| label: python-leaflet -->
<!-- #| code-fold: true -->
<!-- #| code-link: true -->
<!-- #| code-tools: true -->
<!-- #| eval: false -->
<!-- #| echo: true -->
<!-- import folium -->
<!-- import numpy as np -->
<!-- import pandas as pd -->
<!-- gps = {"Kirk Yetholm": (55.546935,-2.275763), -->
<!--        "Edale": (53.370478, -1.816950)} -->
<!-- m = folium.Map(location=(gps["Kirk Yetholm"])) -->
<!-- folium.Marker( -->
<!--     location=gps["Kirk Yetholm"], -->
<!--     tooltip="Start of the Pennine Way", -->
<!--     popup="Start of the Pennine Way", -->
<!--     icon=folium.Icon(color="green") -->
<!-- ).add_to(m) -->
<!-- folium.Marker( -->
<!--     location=gps["Edale"], -->
<!--     tooltip="End of the Pennine Way", -->
<!--     popup="End of the Pennine Way", -->
<!--     icon=folium.Icon(color="red") -->
<!-- ).add_to(m) -->
<!-- m -->
<!-- ``` -->
<!-- ::: -->



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2024,
  author = {Shephard, Neil},
  title = {Pennine {Way} 2024},
  date = {2024-08-30},
  url = {https://blog.nshephard.dev/posts/pennine-way/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2024" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2024. <span>“Pennine Way 2024.”</span> August 30, 2024.
<a href="https://blog.nshephard.dev/posts/pennine-way/">https://blog.nshephard.dev/posts/pennine-way/</a>.
</div></div></section></div> ]]></description>
  <category>holiday</category>
  <category>hiking</category>
  <category>pennine way</category>
  <category>gpx</category>
  <category>statistics</category>
  <guid>https://blog.nshephard.dev/posts/pennine-way/</guid>
  <pubDate>Fri, 30 Aug 2024 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/53930940490_d331111f4f_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>virtualenvwrapper hooks</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/virtualenv-hooks/</link>
  <description><![CDATA[ 





<p>I’ve written <a href="https://blog.nshephard.dev/posts/virtualenvwrapper/" target="_blank">previously</a> about <a href="https://virtualenvwrapper.readthedocs.io/en/latest/" target="_blank"><code>virtualenvwrapper</code></a> which I use to manage my Python Virtual Environments and mentioned the possibility of using hooks but didn’t go into detail.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53878835844_88658e86cb_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53878835844/" target="_blank">South Coast of Portugal by Me</a></figcaption>
</figure>
</div>
<section id="introduction" class="level2">
<h2 class="anchored" data-anchor-id="introduction">Introduction</h2>
<p>Just like the various hooks available in Git, <a href="https://virtualenvwrapper.readthedocs.io/en/latest/" target="_blank"><code>virtualenvwrapper</code></a> also supports <a href="https://virtualenvwrapper.readthedocs.io/en/latest/scripts.html#per-user-customization" target="_blank">hooks</a> that allow scripts to be run in response to various events. These reside under your <code>$VIRTUALENVWRAPPER_HOOK_DIR</code> which by default is the same as your <code>$WORKON_HOME</code> directory and in a typical standard installation will be <code>~/.virtualenvs</code>.</p>
<p>The available scripts that are recognised are…</p>
<ul>
<li><code>get_env_details</code></li>
<li><code>initialize</code></li>
<li><code>premkvirtualenv</code></li>
<li><code>postmkvirtualenv</code></li>
<li><code>precpvirtualenv</code></li>
<li><code>postcpvirtualenv</code></li>
<li><code>preactivate</code></li>
<li><code>postactivate</code></li>
</ul>
<p>Each of these is a simple shell script and will start with the scripting language to use e.g.&nbsp;<code>#!/usr/bin/bash</code> or <code>#!/usr/bin/zsh</code> depending on your shell. You can then script the actions you wish to take when the script is executed.</p>
</section>
<section id="install-minimal-requirements" class="level2">
<h2 class="anchored" data-anchor-id="install-minimal-requirements">Install minimal requirements</h2>
<p>I’m a big fan of <a href="https://dotfiles.github.io" target="_blank">dotfiles</a><sup>1</sup>, mine are <a href="https://gitlab.com/nshephard/dotfiles/" target="_blank">hosted on GitLab</a>, it’s a repository of my configuration files and scripts that I use regularly across multiple computers. Because I’m lazy I wrote a couple of <code>requirements.txt</code> files for installing packages in my virtual environments.</p>
<ul>
<li><a href="https://gitlab.com/nshephard/dotfiles/-/blob/master/python/requirements.txt?ref_type=heads" target="_blank"><code>requirements.txt</code></a> : holds everything I might ever want to use in Python.</li>
<li><dl>
<dt><a href="https://gitlab.com/nshephard/dotfiles/-/blob/master/python/requirements.txt?ref_type=heads" target="_blank"><code>python-lsp-requirements.txt</code></a></dt>
<dd>
Install packages for setting up a Python Language Server (which I use from Emacs).
</dd>
</dl></li>
<li><dl>
<dt><a href="https://gitlab.com/nshephard/dotfiles/-/blob/master/python/venv_minimal_requirements.txt?ref_type=heads" target="_blank"><code>venv_minimal_requirements.txt</code></a></dt>
<dd>
a minimal set of the most common Python packages I am likely to want when creating a new virtual environment.
</dd>
</dl></li>
</ul>
<p>Because I have my <code>dotfiles</code> cloned to the same location on every computer (<code>~/dotfiles</code>) I added the following to the <code>~/.virtualenvs/postmkvirtualenv</code> <sup>2</sup> which will install all of the packages listed in <code>~/dotfiles/python/venv_minimal_requirements.txt</code> whenever a create a new virtual environment, whether that is with <code>mkvritualenv</code> or <code>mktmpenv</code>.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--no-cache-dir</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-r</span> ~/dotfiles/python/venv_minimal_requirements.txt</span></code></pre></div>
<p>This ensured the latest versions of each packages listed in <code>~/dotfiles/python/venv_minimal_requirements.txt</code> were downloaded and installed as the <code>--no-cache-dir</code> prevents using cached versions of packages.</p>
</section>
<section id="a-smarter-script" class="level2">
<h2 class="anchored" data-anchor-id="a-smarter-script">A smarter script</h2>
<p>This served me well for a time, but occasionally I found I <em>didn’t</em> want to install <em>any</em> packages in a new virtual environment (most often when testing new branches using <code>mktmpenv</code>) and I’d have to remember to comment out the line in the hook file (<code>~/.virtualenvs/postmkvirtualenv</code>) before creating the environment. Typically though I’d forget to do this and would have to halt installation of required packages, deactivate the environment, <em>then</em> comment it out and create a new environment.</p>
<p>This quickly became irksome.</p>
<p>But <code>~/.virtualenvs/postmkvirtualenv</code> is just a script and so we can use a bit of scripting knowledge to make it interactive and ask the user if they want to install the packages listed in <code>venv_minimal_requirements.txt</code>. I found a really useful answer on StackOverflow in the <a href="https://stackoverflow.com/a/226724/1444043" target="_blank">How do I prompt for yes/no/cancel input in a Linux shell script</a> that showed several different ways to prompt the user for a response as to whether they want to do something.</p>
<p>I therefore updated my <a href="https://gitlab.com/nshephard/dotfiles/-/blob/master/python/postmkvirtualenv?ref_type=heads" target="_blank"><code>~/.virtualenvs/postmkvirtualenv</code></a> to the following which prompts for a numeric response, <code>1</code> for <code>Yes</code> and <code>2</code> for <code>No</code> and takes the appropriate action, installing using my original invocation of <code>pip</code> if I want to install packages and enter <code>1</code> or installing nothing if I enter <code>2</code>.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#!/usr/bin/zsh</span></span>
<span id="cb2-2"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># This hook is sourced after a new virtualenv is activated.</span></span>
<span id="cb2-3"></span>
<span id="cb2-4"></span>
<span id="cb2-5"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Do you wish to install minimal requirements (from venv_minimal_requirements.txt)? "</span></span>
<span id="cb2-6"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">select</span> yn <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Yes"</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"No"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">do</span></span>
<span id="cb2-7">  <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">case</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">$yn</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span></span>
<span id="cb2-8">    <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">Yes</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--no-cache-dir</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-r</span> ~/dotfiles/python/venv_minimal_requirements.txt<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">break;;</span></span>
<span id="cb2-9">    <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">No</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"No packages installed. install packages with 'pip'.\n"</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">break;;</span></span>
<span id="cb2-10">  <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">esac</span></span>
<span id="cb2-11"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">done</span></span></code></pre></div>
<p><strong>NB</strong> You may want to tweak the opening shebang if you use the Bash shell.</p>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>A little bit of shell scripting knowledge can be really powerful when used in conjunction with “hooks”. This is true of <a href="https://virtualenvwrapper.readthedocs.io/en/latest/" target="_blank"><code>virtualenvwrapper</code></a> as well as of Git and the <a href="https://blog.nshephard.dev/posts/pre-commit-hooks/" target="_blank">pre-commit</a> framework.</p>



</section>


<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section id="footnotes" class="footnotes footnotes-end-of-document"><h2 class="anchored quarto-appendix-heading">Footnotes</h2>

<ol>
<li id="fn1"><p>There is a wealth of information on what you can do with your <code>dotfiles</code> but that is an article in itself and I’m yet to write it. A useful set of different aliases you could use can be found <a href="https://dotfiles.io/about/#introduction" target="_blank">here</a>↩︎</p></li>
<li id="fn2"><p>Actually I create the script in <a href="https://gitlab.com/nshephard/dotfiles/-/blob/master/python/postmkvirtualenv?ref_type=heads" target="_blank"><code>~/dotfiles/python/postmkvirtualenv</code></a> and made a symbolic link at <code>~/.virtualenv/postmkvirtualenv</code> that points to it so that whenever I update or improve this script it is updated across my computers.↩︎</p></li>
</ol>
</section><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2024,
  author = {Shephard, Neil},
  title = {Virtualenvwrapper Hooks},
  date = {2024-07-31},
  url = {https://blog.nshephard.dev/posts/virtualenv-hooks/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2024" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2024. <span>“Virtualenvwrapper Hooks.”</span> July 31,
2024. <a href="https://blog.nshephard.dev/posts/virtualenv-hooks/">https://blog.nshephard.dev/posts/virtualenv-hooks/</a>.
</div></div></section></div> ]]></description>
  <category>python</category>
  <category>virtual environments</category>
  <category>bash</category>
  <category>dotfiles</category>
  <guid>https://blog.nshephard.dev/posts/virtualenv-hooks/</guid>
  <pubDate>Wed, 31 Jul 2024 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/53878835844_88658e86cb_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Pytest Fail and Skip</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/pytest-xfail/</link>
  <description><![CDATA[ 





<p><a href="https://docs.pytest.org/en/latest/" target="_blank">Pytest</a> is an excellent framework for writing tests in <a href="https://python.org" target="_blank">Python</a>. Sometimes tests don’t pass though and you might want to mark them as failing or skip them.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53621640633_c257fcf8b5_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flickr.com/photos/slackline/53621640633/in/datetaken/" target="_blank">Against the Clouds by Me</a></figcaption>
</figure>
</div>
<p><a href="https://docs.pytest.org/en/latest/" target="_blank">Pytest</a> has a few <a href="https://realpython.com/primer-on-python-decorators/" target="_blank">decorators</a> available to help with skipping tests using <a href="https://docs.pytest.org/en/latest/reference/reference.html#pytest-mark-skip" target="_blank"><code>@pytest.mark.skip</code></a> or <a href="https://docs.pytest.org/en/latest/reference/reference.html#pytest-mark-skipif" target="_blank"><code>@pytest.mark.skipif</code></a> or allowing tests to fail with <a href="https://docs.pytest.org/en/latest/reference/reference.html#pytest-mark-xfail" target="_blank"><code>@pytest.mark.xfail</code></a></p>
<p>We’ll use the <a href="https://github.com/ns-rse/pytest-examples" target="_blank">pytest-examples</a> repository for looking at how these work.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> clone git@github.com:ns-rse/pytest-examples.git</span>
<span id="cb1-2"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> pytest-examples</span></code></pre></div>
<section id="why" class="level2">
<h2 class="anchored" data-anchor-id="why">Why?</h2>
<p>There are a number of reasons why you may wish to deliberately and <a href="https://pytest-with-eric.com/pytest-best-practices/pytest-skip-test/#Why-Skip-A-Unit-Test" target="_blank">Eric covers them nicely</a>. In brief…</p>
<ul>
<li>Incompatible Python or Package Version - some tests don’t pass under a certain version.</li>
<li>Platform specific issues - some tests fail on a specific platform.</li>
<li>External dependencies - if you haven’t got round to mocking a service.</li>
<li>Local dependencies - excluding tests running under Continuous Integration that rely on local dependencies.</li>
</ul>
</section>
<section id="choose-your-partner---skip-to-my-lou" class="level2">
<h2 class="anchored" data-anchor-id="choose-your-partner---skip-to-my-lou">Choose your Partner - Skip (to my lou)</h2>
<p>If you want to unconditionally skip a test prefix it with <code>@pytest.mark.skip()</code>, adding a reason can be useful and there is the argument <code>reason="&lt;reason&gt;"</code>to do so, it helps others, including your future self. If we use the <code>tests/test_divide.py</code> from the <a href="https://github.com/ns-rse/pytest-examples" target="_blank">pytest-examples</a> repository we can skip the redundant <code>test_divide_unparameterised()</code> function as its already covered by the parameterised test that follows.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.skip</span>(reason<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"redundant - covered by test_divide()"</span>)</span>
<span id="cb2-2"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide_unparameterised() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb2-3">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the divide function."""</span></span>
<span id="cb2-4">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> divide(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span></span></code></pre></div>
<p>When we run the test we are told it is skipped. To keep things fast we run just that test using the command line version <code>pytest &lt;file&gt;::&lt;test_function&gt;</code> but your IDE may support running individual tests (in <a href="https://www.gnu.org/software/emacs/" target="_blank">Emacs</a> you can use <a href="https://github.com/ionrock/pytest-el/tree/8692f965bf4ddf3d755cf1fbf77a7a768e22460e" target="_blank">pytest.el</a> to the same effect).</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> pytest tests/test_divide::test_divide_unparameterised</span>
<span id="cb3-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">=======================================</span> test session starts ============================================</span>
<span id="cb3-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">platform</span> linux <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--</span> Python 3.11.9, pytest-7.4.4, pluggy-1.5.0</span>
<span id="cb3-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Matplotlib:</span> 3.8.4</span>
<span id="cb3-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Freetype:</span> 2.6.1</span>
<span id="cb3-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">rootdir:</span> /mnt/work/git/hub/ns-rse/pytest-examples/main</span>
<span id="cb3-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">configfile:</span> pyproject.toml</span>
<span id="cb3-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">plugins:</span> durations-1.2.0, xdist-3.5.0, pytest_tmp_files-0.0.2, mpl-0.17.0, lazy-fixture-0.6.3, cov-5.0.0</span>
<span id="cb3-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">collected</span> 1 item</span>
<span id="cb3-10"></span>
<span id="cb3-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tests/test_divide.py</span> s                                                                            <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">100%</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb3-12"></span>
<span id="cb3-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">----------</span> coverage: platform linux, python 3.11.9-final-0 <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-----------</span></span>
<span id="cb3-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Name</span>                        Stmts   Miss  Cover</span>
<span id="cb3-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-----------------------------------------------</span></span>
<span id="cb3-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytest_examples/divide.py</span>      16      8    50%</span>
<span id="cb3-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytest_examples/shapes.py</span>       5      5     0%</span>
<span id="cb3-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-----------------------------------------------</span></span>
<span id="cb3-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">TOTAL</span>                          21     13    38%</span>
<span id="cb3-20"></span>
<span id="cb3-21"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">======================================</span> short test summary info =========================================</span>
<span id="cb3-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">SKIPPED</span> <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">1</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span> tests/test_divide.py:9: redundant <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span> covered by test_divide<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb3-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">======================================</span> 1 skipped in 0.59s ==============================================</span></code></pre></div>
</section>
<section id="choose-your-partner---failing" class="level2">
<h2 class="anchored" data-anchor-id="choose-your-partner---failing">Choose your Partner - Failing (…)</h2>
<p>Nothing in the the <a href="https://en.wikipedia.org/wiki/Skip_to_My_Lou" target="_blank">old dance</a> about failing but you can selectively allow tests to fail using the <code>pytest.mark.xfail()</code> fixture. If you know a test is going to fail you can, rather than commenting it out, mark it as such. If we update the test condition so we know it will fail we mark that it will fail as follows.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.xfail</span>(reason<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"demonstrate expected failure"</span>)</span>
<span id="cb4-2"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide_unparameterised() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb4-3">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the divide function."""</span></span>
<span id="cb4-4">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> divide(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span></span></code></pre></div>
<p>And running <code>pytest</code> on this shows the failure</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb5-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> pytest tests/test_divide.py::test_divide_unparameterised</span>
<span id="cb5-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">======================================</span> test session starts =============================================</span>
<span id="cb5-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">platform</span> linux <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--</span> Python 3.11.9, pytest-7.4.4, pluggy-1.5.0</span>
<span id="cb5-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Matplotlib:</span> 3.8.4</span>
<span id="cb5-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Freetype:</span> 2.6.1</span>
<span id="cb5-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">rootdir:</span> /mnt/work/git/hub/ns-rse/pytest-examples/main</span>
<span id="cb5-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">configfile:</span> pyproject.toml</span>
<span id="cb5-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">plugins:</span> durations-1.2.0, xdist-3.5.0, pytest_tmp_files-0.0.2, mpl-0.17.0, lazy-fixture-0.6.3, cov-5.0.0</span>
<span id="cb5-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">collected</span> 1 item</span>
<span id="cb5-10"></span>
<span id="cb5-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tests/test_divide.py</span> x                                                                            <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">100%</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb5-12"></span>
<span id="cb5-13"></span>
<span id="cb5-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">----------</span> coverage: platform linux, python 3.11.9-final-0 <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-----------</span></span>
<span id="cb5-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Name</span>                        Stmts   Miss  Cover</span>
<span id="cb5-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-----------------------------------------------</span></span>
<span id="cb5-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytest_examples/divide.py</span>      16      6    62%</span>
<span id="cb5-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytest_examples/shapes.py</span>       5      5     0%</span>
<span id="cb5-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-----------------------------------------------</span></span>
<span id="cb5-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">TOTAL</span>                          21     11    48%</span>
<span id="cb5-21"></span>
<span id="cb5-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">======================================</span> short test summary info =========================================</span>
<span id="cb5-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">XFAIL</span> tests/test_divide.py::test_divide_unparameterised <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span> demonstrate expected failure</span>
<span id="cb5-24"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">======================================</span> 1 skipped in 0.59s ==============================================</span></code></pre></div>
</section>
<section id="conditional-skippingfailing" class="level2">
<h2 class="anchored" data-anchor-id="conditional-skippingfailing">Conditional Skipping/Failing</h2>
<p>The <code>pytest.mark.skipif()</code> and <code>pytest.mark.xfail()</code> fixtures both have the argument <code>condition</code> which allows you to use a Boolean (i.e.&nbsp;a statement that evaluates to <code>True</code> or <code>False</code>) to determine whether they are used. Any Python expression that can be evaluated to <code>True</code> or <code>False</code> can be used and for backwards compatibility <a href="https://docs.pytest.org/en/latest/historical-notes.html#string-conditions" target="_blank">strings can still be used</a>. If <code>condition</code> argument is used in <code>pytest.mark.xfail()</code> then the <code>reason</code> argument must also be given indicating why the test is being skipped/is expected to failed.</p>
<p>Here we fail the test only if the Python version is 3.10.*. Note the need to <code>import sys</code> and the use of <code>sys.version_info[:2]</code> to extract a tuple of the major and minor Python version).</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> sys</span>
<span id="cb6-2"></span>
<span id="cb6-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.xfail</span>(sys.version_info[:<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>), reason<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Skip under Python 3.10"</span>))</span>
<span id="cb6-4"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide_unparameterised() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb6-5">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the divide function."""</span></span>
<span id="cb6-6">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> divide(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span></span></code></pre></div>
</section>
<section id="skippingfailing-parameterised-tests" class="level2">
<h2 class="anchored" data-anchor-id="skippingfailing-parameterised-tests">Skipping/Failing Parameterised Tests</h2>
<p>In many instances you can <a href="https://blog.nshephard.dev/posts/pytest-param/" target="_blank">parameterise tests</a>, and you can use the fixtures we’ve covered against the whole test. But what if you want to skip not all of the parameterised tests but only specific ones? This is possible because as covered <a href="https://blog.nshephard.dev/posts/pytest-param/" target="_blank">previously</a> you can use <code>pytest.param()</code> function to define your parameters and give them <code>id="some text"</code> to help identify them. <code>pytest.param()</code> also has a <code>marks=</code> option which allows you to add <code>pytest.mark.*</code> to just that set of parameters and so we can add <code>pytest.mark.xfail()</code> or <code>pytest.mark.skip[if]()</code> to specific sets of parameters.</p>
<p>Instead of placing the fixture before the test so that it applies to all functions, you use the <code>pytest.param()</code> for each set of parameters and add <code>pytest.mark.xfails()</code> (or other variants) as arguments to the <code>marks</code> option.</p>
<p>Here we mark the test with <code>id</code> of <code>zero division error</code> with <code>marks=pytest.mark.xfail</code> as we know that a division by zero test will fail and so that set of parameters should be skipped.</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parametrize</span>(</span>
<span id="cb7-2">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"expected"</span>),</span>
<span id="cb7-3">    [</span>
<span id="cb7-4">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ten divided by five"</span>),</span>
<span id="cb7-5">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">9</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"nine divided by three"</span>),</span>
<span id="cb7-6">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"five divided by two"</span>),</span>
<span id="cb7-7">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zero divided by one hundred"</span>),</span>
<span id="cb7-8">        pytest.param(</span>
<span id="cb7-9">            <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">ZeroDivisionError</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zero division error"</span>, marks<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>pytest.mark.xfail(reason<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Expected to fail"</span>)),</span>
<span id="cb7-10">    ],</span>
<span id="cb7-11">)</span>
<span id="cb7-12"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide(a: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, b: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, expected: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb7-13">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the divide function."""</span></span>
<span id="cb7-14">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> divide(a, b) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> expected</span></code></pre></div>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb8-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> pytest tests/test_divide.py::test_divide</span>
<span id="cb8-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">======================================</span> test session starts =============================================</span>
<span id="cb8-3"></span>
<span id="cb8-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">platform</span> linux <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--</span> Python 3.11.9, pytest-7.4.4, pluggy-1.5.0</span>
<span id="cb8-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Matplotlib:</span> 3.8.4</span>
<span id="cb8-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Freetype:</span> 2.6.1</span>
<span id="cb8-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">rootdir:</span> /mnt/work/git/hub/ns-rse/pytest-examples/main</span>
<span id="cb8-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">configfile:</span> pyproject.toml</span>
<span id="cb8-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">plugins:</span> durations-1.2.0, xdist-3.5.0, pytest_tmp_files-0.0.2, mpl-0.17.0, lazy-fixture-0.6.3, cov-5.0.0</span>
<span id="cb8-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">collected</span> 5 items</span>
<span id="cb8-11"></span>
<span id="cb8-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tests/test_divide.py</span> ....x                                                                        <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">100%</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb8-13"></span>
<span id="cb8-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">----------</span> coverage: platform linux, python 3.11.9-final-0 <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-----------</span></span>
<span id="cb8-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Name</span>                        Stmts   Miss  Cover</span>
<span id="cb8-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-----------------------------------------------</span></span>
<span id="cb8-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytest_examples/divide.py</span>      16      3    81%</span>
<span id="cb8-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pytest_examples/shapes.py</span>       5      5     0%</span>
<span id="cb8-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-----------------------------------------------</span></span>
<span id="cb8-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">TOTAL</span>                          21      8    62%</span>
<span id="cb8-21"></span>
<span id="cb8-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">======================================</span> short test summary info =========================================</span>
<span id="cb8-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">XFAIL</span> tests/test_divide.py::test_divide[zero division error] <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span> Expected to fail</span>
<span id="cb8-24"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">======================================</span> 4 passed, 1 xfailed in 0.37s ====================================</span></code></pre></div>
<p>The <code>condition</code>/<code>reason</code> arguments to both <code>pytest.mark.skipif()</code> and <code>pytest.mark.xfail()</code> functions are still valid and can be used to conditionally mark specific sets of parameters to be skipped or indicate if they will fail under certain conditions.</p>
<p>To exclude the test with <code>id</code> of <code>five divided by two</code> under Python 3.10 we would do the following (again note the need to <code>import sys</code> and its use in the <code>cond</code> positional argument).</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> sys</span>
<span id="cb9-2"></span>
<span id="cb9-3">...</span>
<span id="cb9-4"></span>
<span id="cb9-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parametrize</span>(</span>
<span id="cb9-6">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"expected"</span>),</span>
<span id="cb9-7">    [</span>
<span id="cb9-8">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ten divided by five"</span>),</span>
<span id="cb9-9">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">9</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"nine divided by three"</span>),</span>
<span id="cb9-10">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"five divided by two"</span>, marks<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>pytest.mark.xfail(sys.version_info[:<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>),</span>
<span id="cb9-11">                                                                                  reason<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Skip under Python 3.10"</span>)),</span>
<span id="cb9-12">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zero divided by one hundred"</span>),</span>
<span id="cb9-13">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">ZeroDivisionError</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zero division error"</span>, marks<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>pytest.mark.xfail),</span>
<span id="cb9-14">    ],</span>
<span id="cb9-15">)</span>
<span id="cb9-16"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide(a: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, b: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, expected: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb9-17">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the divide function."""</span></span>
<span id="cb9-18">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> divide(a, b) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> expected</span></code></pre></div>
</section>
<section id="summary" class="level2">
<h2 class="anchored" data-anchor-id="summary">Summary</h2>
<p><a href="https://docs.pytest.org/en/latest/" target="_blank">Pytest</a> has features which help support test development and allow specific tests to fail or be skipped completely which helps with both test development and with Continuous Integration where test results can vary depending on platform and package versions.</p>
<p>This post stems from a suggestion made by <a href="https://fosstodon.org/@jni" target="_blank"><span class="citation" data-cites="jni">@jni</span><span class="citation" data-cites="jni">@jni</span><span class="citation" data-cites="fosstodon.org">@fosstodon.org</span></a> during some work I have been contributing to the <a href="https://skeleton-analysis.org/" target="_blank">skan</a> package. Thanks to Juan for the prompt/pointer.</p>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<ul>
<li><a href="https://docs.pytest.org/en/latest/" target="_blank">pytest</a></li>
<li><a href="https://docs.pytest.org/en/latest/reference/reference.html#pytest-mark-skip" target="_blank"><code>@pytest.mark.skip</code></a></li>
<li><a href="https://docs.pytest.org/en/latest/reference/reference.html#pytest-mark-skipif" target="_blank"><code>@pytest.mark.skipif</code></a></li>
<li><a href="https://docs.pytest.org/en/latest/reference/reference.html#pytest-mark-xfail" target="_blank"><code>@pytest.mark.xfail</code></a></li>
<li><a href="https://blog.nshephard.dev/posts/pytest-param/" target="_blank">Pytest Parameterisation</a></li>
</ul>
<section id="blog-posts" class="level3">
<h3 class="anchored" data-anchor-id="blog-posts">Blog Posts</h3>
<ul>
<li><a href="https://pytest-with-eric.com/pytest-best-practices/pytest-skip-test/" target="_blank">Pytest With Eric | An Ultimate Guide to using Pytest Skip Test and XFail</a></li>
</ul>



</section>
</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2024,
  author = {Shephard, Neil},
  title = {Pytest {Fail} and {Skip}},
  date = {2024-04-25},
  url = {https://blog.nshephard.dev/posts/pytest-xfail/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2024" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2024. <span>“Pytest Fail and Skip.”</span> April 25,
2024. <a href="https://blog.nshephard.dev/posts/pytest-xfail/">https://blog.nshephard.dev/posts/pytest-xfail/</a>.
</div></div></section></div> ]]></description>
  <category>python</category>
  <category>testing</category>
  <category>pytest</category>
  <guid>https://blog.nshephard.dev/posts/pytest-xfail/</guid>
  <pubDate>Thu, 25 Apr 2024 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/53621640633_c257fcf8b5_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Git - Worktrees</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/git-worktrees/</link>
  <description><![CDATA[ 





<p>A common task in Git workflow is the need to switch/checkout branches and check work that has been done on another branch, running tests, perhaps contributing to code that is out for Pull/Merge Review. If you’ve work in progress on your own branch this means either making a commit or stashing the work to come back to at a later date. Neither of these are particularly problematic as you can <code>git pop</code> stashed work to restore it or <code>git commit --amend</code>, or <code>git commit --fixup</code> and squash commits to maintain small atomic commits and avoid cluttering up the commit history with commits such as “<em>Saving work to review another branch</em>”. But, perhaps unsurprisingly, Git has another way of helping your workflow in this situation. Rather than having branches you can use “<em>worktrees</em>”.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/3027/3018839068_ff71bcb5f5_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/3018839068/" target="_blank">Natures Arches by Me</a></figcaption>
</figure>
</div>
<p>Normally when you’ve <code>git clone</code>’d a repository all configuration files for working with the repository are saved to the repository directory under <code>.git</code> <em>and</em> all files in their current state on the <code>main</code> branch are also copied to the repository directory. If we clone the <a href="https://github.com/ns-rse/pytest-examples" target="_blank">pytest-examples</a> directory we can look at its contents using <code>tree -afHD -L 2</code> (this limits the depth as we don’t need to look deep inside the <code>.git</code> or <code>mypy</code> directories which contain lots of files).</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> clone git@github.com:ns-rse/pytest-examples.git</span>
<span id="cb1-2"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> pytest-examples</span>
<span id="cb1-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tree</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-afhD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-L</span> 2</span>
<span id="cb1-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[4.0K</span> Mar 11 07:26]  .</span>
<span id="cb1-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 52K Jan  5 11:26]  ./.coverage</span>
<span id="cb1-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 11 07:26]  ./.git</span>
<span id="cb1-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 749 Jan  5 11:30]  ./.git/COMMIT_EDITMSG</span>
<span id="cb1-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 394 Jan  5 11:28]  ./.git/COMMIT_EDITMSG~</span>
<span id="cb1-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 479 Feb 17 14:08]  ./.git/config</span>
<span id="cb1-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 556 Feb 17 14:06]  ./.git/config~</span>
<span id="cb1-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  73 Jan  1 13:24]  ./.git/description</span>
<span id="cb1-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 222 Mar 11 07:26]  ./.git/FETCH_HEAD</span>
<span id="cb1-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  21 Mar 11 07:26]  ./.git/HEAD</span>
<span id="cb1-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Jan  1 13:27]  ./.git/hooks</span>
<span id="cb1-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.3K Mar 11 07:26]  ./.git/index</span>
<span id="cb1-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Jan  1 13:24]  ./.git/info</span>
<span id="cb1-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Jan  1 13:24]  ./.git/logs</span>
<span id="cb1-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Mar 11 07:26]  ./.git/objects</span>
<span id="cb1-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  41 Mar 11 07:26]  ./.git/ORIG_HEAD</span>
<span id="cb1-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 112 Jan  3 15:57]  ./.git/packed-refs</span>
<span id="cb1-21"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Jan  1 13:24]  ./.git/refs</span>
<span id="cb1-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [4.0K Jan  1 13:31]  ./.git/rr-cache</span>
<span id="cb1-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Jan  2 11:52]  ./.github</span>
<span id="cb1-24"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [4.0K Jan  3 15:57]  ./.github/workflows</span>
<span id="cb1-25"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [3.0K Jan  2 12:06]  ./.gitignore</span>
<span id="cb1-26"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [1.0K Jan  1 13:24]  ./LICENSE</span>
<span id="cb1-27"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 293 Jan  2 12:06]  ./.markdownlint-cli2.yaml</span>
<span id="cb1-28"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Jan  5 11:27]  ./.mypy_cache</span>
<span id="cb1-29"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 12K Jan  5 11:28]  ./.mypy_cache/3.11</span>
<span id="cb1-30"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 190 Jan  2 10:39]  ./.mypy_cache/CACHEDIR.TAG</span>
<span id="cb1-31"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [  34 Jan  2 10:39]  ./.mypy_cache/.gitignore</span>
<span id="cb1-32"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [1.7K Mar 11 07:26]  ./.pre-commit-config.yaml</span>
<span id="cb1-33"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 763 Jan  1 13:25]  ./.pre-commit-config.yaml~</span>
<span id="cb1-34"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 18K Jan  2 12:06]  ./.pylintrc</span>
<span id="cb1-35"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.8K Mar 11 07:26]  ./pyproject.toml</span>
<span id="cb1-36"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.7K Jan  1 17:36]  ./pyproject.toml~</span>
<span id="cb1-37"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Jan  1 19:04]  ./.pytest_cache</span>
<span id="cb1-38"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 191 Jan  1 19:04]  ./.pytest_cache/CACHEDIR.TAG</span>
<span id="cb1-39"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  37 Jan  1 19:04]  ./.pytest_cache/.gitignore</span>
<span id="cb1-40"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 302 Jan  1 19:04]  ./.pytest_cache/README.md</span>
<span id="cb1-41"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [4.0K Jan  1 19:04]  ./.pytest_cache/v</span>
<span id="cb1-42"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 11 07:26]  ./pytest_examples</span>
<span id="cb1-43"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.3K Mar 11 07:26]  ./pytest_examples/divide.py</span>
<span id="cb1-44"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 179 Mar 11 07:26]  ./pytest_examples/__init__.py</span>
<span id="cb1-45"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Jan  5 11:18]  ./pytest_examples/__pycache__</span>
<span id="cb1-46"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 491 Mar 11 07:26]  ./pytest_examples/shapes.py</span>
<span id="cb1-47"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [ 390 Jan  2 13:34]  ./pytest_examples/shapes.py~</span>
<span id="cb1-48"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Jan  2 16:09]  ./pytest_examples.egg-info</span>
<span id="cb1-49"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [   1 Jan  2 16:09]  ./pytest_examples.egg-info/dependency_links.txt</span>
<span id="cb1-50"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [3.1K Jan  2 16:09]  ./pytest_examples.egg-info/PKG-INFO</span>
<span id="cb1-51"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 481 Jan  2 16:09]  ./pytest_examples.egg-info/requires.txt</span>
<span id="cb1-52"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 446 Jan  2 16:09]  ./pytest_examples.egg-info/SOURCES.txt</span>
<span id="cb1-53"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [  16 Jan  2 16:09]  ./pytest_examples.egg-info/top_level.txt</span>
<span id="cb1-54"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 602 Jan  3 15:57]  ./README.md</span>
<span id="cb1-55"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [   0 Jan  1 13:31]  ./README.md~</span>
<span id="cb1-56"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Jan  1 13:30]  ./.ruff_cache</span>
<span id="cb1-57"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Jan  2 11:57]  ./.ruff_cache/0.1.8</span>
<span id="cb1-58"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  43 Jan  1 13:30]  ./.ruff_cache/CACHEDIR.TAG</span>
<span id="cb1-59"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [   1 Jan  1 13:30]  ./.ruff_cache/.gitignore</span>
<span id="cb1-60"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 11 07:26]  ./tests</span>
<span id="cb1-61"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 681 Mar 11 07:26]  ./tests/conftest.py</span>
<span id="cb1-62"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  26 Jan  2 12:11]  ./tests/conftest.py~</span>
<span id="cb1-63"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Jan  5 11:26]  ./tests/__pycache__</span>
<span id="cb1-64"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.7K Mar 11 07:26]  ./tests/test_divide.py</span>
<span id="cb1-65"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.6K Mar 11 07:26]  ./tests/test_shapes.py</span>
<span id="cb1-66"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [   0 Jan  2 13:36]  ./tests/test_shapes.py~</span>
<span id="cb1-67"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> [ 460 Jan  2 16:09]  ./_version.py</span>
<span id="cb1-68"></span>
<span id="cb1-69"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">21</span> directories, 43 files</span></code></pre></div>
<p>Lets create the <code>contributing</code> branch</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> switch <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-c</span> contributing</span>
<span id="cb2-2"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"# Contributing\n\nContributions to this repository are welcome via Pull Requests."</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> CONTRIBUTING.md</span></code></pre></div>
<p>If we want to switch branches without making a commit but save our work in progress as we want to add more to the <code>CONTRIBUTING.md</code> file later we can stash the changes with a message. We then switch to <code>main</code> and create a new branch (<code>citation</code>) for and add a <code>CITATION.cff</code> file.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> stash <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"An example stash"</span></span>
<span id="cb3-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> switch main</span>
<span id="cb3-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> switch <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-c</span> citation</span>
<span id="cb3-4"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cff-version: 1.2.0\ntitle: Pytest Examples\ntype: software"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> CITATION.cff</span>
<span id="cb3-5"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> add CITATION.cff</span>
<span id="cb3-6"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Adding CITATION.cff"</span></span></code></pre></div>
<p>When we are ready to return to our <code>contributing</code> branch we can switch and <code>git pop</code> the work we stashed. By default the last stash is popped, but its possible to view all the stashes and select which you wish to pop and restore to the current branch.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> switch contributing</span>
<span id="cb4-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> pop</span></code></pre></div>
<section id="worktrees-rather-than-branches" class="level2">
<h2 class="anchored" data-anchor-id="worktrees-rather-than-branches">Worktrees rather than branches</h2>
<p>Worktrees take a different approach to organising branches. They start with a <code>--bare</code> clone of the repository which implies the <code>--no-checkout</code> flag and means that the files that would normally be found under the <code>&lt;repository&gt;/.git</code> directory are copied but are instead placed in the top level of the directory rather than under <code>.git/</code>. No tracked files are copied as they may conflict with these files. You have all the information Git has about the history of the repository and the different commits and branches but none of the <em>actual</em> files.</p>
<p><strong>NB</strong> If you don’t explicitly state a target directory to clone to it will be the repository name suffixed with <code>.git</code>, i.e.&nbsp;in this example <code>pytest-examples.git</code>. I recommend sticking with the convention of using the same repository name so will explicitly state it.</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb5-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> ..</span>
<span id="cb5-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mv</span> pytest-examples pytest-examples-orig-clone</span>
<span id="cb5-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> clone <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--bare</span> git@github.com:ns-rse/pytest-examples.git pytest-examples</span>
<span id="cb5-4"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> pytest-examples</span>
<span id="cb5-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tree</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-afhD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-L</span> 2</span>
<span id="cb5-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[4.0K</span> Mar 13 07:45]  .</span>
<span id="cb5-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 129 Mar 13 07:45]  ./config</span>
<span id="cb5-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [  73 Mar 13 07:45]  ./description</span>
<span id="cb5-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [  21 Mar 13 07:45]  ./HEAD</span>
<span id="cb5-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 13 07:45]  ./hooks</span>
<span id="cb5-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 478 Mar 13 07:45]  ./hooks/applypatch-msg.sample</span>
<span id="cb5-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 896 Mar 13 07:45]  ./hooks/commit-msg.sample</span>
<span id="cb5-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.6K Mar 13 07:45]  ./hooks/fsmonitor-watchman.sample</span>
<span id="cb5-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 189 Mar 13 07:45]  ./hooks/post-update.sample</span>
<span id="cb5-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 424 Mar 13 07:45]  ./hooks/pre-applypatch.sample</span>
<span id="cb5-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.6K Mar 13 07:45]  ./hooks/pre-commit.sample</span>
<span id="cb5-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 416 Mar 13 07:45]  ./hooks/pre-merge-commit.sample</span>
<span id="cb5-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.5K Mar 13 07:45]  ./hooks/prepare-commit-msg.sample</span>
<span id="cb5-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.3K Mar 13 07:45]  ./hooks/pre-push.sample</span>
<span id="cb5-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.8K Mar 13 07:45]  ./hooks/pre-rebase.sample</span>
<span id="cb5-21"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 544 Mar 13 07:45]  ./hooks/pre-receive.sample</span>
<span id="cb5-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [2.7K Mar 13 07:45]  ./hooks/push-to-checkout.sample</span>
<span id="cb5-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [2.3K Mar 13 07:45]  ./hooks/sendemail-validate.sample</span>
<span id="cb5-24"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [3.6K Mar 13 07:45]  ./hooks/update.sample</span>
<span id="cb5-25"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 13 07:45]  ./info</span>
<span id="cb5-26"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [ 240 Mar 13 07:45]  ./info/exclude</span>
<span id="cb5-27"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 13 07:45]  ./objects</span>
<span id="cb5-28"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Mar 13 07:45]  ./objects/info</span>
<span id="cb5-29"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [4.0K Mar 13 07:45]  ./objects/pack</span>
<span id="cb5-30"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 249 Mar 13 07:45]  ./packed-refs</span>
<span id="cb5-31"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> [4.0K Mar 13 07:45]  ./refs</span>
<span id="cb5-32">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 13 07:45]  ./refs/heads</span>
<span id="cb5-33">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> [4.0K Mar 13 07:45]  ./refs/tags</span>
<span id="cb5-34"></span>
<span id="cb5-35"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">9</span> directories, 19 files</span></code></pre></div>
<p>What use is that? Well from this point you can instead of using <code>git branch</code> use <code>git worktree add &lt;branch_name&gt;</code> and it will create a <em>directory</em> with the name of the branch which holds all the files in their current state on that branch.</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb6-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> worktree add main</span>
<span id="cb6-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Preparing</span> worktree <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">checking</span> out <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'main'</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb6-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">HEAD</span> is now at 2f7c382 Merge pull request <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#6 from ns-rse/ns-rse/tidy-print</span></span>
<span id="cb6-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tree</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-afhD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-L</span> 2 main/</span>
<span id="cb6-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[4.0K</span> Mar 13 08:13]  main</span>
<span id="cb6-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [  64 Mar 13 08:13]  main/.git</span>
<span id="cb6-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 13 08:13]  main/.github</span>
<span id="cb6-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [4.0K Mar 13 08:13]  main/.github/workflows</span>
<span id="cb6-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [3.0K Mar 13 08:13]  main/.gitignore</span>
<span id="cb6-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [1.0K Mar 13 08:13]  main/LICENSE</span>
<span id="cb6-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 293 Mar 13 08:13]  main/.markdownlint-cli2.yaml</span>
<span id="cb6-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [1.7K Mar 13 08:13]  main/.pre-commit-config.yaml</span>
<span id="cb6-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 18K Mar 13 08:13]  main/.pylintrc</span>
<span id="cb6-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.8K Mar 13 08:13]  main/pyproject.toml</span>
<span id="cb6-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 13 08:13]  main/pytest_examples</span>
<span id="cb6-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.3K Mar 13 08:13]  main/pytest_examples/divide.py</span>
<span id="cb6-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [ 179 Mar 13 08:13]  main/pytest_examples/__init__.py</span>
<span id="cb6-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [ 491 Mar 13 08:13]  main/pytest_examples/shapes.py</span>
<span id="cb6-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 602 Mar 13 08:13]  main/README.md</span>
<span id="cb6-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> [4.0K Mar 13 08:13]  main/tests</span>
<span id="cb6-21">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [ 681 Mar 13 08:13]  main/tests/conftest.py</span>
<span id="cb6-22">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [1.7K Mar 13 08:13]  main/tests/test_divide.py</span>
<span id="cb6-23">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> [1.6K Mar 13 08:13]  main/tests/test_shapes.py</span>
<span id="cb6-24"></span>
<span id="cb6-25"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">5</span> directories, 14 files</span></code></pre></div>
<p>Each branch can have a worktree added for it and then when you want to switch between them its is simply a case of <code>cd</code>ing into the worktree (/branch) you wish to work on. You use Git commands within the directory to apply them to that branch and Git keeps track of everything in the usual manner.</p>
<p>Lets create two worktree’s, the <code>contributing</code> and <code>citation</code> we created above when working with branches.</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb7-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> worktree add contributing</span>
<span id="cb7-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> worktree add citation</span></code></pre></div>
<p>You are now free to move between worktrees (/branches) and undertake work on each without having to <code>git stash</code> or <code>git commit</code> work in progress. We can add the <code>CONTRIBUTING.md</code> to the <code>contributing</code> worktree then jump to the <code>citation</code> worktree and add the <code>CITATION.cff</code></p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb8-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> contributing</span>
<span id="cb8-2"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"# Contributing\n\nContributions to this repository are welcome via Pull Requests."</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> CONTRIBUTING.md</span>
<span id="cb8-3"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> ../citation</span>
<span id="cb8-4"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cff-version: 1.2.0\ntitle: Pytest Examples\ntype: software"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> CITATION.cff</span></code></pre></div>
<p>Neither branches have had the changes committed so Git will not show any differences between them, but we can use <code>diff -qr</code> to compare the directories.</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb9-1"> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">diff</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-qr</span> contributing citation</span>
<span id="cb9-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Only</span> in citation: CITATION.cff</span>
<span id="cb9-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Only</span> in contributing: CONTRIBUTING.md</span>
<span id="cb9-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Files</span> contributing/.git and citation/.git differ</span></code></pre></div>
<p>If we commit the changes to each we can <code>git diff</code> them.</p>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb10-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> contributing</span>
<span id="cb10-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> add CONTRIBUTING.md</span>
<span id="cb10-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Adding basic CONTRIBUTING.md"</span></span>
<span id="cb10-4"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> ../citation</span>
<span id="cb10-5"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> add CITATION.cff</span>
<span id="cb10-6"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Adding basic CITATION.cff"</span></span>
<span id="cb10-7"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> diff citation contributing</span>
<span id="cb10-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">CITATION.cff</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">---</span> Text</span>
<span id="cb10-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">1</span> cff-version: 1.2.0</span>
<span id="cb10-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">2</span> title: Pytest Examples</span>
<span id="cb10-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">3</span> type: software</span>
<span id="cb10-12"></span>
<span id="cb10-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">CONTRIBUTING.md</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">---</span> Text</span>
<span id="cb10-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">1</span> <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Contributing</span></span>
<span id="cb10-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">2</span></span>
<span id="cb10-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">3</span> Contributions to this repository are welcome via Pull Requests</span></code></pre></div>
<p><strong>NB</strong> The output of <code>git diff</code> may depend on the difftool that you have configured, I use and recommend the brilliant <a href="https://difftastic.wilfred.me.uk/" target="_blank"><code>difftastic</code></a> which has easy <a href="https://difftastic.wilfred.me.uk/git.html" target="_blank">integration with Git</a>.</p>
<section id="listing-worktrees" class="level3">
<h3 class="anchored" data-anchor-id="listing-worktrees">Listing Worktrees</h3>
<p>Just as you can <code>git branch --list</code> you can <code>git worktree list</code></p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb11-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> worktree list</span>
<span id="cb11-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples</span>               <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">bare</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb11-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples/citation</span>      19ff076 <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">citation</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb11-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples/contributing</span>  ad56b91 <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">contributing</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb11-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples/main</span>          2f7c382 <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">main</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
</section>
<section id="moving-worktrees" class="level3">
<h3 class="anchored" data-anchor-id="moving-worktrees">Moving Worktrees</h3>
<p>You can move worktrees to different directories, these do <em>not</em> even have to be within the bare repository that you cloned as Git keeps track of these in the <code>worktrees/</code> directory which has a folder for each of the worktrees you create and the file <code>gitdir</code> points to the location of that particular worktree.</p>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb12-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> pytest-examples   <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Move to the bare repository</span></span>
<span id="cb12-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tree</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-afhD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-L</span> 2 worktrees</span>
<span id="cb12-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[4.0K</span> Mar 13 09:27]  worktrees</span>
<span id="cb12-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 13 09:31]  worktrees/citation</span>
<span id="cb12-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  26 Mar 13 09:31]  worktrees/citation/COMMIT_EDITMSG</span>
<span id="cb12-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [   6 Mar 13 09:27]  worktrees/citation/commondir</span>
<span id="cb12-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  55 Mar 13 09:27]  worktrees/citation/gitdir</span>
<span id="cb12-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  25 Mar 13 09:27]  worktrees/citation/HEAD</span>
<span id="cb12-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.4K Mar 13 09:31]  worktrees/citation/index</span>
<span id="cb12-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Mar 13 09:27]  worktrees/citation/logs</span>
<span id="cb12-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [   0 Mar 13 09:31]  worktrees/citation/MERGE_RR</span>
<span id="cb12-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  41 Mar 13 09:27]  worktrees/citation/ORIG_HEAD</span>
<span id="cb12-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [4.0K Mar 13 09:27]  worktrees/citation/refs</span>
<span id="cb12-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 13 09:30]  worktrees/contributing</span>
<span id="cb12-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  29 Mar 13 09:30]  worktrees/contributing/COMMIT_EDITMSG</span>
<span id="cb12-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [   6 Mar 13 09:27]  worktrees/contributing/commondir</span>
<span id="cb12-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  59 Mar 13 09:27]  worktrees/contributing/gitdir</span>
<span id="cb12-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  29 Mar 13 09:27]  worktrees/contributing/HEAD</span>
<span id="cb12-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [1.4K Mar 13 09:30]  worktrees/contributing/index</span>
<span id="cb12-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [4.0K Mar 13 09:27]  worktrees/contributing/logs</span>
<span id="cb12-21"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [   0 Mar 13 09:30]  worktrees/contributing/MERGE_RR</span>
<span id="cb12-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> ├── [  41 Mar 13 09:27]  worktrees/contributing/ORIG_HEAD</span>
<span id="cb12-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│&nbsp;&nbsp;</span> └── [4.0K Mar 13 09:27]  worktrees/contributing/refs</span>
<span id="cb12-24"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> [4.0K Mar 13 08:13]  worktrees/main</span>
<span id="cb12-25">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [   6 Mar 13 08:13]  worktrees/main/commondir</span>
<span id="cb12-26">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [  51 Mar 13 08:13]  worktrees/main/gitdir</span>
<span id="cb12-27">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [  21 Mar 13 08:13]  worktrees/main/HEAD</span>
<span id="cb12-28">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [1.3K Mar 13 08:13]  worktrees/main/index</span>
<span id="cb12-29">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [4.0K Mar 13 08:13]  worktrees/main/logs</span>
<span id="cb12-30">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> [  41 Mar 13 08:13]  worktrees/main/ORIG_HEAD</span>
<span id="cb12-31">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> [4.0K Mar 13 08:13]  worktrees/main/refs</span>
<span id="cb12-32"></span>
<span id="cb12-33"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">10</span> directories, 19 files</span></code></pre></div>
<p>If we look at the <code>gitdir</code> file in each <code>worktree</code> sub-directory we see where they point to.</p>
<div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb13-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">cat</span> worktrees/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span>/gitdir</span>
<span id="cb13-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples/citation/.git</span></span>
<span id="cb13-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples/contributing/.git</span></span>
<span id="cb13-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples/main/.git</span></span></code></pre></div>
<p>These mirror the locations reported by <code>git worktree list</code>, albeit with <code>.git</code> appended.</p>
<p>If you want to move a worktree you can do so, here we move <code>citation</code> to <code>~/tmp</code>.</p>
<div class="sourceCode" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb14-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> worktree move citation ~/tmp</span></code></pre></div>
</section>
<section id="removing-worktrees" class="level3">
<h3 class="anchored" data-anchor-id="removing-worktrees">Removing worktrees</h3>
<p>It’s simple to remove a worktree after the changes have been merged or it is no longer needed, make sure to “prune” the tree after having done so.</p>
<div class="sourceCode" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb15-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> worktree remove citation</span>
<span id="cb15-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> worktree prune</span>
<span id="cb15-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> worktree list</span>
<span id="cb15-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples</span>               <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">bare</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb15-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples/contributing</span>  ad56b91 <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">contributing</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span>
<span id="cb15-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">/mnt/work/git/hub/ns-rse/pytest-examples/main</span>          2f7c382 <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">main</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div>
</section>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>Git Worktrees are a useful way of structuring your Git workflows if you have to switch branches regularly. They avoid the need to stash work in progress or make commits. If you do choose to use worktrees as an alternative to branches be mindful that you should remove and prune them after you have finished with them, particularly if you have a large codebase.</p>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<ul>
<li><a href="https://git-scm.com/docs/git-worktree" target="_blank">Git - git-worktree Documentation</a></li>
<li><a href="https://opensource.com/article/21/4/git-worktree" target="_blank">Experiment on your code freely with Git worktree | Opensource.com</a></li>
</ul>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2024,
  author = {Shephard, Neil},
  title = {Git - {Worktrees}},
  date = {2024-03-13},
  url = {https://blog.nshephard.dev/posts/git-worktrees/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2024" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2024. <span>“Git - Worktrees.”</span> March 13, 2024. <a href="https://blog.nshephard.dev/posts/git-worktrees/">https://blog.nshephard.dev/posts/git-worktrees/</a>.
</div></div></section></div> ]]></description>
  <category>git</category>
  <category>worktrees</category>
  <guid>https://blog.nshephard.dev/posts/git-worktrees/</guid>
  <pubDate>Wed, 13 Mar 2024 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/3027/3018839068_ff71bcb5f5_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Git - Making Amends and Fixing things up</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/git-amend-fixup/</link>
  <description><![CDATA[ 





<p><a href="https://git-scm.com" target="_blank">Git</a> is the world’s most popular version control software out there at the moment and if you write code and version control it the chances are you are using it. It’s a complex tool though and there are a bewildering array of options. In this short post we will look at some options for changing commits that have been made.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53448512934_c045c232c9_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53448512934/in/datetaken/" target="_blank">Crown Shy Trees by Me</a></figcaption>
</figure>
</div>
<section id="python-examples" class="level2">
<h2 class="anchored" data-anchor-id="python-examples">Python Examples</h2>
<p>We’ll use my <a href="https://github.com/ns-rse/pytest-examples" target="_blank">pytest-examples</a> as an example for this work but you can do this in any repository you have going. We’ll clone the repository and make a new branch called <code>amend-fixup-tutorial</code>.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> clone git@github.com:ns-rse/pytest-examples.git</span>
<span id="cb1-2"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">cd</span> pytest-examples</span>
<span id="cb1-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> switch <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-c</span> amend-fixup-tutorial</span>
<span id="cb1-4">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Switched</span> to a new branch <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'amend-fixup-tutorial'</span></span></code></pre></div>
</section>
<section id="the-git-dance" class="level2">
<h2 class="anchored" data-anchor-id="the-git-dance">The Git Dance</h2>
<p>A typical Git work flow involves making some changes to one or more files (or adding a new one into the repository). These are staged with <code>git add &lt;files&gt;</code>, or you can use a shortcut <code>git add -u/--update</code> to add all currently tracked files that have been modified if you are not adding anything new, before committing them with a message using <code>git commit -m "&lt;meaningful message about content being added&gt;"</code>.</p>
<p>Lets add a simple <code>CONTRIBUTING.md</code> file to the repository.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"# Contributing\n\nContributions via pull requests are welcome."</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> CONTRIBUTING.md</span>
<span id="cb2-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> add CONTRIBUTING.md</span>
<span id="cb2-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Adding CONTRIBUTING.md"</span></span></code></pre></div>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> log <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--oneline</span></span>
<span id="cb3-2">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">01191a2</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">HEAD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> amend-fixup-tutorial<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Adding</span> CONTRIBUTING.md</span></code></pre></div>
<p>This should be familiar to users of <a href="https://git-scm.com" target="_blank">Git</a> whether you use the command line interface (CLI), <a href="https://www.gnu.org/software/emacs/" target="_blank">Emacs’</a> amazing Git porcelain <a href="https://magit.vc/" target="_blank">magit</a> or any other tool such as <a href="https://www.gitkraken.com/" target="_blank">GitKraken</a> or the support in you IDE such as <a href="https://posit.co/products/open-source/rstudio/" target="_blank">RStudio</a> or VSCode.</p>
</section>
<section id="making-amends" class="level2">
<h2 class="anchored" data-anchor-id="making-amends">Making Amends</h2>
<p>Sometimes you will have made a commit and you realise that you want to add more to it or perhaps you forgot to run your test suite and find that on running it your tests fail so you need to make a correction. In this example we want to be more explicit about how to make contributions and let people know they should fork the branch.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"\n Please make a fork of this repository, make your changes and open a Pull Request."</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;&gt;</span> CONTRIBUTING.md</span></code></pre></div>
<p>Now you could make a second commit…</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb5-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> add <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-u</span></span>
<span id="cb5-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Ask for PRs via fork in CONTRIBUTING.md"</span></span></code></pre></div>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb6-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> log <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--oneline</span></span>
<span id="cb6-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">9f0655b</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">HEAD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> amend-fixup-tutorial<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Ask</span> for PRs via fork in CONTRIBUTING.md</span>
<span id="cb6-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">01191a2</span> Adding CONTRIBUTING.md</span></code></pre></div>
<p>…and there is nothing wrong with that. However, Git history can get long and complicated when there are lots of small commits, because these two changes to <code>CONTRIBUTING.md</code> are essentially the same piece of work and if we’d been thinking clearly we would have written about making forks in the first place and made a single commit.</p>
<p>Fortunately Git can help here as there is the <code>git commit --amend</code> option which adds the staged changes to the last commit and allows you to edit the last commit message (if nothing is currently staged then you will be prompted to edit the last commit message). We can undo the last commit using <code>git reset HEAD~1</code> and instead amend the first commit that added the <code>CONTRIBUTING.md</code></p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb7-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> add <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-u</span></span>
<span id="cb7-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--amend</span></span></code></pre></div>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb8-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> log <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--oneline</span></span>
<span id="cb8-2">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">4fda15f</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">HEAD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> amend-fixup-tutorial<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Adding</span> CONTRIBUTING.md</span>
<span id="cb8-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">cat</span> CONTRIBUTING.md</span>
<span id="cb8-4"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Contributing</span></span>
<span id="cb8-5"></span>
<span id="cb8-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Contributions</span> via pull requests are welcome.</span>
<span id="cb8-7"></span>
<span id="cb8-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Please</span> make a fork of this repository, make your changes and open a Pull Request.</span></code></pre></div>
<p>We now have one commit which contains the new <code>CONTRIBUTING.md</code> file that contains all the changes we wished to have in the file in the first place and our Git history is slightly more compact.</p>
</section>
<section id="fixing-things-up" class="level2">
<h2 class="anchored" data-anchor-id="fixing-things-up">Fixing things up</h2>
<p>Amending commits is great providing the commit you want to change is the last commit you made (i.e.&nbsp;<code>HEAD</code>). But sometimes you might wish to correct a commit further back in your history and <code>git commit --amend</code> is of no use here. Git can however help here with the <code>git commit --fixup</code> command which allows you to mark a commit as being a “fix up” of an older commit. These can then be autosquashed via an interactive Git rebase.</p>
<p>Let’s add a few empty commits to our <code>amend-fixup-tutorial</code> branch to so we can do this.</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb9-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--allow-empty</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Empty commit for demonstration purposes"</span></span>
<span id="cb9-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--allow-empty</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Another empty commit for demonstration purposes"</span></span></code></pre></div>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb10-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> log <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--oneline</span></span>
<span id="cb10-2">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">8061221</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">HEAD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> amend-fixup-tutorial<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Another</span> empty commit for demonstration purposes</span>
<span id="cb10-3">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">65587ce</span> Empty commit for demonstration purposes</span>
<span id="cb10-4">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">4fda15f</span> Adding CONTRIBUTING.md</span></code></pre></div>
<p>And let’s expand our <code>CONTRIBUTING.md</code> file further.</p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb11-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"\nPlease note this repository uses [pre-commit](https://pre-commit.com) to lint the Python code and Markdown files."</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;&gt;</span> CONTRIBUTING.md</span></code></pre></div>
<p>We want to merge this commit with the first one we made in this tutorial using <code>git commit --fixup</code>. To do this we need to know the hash (<code>4fda15f</code> see output from above <code>git log</code>) or the relative reference of the commit we want which in this case is <code>HEAD~2</code> as it is three commits back from the current <code>HEAD</code> (which is commit <code>0</code>, most indexing in computing starts at <code>0</code> rather than <code>1</code>). Use <em>one</em> for the following <code>git commit --fixup</code> commands (adjusting the hash to yours if you are using that option, you can find this using <code>git log --oneline</code>).</p>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb12-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> add <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-u</span></span>
<span id="cb12-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--fixup</span> 4fda15f</span>
<span id="cb12-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--fixup</span> HEAD~2</span></code></pre></div>
<p>We see the commit we have just made starts with <code>fixup!</code> and is then followed by the commit message that it is fixing.</p>
<div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb13-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> log <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--oneline</span></span>
<span id="cb13-2">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">97711a4</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">HEAD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> amend-fixup-tutorial<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fixup!</span> Adding CONTRIBUTING.md</span>
<span id="cb13-3">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">8061221</span> Another empty commit for demonstration purposes</span>
<span id="cb13-4">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">65587ce</span> Empty commit for demonstration purposes</span>
<span id="cb13-5">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">4fda15f</span> Adding CONTRIBUTING.md</span></code></pre></div>
<p>The final step is to perform the automatic squashing via an interactive rebase, again you can either use the hash or the relative reference.</p>
<div class="sourceCode" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb14-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> rebase <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-i</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--autosquash</span> 4fda15f</span>
<span id="cb14-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> rebase <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-i</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--autosquash</span> HEAD~2</span></code></pre></div>
<p>This will open the default editor and because the <code>--autosquash</code> option has been used it will already have marked the commits that need combining with <code>fixup</code>. All you have to do is save the file and exit and we can check the history and look at the contents of the file.</p>
<p><strong>NB</strong> If you find that the necessary commit <em>isn’t</em> already marked navigate to that line and delete <code>pick</code>. The lines below the file you have open give instructions on how you can mark commits for different actions, in this case you can replace <code>pick</code> with either <code>f</code> or <code>fixup</code>. Save and exit and the commits are squashed.</p>
<div class="sourceCode" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb15-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> log <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--oneline</span></span>
<span id="cb15-2">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">0fda21e</span> <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">HEAD</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> amend-fixup-tutorial<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Another</span> empty commit for demonstration purposes</span>
<span id="cb15-3">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">65587ce</span> Empty commit for demonstration purposes</span>
<span id="cb15-4">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">4fda15f</span> Adding CONTRIBUTING.md</span>
<span id="cb15-5"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">cat</span> CONTRIBUTING.md</span>
<span id="cb15-6">  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Contributing</span></span>
<span id="cb15-7"></span>
<span id="cb15-8">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Contributions</span> via pull requests are welcome.</span>
<span id="cb15-9"></span>
<span id="cb15-10">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Please</span> make a fork of this repository, make your changes and open a Pull Request.</span>
<span id="cb15-11"></span>
<span id="cb15-12">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Please</span> note this repository uses <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">pre</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">-</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">commit</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">https://pre-commit.com</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">to</span> lint the Python code and Markdown files.</span></code></pre></div>
<p>And you’re all done! If you were doing this for real on a repository you could now <code>git push</code> or continue your work. As this was just an example we can switch branches back to <code>main</code> and force deletion of the branch we created.</p>
<div class="sourceCode" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb16-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> switch main</span>
<span id="cb16-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> branch <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-D</span> amend-fixup-tutorial</span></code></pre></div>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>Git has lots of commands to help you maintain a clean history by using <code>--amend</code> and <code>--fixup</code> flags to <code>git commit</code> and in the later case then performing an interactive <code>git rebase -i</code>. This takes a little discipline to get into the practice of but once in the habit of doing so it greatly improves the readability of the Git history and avoids including commit messages such as <code>Fixing typo</code> / <code>Linting code</code> / <code>Fixing tests</code> / <code>I've gone mad!</code>.</p>
<p>If all of this sounds completely unfamiliar to you but you would like to learn more about Git I can highly recommend the introductory course developed by <a href="https://www.r-rse.eu/" target="_blank">Dr Anna Krystalli</a> <a href="https://srse-git-github-zero2hero.netlify.app/" target="_blank">Git and GitHub through GitKraken : From Zero to Hero</a>. This course is run regularly by myself and colleagues in <a href="https://rse.shef.ac.uk" target="_blank">Research Software Engineering</a> for post-graduate researchers and staff at the University of Sheffield.</p>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2024,
  author = {Shephard, Neil},
  title = {Git - {Making} {Amends} and {Fixing} Things Up},
  date = {2024-03-08},
  url = {https://blog.nshephard.dev/posts/git-amend-fixup/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2024" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2024. <span>“Git - Making Amends and Fixing Things
Up.”</span> March 8, 2024. <a href="https://blog.nshephard.dev/posts/git-amend-fixup/">https://blog.nshephard.dev/posts/git-amend-fixup/</a>.
</div></div></section></div> ]]></description>
  <category>git</category>
  <category>amend</category>
  <category>fixup</category>
  <guid>https://blog.nshephard.dev/posts/git-amend-fixup/</guid>
  <pubDate>Fri, 08 Mar 2024 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/53448512934_c045c232c9_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Git Remotes Revisited</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/git-remotes-revisited/</link>
  <description><![CDATA[ 





<p>I’ve written before about <a href="https://ns-rse.github.io/posts/git-remotes/" target="_blank">Git Remotes</a> but in my on-going effort to improve my understanding of the tools I use daily I’ve discovered that it is possible to have a single <code>remote</code> push to two different URLs so am revisiting the topic and perhaps writing a little more clearly on it.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53494024371_1eecc0b722_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53494024371/in/datetaken/" target="_blank">Microcosmos by Me</a></figcaption>
</figure>
</div>
<p><a href="https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes" target="_blank">Remotes</a> are where other copies of your repository exist and typically where collaboration occurs (i.e.&nbsp;issue tracking, merge requests, bug reports etc.).</p>
<p>The main remote that a repository is configured to use by default is called <code>origin</code> but it is possible to have multiple remotes tracked by your local copy.</p>
<section id="listing-remotes" class="level2">
<h2 class="anchored" data-anchor-id="listing-remotes">Listing Remotes</h2>
<p>List remotes with <code>git remote [-v]</code> the <code>-v</code> flag will show the URLs that are stored for the short-cut.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-v</span></span>
<span id="cb1-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> forgejo@forgejo.hopto.org:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb1-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> forgejo@forgejo.hopto.org:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb1-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span> git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb1-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span> git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>You can get more information about a remote using <code>git remote show origin</code></p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote show origin</span>
<span id="cb2-2"> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">*</span> remote origin</span>
<span id="cb2-3">   <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Fetch</span> URL: git@gitlab.com:nshephard/mvdate.git</span>
<span id="cb2-4">   <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Push</span>  URL: git@gitlab.com:nshephard/mvdate.git</span>
<span id="cb2-5">   <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">HEAD</span> branch: main</span>
<span id="cb2-6">   <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Remote</span> branches:</span>
<span id="cb2-7">     <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">main</span>                                                tracked</span>
<span id="cb2-8">     <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">refs/merge-requests/18/head</span>                         new <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">next</span> fetch will store in remotes/origin</span>
<span id="cb2-9">     <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">refs/pullreqs/15</span>                                    stale <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">use</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'git remote prune'</span> to remove<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb2-10">     <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">refs/remotes/origin/nshephard/update-pre-commit</span>     stale <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">use</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'git remote prune'</span> to remove<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb2-11">     <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">refs/remotes/origin/nshephard/update-readme</span>         stale <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">use</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'git remote prune'</span> to remove<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb2-12">   <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Local</span> branches configured for <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'git pull'</span>:</span>
<span id="cb2-13">     <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">main</span>                            merges with remote main</span>
<span id="cb2-14">     <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">nshephard/fix-mtime</span>             merges with remote nshephard/fix-mtime</span>
<span id="cb2-15">     <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">nshephard/update-pre-commit</span>     merges with remote nshephard/update-pre-commit</span>
<span id="cb2-16">   <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Local</span> ref configured for <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'git push'</span>:</span>
<span id="cb2-17">     <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">main</span> pushes to main <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">local</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">out</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">of</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">date</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>This can be useful to show you what you need to tidy up if there are lots of stale branches around. In this example I can run <code>git remote prune origin</code> as advised to remove these.</p>
<section id="default-remote" class="level3">
<h3 class="anchored" data-anchor-id="default-remote">Default Remote</h3>
<p>The default remote to push to can be set with the following command, it will likely already be set to <code>origin</code> so this would not change anything.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> config <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--local</span> remote.pushDefault origin</span></code></pre></div>
<p>This adds the following to your <code>.git/config</code> if it wasn’t already there.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote]</span></span>
<span id="cb4-2">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pushDefault</span> = origin</span></code></pre></div>
</section>
</section>
<section id="adding-remotes" class="level2">
<h2 class="anchored" data-anchor-id="adding-remotes">Adding Remotes</h2>
<p>It is straight forward to add a remote with <code>git remote add &lt;shortcut&gt; &lt;URL&gt;</code> where the URL is either the <code>https</code> or the <code>git</code> URL.</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb5-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote add forgejo forgejo@forgejo.hopto.org:nshephard/mvdate.git</span></code></pre></div>
<p>This adds details to your <code>.git/config</code> so that it has the following</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb6-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"origin"</span>]</span>
<span id="cb6-2">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">url</span> = git@gitlab.com:nshephard/mvdate.git</span>
<span id="cb6-3">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span> = +refs/heads/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span>:refs/remotes/origin/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb6-4">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span> = +refs/merge-requests/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span>/head:refs/pullreqs/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb6-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"forgejo"</span>]</span>
<span id="cb6-6">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">url</span> = ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git</span>
<span id="cb6-7">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span> = +refs/heads/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span>:refs/remotes/forgejo/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb6-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote]</span></span>
<span id="cb6-9">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pushDefault</span> = origin</span>
<span id="cb6-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[branch</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"main"</span>]</span>
<span id="cb6-11">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote</span> = origin</span>
<span id="cb6-12">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">merge</span> = refs/heads/main</span></code></pre></div>
<p>Two remotes are defined, <code>origin</code> and <code>forgejo</code>, the default to push to is set to <code>origin</code> and the <code>main</code> branch is setup to track the remote <code>origin</code>.</p>
<section id="pushing-to-specific-remote" class="level3">
<h3 class="anchored" data-anchor-id="pushing-to-specific-remote">Pushing to specific remote</h3>
<p>With two remotes setup you can choose, at the branch level, where to push your changes by specifying the remote you wish to use. If you wanted to push a newly created branch, <code>change-just-for-forgejo</code>, to the newly added <code>forgejo</code> remote you would configure it with.</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb7-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git switch <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-c</span> change-just-for-forgejo</span>
<span id="cb7-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--allow-empty</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Test push just to forgejo"</span></span>
<span id="cb7-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git push <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--set-upstream</span> forgejo change-just-for-forgejo</span>
<span id="cb7-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Enumerating</span> objects: 2, done.</span>
<span id="cb7-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Counting</span> objects: 100% <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">2/2</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> done.</span>
<span id="cb7-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Writing</span> objects: 100% <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">2/2</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> 376 bytes <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">376.00</span> KiB/s, done.</span>
<span id="cb7-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Total</span> 2 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">delta</span> 0<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> reused 0 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">delta</span> 0<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> pack-reused 0</span>
<span id="cb7-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span></span>
<span id="cb7-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span> Create a new pull request for <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'change-just-for-forgejo'</span>:</span>
<span id="cb7-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span>   <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>https://forgejo.hopto.org/nshephard/mvdate/compare/main...change-just-for-forgejo<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span></span>
<span id="cb7-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span></span>
<span id="cb7-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span> . Processing 1 references</span>
<span id="cb7-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span> Processed 1 references in total</span>
<span id="cb7-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">To</span> ssh://forgejo.hopto.org:1234/nshephard/mvdate.git</span>
<span id="cb7-15"></span>
<span id="cb7-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span>   [new branch]      change-just-for-forgejo <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> change-just-for-forgejo</span>
<span id="cb7-17"></span>
<span id="cb7-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">branch</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'change-just-for-forgejo'</span> set up to track <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'forgejo/change-just-for-forgejo'</span>.</span></code></pre></div>
<p>Git reports that the local <code>change-just-for-forgejo</code> has been setup to track <code>forgejo/change-just-for-forgejo</code> and the following entry has been added to <code>.git/config</code></p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb8-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[branch</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"change-just-for-forgejo"</span>]</span>
<span id="cb8-2">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"forgejo"</span></span>
<span id="cb8-3">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">merge</span> = refs/heads/change-just-for-forgejo</span></code></pre></div>
</section>
<section id="a-note-on-ssh-ports" class="level3">
<h3 class="anchored" data-anchor-id="a-note-on-ssh-ports">A Note on SSH Ports</h3>
<p>If a remote is using a non-standard port for SSH connections (i.e.&nbsp;anything other than <code>22</code>) then you have to use a different format for specifying the remote URL. Instead of <code>forgejo@forgejo.hopto.org:nshephard/mvdate.git</code> you must explicitly state the protocol (<code>ssh://</code>) and include the port so that it reads <code>ssh://forgejo@forgejo.hopto.org:1234</code> and so to add it you would be added with the following</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb9-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote add forgejo ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git</span>
<span id="cb9-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-v</span></span>
<span id="cb9-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb9-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb9-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb9-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>I use a non-standard port and so use that convention for the remainder of this article. If you do not use a non-standard port you can either change the port (<code>1234</code>) to the default (<code>22</code>) or use the conventional syntax for referring to the remote.</p>
</section>
</section>
<section id="mirroring-remotes" class="level2">
<h2 class="anchored" data-anchor-id="mirroring-remotes">Mirroring Remotes</h2>
<p>The really neat thing is that it is possible to have a local repository track multiple remotes, which means when you push your changes it will go to both. You could configure an alias to push to both of the remotes we currently have defined, but there is an excellent post on <a href="https://stackoverflow.com/a/14290145/1444043" target="_blank">StackOverflow</a> that shows how to do this with Git itself because each remote can have multiple <code>pushurls</code>.</p>
<p>As we have added a second remote to our configuration our <code>.git/config</code> for <a href="https://gitlab.com/nsshephard/mvdate" target="_blank">mvdate</a> our configuration currently looks like this.</p>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb10-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"origin"</span>]</span>
<span id="cb10-2">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">url</span> = git@gitlab.com:nshephard/mvdate.git</span>
<span id="cb10-3">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span> = +refs/heads/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span>:refs/remotes/origin/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb10-4">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span> = +refs/merge-requests/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span>/head:refs/pullreqs/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb10-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"forgejo"</span>]</span>
<span id="cb10-6">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">url</span> = ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git</span>
<span id="cb10-7">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span> = +refs/heads/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span>:refs/remotes/forgejo/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb10-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote]</span></span>
<span id="cb10-9">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pushDefault</span> = origin</span>
<span id="cb10-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[branch</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"main"</span>]</span>
<span id="cb10-11">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote</span> = origin</span>
<span id="cb10-12">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">merge</span> = refs/heads/main</span>
<span id="cb10-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[branch</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"change-just-for-forgejo"</span>]</span>
<span id="cb10-14">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote</span> = forgejo</span>
<span id="cb10-15">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">merge</span> = refs/heads/change-just-for-forgejo</span></code></pre></div>
<p>As above, there are two remotes are defined, <code>origin</code> and <code>forgejo</code>, the default to push to is set to <code>origin</code> and the <code>main</code> branch is setup to track <code>origin</code> whilst the <code>change-just-for-forgejo</code> branch is setup to track <code>forgejo</code>.</p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb11-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-v</span></span>
<span id="cb11-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb11-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb11-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb11-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>How do we get the <code>origin</code> remote setup and configured to push to both gitlab and forgejo? This can be done using the <code>set-url --add --push</code> options to <code>git remote</code>, below we add <code>forgejo</code> as a push target to <code>origin</code>.</p>
<p><strong>NB</strong> Note I use a non-standard SSH port in the following, see above note.</p>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb12-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote set-url <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--add</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--push</span> origin ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git</span>
<span id="cb12-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-v</span></span>
<span id="cb12-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb12-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb12-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb12-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>But this has removed the original <code>push</code> target under <code>origin</code> which pointed to <code>gitlab</code> so we need to add that back in.</p>
<div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb13-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote set-url <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--add</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--push</span> origin git@gitlab.com:nshephard/mvdate.git</span>
<span id="cb13-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-v</span></span>
<span id="cb13-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb13-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">forgejo</span> ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb13-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb13-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb13-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>We now have two <code>push</code> targets on <code>origin</code>, one pointing to <code>gitlab.com</code> (using the default port <code>22</code>) and one pointing to <code>forgejo.hopto.org</code> (on port <code>1234</code>) and as the default target is <code>origin</code> when we <code>git push</code> it will send the changes to both. We still have the <code>forgejo</code> remote defined and it only tracks the <code>forgejo</code> URL.</p>
<p>We can test this with an empty commit on a new branch, <code>test-both</code>, which we first create.</p>
<div class="sourceCode" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb14-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git switch <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-c</span> test-both</span>
<span id="cb14-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git commit <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--allow-empty</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-m</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Testing pushing to GitLab and Forgejo"</span></span>
<span id="cb14-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[test-both</span> c07caf6] Testing pushing to GitLab and Forgejo</span>
<span id="cb14-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git push</span>
<span id="cb14-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Enumerating</span> objects: 1, done.</span>
<span id="cb14-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Counting</span> objects: 100% <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">1/1</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> done.</span>
<span id="cb14-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Writing</span> objects: 100% <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">1/1</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> 210 bytes <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">210.00</span> KiB/s, done.</span>
<span id="cb14-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Total</span> 1 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">delta</span> 0<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> reused 0 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">delta</span> 0<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> pack-reused 0</span>
<span id="cb14-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span></span>
<span id="cb14-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span> Create a new pull request for <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'test-both'</span>:</span>
<span id="cb14-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span>   <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>https://forgejo.hopto.org/nshephard/mvdate/compare/main...test-both<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span></span>
<span id="cb14-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span></span>
<span id="cb14-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span> . Processing 1 references</span>
<span id="cb14-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span> Processed 1 references in total</span>
<span id="cb14-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">To</span> ssh://forgejo.hopto.org:1234/nshephard/mvdate.git</span>
<span id="cb14-16"></span>
<span id="cb14-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span>   [new branch]      test-both <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> test-both</span>
<span id="cb14-18"></span>
<span id="cb14-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">branch</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'test-both'</span> set up to track <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'origin/test-both'</span>.</span>
<span id="cb14-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Enumerating</span> objects: 26, done.</span>
<span id="cb14-21"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Counting</span> objects: 100% <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">26/26</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> done.</span>
<span id="cb14-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Writing</span> objects: 100% <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">26/26</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> 16.75 KiB <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">|</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">8.37</span> MiB/s, done.</span>
<span id="cb14-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Total</span> 26 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">delta</span> 0<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> reused 0 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">delta</span> 0<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">,</span> pack-reused 0</span>
<span id="cb14-24"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span></span>
<span id="cb14-25"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span> To create a merge request for test-both, visit:</span>
<span id="cb14-26"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span>   <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>https://gitlab.com/nshephard/mvdate/-/merge_requests/new<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">?</span>merge_request%5Bsource_branch%5D=test-both<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span></span>
<span id="cb14-27"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote:</span></span>
<span id="cb14-28"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">To</span> gitlab.com:nshephard/mvdate.git</span>
<span id="cb14-29"></span>
<span id="cb14-30"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span>   [new branch]      test-both <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> test-both</span>
<span id="cb14-31"></span>
<span id="cb14-32"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">branch</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'test-both'</span> set up to track <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'origin/test-both'</span>.</span></code></pre></div>
<p>The output above shows that the branch <code>test-both</code> was pushed to both the URLs we have configured as push targets to <code>origin</code> and if you visit the repositories you will find the branches now exist there.</p>
</section>
<section id="deleting-remotes" class="level2">
<h2 class="anchored" data-anchor-id="deleting-remotes">Deleting Remotes</h2>
<p>In my use case I simply want to push both remotes so that they mirror each other so I can delete the <code>forgejo</code> remote. This will leave the push URL for that remote under the configuration for <code>origin</code> and allows us to set any branch to use the <code>origin</code> as a the remote and any changes will be pushed to both.</p>
<p>There may be instances where you want to leave the additional remote in place if you wanted to push some changes just to that remote so its not essential that you remove it, but if you want to you can delete reference to a remote from your local configuration.</p>
<div class="sourceCode" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb15-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote remove forgejo</span>
<span id="cb15-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git remote <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-v</span></span>
<span id="cb15-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb15-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb15-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">origin</span>  git@gitlab.com:nshephard/mvdate.git <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">push</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span></code></pre></div>
<p>Because the <code>change-just-for-forgejo</code> was setup to track the <code>forejo</code> remote we would need to change that target, we can do so with the following</p>
<div class="sourceCode" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb16-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git switch change-just-for-forgejo</span>
<span id="cb16-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">❱</span> git branch <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--set-upstream-to</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>origin/change-just-for-forgejo change-just-for-forgejo</span></code></pre></div>
<p>This changes the remote target for the branches definition and our configuration now looks like the following.</p>
<div class="sourceCode" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb17-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"origin"</span>]</span>
<span id="cb17-2">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">url</span> = git@gitlab.com:nshephard/mvdate.git</span>
<span id="cb17-3">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span> = +refs/heads/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span>:refs/remotes/origin/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb17-4">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">fetch</span> = +refs/merge-requests/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span>/head:refs/pullreqs/<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb17-5">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pushurl</span> = ssh://forgejo@forgejo.hopto.org:1234/nshephard/mvdate.git</span>
<span id="cb17-6">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pushurl</span> = git@gitlab.com:nshephard/mvdate.git</span>
<span id="cb17-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[remote]</span></span>
<span id="cb17-8">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pushDefault</span> = origin</span>
<span id="cb17-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[branch</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"main"</span>]</span>
<span id="cb17-10">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote</span> = origin</span>
<span id="cb17-11">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">merge</span> = refs/heads/main</span>
<span id="cb17-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">[branch</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"change-just-for-forgejo"</span>]</span>
<span id="cb17-13">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">remote</span> = origin</span>
<span id="cb17-14">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">merge</span> = refs/heads/change-just-for-forgejo</span></code></pre></div>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>Having a local repository push to two remotes is a simple way of a mirroring. Whether you have a use case for it depends on what you are doing. I could easily imagine this could get very complicated if changes were pushed by others to each remote, but I wouldn’t be surprised if Git is regularly used in this way by others.</p>
<p>Of course if you want to push a branch that you wish to keep private to one remote only then you would have to be very careful in how you use this setup. The original StackOverflow solution inspired that this post suggests creating an independent remote (e.g.&nbsp;<code>all</code>) so that you can push changes to <code>origin</code> or the second remote (in this example <code>forgejo</code>) and use <code>all</code> only when you wish to push changes to both.</p>
<p>Its been good for me to return to a topic I’ve delved into in the past, this second time round I feel I’ve got a slightly better grasp of what I’m doing and have a neater solution to achieve what is required.</p>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<ul>
<li><a href="https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes" target="_blank">Git - Working with Remotes</a></li>
<li><a href="https://git-scm.com/docs/git-remote" target="_blank">Git - git-remote Documentation</a></li>
<li><a href="https://stackoverflow.com/questions/14290113/git-pushing-code-to-two-remotes" target="_blank">github - Git - Pushing code to two remotes - Stack Overflow</a></li>
</ul>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2024,
  author = {Shephard, Neil},
  title = {Git {Remotes} {Revisited}},
  date = {2024-02-17},
  url = {https://blog.nshephard.dev/posts/git-remotes-revisited/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2024" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2024. <span>“Git Remotes Revisited.”</span> February 17,
2024. <a href="https://blog.nshephard.dev/posts/git-remotes-revisited/">https://blog.nshephard.dev/posts/git-remotes-revisited/</a>.
</div></div></section></div> ]]></description>
  <category>git</category>
  <category>github</category>
  <category>gitlab</category>
  <guid>https://blog.nshephard.dev/posts/git-remotes-revisited/</guid>
  <pubDate>Sat, 17 Feb 2024 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/53494024371_1eecc0b722_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Pytest Parameterisation</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/pytest-param/</link>
  <description><![CDATA[ 





<p><a href="https://docs.pytest.org/en/latest/" target="_blank">Pytest</a> is an excellent framework for writing tests in <a href="https://python.org" target="_blank">Python</a>. One of the neat features it includes is the ability to parameterise your tests which means you can write one test and pass different sets of parameters into it to test the range of actions that the function/method are meant to handle.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53258274023_f628d3291a_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53258274023/in/datetaken/" target="_blank">Minerals by Me</a></figcaption>
</figure>
</div>
<section id="example" class="level2">
<h2 class="anchored" data-anchor-id="example">Example</h2>
<p>A simple example to work through is provided in my <a href="https://github.com/ns-rse/pytest-examples" target="_blank">ns-res/pytest_examples</a> repository. We want to have a state where the function can fail so we’ll use a very simple function that carries out division.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> divide(a: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, b: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>:</span>
<span id="cb1-2">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Divide a by b.</span></span>
<span id="cb1-3"></span>
<span id="cb1-4"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Parameters</span></span>
<span id="cb1-5"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    ----------</span></span>
<span id="cb1-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    a: float | int</span></span>
<span id="cb1-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Number to be divided.</span></span>
<span id="cb1-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    b: float | int</span></span>
<span id="cb1-9"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        Number to divide by.</span></span>
<span id="cb1-10"></span>
<span id="cb1-11"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Returns</span></span>
<span id="cb1-12"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    -------</span></span>
<span id="cb1-13"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    float</span></span>
<span id="cb1-14"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        a divided by b.</span></span>
<span id="cb1-15"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb1-16">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">try</span>:</span>
<span id="cb1-17">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> a <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> b</span>
<span id="cb1-18">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">except</span> <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">TypeError</span> <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> e:</span>
<span id="cb1-19">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">not</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">isinstance</span>(a, (<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>)):</span>
<span id="cb1-20">            <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">raise</span> <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">TypeError</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"Error 'a' should be int or float, not </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">type</span>(a)<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>) <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> e</span>
<span id="cb1-21">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">raise</span> <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">TypeError</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"Error 'b' should be int or float, not </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">type</span>(b)<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>) <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> e</span>
<span id="cb1-22">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">except</span> <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">ZeroDivisionError</span> <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> e:</span>
<span id="cb1-23">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">raise</span> <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">ZeroDivisionError</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"Can not divide by </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>b<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">, choose another number."</span>) <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> e</span></code></pre></div>
</section>
<section id="structuring-tests" class="level2">
<h2 class="anchored" data-anchor-id="structuring-tests">Structuring Tests</h2>
<p>Pytest is well written and will automatically find your tests in a few places. Personally I use a <a href="https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/" target="_blank">flat</a> rather than <code>src/</code> based package layout and keep my tests in the <code>tests/</code> directory of the package root. Pytest looks in this directory automatically for files that begin with <code>test_</code> and within each file for functions/methods that begin with <code>test_</code>.</p>
<p>With the above function we could write the following basic test to make sure it works because we know that if we divide <code>10</code> by <code>5</code> we should get <code>2</code> as the answer.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pytest_examples.divide <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> divide</span>
<span id="cb2-2"></span>
<span id="cb2-3"></span>
<span id="cb2-4"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide_unparameterised() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb2-5">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the divide function."""</span></span>
<span id="cb2-6">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> divide(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span></span></code></pre></div>
<p>You can find this test along with others in the <a href="https://github.com/ns-rse/pytest-examples/blob/main/tests/test_divide.py" target="_blank"><code>tests/test_divide.py</code></a> file of the accompanying repository.</p>
</section>
<section id="parameterising-tests" class="level2">
<h2 class="anchored" data-anchor-id="parameterising-tests">Parameterising Tests</h2>
<p>In order to make our test suite robust we should test more scenarios and edge cases, in particular making sure we capture the exceptions that can be raised. This is where the <a href="https://docs.pytest.org/en/7.1.x/reference/reference.html?#pytest-mark-parametrize" target="_blank"><code>pytest.mark.parameterize()</code></a> fixture comes into play. It takes as a first argument a tuple of variables that you are going to define values for and pass into your test. Following it is a list of tuples with the values that you want to include, one for each of the variables you have first defined. Here we define <code>a</code>, <code>b</code> and the <code>expected</code> value of dividing <code>a</code> by <code>b</code> which is the value the <code>divide()</code> function should return.</p>
<p>If we expand the number of scenarios we wish to test using <code>@pytest.mark.parametrize()</code> we can write our test as follows.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pytest</span>
<span id="cb3-2"></span>
<span id="cb3-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> divide <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> divide</span>
<span id="cb3-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parametrize</span>(</span>
<span id="cb3-5">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"expected"</span>),</span>
<span id="cb3-6">    [</span>
<span id="cb3-7">        (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>),</span>
<span id="cb3-8">        (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">9</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>),</span>
<span id="cb3-9">        (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span>),</span>
<span id="cb3-10"></span>
<span id="cb3-11">    ]</span>
<span id="cb3-12">)</span>
<span id="cb3-13"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide(a: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, b: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, expected: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb3-14">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the divide function."""</span></span>
<span id="cb3-15">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> divide(a, b) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> expected</span></code></pre></div>
</section>
<section id="parameter-set-ids" class="level2">
<h2 class="anchored" data-anchor-id="parameter-set-ids">Parameter set IDs</h2>
<p>For some time I simply wrote my tests and if the structure was complicated I used comments to mark the code to indicate what the test was doing. When they (inevitably!) failed there was a cryptically long indication of what had failed based on the filename, test name and the values of the various parameters that were in use at the point of failure. These helped narrow down which test failed but took a bit of mental over-head to decipher.</p>
<p>For the above test <em>without</em> ID’s we can force them to fail by adding 1 to the expected value (i.e.&nbsp;<code>== expected + 1</code>) and the resulting output shows how the parameters are concatenated to indicate which test failed.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=======================</span> short test summary info <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">====================================</span></span>
<span id="cb4-2">FAILED tests<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>test_divide.py::test_divide_fail[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.0</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb4-3">FAILED tests<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>test_divide.py::test_divide_fail[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">9</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">3.0</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb4-4">FAILED tests<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>test_divide.py::test_divide_fail[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> (<span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb4-5"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=======================</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span> failed <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.79</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">s</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==========================================</span></span></code></pre></div>
<p>Whilst it is possible to work out which failed test is which if you have many sets of parameters with multiple values and only one or two are failing it can take a while to work out which set has failed.</p>
<p>Recently though I was put onto the <a href="https://docs.pytest.org/en/7.1.x/reference/reference.html?#pytest.param" target="_blank">pytest.param()</a> function by a <a href="https://mastodon.social/@danjac@masto.ai/111674313059704725" target="_blank">toot from <span class="citation" data-cites="danjac">@danjac</span><span class="citation" data-cites="masto.ai">@masto.ai</span></a> and instantly saw the benefit of using this as it allows us to give each set of parameters a unique <code>id</code> which is then used by Pytest when reporting failures.</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parameterize</span>(</span>
<span id="cb5-2">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"expected"</span>),</span>
<span id="cb5-3">    [</span>
<span id="cb5-4">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ten divided by five"</span>),</span>
<span id="cb5-5">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">9</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"nine divided by three"</span>),</span>
<span id="cb5-6">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"five divided by two"</span>),</span>
<span id="cb5-7"></span>
<span id="cb5-8">    ]</span>
<span id="cb5-9">)</span>
<span id="cb5-10"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide(a: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, b: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, expected: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb5-11">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the divide function."""</span></span>
<span id="cb5-12">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> divide(a, b) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> expected</span></code></pre></div>
<p>Then if/when a test fails the <code>id</code> parameter is reported for the failed test, making it much easier to narrow down where the failure occurred.</p>
<p>Not only does it allow each set of parameters to be given a unique <code>id = ""</code> to aid with identifying tests that fail it also allows each set of parameters to be marked with <code>marks = &lt;&gt;</code> to indicate the expected behaviour for example <a href="https://docs.pytest.org/en/7.1.x/reference/reference.html?#pytest-mark-xfail" target="_blank"><code>pytest.mark.xfail</code></a> or <a href="https://docs.pytest.org/en/7.1.x/reference/reference.html?#id25" target="_blank"><code>pytest.mark.skipif</code></a>.</p>
<p>We could therefore add another set of parameters that should fail because one of the exceptions is raised.</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pytest</span>
<span id="cb6-2"></span>
<span id="cb6-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pytest_examples.divide <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> divide</span>
<span id="cb6-4"></span>
<span id="cb6-5"></span>
<span id="cb6-6"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parameterize</span>(</span>
<span id="cb6-7">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"expected"</span>),</span>
<span id="cb6-8">    [</span>
<span id="cb6-9">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ten divided by five"</span>),</span>
<span id="cb6-10">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">9</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"nine divided by three"</span>),</span>
<span id="cb6-11">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">2.5</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"five divided by two"</span>),</span>
<span id="cb6-12">        pytest.param(</span>
<span id="cb6-13">            <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">ZeroDivisionError</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zero division error"</span>, marks<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>pytest.mark.xfail</span>
<span id="cb6-14">        ),</span>
<span id="cb6-15">    ],</span>
<span id="cb6-16">)</span>
<span id="cb6-17"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide(a: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, b: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, expected: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb6-18">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the divide function."""</span></span>
<span id="cb6-19">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> divide(a, b) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> expected</span></code></pre></div>
</section>
<section id="testing-exceptions" class="level2">
<h2 class="anchored" data-anchor-id="testing-exceptions">Testing Exceptions</h2>
<p>The above example shows that Pytest allows us to combine tests that pass and fail (in the above example a <code>ZeroDivisionError</code>) via parmeterisation. However, whilst tests can and should be parameterised, some consider that it is better to keep tests focused and on-topic and write a separate test for different outcomes such as raising exceptions.</p>
<p>This is slightly different from the way the Pytest documentation suggests to undertake <a href="https://docs.pytest.org/en/7.1.x/example/parametrize.html#parametrizing-conditional-raising" target="_blank">Parameterising conditional raising</a> but there is a school of thought, which I like, which states that testing different states/behaviours should be separate (see the following thread for some discussion <a href="https://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing" target="_blank">Why should unit tests test only one thing?</a>).</p>
<p>With this in mind we can separate out the tests that raise exceptions under different scenarios to their own tests (<strong>NB</strong> obviously its excessive to parameterise <code>test-divide_zero_division_error()</code>).</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parametrize</span>(</span>
<span id="cb7-2">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"exception"</span>),</span>
<span id="cb7-3">    [</span>
<span id="cb7-4">        pytest.param(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">TypeError</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a is string"</span>),</span>
<span id="cb7-5">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">9</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">TypeError</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b is string"</span>),</span>
<span id="cb7-6">        pytest.param([<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>], <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">TypeError</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a is list"</span>),</span>
<span id="cb7-7">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, [<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>], <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">TypeError</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b is list"</span>),</span>
<span id="cb7-8">    ],</span>
<span id="cb7-9">)</span>
<span id="cb7-10"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide_type_errors(a: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, b: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, exception: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb7-11">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test that TypeError is raised when objects other than int or float are passed as a and b."""</span></span>
<span id="cb7-12">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">with</span> pytest.raises(exception):</span>
<span id="cb7-13">        divide(a, b)</span></code></pre></div>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parametrize</span>(</span>
<span id="cb8-2">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"exception"</span>),</span>
<span id="cb8-3">    [</span>
<span id="cb8-4">        pytest.param(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">ZeroDivisionError</span>, <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b is zero"</span>),</span>
<span id="cb8-5">    ],</span>
<span id="cb8-6">)</span>
<span id="cb8-7"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_divide_zero_division_error(a: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, b: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, exception: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb8-8">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test that ZeroDivsionError is raised when attempting to divide by zero."""</span></span>
<span id="cb8-9">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">with</span> pytest.raises(exception):</span>
<span id="cb8-10">        divide(a, b)</span></code></pre></div>
</section>
<section id="parameterising-with-fixtures" class="level2">
<h2 class="anchored" data-anchor-id="parameterising-with-fixtures">Parameterising with Fixtures</h2>
<p><a href="https://docs.pytest.org/en/stable/explanation/fixtures.html" target="_blank">Fixtures</a> are a common and useful feature of the Pytest framework that allow you to define “<em>defined, reliable and consistent context for the tests</em>”. What this means is that if you always need a particular object, whether that is an instantiated class (a new instance of a class) or something else, you can mark a function with <code>@pytest.fixture()</code> and use it in subsequent tests (often fixtures are defined in <code>tests/conftest.py</code> to keep things tidy, at least that is what I do!)<sup>1</sup>.</p>
<p>It can be useful to parameterise fixtures themselves so that they too test a number of different states and this saves writing more sets of parameters under the <code>@pytest.mark.parameterize()</code> decorator of each test.</p>
<p>For this example we use a simple function <code>summarise_shapes()</code> which returns the results of summarising a 2-D Numpy array using <a href="https://scikit-image.org" target="_blank">scikit-image</a> and its <a href="https://scikit-image.org/docs/stable/api/skimage.measure.html#skimage.measure.regionprops" target="_blank"><code>skimage.measure.regionprops()</code></a> function (see <a href="https://github.com/ns-rse/pytest-examples/blob/main/pytest_examples/shapes.py" target="_blank">pytest_examples/shapes.py</a>).</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Summarise Shapes."""</span></span>
<span id="cb9-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> numpy.typing <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> npt</span>
<span id="cb9-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> skimage <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> measure</span>
<span id="cb9-4"></span>
<span id="cb9-5"></span>
<span id="cb9-6"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> summarise_shape(shape: npt.NDArray) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>:</span>
<span id="cb9-7">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb9-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Summarise the region properties of a 2D numpy array using Scikit-Image.</span></span>
<span id="cb9-9"></span>
<span id="cb9-10"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Parameters</span></span>
<span id="cb9-11"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    ----------</span></span>
<span id="cb9-12"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    shape : npt.NDArray</span></span>
<span id="cb9-13"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        2D binary array of a shape.</span></span>
<span id="cb9-14"></span>
<span id="cb9-15"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Returns</span></span>
<span id="cb9-16"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    -------</span></span>
<span id="cb9-17"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    list</span></span>
<span id="cb9-18"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        List of Region Properties each item describing one labelled region.</span></span>
<span id="cb9-19"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb9-20">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> measure.regionprops(shape)</span></code></pre></div>
<p>We want to write some tests for these using fixtures which we define in <code>tests/conftest.py</code>. These define two <a href="https://numpy.org/" target="_blank">Numpy</a> 2-D binary arrays of <code>0</code>’s and <code>1</code>’s in particular shapes (the names should give an indication of the shapes!)</p>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> numpy <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> np</span>
<span id="cb10-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> numpy.typing <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> npt</span>
<span id="cb10-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pytest</span>
<span id="cb10-4"></span>
<span id="cb10-5"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> skimage <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> draw</span>
<span id="cb10-6"></span>
<span id="cb10-7"></span>
<span id="cb10-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.fixture</span></span>
<span id="cb10-9"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> square() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> npt.NDArray:</span>
<span id="cb10-10">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Return a 2D numpy array of a square."""</span></span>
<span id="cb10-11">    square <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> np.zeros((<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>), dtype<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>np.uint8)</span>
<span id="cb10-12">    start <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb10-13">    end <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>)</span>
<span id="cb10-14">    rr, cc <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> draw.rectangle_perimeter(start, end, shape<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>square.shape)</span>
<span id="cb10-15">    square[rr, cc] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span>
<span id="cb10-16">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> square</span>
<span id="cb10-17"></span>
<span id="cb10-18"></span>
<span id="cb10-19"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.fixture</span></span>
<span id="cb10-20"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> circle() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> npt.NDArray:</span>
<span id="cb10-21">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Return a 2D numpy array of a circle."""</span></span>
<span id="cb10-22">    circle <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> np.zeros((<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span>), dtype<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>np.uint8)</span>
<span id="cb10-23">    rr, cc <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> draw.circle_perimeter(r<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>, c<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>, radius<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, shape<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>circle.shape)</span>
<span id="cb10-24">    circle[rr, cc] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span>
<span id="cb10-25">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> circle</span></code></pre></div>
<p>There are two different methods to using these fixtures in parameterised tests.</p>
<section id="request.getfixturevalue" class="level3">
<h3 class="anchored" data-anchor-id="request.getfixturevalue">request.getfixturevalue()</h3>
<p>The first uses <a href="https://docs.pytest.org/en/7.1.x/reference/reference.html?#pytest.FixtureRequest.getfixturevalue" target="_blank"><code>request.getfixturevalue()</code></a> which “<em>is a special fixture providing information of the requesting test function.</em>”, in this case the “<em>named fixture function</em>”.</p>
<p>You define the fixture name (in quotes) in the <code>@pytest.mark.parametrize()</code> and then when the parameter, in this case <code>shape</code>, is referred to in the test itself, you wrap it in <code>request.getfixturevalue()</code> and the named fixture is then returned and used.</p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the shapes module."""</span></span>
<span id="cb11-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pytest</span>
<span id="cb11-3"></span>
<span id="cb11-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pytest_examples.shapes <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> summarise_shape</span>
<span id="cb11-5"></span>
<span id="cb11-6"></span>
<span id="cb11-7"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parametrize</span>(</span>
<span id="cb11-8">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"shape"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"area"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"feret_diameter_max"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"centroid"</span>),</span>
<span id="cb11-9">    [</span>
<span id="cb11-10">        pytest.param(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"square"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">11</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">7.810249675906654</span>, (<span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">1.3636363636363635</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">1.3636363636363635</span>), <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"summary of square"</span>),</span>
<span id="cb11-11">        pytest.param(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"circle"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">12</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">5.385164807134504</span>, (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>), <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"summary of circle"</span>),</span>
<span id="cb11-12">    ],</span>
<span id="cb11-13">)</span>
<span id="cb11-14"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_summarise_shape_get_fixture_value(</span>
<span id="cb11-15">    shape: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>, area: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>, feret_diameter_max: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>, centroid: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">tuple</span>, request</span>
<span id="cb11-16">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb11-17">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the summarisation of shapes."""</span></span>
<span id="cb11-18">    shape_summary <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> summarise_shape(request.getfixturevalue(shape))</span>
<span id="cb11-19">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> shape_summary[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"area"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> area</span>
<span id="cb11-20">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> shape_summary[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"feret_diameter_max"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> feret_diameter_max</span>
<span id="cb11-21">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> shape_summary[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"centroid"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> centroid</span></code></pre></div>
</section>
<section id="pytest-lazy-fixture" class="level3">
<h3 class="anchored" data-anchor-id="pytest-lazy-fixture">pytest-lazy-fixture</h3>
<p>An alternative is to use the Pytest plugin <a href="https://github.com/tvorog/pytest-lazy-fixture" target="_blank">pytest-lazy-fixture</a> and instead of marking the value to be obtained in the test itself you do so when setting up the parameters by referring to the fixture name as an argument to <code>pytest.lazy_fixture()</code> within <code>@pytest.mark.parametrize()</code>.</p>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the shapes module."""</span></span>
<span id="cb12-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pytest</span>
<span id="cb12-3"></span>
<span id="cb12-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pytest_examples.shapes <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> summarise_shape</span>
<span id="cb12-5"></span>
<span id="cb12-6"></span>
<span id="cb12-7"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.mark.parametrize</span>(</span>
<span id="cb12-8">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"shape"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"area"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"feret_diameter_max"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"centroid"</span>),</span>
<span id="cb12-9">    [</span>
<span id="cb12-10">        pytest.param(</span>
<span id="cb12-11">            pytest.lazy_fixture(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"square"</span>),</span>
<span id="cb12-12">            <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">11</span>,</span>
<span id="cb12-13">            <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">7.810249675906654</span>,</span>
<span id="cb12-14">            (<span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">1.3636363636363635</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">1.3636363636363635</span>),</span>
<span id="cb12-15">            <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"summary of square"</span>,</span>
<span id="cb12-16">        ),</span>
<span id="cb12-17">        pytest.param(pytest.lazy_fixture(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"circle"</span>), <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">12</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">5.385164807134504</span>, (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>), <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"summary of circle"</span>),</span>
<span id="cb12-18">    ],</span>
<span id="cb12-19">)</span>
<span id="cb12-20"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_summarise_shape_lazy_fixture(</span>
<span id="cb12-21">    shape: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>, area: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>, feret_diameter_max: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>, centroid: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">tuple</span>, request</span>
<span id="cb12-22">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb12-23">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Test the summarisation of shapes."""</span></span>
<span id="cb12-24">    shape_summary <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> summarise_shape(shape)</span>
<span id="cb12-25">    <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>shape_summary[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'centroid'</span>]<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span>
<span id="cb12-26">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> shape_summary[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"area"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> area</span>
<span id="cb12-27">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> shape_summary[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"feret_diameter_max"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> feret_diameter_max</span>
<span id="cb12-28">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> shape_summary[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>][<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"centroid"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> centroid</span></code></pre></div>
</section>
</section>
<section id="parameterise-fixtures" class="level2">
<h2 class="anchored" data-anchor-id="parameterise-fixtures">Parameterise Fixtures</h2>
<p>The <a href="https://github.com/tvorog/pytest-lazy-fixture" target="_blank">pytest-lazy-fixture</a> also allows fixtures themselves to be parameterised using the <code>pytest_lazyfixture.lazy_fixture()</code> function and demonstrated in the packages <a href="https://github.com/tvorog/pytest-lazy-fixture#usage" target="_blank">README</a> which I’ve reproduced below.</p>
<p>The fixture called <code>some()</code> uses <code>lazy_fixture()</code> to include both the <code>one()</code> and the <code>two()</code> fixtures which return their respective integers. <code>test_func()</code> then checks that the value returned by the <code>some()</code> fixture is in the list <code>[1, 2]</code>. Obviously this example is contrived but it serves to demonstrate how fixtures themselves can be parameterised.</p>
<div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pytest</span>
<span id="cb13-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pytest_lazyfixture <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> lazy_fixture</span>
<span id="cb13-3"></span>
<span id="cb13-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.fixture</span>(params<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[</span>
<span id="cb13-5">    lazy_fixture(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'one'</span>),</span>
<span id="cb13-6">    lazy_fixture(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'two'</span>)</span>
<span id="cb13-7">])</span>
<span id="cb13-8"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> some(request):</span>
<span id="cb13-9">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> request.param</span>
<span id="cb13-10"></span>
<span id="cb13-11"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.fixture</span></span>
<span id="cb13-12"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> one():</span>
<span id="cb13-13">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span>
<span id="cb13-14"></span>
<span id="cb13-15"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@pytest.fixture</span></span>
<span id="cb13-16"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> two():</span>
<span id="cb13-17">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span></span>
<span id="cb13-18"></span>
<span id="cb13-19"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> test_func(some):</span>
<span id="cb13-20">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">assert</span> some <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> [<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>]</span></code></pre></div>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p><a href="https://pytest.org" target="_blank">Pytest</a> is a powerful and flexible suite for writing tests in Python. One of the strengths is the ability to parameterise the tests to test multiple scenarios. This can include both successes and failures, however a common approach is to separate tests based on the expected behaviour, although Pytest allows you the flexibility to choose.</p>
<p>Ultimately though parameterising tests is a simple and effective way of reducing the amount of code you have to write to unit-tests for different aspects of your code.</p>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<ul>
<li><a href="https://docs.pytest.org/en/latest/" target="_blank">Pytest</a></li>
<li><a href="https://docs.pytest.org/en/7.1.x/example/parametrize.html" target="_blank">Parametrizing tests — pytest documentation</a></li>
<li><a href="https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/" target="_blank">Src Layout vs Flat Layout</a></li>
<li><a href="https://stackoverflow.com/questions/42014484/pytest-using-fixtures-as-arguments-in-parametrize" target="_blank">pytest using fixtures as arguments in parametrize - Stack Overflow</a></li>
<li><a href="http://www.owenpellegrin.com/blog/testing/how-do-you-solve-multiple-asserts/" target="_blank">How do you solve multiple asserts?</a></li>
<li><a href="https://stackoverflow.com/questions/235025/why-should-unit-tests-test-only-one-thing" target="_blank">Why should unit tests test only one thing? - Stack Overflow</a></li>
</ul>



</section>


<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section id="footnotes" class="footnotes footnotes-end-of-document"><h2 class="anchored quarto-appendix-heading">Footnotes</h2>

<ol>
<li id="fn1"><p>A caveat to this is the use of Random Number Generators as once seeded these can produce different numbers depending on the order in which the fixture is used but that is beyond the scope of this post.↩︎</p></li>
</ol>
</section><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2024,
  author = {Shephard, Neil},
  title = {Pytest {Parameterisation}},
  date = {2024-01-01},
  url = {https://blog.nshephard.dev/posts/pytest-param/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2024" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2024. <span>“Pytest Parameterisation.”</span> January 1,
2024. <a href="https://blog.nshephard.dev/posts/pytest-param/">https://blog.nshephard.dev/posts/pytest-param/</a>.
</div></div></section></div> ]]></description>
  <category>python</category>
  <category>testing</category>
  <category>pytest</category>
  <guid>https://blog.nshephard.dev/posts/pytest-param/</guid>
  <pubDate>Mon, 01 Jan 2024 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/53258274023_f628d3291a_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>virtualenvwrapper</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/virtualenvwrapper/</link>
  <description><![CDATA[ 





<p>If you use Python heavily you will likely be familiar with Virtual Environments. These provide isolated installs of specific packages that take precedence over any packages installed at the system level. There are lots of tools and frameworks for working with virtual environments such as <a href="https://docs.python.org/3/library/venv.html" target="_blank"><code>venv</code></a>, <a href="https://pypi.python.org/pypi/virtualenv" target="_blank"><code>virtualenv</code></a> and <a href="https://docs.conda.io/en/latest/" target="_blank">Conda</a>. This post introduces and shows some of the features of <a href="https://virtualenvwrapper.readthedocs.io/en/latest/" target="_blank">virtualenvwrapper</a>.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53176160657_1a148b3c36_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53176160657/in/album-72177720311078585/" target="_blank">Clouds Rising at Sunset by Me</a></figcaption>
</figure>
</div>
<section id="virtualenvwrapper" class="level2">
<h2 class="anchored" data-anchor-id="virtualenvwrapper">virtualenvwrapper</h2>
<p><a href="https://virtualenvwrapper.readthedocs.io/en/latest/" target="_blank">virtualenvwrapper</a> is…</p>
<blockquote class="blockquote">
<p>a set of extensions to Ian Bicking’s <code>virtualenv</code> tool. The extensions include wrappers for creating and deleting virtual environments and otherwise managing your development workflow, making it easier to work on more than one project at a time without introducing conflicts in their dependencies.</p>
</blockquote>
<p>It has the following main features…</p>
<blockquote class="blockquote">
<ol type="1">
<li>Organizes all of your virtual environments in one place.</li>
<li>Wrappers for managing your virtual environments (create, delete, copy).</li>
<li>Use a single command to switch between environments.</li>
<li>Tab completion for commands that take a virtual environment as argument.</li>
<li>User-configurable hooks for all operations (see Per-User Customization).</li>
<li>Plugin system for creating more sharable extensions (see Extending Virtualenvwrapper).</li>
</ol>
</blockquote>
</section>
<section id="installation" class="level2">
<h2 class="anchored" data-anchor-id="installation">Installation</h2>
<p>Many systems have <code>virtualenvwrapper</code> available in their package manager.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">emerge</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-av</span> virtualenvwrapper          <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Gentoo</span></span>
<span id="cb1-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pacman</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-Syu</span> python-virtualenvwrapper  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Arch</span></span>
<span id="cb1-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">apt-get</span> install virtualenvwrapper     <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Debian</span></span></code></pre></div>
<p>Once installed you need to set two key variables <code>$WORKON_HOME</code> and <code>$PROJECT_HOME</code> and ensure the <code>virtualenvwrapper.sh</code> is sourced on starting a shell. <code>$WORKON_HOME</code> is where your virtual environments will be created and stored, whilst <code>$PROJECT_HOME</code> is where projects will be created if you choose to use the helper functions for making projects. Set these to what you want, my options are below. To find out where <code>virtualenvwrapper.sh</code> is installed on your system use <code>which virtualenvwrapper.sh</code>. Once you’ve decided substitute the values in the following of your <code>.bashrc</code> (<a href="https://www.gnu.org/software/bash/" target="_blank">Bash</a>)or <code>.zshrc</code> (<a href="https://www.zsh.org/" target="_blank">ZSH</a>) depending on which shell you use.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">export</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">WORKON_HOME</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">${HOME}</span>/.virtualenvs</span>
<span id="cb2-2"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">export</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">PROJECT_HOME</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">${HOME}</span>/work/git/</span>
<span id="cb2-3"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">source</span> /usr/bin/virtualenvwrapper.sh</span></code></pre></div>
</section>
<section id="creating-a-virtual-environment" class="level2">
<h2 class="anchored" data-anchor-id="creating-a-virtual-environment">Creating a Virtual Environment</h2>
<p>This is straight-forward.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">mkvirtualenv</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>env_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span></span></code></pre></div>
<section id="postmkvirtualenv" class="level3">
<h3 class="anchored" data-anchor-id="postmkvirtualenv"><code>postmkvirtualenv</code></h3>
<p>But what if there are some tools that you want to install each and every time you create a virtual environment, regardless of the project you are working on? For example I use the <a href="https://github.com/pappasam/jedi-language-server" target="_blank">jedi-language-server</a> and want to have various packages such as <a href="https://ipython.org" target="_blank">ipython</a>, <a href="https://docs.pytest.org/en/latest/" target="_blank">pytest</a> and various extensions, linters such as <a href="https://astral.sh/ruff" target="_blank">ruff</a> and <a href="https://pylint.org" target="_blank">pylint</a> available by default in every environment you create. Fortunately there is a simple hook that can be run after the creation of a new environment. The file <code>~/.virtualenvs/postmkvirtualenv</code> is sourced and run <em>after</em> having run <code>mkvirtualenv</code> and so any commands in there are executed as it is essentially a Bash script.</p>
<p>If you maintain a <a href="https://dotfiles.github.io/" target="_blank">dotfiles</a> directory and have a file that lists the packages you want installed under <code>~/dotfiles/python/venv_minimal_requirements.txt</code> then you can have the files listed here installed when creating a new virtual environment by appending the command <code>pip install -r ~/dotfiles/python/venv_minimal_requirements.txt</code> to the <code>~/.virtualenvs/postmkvirtualenv</code> file.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">echo</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pip install -r ~/dotfiles/python/venv_minimal_requirements.txt"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;&gt;</span> ~/.virtualenvs/postmkvirtualenv</span></code></pre></div>
</section>
</section>
<section id="project-directories" class="level2">
<h2 class="anchored" data-anchor-id="project-directories">Project Directories</h2>
<p>Typically code for a project resides in its own directory and this can be automatically bound to the virtual environment using the <code>mkproject</code> command instead of <code>mkvirtualenv</code>. The project directory is stored in the <code>$PROJECT_HOME</code> path you will have configured during <a href="installation" target="_blank">installation</a>. You can then create a project <em>and</em> a virtual environment with…</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb5-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">mkproject</span> new_project</span></code></pre></div>
<section id="switching-to-project-directories" class="level3">
<h3 class="anchored" data-anchor-id="switching-to-project-directories">Switching to Project Directories</h3>
<p>You can switch to a projects directory automatically on activating a particular virtual environment using <code>setvirtualenvproject</code> from the project directory when a specific environment is activated. <strong>Make sure you are in the project directory for the corresponding project!</strong>. It adds an entry to the <code>~/.virtualenv/&lt;env_name&gt;/.project</code> file that reflects the directory associated with the environment. Then when you activate the directory via <code>workon &lt;env_name&gt;</code> it will automatically change to the project directory.</p>
</section>
</section>
<section id="deactivating-and-removing-virtual-environments" class="level2">
<h2 class="anchored" data-anchor-id="deactivating-and-removing-virtual-environments">Deactivating and Removing Virtual Environments</h2>
<p>Its straight-forward to deactivate the current virtual environment just type <code>deactivate</code>. Similarly you can remove a virtual environment with <code>rmvirtualenv &lt;env_name&gt;</code>.</p>
<p>One neat option if you want to keep a virtual environment but install all packages anew is the ability to remove all third-party packages in the current virtual environment using <code>wipeenv</code>.</p>
</section>
<section id="temporary-virtual-environments" class="level2">
<h2 class="anchored" data-anchor-id="temporary-virtual-environments">Temporary Virtual Environments</h2>
<p>Sometimes you just want to try something out quickly in a clean Virtual Environment, if for example you are reviewing a Pull Request. <code>virtualenvwrapper</code> can help here as it has the <code>mktmpenv</code>. There are two options here <code>-c|--cd</code> or <code>-n|--no-cd</code> which changes directory post-activation or <em>doesn’t</em> respectively. The environment gets a unique name and will be deleted automatically when it is deactivated.</p>
</section>
<section id="drawbacks" class="level2">
<h2 class="anchored" data-anchor-id="drawbacks">Drawbacks</h2>
<p>There are a couple of drawbacks I’ve found to using using <code>virtualenvwrapper</code>.</p>
<p>The first is that <code>mkproject</code> doesn’t allow nesting of project directories, you have to specify a single directory and it will be created under the <code>$PROJECT_HOME</code> directory with the associated environment name. This doesn’t work for me as I use the structure <code>~/work/git</code> as the base but then have sub-directories based on the Git Forge (<a href="https://github.com" target="_blank">GitHub</a>/<a href="https://gitlab.com" target="_blank">GitLab</a>/<a href="https://codeberg.org/" target="_blank">Codeberg</a>) the repository is associated with and further nesting to reflect the user/organisation within as I have both a personal and work accounts. E.g. <code>~/work/git/hub/ns-rse/ns-rse.github.io</code> which is the source for this site and associated with my work account (<code>ns-rse</code>) or <code>~/work/git/lab/nshephard/tcx2gpx</code> which is a project of mine (<a href="https://gitlab.com/nshephard/tcx2gpx" target="_blank">tcx2gpx</a>) hosted on GitLab. This means that if I wanted to create a project with <code>mkproject</code> based on <code>$PROJECT_HOME</code> being <code>/work/git</code> following this structure I would specify <code>mkproject git/lab/new_project</code> and whilst the directory is created, the virtual environment is created as <code>git/lab/new_project</code> which is truncated to <code>git</code> and you can’t <code>workon git</code> because the activation scripts are nested deeper under <code>git/lab/new_project</code>. Further each environment I created would then conflict. I could probably work around this by creating symbolic links but in practice I just use <code>mkvirtualenv</code> and <code>setvirtualenvproject</code> after I <code>git clone</code> work.</p>
<p>This is a problem specifically of my own creation though, something other users might find causes greater friction is that <code>virtualenvwrapper</code> doesn’t support creating and keeping the virtual environments within the project directory itself. This is never something that I’ve wanted to do myself though as I find it tidier to keep them all in one place and easier to find and remove obsolete environments.</p>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>I’ve used <a href="https://virtualenvwrapper.readthedocs.io/en/latest/" target="_blank">virtualenvwrapper</a> for years and its a nice light-weight alternative to other solutions of using Pythons Virtual Environments such as <a href="https://docs.python.org/3/library/venv.html" target="_blank"><code>venv</code></a> or <a href="https://docs.conda.io/en/latest/" target="_blank">Conda</a>. It has some limitations but its worth giving it a whirl as there are lots of useful helper functions and hooks that smooth the process of creating, using and switching between virtual environments.</p>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<ul>
<li><a href="https://virtualenvwrapper.readthedocs.io/en/latest/" target="_blank">virtualenvwrapper documentation</a></li>
</ul>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2023,
  author = {Shephard, Neil},
  title = {Virtualenvwrapper},
  date = {2023-12-23},
  url = {https://blog.nshephard.dev/posts/virtualenvwrapper/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2023" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2023. <span>“Virtualenvwrapper.”</span> December 23,
2023. <a href="https://blog.nshephard.dev/posts/virtualenvwrapper/">https://blog.nshephard.dev/posts/virtualenvwrapper/</a>.
</div></div></section></div> ]]></description>
  <category>python</category>
  <category>virtual environments</category>
  <guid>https://blog.nshephard.dev/posts/virtualenvwrapper/</guid>
  <pubDate>Sat, 23 Dec 2023 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/53176160657_1a148b3c36_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Repository Review with Scientific Python</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/repository-review/</link>
  <description><![CDATA[ 





<p>I’ve written before about <a href="https://ns-rse.github.io/#category=packaging" target="_blank">Python Packaging</a> and <a href="https://ns-rse.github.io/#category=pre-commit" target="_blank">pre-commit</a> which I’m a big fan of. Today I discovered a really useful tool for checking your packaging configuration and pre-commit configuration from the <a href="https://learn.scientific-python.org/development/" target="_blank">Scientific Python Development Guide</a>.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/53258300629_64b0ee5703_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/slackline/53258300629/" target="_blank">Elektro</a></figcaption>
</figure>
</div>
<p>This development guide is really well written and has <a href="https://learn.scientific-python.org/development/tutorials/" target="_blank">Tutorials</a> and <a href="https://learn.scientific-python.org/development/guides/" target="_blank">Topical Guides</a> that cover package development, style guides, type checking and tests amongst other things.</p>
<section id="repo-review" class="level2">
<h2 class="anchored" data-anchor-id="repo-review">Repo Review</h2>
<p>Of particular use is the <a href="https://learn.scientific-python.org/development/guides/repo-review/" target="_blank">Repo-Review - Scientific Python Development Guide</a> which will automatically check a GitHub hosted repository against the Scientific Python development guidelines and make recommendations where improvements can be made to the package configuration and pre-commit configuration.</p>
<p>Having tested it against <a href="https://learn.scientific-python.org/development/guides/repo-review/?repo=AFM-SPM%2FTopoStats&amp;branch=main" target="_blank">AFM-SPM/TopoStats main branch</a> there are a lot of useful and simple recommendations made.</p>
</section>
<section id="more-pre-commit-hooks" class="level2">
<h2 class="anchored" data-anchor-id="more-pre-commit-hooks">More Pre-Commit hooks</h2>
<p>More <a href="https://pre-commit.com/hooks" target="_blank">pre-commit hooks</a> is only a good thing in my view, they don’t take that long to run against most reasonably sized repositories, particularly if <a href="https://astral.sh/ruff" target="_blank">ruff</a> is used in favour of more traditional tools such as <code>flake8</code> and <code>isort</code>.</p>
<p>There are a few <a href="https://ns-rse.github.io/#category=pre-commit" target="_blank">pre-commit</a> hooks that I wasn’t aware of and will be adding to my projects such as..,</p>
<ul>
<li><a href="https://pypi.org/project/check-manifest/" target="_blank">Check-manifest</a> that verifies you have working SDist (source) packages.</li>
<li><a href="https://github.com/codespell-project/codespell" target="_blank">Codespell</a> for checking the spelling used in code.</li>
<li><a href="https://validate-pyproject.readthedocs.io/" target="_blank">validate-pyproject</a> for validating <code>pyproject.toml</code>.</li>
</ul>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>If you are involved in Python package development of any sort give your repository a review and see what recommendations are suggested. You may not agree with all of the recommendations but the vast majority of tools are highly configurable so you can disable the checks you don’t want applied. It won’t do any harm.</p>
<p>Now I just need to find time to apply <a href="https://mypy.readthedocs.io/en/stable/" target="_blank">MyPy</a>.</p>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2023,
  author = {Shephard, Neil},
  title = {Repository {Review} with {Scientific} {Python}},
  date = {2023-11-17},
  url = {https://blog.nshephard.dev/posts/repository-review/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2023" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2023. <span>“Repository Review with Scientific
Python.”</span> November 17, 2023. <a href="https://blog.nshephard.dev/posts/repository-review/">https://blog.nshephard.dev/posts/repository-review/</a>.
</div></div></section></div> ]]></description>
  <category>pre-commit</category>
  <category>packaging</category>
  <category>scientific python</category>
  <category>python</category>
  <guid>https://blog.nshephard.dev/posts/repository-review/</guid>
  <pubDate>Fri, 17 Nov 2023 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/53258300629_64b0ee5703_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Git Remotes</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/git-remotes/</link>
  <description><![CDATA[ 





<p><a href="https://git.scm" target="_blank">Git</a> and various forges such as <a href="https://github.com" target="_blank">GitHub</a> <a href="https://gitlab.com" target="_blank">GitLab</a> are useful collaborative tools for version controlling, sharing and working collaboratively. Normally a repository resides on your local computer and it tracks a remote (often referred to as <code>origin</code>)</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/49833632231_bd701b7621_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flickr.com/photos/slackline/49833632231/" target="_blank">Looking up by me</a></figcaption>
</figure>
</div>
<section id="gitconfig" class="level2">
<h2 class="anchored" data-anchor-id="gitconfig"><code>.git/config</code></h2>
<p>When you initialise or clone a repository a hidden directory <code>.git</code> is created. Within this resides the configuration file for the repository <code>.git/config</code> that defines how Git is to behave when performing actions on the repository.</p>
<section id="core" class="level3">
<h3 class="anchored" data-anchor-id="core"><code>core</code></h3>
</section>
<section id="remote" class="level3">
<h3 class="anchored" data-anchor-id="remote"><code>remote</code></h3>
<p>The <code>remote</code> field defines the location of the repository to which code is synced via pushing and pulling. Typically and by default this is called the <code>origin</code> and you have a section that defines the <code>url</code> and the <code>fetch</code> for this remote.</p>
<p>The <code>url</code> field can take two forms, either one based on <code>https</code> in which case the prefix of the value will be <code>https://github.com/</code> or one based on <code>ssh</code> in which case the prefix will be <code>git@github.com:</code>. What follows is then the user account or organisation (e.g.&nbsp;<code>ns-rse</code> for my personal repositories) followed by <code>/&lt;repo-name&gt;</code> (e.g.&nbsp;for this repository that is <code>ns-rse.github.io</code>).</p>
<p>The <code>fetch</code> field is what in Git parlance is called a <a href="https://git-scm.com/book/it/v2/Git-Internals-The-Refspec" target="_blank">Refspec</a> (Reference Specification). This takes the form <code>&lt;src&gt;:&lt;dst&gt;</code> and is a method of mapping references on the remote side (<code>&lt;src&gt;</code>) to those locally (<code>&lt;dst&gt;</code>) and it is this that maps the local branches (<code>refs/heads/*</code>) to their counterparts on the remote (<code>refs/remotes/origin/*</code>). If there is a <code>+</code> prefix it tells git to up-date the reference even if there is no <a href="https://www.git-basics.com/docs/git-merge/fast-forward" target="_blank">fast-forward</a>.</p>
<pre class="config"><code>[remote "origin"]
    url = git@github.com:ns-rse/ns-rse.github.io
    fetch = +refs/heads/*:refs/remotes/origin/*</code></pre>
</section>
<section id="branch" class="level3">
<h3 class="anchored" data-anchor-id="branch"><code>branch</code></h3>
<p>What follows is then a series of entries for <code>branch</code> which defines further how each local <code>branch</code> maps to a <code>remote</code> and where it should <code>merge</code> to. Each branch has a name define in the section header and within two parameters are set the <code>remote</code> which by default points to the <code>origin</code> (defined in the above <code>remote</code>) section and a <code>merge</code> field which defines the local reference to the branch under <code>refs/head/&lt;branch-name&gt;</code>.</p>
</section>
</section>
<section id="having-a-private-branch" class="level2">
<h2 class="anchored" data-anchor-id="having-a-private-branch">Having a Private branch</h2>
<p>Sometimes the need might arise to develop a feature in private. This is fine if you have no intention of sharing the work with others, you create a branch on your local computer and never push it to a forge. However, there will arise times where you do want to share you work with others whilst keeping things private. This too is possible and can be achieved by creating a private repository on your own account rather than using the original and configuring a branch to track that instead.</p>
<section id="creating-a-second-remote" class="level3">
<h3 class="anchored" data-anchor-id="creating-a-second-remote">Creating a second <code>remote</code></h3>
<p>Start by creating a new repository on GitHub/GitLab and making it private from the outset. Do <em>not</em> include any additional information such as <code>.gitignore</code>, <code>README.md</code> or <code>LICENSE.md</code> it should be completely empty.</p>
<p>You can then add it as a new <code>remote</code> to your existing repository in one of two ways.</p>
<section id="git-at-the-command-line" class="level4">
<h4 class="anchored" data-anchor-id="git-at-the-command-line">Git at the Command Line</h4>
<p>You should have some instructions shown on GitHub one of which is <strong>…or push an existing repository from the command line</strong>. The first line of this is telling you how to add a new remote to the repository. called <code>origin</code> and to point towards the repository you have just created. You will likely already have an <code>origin</code> remote defined so you need to choose a different name and point it to the correct location.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> remote add private-work git@github.com:ns-rse/private-work</span></code></pre></div>
</section>
<section id="check-your-.gitconfig" class="level4">
<h4 class="anchored" data-anchor-id="check-your-.gitconfig">Check your <code>.git/config</code></h4>
<p>If you now look at your <code>.git/config</code> file there should be two entries for <code>[remote ""]</code> one for origin (i.e.&nbsp;<code>[remote "origin"]</code>) and one for the new remote that has just been added <code>[remote "private-work"]</code>. Of course, because <code>.git/config</code> is just a text configuration file you can edit it and enter these values manually yourself if you want to.</p>
<p><strong>NB</strong> Either of the above methods will append these options to the bottom of the file so if you can’t see it immediately scroll down.</p>
</section>
</section>
<section id="track-your-new-remote" class="level3">
<h3 class="anchored" data-anchor-id="track-your-new-remote">Track your new remote</h3>
<p>Now that you have a secondary <code>remote</code> defined you can create a branch and set it to track the private remote you have created and configured. Create a new branch by using <code>git checkout -b</code></p>
<section id="command-line" class="level4">
<h4 class="anchored" data-anchor-id="command-line">Command Line</h4>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> checkout <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-b</span> private-feature</span></code></pre></div>
<p>You then set the upstream using <code>--set-upstream-to</code> or its shorthand <code>-u</code>, at this stage you don’t have anything to include so make an empty commit</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> push <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--set-upstream-to</span> private-work private-work</span></code></pre></div>
</section>
<section id="magit" class="level4">
<h4 class="anchored" data-anchor-id="magit">Magit</h4>
</section>
<section id="check-.gitconfig" class="level4">
<h4 class="anchored" data-anchor-id="check-.gitconfig">Check <code>.git/config</code></h4>
<p>Returning to your <code>.git/config</code> file you should now have an additional entry for a <code>branch</code> underneath the new entry for the <code>remote</code> and the value for <code>remote</code> under <code>branch</code> is the name of the <code>remote</code>.</p>
<pre class="config"><code>[remote "private-work"]
 url = git@github.com:ns-rse/private-work.git
 fetch = +refs/heads/*:refs/remotes/private-work/*
[branch "private-feature"]
 remote = private-work
 merge = refs/heads/private-feature</code></pre>
</section>
</section>
</section>
<section id="keeping-up-to-date" class="level2">
<h2 class="anchored" data-anchor-id="keeping-up-to-date">Keeping up to Date</h2>
<p>The private repository you setup on GitHub/GitLab should now have a copy of the <code>private-work</code> branch you created locally.</p>
<p>If you are collaborating with others the <code>main</code>/<code>master</code> branch may move ahead of yours as others work is merged in. You therefore need to regularly update your private branch by merging or rebasing from the <code>origin</code> rather than the <code>private-work</code> remote your branch is configured to track. The difference between merging and rebasing is beyond the scope of this article, there are pros and cons to each</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb6-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> checkout main</span>
<span id="cb6-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> pull</span>
<span id="cb6-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> checkout private-work</span>
<span id="cb6-4"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> merge main</span></code></pre></div>
<p>Or you can merge directly from origin with</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb7-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> checkout private-feature</span>
<span id="cb7-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> merge origin/main</span></code></pre></div>
</section>
<section id="checkout-someone-elses-private-branch" class="level2">
<h2 class="anchored" data-anchor-id="checkout-someone-elses-private-branch">Checkout someone else’s private branch</h2>
<p>Inevitably the need might arise for a collaborator to test your private branch. In which case they need to be granted permission to the private repository by the developer who created it. This is done via <em>Settings &gt; Collaborators</em> and inviting them to work on your repository.</p>
<p>Once they have accepted the invitation they will also have to add a secondary <code>remote</code> and the <code>branch</code> they are working on. They can follow the instructions above to set up a remote, however they should <em>not</em> follow the instructions to <code>branch</code> because that branch already exists on your private repository.</p>
<p>but because <code>.git/config</code> is just a text file you can copy the lines from your configuration and share it with your collaborator and they can add them to their <code>.git/config</code> file. Once these options have been added they</p>
</section>
<section id="bonus---using-magit" class="level2">
<h2 class="anchored" data-anchor-id="bonus---using-magit">Bonus - Using Magit</h2>
<p>If you use <a href="https://www.gnu.org/software/emacs/" target="_blank">Emacs</a> and the amazing <a href="https://magit.vc" target="_blank">Magit</a> you can of course do this via the Magit interface. In the Magit buffer for the repository (e.g.&nbsp;<code>magit: ns-rse.github.io</code>) press <code>M</code> to bring up the <code>Remote</code> transient buffer. You then press <code>a</code> to add a remote and are prompted for a name for the remote (in this example we use the same as above <code>private-work</code>), this can be anything you want other than <code>origin</code> which is already defined, and then the URL this will be <code>git@github.com:&lt;account-name&gt;/&lt;private-repo-name&gt;.git</code>.</p>
<p>To create a branch in Magit press <code>b</code> then <code>l</code> to select a local branch and enter <code>main</code> (or <code>master</code>), then make sure its upto date with the <code>origin</code> by Pulling with <code>P</code> then <code>u</code>. Now create a new branch by pressing <code>b</code> and since it will be a new press <code>c</code> to create it. You will be prompted for the name of a branch from which to branch from and then for the name of your branch.</p>
<p>In the Magit buffer for the repository you are working on pushes are made with <code>P</code>. The Transient buffer then offers you a choice of places to push to, one of which is <code>elsewhere</code> which is accessed by the <code>e</code> key. You can then type in the name of the remote tracking branch as defined under the <code>remote</code> entry you configured above which in this case is <code>private-work</code>.</p>



</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2023,
  author = {Shephard, Neil},
  title = {Git {Remotes}},
  date = {2023-10-06},
  url = {https://blog.nshephard.dev/posts/git-remotes/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2023" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2023. <span>“Git Remotes.”</span> October 6, 2023. <a href="https://blog.nshephard.dev/posts/git-remotes/">https://blog.nshephard.dev/posts/git-remotes/</a>.
</div></div></section></div> ]]></description>
  <category>git</category>
  <category>github</category>
  <category>gitlab</category>
  <guid>https://blog.nshephard.dev/posts/git-remotes/</guid>
  <pubDate>Fri, 06 Oct 2023 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/49833632231_bd701b7621_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>R Resources</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/r-resources/</link>
  <description><![CDATA[ 





<p><a href="https://www.r-project.org" target="_blank">R</a> is a statistical programming languages and one of the most popular languages for data analysis, statistics and plotting in academia and industry. Learning a new language can be daunting, particularly if you have no experience of scripting and are used to Graphical User Interfaces (GUIs) where you point and click to perform your statistical analysis.</p>
<p>Fear not though, there are lot of resources and very friendly, enthusiastic and helpful R users out there who can help you on your journey learning <a href="https://www.r-project.org" target="_blank">R</a>. This post details some of them, and I’d welcome additions.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/124/322966806_1bb4f40900_h.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://www.flickr.com/photos/lizjones/322966806/" target="_blank">R, by lizjones Me</a></figcaption>
</figure>
</div>
<p>Most of these resources are links websites that are free and openly available. Where books are linked they are very often freely available on-line, but there will also often be the possibility of purchasing a hard copy, which you may want to consider doing if you find the resource useful to help support the authors.</p>
<p>R has a number of bodies, organisations and companies associated with it.</p>
<ul>
<li><a href="https://www.r-project.org/foundation/" target="_blank">The R Foundation</a> a not for profit organisation working in the public interest.</li>
<li><a href="https://www.r-consortium.org/" target="_blank">The R Consortium</a> a group organized under an open source governance and foundation model to support the worldwide community of users.</li>
<li><a href="https://ropensci.org/" target="_blank">rOpenSci</a> open data, software and reproducibility.</li>
</ul>
<section id="software" class="level2">
<h2 class="anchored" data-anchor-id="software">Software</h2>
<p><a href="https://www.r-project.org" target="_blank">R</a> is software and will need installing on your computer. Because it is Free Open Source Softrware (FOSS) you can download and install it on your computer for free. You will have to install it to use it and the isntr</p>
<section id="git-version-control" class="level3">
<h3 class="anchored" data-anchor-id="git-version-control">Git Version Control</h3>
<p>It is good practice to version control the code you write, it provides an electronic paper trail of how your code has evolved over time and allows you to keep track not just of the code itself but why it has changed or been written.</p>
<p>These days the most popular version control system is <a href="https://git.scm" target="_blank">Git</a> and projects are often hosted/backed up on popular “forges” such as <a href="https://github.com" target="_blank">GitHub</a> or <a href="https://gitlab.com" target="_blank">GitLab</a>. Sign up with an academic email address (<code>@&lt;institute&gt;.ac.uk</code> or <code>@&lt;institute&gt;.edu</code>) and you will have a few extra benefits.</p>
<p>Learning Git is a whole, vast, topic in and of itself, but to get started with R and Git see the recommendation below. If you are a student or researcher at <a href="https://sheffield.ac.uk" target="_blank">The University of Sheffield</a> you may want to consider taking the Research Software Engineering (RSE) Teams popular <a href="https://srse-git-github-zero2hero.netlify.app/" target="_blank">Git, GitHub and GitKraken : Zero to Hero</a> course which runs regularly throughout the year. Sign up to their <a href="https://groups.google.com/a/sheffield.ac.uk/g/RSE-group" target="_blank">mailing list</a> and you’ll be notified of when the course runs. Alternatively <a href="mailto:rse@sheffield.ac.uk" target="_blank">email them</a> to find out when the next course is scheduled to run.</p>
</section>
<section id="ides" class="level3">
<h3 class="anchored" data-anchor-id="ides">IDEs</h3>
<p>Integrated Development Environments (IDE) are software that help you write code faster and more consistently courtesy of various features such as syntax highlighting, automatic bracket and quote pairing, automatic indentation and a suite of functions for performing common tasks such as version controlling files or rendering documents.</p>
<p>The most popular IDE for R is <a href="https://posit.co/download/rstudio-desktop/" target="_blank">RStudio Desktop</a> which has excellent support for R, RMarkdown/Quarto and basic Git support. If you are new to version control with Git you may want to consider using <a href="https://www.gitkraken.com/" target="_blank">GitKraken</a> which provides an intuitive point and click interface for version controlling your files and working with GitHub/GitLab.</p>
<p>My personal preference is to use <a href="https://www.gnu.org/software/emacs/" target="_blank">Emacs</a> and the package <a href="https://ess.r-project.org/" target="_blank">Emacs Speaks Statistics (ESS)</a>. This is a robust solution (ESS) has been around for decades and you get the convenience of using Emacs and its many packages such as the amazing <a href="https://magit.vc/" target="_blank">Magit</a> for carrying out all Git related tasks. It has a steeper learning curve than RStudio but in my opinion is completely worth the effort.</p>
</section>
</section>
<section id="books" class="level2">
<h2 class="anchored" data-anchor-id="books">Books</h2>
<p>If you’re using R the chances are you want to perform some sort of Statistical Analysis on your data. This often involves cleaning data that has been received, writing code to summarise, tabulate and plot your data, often in a literate manner (which means reports are open and can be reproduced easily). If you read nothing else to get you started using R for this work then you should read <a href="https://r4ds.had.co.nz/" target="_blank">R for Data Science</a> by Hadley Wickham and Garrett Grolemund. This is an excellent book that is available for free online.</p>
<ul>
<li><a href="https://teacher.arawles.co.uk/index.html" target="_blank">teacheR - Teach Yourself or Others R</a> by Adam Rawles</li>
<li><a href="http://www.cookbook-r.com/" target="_blank">Cookbook for R</a> by Winston Chang is a useful reference for many common tasks.</li>
</ul>
<section id="quartormarkdown" class="level3">
<h3 class="anchored" data-anchor-id="quartormarkdown">Quarto/RMarkdown</h3>
<p>R has its own Markdown language for writing literate documents and a comprehensive resources covering all aspects is <a href="https://bookdown.org/yihui/rmarkdown/" target="_blank">R Markdown: The Definitive Guide</a> by Yihui Xie, J.J. Allaire and Garret Grolemund. By writing your work in R Markdown you are performing <a href="https://en.wikipedia.org/wiki/Literate_programming" target="_blank">literate programming</a> and it means your report can updated automatically if the underlying data changes. Output to HTML, PDF, LibreOffice, Microsoft Office and many other formats. The underlying source can be version controlled using Git so that it is documented, backed up (e.g.&nbsp;on GitHub or GitLab) and it is easy to collaborate with colleagues.</p>
<p>More recently <a href="https://www.posit.com" target="_blank">Posit (nee RStudio)</a> have developed <a href="https://quarto.org" target="_blank">Quarto</a> the next iteration of RMarkdown. It supports more document types (e.g.&nbsp;blogs and RevealJS slides) and has excellent <a href="https://quarto.org/docs/guide/" target="_blank">documentation</a> and a growing number of <a href="https://quarto.org/docs/extensions/" target="_blank">extensions</a>. If you are just starting out I would recommend using Quarto over RMarkdown.</p>
</section>
<section id="git-book" class="level3">
<h3 class="anchored" data-anchor-id="git-book">Git Book</h3>
<p>It is good practice to version control your code and literate documents as you develop them. This can be achieved using the version control system <a href="https://git.scm" target="_blank">Git</a>. Get yourself an account on <a href="https://github.com" target="_blank">GitHub</a> and/or <a href="https://gitlab.com" target="_blank">GitLab</a> and settle down to read Jenny Bryans excellent <a href="https://happygitwithr.com" target="_blank">Happy Git and GitHub for the useR</a>.</p>
</section>
<section id="tidyverse" class="level3">
<h3 class="anchored" data-anchor-id="tidyverse">Tidyverse</h3>
<p>You will hear a lot about the <a href="https://www.tidyverse.org/" target="_blank">Tidyverse</a> which <em>is an opinionated collection of R packages designed for data science</em>. They are well worth learning as they make writing code considerably easier than with the base R packages. You won’t need all of the packages immediately but key ones to learn are</p>
<ul>
<li><a href="https://dplyr.tidyverse.org/" target="_blank">dplyr</a> (or</li>
<li><a href="https://tidyr.tidyverse.org/" target="_blank">tidyr</a> for tidying your data.</li>
<li><a href="https://forcats.tidyverse.org/" target="_blank">forcats</a> for working with categorical variables.</li>
<li><a href="https://lubridate.tidyverse.org/" target="_blank">lubridate</a> for working with date variables.</li>
<li><a href="https://stringr.tidyverse.org/" target="_blank">stringr</a> for working with string variables.</li>
</ul>
<p>If you’ve large datasets the <a href="https://dtplyr.tidyverse.org/" target="_blank">dtplyr</a> which uses the <a href="http://r-datatable.com/" target="_blank">data.table</a> package in the background but with <code>dplyr</code> code. <code>data.table</code> is considerably faster than <code>dplyr</code> for many operations. This is particularly noticeable when you have large datasets.</p>
</section>
<section id="statistics" class="level3">
<h3 class="anchored" data-anchor-id="statistics">Statistics</h3>
<p>There is a wealth of resources out there for learning and using R for different topics. The following is that which I’m aware of, if there is an omission please <a href="https://github.com/ns-rse.github.io/issues/new?assignees=ns-rse&amp;labels=R&amp;projects=&amp;template=R_resources.md&amp;title=" target="_blank">open an issue on my blog</a></p>
<ul>
<li><a href="https://hbiostat.org/rmsc/" target="_blank">Regression Modeling Strategies</a> by Frank E. Harrell, Jr.</li>
<li><a href="https://www.statlearning.com/" target="_blank">An Introduction to Statistical Learning with Applications in R/Python</a> an excellent book on modern “machine learning” techniques.</li>
<li><a href="https://www.tmwr.org/" target="_blank">Tidy Modeling with R</a> by Max Kuhn and Julia Silge</li>
<li><a href="http://appliedpredictivemodeling.com/" target="_blank">Applied Predictive Modeling</a> by Max Kuhn and Kjell Johnson (site to accompany physical book)</li>
<li><a href="https://bradleyboehmke.github.io/HOML/" target="_blank">Hands-On Machine Learning with R</a> by Bradley Boehmke and Brandon Greenwell</li>
<li><a href="https://christophm.github.io/interpretable-ml-book/" target="_blank">Interpretable Machine Learning</a> by Christoph Molnar</li>
<li><a href="https://betaandbit.github.io/RML/" target="_blank">The Hitchikers Guide to Responsible Machine Learning</a> by Przemsylaw Biecek, Anna Kozak and Aleksander Zawada</li>
<li><a href="https://rafalab.dfci.harvard.edu/dsbook-part-1/" target="_blank">Introduction to Data Science</a> and <a href="https://rafalab.dfci.harvard.edu/dsbook-part-2/" target="_blank">Advanced Data Science</a> by Rafael A. Irizarry</li>
<li><a href="https://tellingstorieswithdata.com/" target="_blank">Telling Stories with Data With Applications in R</a> by Rohan Alexander</li>
<li><a href="https://openintro-ims.netlify.app/" target="_blank">Introduction to Modern Statistics (1st Ed)</a></li>
<li><a href="https://epirhandbook.com/en/" target="_blank">The Epidemiologist R Handbook</a> R for applied epidemiology and public health</li>
<li><a href="https://argoshare.is.ed.ac.uk/healthyr_book/" target="_blank">R for Health Data Science</a> by Ewen Harrison and Riinu Pius</li>
<li><a href="https://otexts.com/fpp3/" target="_blank">Forecasting: Principles and Practice (3rd ed)</a></li>
</ul>
<section id="bayesian-statistics" class="level4">
<h4 class="anchored" data-anchor-id="bayesian-statistics">Bayesian Statistics</h4>
<p>There are some excellent resources for learning Bayesian Analyses with R. Perhaps the most comprehensive and in-depth is <a href="https://xcelab.net/rm/statistical-rethinking/" target="_blank">Statistical Rethinking</a> by Richard McElreath. He runs regular free courses teaching the material in the book (<a href="https://www.youtube.com/playlist?list=PLDcUM9US4XdPz-KxHM4XHt7uUVGWWVSus" target="_blank">Statistical Rethinking 2023</a>) and the book content has been translated to other R frameworks and Python. Another very good book is <a href="https://www.bayesrulesbook.com/" target="_blank">Bayes Rules! An Introduction to Applied Bayesian Modeling</a>. These are both covered in the <a href="https://bayesf22.classes.andrewheiss.com/syllabus.html" target="_blank">Bayesian Statistics - Syllabus</a> course by Andrew Heiss.</p>
<ul>
<li><a href="https://xcelab.net/rm/statistical-rethinking/" target="_blank">Statistical Rethinking</a> by Richard McElreath
<ul>
<li><a href="https://www.youtube.com/playlist?list=PLDcUM9US4XdPz-KxHM4XHt7uUVGWWVSus" target="_blank">2023 lectures</a> and <a href="https://github.com/rmcelreath/stat_rethinking_2023" target="_blank">course material</a></li>
<li><a href="https://bookdown.org/content/70a06054-8138-4d90-aaa0-895f57aab1b4/" target="_blank">Statistical rethinking with brms, ggplot2, and the tidyverse: Second edition</a></li>
</ul></li>
<li><a href="https://www.bayesrulesbook.com/" target="_blank">Bayes Rules! An Introduction to Applied Bayesian Modeling</a> by Alicia A. Johnson, Miles Q. Ott and Mine Dogucu</li>
<li><a href="https://gaussianprocess.org/gpml/" target="_blank">Gaussian Processes for Machine Learning</a> by Carl Edward Rasmussen and Christopher K. I. William</li>
</ul>
</section>
</section>
<section id="plotting" class="level3">
<h3 class="anchored" data-anchor-id="plotting">Plotting</h3>
<p>R has excellent support for producing graphs, figures and data visualisations. There is the base graphics that have been around since the beginning, but more recently the <a href="https://ggplot2-book.org/index.html" target="_blank">ggplot2</a> framework introduced by Hadley Wickham which implements Leland Wilkinson’s <a href="https://link.springer.com/book/10.1007/0-387-28695-0" target="_blank">Grammar of Graphics</a> has been very popular.</p>
<ul>
<li><a href="https://ggplot2-book.org/index.html" target="_blank">ggplot2: Elegant Graphics for Data Analysis (3e)</a> by Hadley Wickham</li>
<li><a href="https://r-graph-gallery.com/index.html" target="_blank">The R Graph Gallery – Help and inspiration for R charts</a></li>
<li><a href="https://r-graph-gallery.com/ggplot2-package.html" target="_blank">Data visualization with R and ggplot2 | the R Graph Gallery</a></li>
<li><a href="https://ggplot2tor.com/" target="_blank">ggplot2tor</a></li>
</ul>
</section>
<section id="advanced-topics" class="level3">
<h3 class="anchored" data-anchor-id="advanced-topics">Advanced Topics</h3>
<p>There is a lot to R than just Statistical analysis and one day you may want to investigate these in greater detail. The links below are to more advanced topics such as writing and maintaining packages or specific tasks such as text mining.</p>
<ul>
<li><a href="http://r-pkgs.had.co.nz/" target="_blank">R Packages</a> by Hadley Wickham and Jenny Bryan</li>
<li><a href="http://adv-r.had.co.nz/" target="_blank">Advanced R</a> by Hadley Wickham</li>
<li><a href="https://bookdown.org/rdpeng/advstatcomp/" target="_blank">Advanced Statistical Computing</a> by Roger D. Peng</li>
<li><a href="https://mastering-shiny.org/" target="_blank">Mastering Shiny</a> by Hadley Wickham</li>
<li><a href="https://unleash-shiny.rinterface.com/index.html" target="_blank">Outstanding User Interfaces with Shiny</a> by Kenton Russel</li>
<li><a href="https://rap4mads.eu/" target="_blank">Reproducible Analytical Pipelines</a> by Bruno Rodrigues</li>
<li><a href="https://www.tidytextmining.com/" target="_blank">Text Mining with R</a> by Julia Silge and David Robinson</li>
</ul>
</section>
</section>
<section id="cran" class="level2">
<h2 class="anchored" data-anchor-id="cran">CRAN</h2>
<p>The <a href="https://cran.r-project.org/" target="_blank">Comprehensive R Archive Network (CRAN)</a> is the primary place to look for R <a href="https://cran.r-project.org/web/packages/index.html" target="_blank">packages</a>. It also contains a number of subject specific <a href="https://cran.r-project.org/" target="_blank">Task Views</a> which are pages that summarise the packages and resources associated with a particular topic. There are also links to the official <a href="https://cran.r-project.org/manuals.html" target="_blank">manuals</a>, <a href="https://cran.r-project.org/faqs.html" target="_blank">FAQs</a> and user <a href="https://cran.r-project.org/other-docs.html" target="_blank">contributed documentation</a>.</p>
</section>
<section id="the-r-journal" class="level2">
<h2 class="anchored" data-anchor-id="the-r-journal">The R Journal</h2>
<p>The <a href="https://journal.r-project.org/" target="_blank">R Journal</a> is the peer-reviewed, open-access scientific journal published by the R Foundation. It includes articles on packages, reviews and proposals, comparisons and benchmarking, applications of existing techniques and special issue articles to accompany conferences or particular topics.</p>
</section>
<section id="cheatsheats" class="level2">
<h2 class="anchored" data-anchor-id="cheatsheats">Cheatsheats</h2>
<p>Cheatsheets come in handy as a reference to packages and commands. A central repository of cheatsheets is maintained by <a href="https://posit.co/resources/cheatsheets/" target="_blank">Postit</a>.</p>
</section>
<section id="community" class="level2">
<h2 class="anchored" data-anchor-id="community">Community</h2>
<p>The R community is incredibly supportive, welcoming and helpful. There are over <a href="https://www.r-consortium.org/blog/2019/09/09/r-community-explorer-r-user-groups" target="_blank">600 User Groups</a> around the world where R users meet up and share their experience and knowledge and support each other. Sheffield has its own <a href="https://sheffieldr.github.io" target="_blank">SheffieldR User Group</a>.</p>
<section id="r-ladies" class="level3">
<h3 class="anchored" data-anchor-id="r-ladies">R Ladies</h3>
<p><a href="https://rladies.org/" target="_blank">R-Ladies</a> is a worldwide organisation whose mission is to promote gender diversity in the R Community. Groups around the world have their own meetups and activities.</p>
</section>
<section id="r4ds" class="level3">
<h3 class="anchored" data-anchor-id="r4ds">R4DS</h3>
<p>There is also the <a href="https://rfordatasci.com/" target="_blank">R4DS Online Learning Commuity</a> which helps you work through the <em>R for Data Science</em> book. They have an active <a href="https://r4ds.io/join" target="_blank">Slack channel</a> for coordinating the courses and run <a href="https://www.tidytuesday.com/" target="_blank">Tidy Tuesday</a>, a weekly podcast and community activity which is a great way of learning now tasks in R.</p>
</section>
<section id="nhs-r-community" class="level3">
<h3 class="anchored" data-anchor-id="nhs-r-community">NHS R Community</h3>
<p>The <a href="https://nhsrcommunity.com/" target="_blank">NHS R Community</a> is focused on applications of R in the NHS Research community. They have blogs, a Slack channel and conferences.</p>
</section>
</section>
<section id="blogs" class="level2">
<h2 class="anchored" data-anchor-id="blogs">Blogs</h2>
<p>The <a href="https://www.r-bloggers.com/" target="_blank">R Bloggers</a> site aggregates blogs from people who write about R and is a brilliant resource. A few highlights are noted as well but R Bloggers is probably the best resource. If you want to subscribe to these most have <a href="https://en.wikipedia.org/wiki/RSS" target="_blank">RSS feeds</a></p>
<ul>
<li><a href="https://www.tidyverse.org/blog/" target="_blank">Tidyverse blog</a></li>
<li><a href="https://blog.djnavarro.net/" target="_blank">Notes from a data witch</a> a blog by Danielle Navarro</li>
</ul>
</section>
<section id="mastodon" class="level2">
<h2 class="anchored" data-anchor-id="mastodon">Mastodon</h2>
<p>Find posts and resources on Mastodon by searching for the <code>#rstats</code> hashtag. Here are some people I follow and find useful information from.</p>
<section id="bots" class="level3">
<h3 class="anchored" data-anchor-id="bots">Bots</h3>
<ul>
<li><a href="https://fosstodon.org/@rpodcast@podcastindex.social" target="_blank"><span class="citation" data-cites="rpodcast">@rpodcast</span><span class="citation" data-cites="podcastindex.social">@podcastindex.social</span></a></li>
<li><a href="https://fosstodon.org/@rweekly" target="_blank"><span class="citation" data-cites="rweekly">@rweekly</span><span class="citation" data-cites="fosstodon.org">@fosstodon.org</span></a> toots weekly updates from the R Community</li>
<li><a href="https://mastodon.social/@CRANberriesFeed@mas.to" target="_blank"><span class="citation" data-cites="CRANberriesFeed">@CRANberriesFeed</span><span class="citation" data-cites="mas.to">@mas.to</span></a> a bot that toots about packages released or updated on CRAN.</li>
</ul>
</section>
<section id="people" class="level3">
<h3 class="anchored" data-anchor-id="people">People</h3>
<ul>
<li><a href="https://mastodon.social/@3mma" target="_blank"><span class="citation" data-cites="e3mma">@e3mma</span><span class="citation" data-cites="mastodon.social">@mastodon.social</span></a> Emma is a bioinformatician and lecturer at York University who teaches R and reproducibility.</li>
<li><a href="https://mastodon.online/@f2harrell" target="_blank"><span class="citation" data-cites="f2harrel">@f2harrel</span><span class="citation" data-cites="mastodon.online">@mastodon.online</span></a> Frank is the author of the <em>Regression Modelling Strategies</em> book.</li>
<li><a href="https://mastodon.social/@Cmastication" target="_blank"><span class="citation" data-cites="Cmastication">@Cmastication</span><span class="citation" data-cites="mastodon.social">@mastodon.social</span></a> JD Long an avid R user.</li>
<li><a href="https://fosstodon.org/@hadleywickham" target="_blank"><span class="citation" data-cites="hadleywickham">@hadleywickham</span><span class="citation" data-cites="fosstodon.org">@fosstodon.org</span></a> doyen of R packages and the Tidyverse.</li>
<li><a href="https://fosstodon.org/@HeathrTurnr" target="_blank"><span class="citation" data-cites="HeathrTurnr">@HeathrTurnr</span></a> Heather Turner is a Research Software Engineering Fewllow in Statistics at University of Warrick and an R Foundation board member.</li>
<li><a href="https://mastodon.social/@eddelbuettel" target="_blank"><span class="citation" data-cites="eddelbuettel">@eddelbuettel</span><span class="citation" data-cites="mastodon.social">@mastodon.social</span></a> ESS and R developer.</li>
<li><a href="https://fosstodon.org/@sje" target="_blank"><span class="citation" data-cites="sje">@sje</span><span class="citation" data-cites="fosstodon.org">@fosstodon.org</span></a> ESS developer.</li>
<li><a href="https://aus.social/@robjhyndman" target="_blank"><span class="citation" data-cites="robjhyndman">@robjhyndman</span><span class="citation" data-cites="aus.social">@aus.social</span></a> co-author of <em>Forecasting Principles and Practice</em>.</li>
<li><a href="https://fosstodon.org/@topepo" target="_blank"><span class="citation" data-cites="topepo">@topepo</span><span class="citation" data-cites="fosstodon.org">@fosstodon.org</span></a> author of <em>Applied Predictive Modelling</em> and co-author of other R books; R package developer (<code>tidymodels</code>).</li>
<li><a href="https://fosstodon.org/@annakrystalli" target="_blank"><span class="citation" data-cites="annakrystalli">@annakrystalli</span><span class="citation" data-cites="fosstodon.org">@fosstodon.org</span></a> Research Software Engineer, [ReproHack founder] and editor at rOpenSci</li>
</ul>
</section>
<section id="organisations" class="level3">
<h3 class="anchored" data-anchor-id="organisations">Organisations</h3>
<ul>
<li><a href="https://fosstodon.org/@ropensci" target="_blank"><span class="citation" data-cites="ropensci">@ropensci</span><span class="citation" data-cites="fosstodon.org">@fosstodon.org</span></a></li>
<li><a href="https://fosstodon.org/@Posit" target="_blank"><span class="citation" data-cites="Posit">@Posit</span><span class="citation" data-cites="fosstodon.org">@fosstodon.org</span></a> the company that develops RStudio, Quarto and Shiny</li>
</ul>
</section>
</section>
<section id="podcasts" class="level2">
<h2 class="anchored" data-anchor-id="podcasts">Podcasts</h2>
<ul>
<li><a href="https://r-podcast.org/" target="_blank">The R-Podcast</a></li>
<li><a href="https://shinydevseries.com/" target="_blank">Shiny Developer Series</a></li>
</ul>
</section>
<section id="miscellaneous" class="level2">
<h2 class="anchored" data-anchor-id="miscellaneous">Miscellaneous</h2>
<section id="generative-art" class="level3">
<h3 class="anchored" data-anchor-id="generative-art">Generative Art</h3>
<p>Many people enjoy playing with R and ggplot2 to create Generative Art. One example is <a href="https://github.com/koenderks/aRtsy" target="_blank">aRtsy</a>, an R package that implements algorithms for making generative art in a straightforward and standardized manner using ‘ggplot2’ (see archive of posts on <a href="https://botsin.space/web/@aRtsy_package" target="_blank"><span class="citation" data-cites="aRtsy_package">@aRtsy_package</span><span class="citation" data-cites="mastodon">@mastodon</span></a>). Another package is <a href="https://nrennie.github.io/aRt/" target="_blank">aRt</a> by Nicola Rennie.</p>
<ul>
<li><a href="https://github.com/koenderks/aRtsy" target="_blank">aRtsy</a></li>
<li><a href="https://nrennie.github.io/aRt/" target="_blank">aRt</a> by Nicola Rennie</li>
<li><a href="https://blog.djnavarro.net/posts/2021-10-19_rtistry-posts/" target="_blank">Generative art resources in R</a></li>
</ul>



</section>
</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2023,
  author = {Shephard, Neil},
  title = {R {Resources}},
  date = {2023-10-06},
  url = {https://blog.nshephard.dev/posts/r-resources/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2023" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2023. <span>“R Resources.”</span> October 6, 2023. <a href="https://blog.nshephard.dev/posts/r-resources/">https://blog.nshephard.dev/posts/r-resources/</a>.
</div></div></section></div> ]]></description>
  <category>R</category>
  <category>documentation</category>
  <category>data science</category>
  <category>statistics</category>
  <category>data analysis</category>
  <guid>https://blog.nshephard.dev/posts/r-resources/</guid>
  <pubDate>Fri, 06 Oct 2023 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/124/322966806_1bb4f40900_h.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>GitLab CI - Automatic Publishing to PyPI</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/gitlab-ci-pypi/</link>
  <description><![CDATA[ 





<p>I’ve written previously on <a href="https://ns-rse.github.io/posts/python-packaging" target="_blank">Python Packaging</a> and in that article included details of how to <a href="https://ns-rse.github.io/posts/python-packaging/#publishing-to-pypi" target="_blank">automate publishing to PyPI from GitHub</a>. This article details how to automatically publish your package to <a href="https://pypi.org" target="_blank">PyPI</a> from <a href="https://gitlab.com" target="_blank">GitLab</a>.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/52985552723_a975753e12_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flickr.com/photos/slackline/52985552723/in/dateposted/" target="_blank">Packages with Legs, by Me</a></figcaption>
</figure>
</div>
<section id="repository-configuration" class="level2">
<h2 class="anchored" data-anchor-id="repository-configuration">Repository Configuration</h2>
<section id="ci-variables" class="level3">
<h3 class="anchored" data-anchor-id="ci-variables">CI Variables</h3>
<p>The environment variables <code>$TWINE_USERNAME</code> (<code>__token__</code>) and <code>$TWINE_PASSWORD</code> which will be the token you generate for publishing on PyPI or Test PyPI. These are saved under the repository <code>_Settings &gt; CI/CD &gt; Varialbes_</code> section and how to create and save these is described below.</p>
</section>
<section id="protecting-tags" class="level3">
<h3 class="anchored" data-anchor-id="protecting-tags">Protecting Tags</h3>
<p>This really stumped me I could build and push automatically from the <code>master</code> branch but could not use the <code>- if  $CI_COMMIT_TAG</code> condition to publish commits that were tagged. I wrote a <a href="https://forum.gitlab.com/t/ci-variables-missing-when-triggering-build-based-on-tag-solved/93309" target="_blank">post on the GitLab Forums</a> asking how to do this and posted it to Mastodon asking if anyone had any ideas. I got two replies (one from <a href="https://mastodon.social/@manu_faktur/111159226739296263" target="_blank"><span class="citation" data-cites="manu_faktur">@manu_faktur</span><span class="citation" data-cites="mastodon.social">@mastodon.social</span></a> and one from <a href="https://mastodon.social/@diazona@techhub.social/111159429646899283" target="_blank"><span class="citation" data-cites="diazona">@diazona</span><span class="citation" data-cites="techhub.social">@techhub.social</span></a>) both asking if I’d protected the tags on my repository.</p>
<p>I had no idea that you could protect tags on GitLab (or GitHub for that matter) so looked up the documentation on <a href="https://docs.gitlab.com/ee/user/project/protected_tags.html" target="_blank">Protected tags</a> and sure enough this was possible. Go to <em>settings &gt; Repository &gt; Protected tags</em> and set a <a href="https://docs.gitlab.com/ee/user/project/protected_tags.html#wildcard-protected-tags" target="_blank">wildcard to protect my tags</a>, e.g.&nbsp;<code>v*</code> and the <code>pypi</code> CI job defined below will work as expected, building <em>and</em> uploading to PyPI on tagged commits.</p>
</section>
</section>
<section id="ci-configuration" class="level2">
<h2 class="anchored" data-anchor-id="ci-configuration">CI Configuration</h2>
<section id="ci" class="level3">
<h3 class="anchored" data-anchor-id="ci">CI</h3>
<p>GitLabs CI/CD is configured via a <a href="https://yaml.org/" target="_blank">YAML</a> file <a href="https://docs.gitlab.com/ee/ci/yaml/gitlab_ci_yaml.html" target="_blank"><code>.gitlab-ci.yaml</code></a> in the root of your project folder, a useful reference for writing these files is the <a href="https://docs.gitlab.com/ee/ci/yaml/index.html" target="_blank">.gitlab-ci.yml reference</a>.</p>
<p>An example file from the <a href="https://gitlab.com/nshephard/tcx2gpx/" target="_blank">tcx2gpx</a> package is shown below (see <a href="-/blob/master/.gitlab-ci.yml?ref_type=heads" target="_blank">here</a>).</p>
<p>This defines the following…</p>
<ul>
<li><code>image</code> - the use of a Docker Python 3.11 image for running the pipeline.</li>
<li><code>variables</code> - Configures <a href="https://ns-rse.github.io/#category=pre-commit" target="_blank">pre-commit</a> to run and automatically fix issues found on pull requests.</li>
<li><code>stages</code> - the subsequent stages to run (<strong>NB</strong> the <code>debug</code> stage which prints the environment variables is commented out).</li>
<li><code>pylint</code> - runs linting on Python 3.10 and 3.11.</li>
<li><code>pytest</code> - Runs tests on Python 3.10 and 3.11.</li>
<li><code>pages</code> - Builds the documentation pages.</li>
<li><code>pypi</code> - <strong>Builds and uploads the package to PyPI <em>if the commit has a tag associated</em></strong>.</li>
</ul>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb1-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">image</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> python:3.11</span></span>
<span id="cb1-2"></span>
<span id="cb1-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">variables</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"> # since we're not using merge request pipelines in this example, # we will configure the pre-commit job to</span></span>
<span id="cb1-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  run on branch pipelines only.</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">  # If you ARE using merge request pipelines, you can omit this section</span></span>
<span id="cb1-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">  </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">PRE_COMMIT_AUTO_FIX</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'1'</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">PRE_COMMIT_DEDUPLICATE_MR_AND_BRANCH:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">'false'</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">PRE_COMMIT_AUTO_FIX_BRANCH_ONLY:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">'false'</span></span>
<span id="cb1-6"></span>
<span id="cb1-7"></span>
<span id="cb1-8"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">before_script</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-9"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> python --version</span></span>
<span id="cb1-10"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pip install .</span></span>
<span id="cb1-11"></span>
<span id="cb1-12"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># pre-commit autofix (https://gitlab.com/yesolutions/gitlab-ci-templates /</span></span>
<span id="cb1-13"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#                     https://stackoverflow.com/collectives/gitlab/articles/71270196/)</span></span>
<span id="cb1-14"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">include</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> remote: https://gitlab.com/yesolutions/gitlab-ci-templates/raw/main/templates/pre-commit-autofix.yaml</span></span>
<span id="cb1-15"></span>
<span id="cb1-16"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">stages</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"> # - debug - pylint - pytest - pages - pypi</span></span>
<span id="cb1-17"></span>
<span id="cb1-18"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># print-all-env-vars-job:</span></span>
<span id="cb1-19"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#     stage: debug</span></span>
<span id="cb1-20"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#     script:</span></span>
<span id="cb1-21"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         - echo "GitLab CI/CD | Print all environment variables"</span></span>
<span id="cb1-22"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         - env</span></span>
<span id="cb1-23"></span>
<span id="cb1-24"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">.pylint</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> script:</span></span>
<span id="cb1-25"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pip install pylint pytest</span></span>
<span id="cb1-26"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pylint --rcfile .pylintrc tcx2gpx/</span></span>
<span id="cb1-27"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pylint --rcfile .pylintrc tests/</span></span>
<span id="cb1-28"></span>
<span id="cb1-29"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pylint-3-10</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> extends: .pylint stage: pylint image: python:3.10 allow_failure: true</span></span>
<span id="cb1-30"></span>
<span id="cb1-31"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pylint-3-11</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> extends: .pylint stage: pylint image: python:3.11 allow_failure: true</span></span>
<span id="cb1-32"></span>
<span id="cb1-33"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">.pytest</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> script:</span></span>
<span id="cb1-34"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pip install pytest pytest-cov</span></span>
<span id="cb1-35"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> python -m "pytest"</span></span>
<span id="cb1-36"></span>
<span id="cb1-37"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pytest-3-10</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> extends: .pytest stage: pytest image: python:3.10 allow_failure: true</span></span>
<span id="cb1-38"></span>
<span id="cb1-39"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pytest-3-11</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> extends: .pytest stage: pytest image: python:3.11 coverage: /(?i)total.*?</span></span>
<span id="cb1-40"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/</span></span>
<span id="cb1-41"></span>
<span id="cb1-42"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pages</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> stage: pages rules:</span></span>
<span id="cb1-43"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">if</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> $CI_COMMIT_BRANCH == "master" script:</span></span>
<span id="cb1-44"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pip install .[docs]</span></span>
<span id="cb1-45"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> cd docs</span></span>
<span id="cb1-46"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> git fetch --tags</span></span>
<span id="cb1-47"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> git tag -l</span></span>
<span id="cb1-48"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> make html</span></span>
<span id="cb1-49"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> mkdir ../public</span></span>
<span id="cb1-50"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mv _build/html/* ../public/ artifacts</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> paths:</span></span>
<span id="cb1-51"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">            </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> public</span></span>
<span id="cb1-52"></span>
<span id="cb1-53"></span>
<span id="cb1-54"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pypi</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> stage: pypi rules:</span></span>
<span id="cb1-55"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">if</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> $CI_COMMIT_TAG script:</span></span>
<span id="cb1-56"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pip install .[pypi]</span></span>
<span id="cb1-57"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pip install build</span></span>
<span id="cb1-58"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> python -m build</span></span>
<span id="cb1-59"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> twine upload --non-interactive --repository pypi dist/*</span></span></code></pre></div>
<p>The <code>pypi</code> stage is named and a <code>rule</code> is defined that says to only run this stage if the value of the environment variable <code>$CI_COMMIT_TAG</code> is <code>True</code>. This only happens when a commit has a (protected <span class="emoji" data-emoji="wink">😉</span>) tag.</p>
<p>The <code>script</code> section then installs the package along with the <code>project.optional-dependencies</code> defined in the <code>pypi</code> section of the <a href="https://ns-rse.github.io/posts/python-packaging/#project.optional-dependencies" target="_blank"><code>pyproject.toml</code></a>.</p>
<p>The package is then built using <a href="https://github.com/pypa/build" target="_blank">build</a> and <a href="https://twine.readthedocs.io/en/stable/index.html" target="_blank">twine</a> is used to push the to push the built package to <a href="https://pypi.org" target="_blank">PyPI</a>.</p>
</section>
<section id="pypi-tokens" class="level3">
<h3 class="anchored" data-anchor-id="pypi-tokens">PyPI Tokens</h3>
<p>You should first test building and deploying to the <a href="https://test.pypi.org/" target="_blank">Test PyPI</a> and when this is working simply switch to using the main <a href="https://pypi.org" target="_blank">PyPI</a>. To do so you will need to create an account on both<sup>1</sup>. Once you have set yourself up with an account you can <a href="https://pypi.org/help/#apitoken" target="_blank">generate an API token to authenticate with PyPI</a>. After verifying your email got to <em>Account Settings</em> and select <em>Add API token</em>. These are generated once so copy and paste it into the <a href="https://packaging.python.org/en/latest/specifications/pypirc/#pypirc" target="_blank"><code>.pypirc</code></a> of your project (add this file to your <code>.gitignore</code> so it doesn’t accidentally get added). Remember to do this twice, once for PyPI and once for Test PyPI and once for PyPI for reference.</p>
<pre class="{conf}"><code>[testpypi]
username = __token__
password = pypi-&lt;token_value&gt;

[pypi]
username = __token__
password = pypi-&lt;token_value&gt;</code></pre>
<p>In GitLab go to your repositories <em>Settings &gt; CI/CD &gt; Variables</em> and add two new variables <code>TWINE_USERNAME</code> with the value <code>__token__</code> and <code>TWINE_PASSWORD</code> with the token for your account on Test PyPI (remember it should include the prefix <code>pypi-</code> as shown in the above example <code>.pypirc</code>). You have options on how these variables are used and should ensure that all three check boxes are selected, this enables…</p>
<ul>
<li><strong>Protect variable</strong> Export variable to pipelines running on protected branches and tags only.</li>
<li><strong>Mask variable</strong> Mask this variable in job logs if it meets regular expression requirements.</li>
<li><strong>Expand variable reference</strong> <code>$</code> will be treated as the start of a reference to another variable.</li>
</ul>
</section>
</section>
<section id="testing" class="level2">
<h2 class="anchored" data-anchor-id="testing">Testing</h2>
<p>Now that you are setup you can test your configuration. To do so you need to first use the API key from the Test PyPI server that you created as the value for <code>$TWINE_PASSWORD</code> (see above) and set the repository <code>twine --repository</code> option to <code>testpypi</code>. Your <code>pypi</code> stage should look like the following…</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb3-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">pypi</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">stage</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pypi</span></span>
<span id="cb3-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">rules</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">if</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> $CI_COMMIT_TAG</span></span>
<span id="cb3-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">script</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb3-6"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pip install .[pypi]</span></span>
<span id="cb3-7"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> pip install build</span></span>
<span id="cb3-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> python -m build</span></span>
<span id="cb3-9"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> twine upload --non-interactive --repository testpypi dist/*</span></span></code></pre></div>
<p>Once this is set create a tag for the current commit using the <em>Code &gt; Tags</em> settings from the left menu of your repository and then the <em>New tag</em> button on the top right. The tag you create should match the wild card pattern you have set for protecting tags and it should comply to the Public version identifiers specified in <a href="https://peps.python.org/pep-0440/#public-version-identifiers" target="_blank">PEP440</a>. On creation it triggers the Pipeline, you can check progress and status by navigating to <em>CI/CD &gt; Pipelines</em> and then viewing it. The <code>pypi</code> job should complete and you should be able to navigate to your package on <a href="https://test.pypi.org" target="_blank">Test PyPI</a>. You can find it under your account settings.</p>
<p>If you find there is a problem you will have to correct it and either delete the tag you created and try again or increment the version. PyPI, and in turn Test PyPI which is a mirror with the same functionality, does not permit uploading packages with a version number that already exists.</p>
</section>
<section id="publishing-to-pypi" class="level2">
<h2 class="anchored" data-anchor-id="publishing-to-pypi">Publishing to PyPI</h2>
<p>Once you have successfully published to the Test PyPI you are ready to publish to PyPI. There three things you need to do.</p>
<ol type="1">
<li>Delete the existing tag, if you want to apply the same tag to publish to PyPI you can do so.</li>
<li>Modify the repository option to point to PyPI <code>--repository pypi</code> (or remove it, the default is PyPI).</li>
<li>Change the key stored in the <code>$TWINE_PASSWORD</code> to that which you generated for PyPI instead of the one used for testing with Test PyPI.</li>
</ol>
<p>Once you have done so you can create a new tag and the upload will be made to PyPI.</p>
<section id="releases" class="level3">
<h3 class="anchored" data-anchor-id="releases">Releases</h3>
<p>An alternative way to apply tags to commits is to make a <a href="https://docs.gitlab.com/ee/user/project/releases/" target="_blank">Releases</a>. In creating a release you apply a tag to the current commit. In addition GitLab will build and compress snapshot of the files and you can add Release Notes detailing what has changed. GitLab will automatically build release artifacts of your repository and make them available for download directly from GitLab.</p>
</section>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<section id="python-packaging" class="level3">
<h3 class="anchored" data-anchor-id="python-packaging">Python Packaging</h3>
<ul>
<li><a href="https://setuptools.pypa.io/en/latest/userguide/index.html" target="_blank">PyPA : Building and Distributing Packages with Setuptools</a></li>
<li><a href="https://packaging.python.org/en/latest/specifications/" target="_blank">PyPA : Specifications</a></li>
<li><a href="https://packaging.python.org/en/latest/tutorials/packaging-projects/" target="_blank">Packaging Python Projects</a></li>
<li><a href="https://www.pyopensci.org/python-package-guide/package-structure-code/intro.html" target="_blank">Python package structure information — pyOpenSci Python Packaging Guide</a></li>
</ul>
</section>
<section id="gitlab-documentation" class="level3">
<h3 class="anchored" data-anchor-id="gitlab-documentation">GitLab Documentation</h3>
<ul>
<li><a href="https://docs.gitlab.com/ee/topics/build_your_application.html" target="_blank">Use CI/CD to build your application | GitLab</a></li>
<li><a href="https://docs.gitlab.com/ee/ci/yaml/gitlab_ci_yaml.html" target="_blank">The <code>.gitlab-ci.yml</code> file | GitLab</a> +</li>
<li><a href="https://docs.gitlab.com/ee/user/project/protected_tags.html" target="_blank">Protected tags</a></li>
</ul>



</section>
</section>


<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section id="footnotes" class="footnotes footnotes-end-of-document"><h2 class="anchored quarto-appendix-heading">Footnotes</h2>

<ol>
<li id="fn1"><p>PyPI now enforces Two Factor Authentication (2FA) for new accounts, see <a href="https://blog.pypi.org/posts/2023-08-08-2fa-enforcement-for-new-users/" target="_blank">2FA Enforcement for New User Registrations</a>↩︎</p></li>
</ol>
</section><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2023,
  author = {Shephard, Neil},
  title = {GitLab {CI} - {Automatic} {Publishing} to {PyPI}},
  date = {2023-10-03},
  url = {https://blog.nshephard.dev/posts/gitlab-ci-pypi/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2023" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2023. <span>“GitLab CI - Automatic Publishing to
PyPI.”</span> October 3, 2023. <a href="https://blog.nshephard.dev/posts/gitlab-ci-pypi/">https://blog.nshephard.dev/posts/gitlab-ci-pypi/</a>.
</div></div></section></div> ]]></description>
  <category>python</category>
  <category>documentation</category>
  <category>packaging</category>
  <category>gitlab</category>
  <category>ci</category>
  <guid>https://blog.nshephard.dev/posts/gitlab-ci-pypi/</guid>
  <pubDate>Tue, 03 Oct 2023 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/52985552723_a975753e12_k.jpg" medium="image" type="image/jpeg"/>
</item>
<item>
  <title>Pre-commit and R Packaging</title>
  <dc:creator>Neil Shephard</dc:creator>
  <link>https://blog.nshephard.dev/posts/pre-commit-r/</link>
  <description><![CDATA[ 





<p>This post is aimed at getting you up and running with the R <a href="https://cran.r-project.org/web//packages/precommit/vignettes/precommit.html" target="_blank">precommit</a> Package. This shouldn’t be confused with the Python <a href="https://ns-rse.github.io/pre-commit" target="_blank">pre-commit</a> Package although as you might suspect they are closely related.</p>
<p>The R package (<code>precommit</code>) consists of a number of R specific hooks that are run by <code>pre-commit</code> before commits are made and check various aspects of your code for compliance with certain style and coding standards (mostly aspects of R packages and I’ll be posting more on R packaging in due course).</p>
<p>A major part of this post is about getting things setup on Windows, I’ve only given a light overview of some of the hooks and common problems encountered as I’ve gone about using and learning R packaging because not everyone uses Windows.</p>
<p>Most of the work on the R package is by <a href="https://github.com/lorenzwalthert/" target="_blank">Lorenz Walthert</a>, if you find it useful consider sponsoring his work, these things take a lot of time and effort and whilst they can be used for free are worth supporting.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://live.staticflickr.com/65535/52985095726_49c5b394f1_k.jpg" class="img-fluid figure-img"></p>
<figcaption><a href="https://flickr.com/photos/slackline/52985095726/" target="_blank">Erwin Wurm sculpture at Yorkshire Sculpture Park</a> by me</figcaption>
</figure>
</div>
<section id="pre-commit" class="level2">
<h2 class="anchored" data-anchor-id="pre-commit">pre-commit</h2>
<p>I love using <a href="https://pre-commit.com" target="_blank">pre-commit</a> in my development pipelines and have <a href="https://ns-rse.github.io/#category=pre-commit" target="_blank">blogged about it</a> a few times already. It saves so much hassle (once you are used to it) not just for yourself but also your collaborators who are reviewing your Pull Requests. The <a href="https://github.com/lorenzwalthert/precommit" target="_blank">R precommit package</a> comes with a set of hooks that can be enabled and configured individually. I’ve recently and reason to start making and R package and as I’ve not used R much for a few years and this was my first time attempting to develop a package, I decided to use the hooks to impose the various style standards and checks that are expected.</p>
<p>I opted to enable <em>all</em> of the hooks. I’ve not covered them all here in detail (yet) but describe some of them below and show how to use some additional hooks from the <a href="https://usethis.r-lib.org" target="_blank">usethis</a> package too.</p>
<section id="codemetar" class="level3">
<h3 class="anchored" data-anchor-id="codemetar">codemetar</h3>
<p>There is a hook for checking the <a href="https://codemeta.github.io/" target="_blank">Codemeta</a>, which is in JSON-LD format is created correctly. The R package <a href="https://cran.r-project.org/web//packages//codemetar/vignettes/codemetar.html" target="_blank">codemetar</a> facilitates creating this and pulls metadata from the <code>DESCRIPTION</code>, <code>README.Rmd</code> and other aspects of your package to format them in JSON Codemeta. It comes with a handy function to write the file for you, so after installing you can just run <code>codemetar::write_codemeta()</code> which will create the <code>codemeta.json</code> for you. Remember to run this each and every time you update and of the files from which the metadata is created (although keep an eye on <a href="https://github.com/lorenzwalthert/precommit/issues/491" target="_blank">#491</a> which suggests updating automatically)</p>
</section>
<section id="roxygenize" class="level3">
<h3 class="anchored" data-anchor-id="roxygenize">roxygenize</h3>
<p><a href="https://roxygen2.r-lib.org/" target="_blank">Roxygen2</a> is a package for making the documentation to go with your package, it does this by parsing the documentation strings (“docstrings” for short) that you adorn your functions with that describe the arguments and show example usages. This hook requires additional configuration in <code>.pre-commit-config.yaml</code> as you have to install your package dependencies. Fortunately there is a helper function in the <code>precommit</code> package so you can just run <code>precommit::snippet_generate("additional-deps-roxygenize")</code> and it will output the YAML that you need to add to your <code>.pre-commit-config.yaml</code>. It might look something like the following.</p>
<div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode yaml code-with-copy"><code class="sourceCode yaml"><span id="cb1-1"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">hooks</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-2"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">id</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> no-debug-statement</span></span>
<span id="cb1-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">id</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;"> roxygenize</span></span>
<span id="cb1-4"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">      </span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">additional_dependencies</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">:</span></span>
<span id="cb1-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    data.table</span></span>
<span id="cb1-6"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    dplyr</span></span>
<span id="cb1-7"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    dtplyr</span></span>
<span id="cb1-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    duckdb</span></span>
<span id="cb1-9"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    IMD</span></span>
<span id="cb1-10"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    lubridate</span></span>
<span id="cb1-11"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">        </span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">-</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">    stringr</span></span></code></pre></div>
</section>
<section id="style-files" class="level3">
<h3 class="anchored" data-anchor-id="style-files">style-files</h3>
<p>The <code>style-files</code> hook runs the <a href="https://styler.r-lib.org/" target="_blank">styler</a> package against your code to ensure it follows the <a href="https://style.tidyverse.org/" target="_blank">tidyverse style guide</a> by default, although it can be configured to use a custom style guide of your own creation.</p>
</section>
<section id="lintr" class="level3">
<h3 class="anchored" data-anchor-id="lintr">lintr</h3>
<p>The <a href="https://lintr.r-lib.org/" target="_blank">lintr</a> package lints your code automatically. It can be configured by adding a <code>.lintr</code> configuration file to your repository, a simple example is shown below. Note the indented closing parenthesis is important you get a complaint about that and any other formatting issues.</p>
<div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb2-1">linters<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">linters_with_defaults</span>(</span>
<span id="cb2-2">         <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">line_length_linter</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">120</span>),</span>
<span id="cb2-3">         <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">object_name_linter =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">NULL</span>,</span>
<span id="cb2-4">         <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">object_usage_linter =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">NULL</span></span>
<span id="cb2-5">  )</span></code></pre></div>
</section>
<section id="spell-check" class="level3">
<h3 class="anchored" data-anchor-id="spell-check"><code>spell-check</code></h3>
<p>This is a useful hook that checks your spelling and adds unusual words to a custom dictionary <code>inst/WORDLIST</code>.</p>
</section>
<section id="deps-in-desc" class="level3">
<h3 class="anchored" data-anchor-id="deps-in-desc"><code>deps-in-desc</code></h3>
<p>This hook ensures that all dependencies that are loaded by your package are listed in the <code>DESCRIPTION</code> file so that when the package is installed the necessary dependencies are also pulled in, fairly essential..</p>
</section>
</section>
<section id="usethis-package" class="level2">
<h2 class="anchored" data-anchor-id="usethis-package">usethis package</h2>
<p>The <a href="https://usethis.r-lib.org" target="_blank">usethis</a> package is a compliment to the <a href="https://devtools.r-lib.org" target="_blank">devtools</a> package that has a lot of very useful helper functions. Some of these enable additional <code>pre-commit</code> hooks whilst others enable GitHub actions, which are part of Continuous Integration pipelines and I would highly recommend enabling them.</p>
<section id="readme.rmd" class="level3">
<h3 class="anchored" data-anchor-id="readme.rmd"><code>README.Rmd</code></h3>
<p>The <a href="https://usethis.r-lib.org/reference/use_readme_rmd.html" target="_blank"><code>user_readme_rmd()</code></a> function automatically generates a <code>README.Rmd</code> template and will also create a <code>pre-commit</code> hook that keeps it synchronised with <code>README.md</code> whenever you update it. This is useful because the later, plain-markdown, file is automatically rendered by GitHub/GitLab/Codeberg as your repositories front-page.</p>
</section>
<section id="use_github_action" class="level3">
<h3 class="anchored" data-anchor-id="use_github_action"><code>use_github_action()</code></h3>
<p>Invoking <code>use_github_action()</code> within your package repository will prompt you for the type of action you wish to add to it. There are, as of writing, three options.</p>
<div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb3-1">    <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">use_github_action</span>()</span>
<span id="cb3-2">    Which action do you want to add? (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span> to exit)</span>
<span id="cb3-3">    (See <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>https<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">//</span>github.com<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>r<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>lib<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>actions<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>tree<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>v2<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>examples<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> other options)</span>
<span id="cb3-4"></span>
<span id="cb3-5">    <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> check<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>standard<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> Run <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">R CMD check</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">`</span> on Linux, macOS, and Windows</span>
<span id="cb3-6">    <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> test<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>coverage<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> Compute test coverage and report to https<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">//</span>about.codecov.io</span>
<span id="cb3-7">    <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> pr<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>commands<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> Add <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>document and <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>style commands <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> pull requests</span></code></pre></div>
<p>Selecting one will write a file to <code>/.github/workflows/&lt;FILENAME&gt;.yaml</code> and then print out code to add a badge to your repository.</p>
<div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb4-1">Selection<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span>
<span id="cb4-2">    ✔ Adding <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'*.html'</span> to <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'.github/.gitignore'</span></span>
<span id="cb4-3">    ✔ Creating <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'.github/workflows/'</span></span>
<span id="cb4-4">    ✔ Saving <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'r-lib/actions/examples/check-standard.yaml@v2'</span> to <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'.github/workflows/R-CMD-check.yaml'</span></span>
<span id="cb4-5">    • Learn more at <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span>https<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">//</span>github.com<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>r<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>lib<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>actions<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>blob<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>v2<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>examples<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>README.md<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span>.</span>
<span id="cb4-6">    • Copy and paste the following lines into <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'README.Rmd'</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span></span>
<span id="cb4-7">      <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">&lt;</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!--</span> badges<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> start <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span></span>
<span id="cb4-8">      [<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span>[R<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>CMD<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>check](https<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">//</span>github.com<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>CUREd<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>Plus<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>cuRed<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>actions<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>workflows<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>R<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>CMD<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>check.yaml<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>badge.svg)](https<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span><span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">//</span>github.com<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>CUREd<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>Plus<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>cuRed<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>actions<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>workflows<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>R<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>CMD<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>check.yaml)</span>
<span id="cb4-9">      <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;!--</span> badges<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:</span> end <span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">-&gt;</span></span>
<span id="cb4-10">      [Copied to clipboard]</span></code></pre></div>
</section>
<section id="badges" class="level3">
<h3 class="anchored" data-anchor-id="badges">Badges</h3>
<p>Most of the GitHub Action functions described above include output that can be copy and pasted into <code>README.Rmd</code> to include badges in your GitHub front page. Again the <a href="https://usethis.r-lib.org/reference/badges.html" target="_blank">usethis</a> has you covered and can generate the necessary code for the different badges it supports.</p>
</section>
</section>
<section id="gotchas" class="level2">
<h2 class="anchored" data-anchor-id="gotchas">Gotchas</h2>
<p>When starting out I found that I regularly didn’t pass the <code>pre-commit</code> hooks first time. This can be jarring and confusing to start with but its not something to worry about, they are there to ensure your code and package meet the standards required. If you ever come to submit to <a href="https://cran.r-project.org" target="_blank">CRAN</a> you will be grateful to have adhered to these standards.</p>
<p>Below I detail common “gotchas” I encountered when developing the package, what they mean and how to resolve them.</p>
<section id="the-following-spelling-errors-were-found" class="level3">
<h3 class="anchored" data-anchor-id="the-following-spelling-errors-were-found"><code>The following spelling errors were found:</code></h3>
<p>The <code>spell-check</code> hook <em>will</em> fail if you’ve introduced new words that aren’t in standard dictionaries with messages similar to the those shown below. Sometimes these will be new words, sometimes they might be catching typos you have made. In the example below <code>famiy</code> should be <code>family</code> so you need to correct the source of the typo (and you’re told where this is, in this case it was line 27 of <code>CITATION.cff</code>), or if the new word should be added to the dictionary you will have to stage the updated <code>inst/WORDLIST</code> file for inclusion in your commit.</p>
<div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb5-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">spell-check..............................................................Failed</span></span>
<span id="cb5-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span> hook id: spell-check</span>
<span id="cb5-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span> exit code: 1</span>
<span id="cb5-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span> files were modified by this hook</span>
<span id="cb5-5"></span>
<span id="cb5-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">ℹ</span> Using R 4.3.1 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">lockfile</span> was generated with R 4.2.1<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb5-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">ℹ</span> Using R 4.3.1 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">lockfile</span> was generated with R 4.2.1<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb5-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">The</span> following spelling errors were found:</span>
<span id="cb5-9">  <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">WORD</span>    FOUND IN</span>
<span id="cb5-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">famiy</span>   CITATION.cff:27</span>
<span id="cb5-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">All</span> spelling errors found were copied to inst/WORDLIST assuming they were not spelling errors and will be ignored in the future. Please  review the above list and for each word that is an actual typo:</span>
<span id="cb5-12"> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span> fix it in the source code.</span>
<span id="cb5-13"> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span> remove it again manually from inst/WORDLIST to make sure it<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'s not</span></span>
<span id="cb5-14"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">   ignored in the future.</span></span>
<span id="cb5-15"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;"> Then, try committing again.</span></span>
<span id="cb5-16"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">Error: Spell check failed</span></span>
<span id="cb5-17"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">Execution halted</span></span></code></pre></div>
</section>
<section id="codemeta.json-is-out-of-date" class="level3">
<h3 class="anchored" data-anchor-id="codemeta.json-is-out-of-date"><code>! codemeta.json is out of date</code></h3>
<p>If you modify the <code>DESCRIPTION</code> or <code>CITATION.cff</code> then the <code>codemeta-description-updated</code> hook <em>will</em> fail with error messages similar to the following.</p>
<div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb6-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">codemeta-description-updated.............................................Failed</span></span>
<span id="cb6-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span> hook id: codemeta-description-updated</span>
<span id="cb6-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">-</span> exit code: 1</span>
<span id="cb6-4"></span>
<span id="cb6-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">ℹ</span> Using R 4.3.1 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">lockfile</span> was generated with R 4.2.1<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb6-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">ℹ</span> Using R 4.3.1 <span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">lockfile</span> was generated with R 4.2.1<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb6-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Error:</span></span>
<span id="cb6-8"><span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">! </span><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">codemeta.json</span> is out of date<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">;</span> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">please</span> re-run codemetar::write_codemeta<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">.</span></span>
<span id="cb6-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Backtrace:</span></span>
<span id="cb6-10">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">▆</span></span>
<span id="cb6-11"> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">1.</span> └─rlang::abort<span class="er" style="color: #AD0000;
background-color: null;
font-style: inherit;">(</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"codemeta.json is out of date; please re-run codemetar::write_codemeta()."</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">)</span></span>
<span id="cb6-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">Execution</span> halted</span></code></pre></div>
<p>This means yo need to update the <code>codemeta.json</code> with</p>
<div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb7-1">codemetar<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">write_codemeta</span>()</span></code></pre></div>
</section>
<section id="warning-undocumented-code-objects" class="level3">
<h3 class="anchored" data-anchor-id="warning-undocumented-code-objects"><code>Warning: Undocumented code objects:</code></h3>
<p>If this error arises its because there is a <code>.Rd</code> file missing. You can generate these by ensuring you have the appropriate docstring definition prior to your function and then use the <code>roxygen2::reoxygenise()</code> function to generate the documentation automatically. Don’t forget to <code>git stage</code> and <code>git commit</code> the files to your repository, pushing if needed (e.g.&nbsp;a Continuous Integration pipeline is failing).</p>
</section>
</section>
<section id="windows" class="level2">
<h2 class="anchored" data-anchor-id="windows">Windows</h2>
<p>I haven’t used Windows for about 23 years but I often have colleagues who do and that was the case with the R package that I have started developing so I needed to get all members of the team up and running with the <code>precommit</code> R package/pipeline.</p>
<p>Windows doesn’t come with Python by default, but <a href="https://pre-commit.com" target="_blank">pre-commit</a> is written in Python and so an environment is required in order to run the above pre-commit hooks. There are many options for this, including using <a href="https://learn.microsoft.com/en-us/windows/wsl/install" target="_blank">Windows Subsystem for Linux (WSL)</a>. I opted to try the solution provided in the <a href="https://cran.r-project.org/web/packages/precommit/vignettes/precommit.html" target="_blank">precommit vignette</a>. This shows how to use the <a href="https://rstudio.github.io/reticulate/" target="_blank">reticulate</a> package which acts as a glue between <a href="https://r-project.org" target="_blank">R</a> and <a href="https://python.org" target="_blank">Python</a>, to handle installing a <a href="https://docs.conda.io/en/latest/miniconda.html" target="_blank">Miniconda</a> environment and setting up <code>precommit</code>/<code>pre-commit</code>.</p>
<p>The following runs you through the things you need to install (R, RStudio, GitBash), setting up GitHub with <a href="https://ns-rse.github.io/#category=ssh" target="_blank">SSH</a> keys and enabling <code>precommit</code> for your R package locally.</p>
<section id="install-r" class="level3">
<h3 class="anchored" data-anchor-id="install-r">Install <a href="https://www.r-project.org" target="_blank">R</a></h3>
<p>When installing the defaults are fine, request admin permissions if required.</p>
</section>
<section id="install-rstudio" class="level3">
<h3 class="anchored" data-anchor-id="install-rstudio">Install <a href="https://posit.co/downloads/" target="_blank">Rstudio</a></h3>
<p>Defaults are fine, request admin permissions if required.</p>
</section>
<section id="install-gitbash" class="level3">
<h3 class="anchored" data-anchor-id="install-gitbash">Install <a href="https://git-scm.com/download/win" target="_blank">GitBash</a></h3>
<p>During installation you’ll be asked a number of questions, if you’re unsure how to respond to any of them the following provides guidance.</p>
<ol type="1">
<li><strong>Text Editor</strong> - Configure with your choice of editor, obviously you’ll want to have <a href="https://www.gnu.org/software/emacs/" target="_blank">Emacs</a> available and select that! <span class="emoji" data-emoji="wink">😉</span></li>
<li><strong>Adjust your PATH environment</strong> - At the bare minimum go with the <code>Recommended</code> option and allow <em>Git from the command line and also from 3rd-party software</em>. Optionally I would recommend the third option of <em>Use Git and optional UNIX tools from the Command Prompt</em>, particularly if you are either a) familiar with UNIX commands or b) not at all familiar with them (as you won’t have to re-learn the Windows commands, just learn the Bash commands they are more widely applicable).</li>
<li><strong>Use Bundled SSH library</strong> - Use the bundled SSH library.</li>
<li><strong>Use Bundled OpenSSL library</strong> - Use the bundled OpenSSL library.</li>
<li><strong>Checkout Windows-style, commit Unix-style line endings</strong> - This is fine, it just changes the internal representation of the carriage return to be more universal.</li>
<li><strong>Use MinTTY</strong> - The default terminal of MSYS2 is fine and more functional than the Windows’ default console window.</li>
<li><strong>Default Merge behaviour</strong> - The default (fast-forward or merge) this is fine.</li>
<li><strong>Choose a credential helper</strong> - Select <em>None</em> here, we will let RStudio manage these.</li>
<li><strong>Configure Extra Options</strong> - Defaults are fine.</li>
<li><strong>Configuring experimental options</strong> - No need to enable any of these.</li>
</ol>
<section id="configure-git" class="level4">
<h4 class="anchored" data-anchor-id="configure-git">Configure Git</h4>
<p>Start a GitBash shell and configure your email address and name.</p>
<div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb8-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> config <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--global</span> user.email <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"you@example.com"</span></span>
<span id="cb8-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">git</span> config <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">--global</span> user.name <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Your Name"</span></span></code></pre></div>
</section>
</section>
<section id="configure-rstudiogithub-with-ssh-keys" class="level3">
<h3 class="anchored" data-anchor-id="configure-rstudiogithub-with-ssh-keys">Configure RStudio/GitHub with SSH keys</h3>
<ol type="1">
<li>Start RStudio</li>
<li>Create SSH key - Navigate to <em>Tools &gt; General Options &gt; Git/SVN &gt; Create SSH Key</em> and under <em>SSH key type</em> select the default (<em>ED25519</em>) this is a <a href="https://blog.g3rt.nl/upgrade-your-ssh-keys.html" target="_blank">very secure elliptic curve algorithm</a> and is supported by GitHub. Use a secure password (i.e.&nbsp;long), do <strong>not</strong> change the location it is created at.</li>
<li>Once created select <em>View public key</em> and use <em>Ctrl + c</em> to copy this to your clipboard.</li>
<li>Navigate to <a href="https://github.com/" target="_blank">GitHub</a> and login then click on your avatar in the top right and select <em>Settings &gt; SSH and GPG keys &gt; New SSH Key</em>.</li>
<li>Give the key a name and paste into the box below where indicated/instructed then click on <em>Add SSH key</em>.</li>
</ol>
</section>
<section id="clone-repository" class="level3">
<h3 class="anchored" data-anchor-id="clone-repository">Clone Repository</h3>
<p>Its likely that you will have an existing repository that you wish to work on with this pipeline, if so you will have to clone it locally so you can work on it with the <code>precommit</code> pipeline. The following assumes you have added your SSH key to your GitHub account as described above.</p>
<ol type="1">
<li>Navigate to the repository you wish to clone (e.g.&nbsp;<a href="https://github.com/CUREd-Plus/cuRed/" target="_blank">https://github.com/CUREd-Plus/cuRed/</a>) and click on the <em>Code</em> button then select <em>SSH</em> under the <em>Local</em> tab in the box that appears.</li>
<li>Click on the box that has two small squares to the right of some text to copy the URL to clipboard.</li>
<li>Return to RStudio and start a new project with <em>File &gt; New Project &gt; Version Control &gt; Git</em> and paste the URL into the <em>Repository URL</em>. Select a location to clone to under <em>Create project as subdirectory of:</em>, e.g.&nbsp;<code>c:/Users/&lt;username&gt;/work/cuRed</code> (replacing <code>&lt;username&gt;</code> with <em>your</em> username).</li>
<li>If prompted for password enter it. If asked to answer <em>Yes\/No</em> answer <em>Yes</em> and then if prompted to <em>Store password for this session</em> answer <em>Yes</em>.</li>
<li>You should now have cloned the repository and have a project to work on.</li>
</ol>
</section>
<section id="install-pre-commit" class="level3">
<h3 class="anchored" data-anchor-id="install-pre-commit">Install <code>pre-commit</code></h3>
<p>As mentioned above <code>pre-commit</code> refers to two things, primarily it is the Python package <a href="https://pre-commit.com" target="_blank"><code>pre-commit</code></a> that does all the work of running Linting, Tests etc. before making commits. It also refers to an R package <a href="https://cran.r-project.org/web//packages/precommit/vignettes/precommit.html" target="_blank">precommit</a> (note the omission of the hyphen <code>-</code>) that works with the Python package to enable use of various R packages that carry out such checks. Because it is a Python package it needs a Python Virtual Environment to run. This may sound unfamiliar but don’t worry the R <code>precommit</code> package and documentation guides you through doing so, what follows is a rehash of the <a href="https://cran.r-project.org/web//packages/precommit/vignettes/precommit.html" target="_blank">official documentation</a>.</p>
<section id="install-precommit-and-reticulate" class="level4">
<h4 class="anchored" data-anchor-id="install-precommit-and-reticulate">Install <code>precommit</code> and <code>reticulate</code></h4>
<p>From RStudio install the <code>remotes</code> and <code>reticulate</code> package, then install the most recent version of <code>precommit</code> directly from GitHub.</p>
<div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb9-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">install.packages</span>(<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">c</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"remotes"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"reticulate"</span>))</span>
<span id="cb9-2">remotes<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">install_github</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"lorenzwalthert/precommit"</span>)</span></code></pre></div>
</section>
<section id="install-miniconda-environment" class="level4">
<h4 class="anchored" data-anchor-id="install-miniconda-environment">Install Miniconda environment</h4>
<p>You can now use <code>reticulate</code> to install a <a href="https://docs.conda.io/en/latest/miniconda.html" target="_blank">Miniconda</a> virtual environment framework for R to run Python packages (i.e.&nbsp;<code>pre-commit</code>).</p>
<div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb10-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">options</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">timeout=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">600</span>)</span>
<span id="cb10-2">reticulate<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">install_miniconda</span>()</span></code></pre></div>
</section>
<section id="install-pre-commit-framework" class="level4">
<h4 class="anchored" data-anchor-id="install-pre-commit-framework">Install <code>pre-commit</code> framework</h4>
<p>This step now installs the Python package <a href="https://pre-commit.com" target="_blank"><code>pre-commit</code></a> within a new Miniconda virtual environment (by default <code>r-precommit</code>). There will be a fair bit of output here as all the dependencies in Python for <code>pre-commit</code> are downloaded.</p>
<div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb11-1">precommit<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">install_precommit</span>()</span>
<span id="cb11-2">precommit<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">autoupdate</span>()</span></code></pre></div>
</section>
<section id="use-precommit-with-the-existing-project" class="level4">
<h4 class="anchored" data-anchor-id="use-precommit-with-the-existing-project">Use <code>precommit</code> with the existing project</h4>
<p>You should have cloned the repository you wish to enable <code>precommit</code> to use (see above). You now need to enable <code>precommit</code> for this local copy of the repository. This will place a script in <code>.git/hooks/pre-commit</code> that says which Miniconda environment to use (<code>r-precommit</code>) and will activate this whenever a commit is made, the <code>install_hooks = TRUE</code> ensures that the R specific hooks and their required environments are installed (under <code>\~/.config/pre-commit/</code>).</p>
<p>Make sure you have opened the <code>.Rproj</code> file in RStudio, this ensures you are within the project directory that you want to install <code>precommit</code> to (alternatively used <code>setwd()</code>).</p>
<div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode r code-with-copy"><code class="sourceCode r"><span id="cb12-1">precommit<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">::</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">use_precommit</span>(<span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">install_hooks =</span> <span class="cn" style="color: #8f5902;
background-color: null;
font-style: inherit;">TRUE</span>)</span></code></pre></div>
</section>
</section>
</section>
<section id="links" class="level2">
<h2 class="anchored" data-anchor-id="links">Links</h2>
<ul>
<li><a href="https://r-pkgs.org/" target="_blank">R Packages book by Hadley Wickham and Jenny Bryan</a></li>
<li><a href="https://happygitwithr.com" target="_blank">Happy Git and GitHub for the useR by Jenny Bryan</a></li>
</ul>
<section id="r-packages" class="level3">
<h3 class="anchored" data-anchor-id="r-packages">R Packages</h3>
<ul>
<li><a href="https://devtools.r-lib.org/" target="_blank">devtools</a></li>
<li><a href="https://usethis.r-lib.org" target="_blank">usethis</a></li>
<li><a href="https://roxygen2.r-lib.org/" target="_blank">roxygen2</a></li>
<li><a href="https://cran.r-project.org/web//packages/precommit/vignettes/precommit.html" target="_blank">R precommit</a></li>
<li>(<a href="https://github.com/lorenzwalthert/precommit" target="_blank">GitHub | lorenzwalthert/precommit</a> check the <a href="https://github.com/lorenzwalthert/precommit/issues" target="_blank">Issues</a>, can be useful for troubleshooting.</li>
</ul>
</section>
<section id="python" class="level3">
<h3 class="anchored" data-anchor-id="python">Python</h3>
<ul>
<li><a href="https://docs.conda.io/en/latest/miniconda.html" target="_blank">Miniconda</a></li>
</ul>
</section>
<section id="pre-commit-1" class="level3">
<h3 class="anchored" data-anchor-id="pre-commit-1">Pre-commit</h3>
<ul>
<li><a href="https://pre-commit.com" target="_blank">pre-commit</a></li>
<li><a href="https://pre-commit.ci" target="_blank">pre-commit.ci</a></li>
<li><a href="https://ns-rse.github.io/#category=pre-commit" target="_blank">ns-rse | pre-commit</a> blog posts I’ve made about <code>pre-commit</code>.</li>
</ul>



</section>
</section>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">

</div>
<div class="listing-no-matching d-none">
No matching items
</div>
</div><div id="quarto-appendix" class="default"><section class="quarto-appendix-contents" id="quarto-reuse"><h2 class="anchored quarto-appendix-heading">Reuse</h2><div class="quarto-appendix-contents"><div><a rel="license" href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></div></div></section><section class="quarto-appendix-contents" id="quarto-citation"><h2 class="anchored quarto-appendix-heading">Citation</h2><div><div class="quarto-appendix-secondary-label">BibTeX citation:</div><pre class="sourceCode code-with-copy quarto-appendix-bibtex"><code class="sourceCode bibtex">@online{shephard2023,
  author = {Shephard, Neil},
  title = {Pre-Commit and {R} {Packaging}},
  date = {2023-07-29},
  url = {https://blog.nshephard.dev/posts/pre-commit-r/},
  langid = {en}
}
</code></pre><div class="quarto-appendix-secondary-label">For attribution, please cite this work as:</div><div id="ref-shephard2023" class="csl-entry quarto-appendix-citeas">
Shephard, Neil. 2023. <span>“Pre-Commit and R Packaging.”</span> July
29, 2023. <a href="https://blog.nshephard.dev/posts/pre-commit-r/">https://blog.nshephard.dev/posts/pre-commit-r/</a>.
</div></div></section></div> ]]></description>
  <category>quarto</category>
  <category>R</category>
  <category>git</category>
  <category>pre-commit</category>
  <category>github actions</category>
  <guid>https://blog.nshephard.dev/posts/pre-commit-r/</guid>
  <pubDate>Sat, 29 Jul 2023 00:00:00 GMT</pubDate>
  <media:content url="https://live.staticflickr.com/65535/52985095726_49c5b394f1_k.jpg" medium="image" type="image/jpeg"/>
</item>
</channel>
</rss>
