From 95c82d0fd7360819874b4996501fbb57c5236b27 Mon Sep 17 00:00:00 2001 From: Martino Pizzol Date: Wed, 21 May 2014 08:40:39 +0200 Subject: [PATCH 01/17] Updated README Added a quick start example --- README.rst | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 3c1a370..b9daa81 100644 --- a/README.rst +++ b/README.rst @@ -14,13 +14,26 @@ .. _PyPI: https://pypi.python.org/pypi/dandelion-eu/ .. _ReadTheDocs: http://python-dandelion-eu.readthedocs.org/ - +.. _dandelion: https://dandelion.eu/accounts/register/?next=/ +.. _dandelion.eu: http://dandelion.eu/ python-dandelion ================ -Connect to the dandelion.eu API in a very pythonic way! +Bring the power of the dandelion.eu_ semantic and datagem API to your python applications and scripts! +Semantic in python couldn't be easier. + + +.. code-block:: py + + >>> from dandelion import DataTXT + >>> datatxt = DataTXT(app_id='YOUR_APP_ID', app_key='YOUR_APP_KEY') + >>> response = datatxt.nex('The doctor says an apple is better than an orange') + >>> for annotation in response.annotations: + print annotation + ... +Register on dandelion_ to obtain your authentication keys and enrich your application with our semantic intelligence. Installation ------------ From 24a3ade594881b346573f36a8050b67f20cdbe63 Mon Sep 17 00:00:00 2001 From: Stefano Parmesan Date: Wed, 26 Feb 2014 12:15:12 +0100 Subject: [PATCH 02/17] Update README.rst --- README.rst | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index b9daa81..eca5421 100644 --- a/README.rst +++ b/README.rst @@ -1,14 +1,16 @@ -.. image:: https://travis-ci.org/SpazioDati/python-dandelion-eu.png?branch=master +.. image:: https://travis-ci.org/SpazioDati/python-dandelion-eu.png?branch=develop :target: https://travis-ci.org/SpazioDati/python-dandelion-eu -.. image:: https://coveralls.io/repos/SpazioDati/python-dandelion-eu/badge.png?branch=master - :target: https://coveralls.io/r/SpazioDati/python-dandelion-eu?branch=master +.. image:: https://coveralls.io/repos/SpazioDati/python-dandelion-eu/badge.png?branch=develop + :target: https://coveralls.io/r/SpazioDati/python-dandelion-eu?branch=develop -.. image:: https://pypip.in/v/dandelion-eu/badge.png +.. + image:: https://pypip.in/v/dandelion-eu/badge.png :target: https://crate.io/packages/dandelion-eu/ :alt: Latest PyPI version -.. image:: https://pypip.in/d/dandelion-eu/badge.png +.. + image:: https://pypip.in/d/dandelion-eu/badge.png :target: https://crate.io/packages/dandelion-eu/ :alt: Number of PyPI downloads @@ -17,8 +19,8 @@ .. _dandelion: https://dandelion.eu/accounts/register/?next=/ .. _dandelion.eu: http://dandelion.eu/ -python-dandelion -================ +python-dandelion-eu +=================== Bring the power of the dandelion.eu_ semantic and datagem API to your python applications and scripts! Semantic in python couldn't be easier. From e1fba0297abb4d7fb8a341e97169525f2997fbd1 Mon Sep 17 00:00:00 2001 From: Stefano Parmesan Date: Sat, 22 Mar 2014 17:50:44 +0100 Subject: [PATCH 03/17] add support for GET/PUT/DELETE in BaseDandelionRequest --- dandelion/base.py | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/dandelion/base.py b/dandelion/base.py index b71f9b4..0d7caa1 100644 --- a/dandelion/base.py +++ b/dandelion/base.py @@ -65,7 +65,7 @@ def __init__(self, **kwargs): if self.REQUIRE_AUTH and not self.app_key: raise MissingParameterException("app_key") - def do_request(self, params, extra_url='', **kwargs): + def do_request(self, params, method='post', extra_url='', **kwargs): if self.REQUIRE_AUTH: params['$app_id'] = self.app_id params['$app_key'] = self.app_key @@ -73,13 +73,13 @@ def do_request(self, params, extra_url='', **kwargs): url = self.uri + ''.join('/' + x for x in extra_url) cache_key = self.cache.get_key_for( - url=url, params=params, + url=url, params=params, method=method ) if self.cache.contains_key(cache_key): response = self.cache.get(cache_key) else: - response = self._do_raw_request(url, params, **kwargs) + response = self._do_raw_request(url, params, method, **kwargs) if response.ok: self.cache.set(cache_key, response) @@ -96,16 +96,15 @@ def _get_uri(self, host=None): base_uri, '/'.join(self._get_uri_tokens()) ) - def _do_raw_request(self, url, params, **kwargs): + def _do_raw_request(self, url, params, method, **kwargs): from dandelion import __version__ - - headers = kwargs.pop('headers', {}) - headers['User-Agent'] = headers.get( + kwargs['data' if method in ('post', 'put') else 'params'] = params + kwargs['url'] = url + kwargs['headers'] = kwargs.pop('headers', {}) + kwargs['headers']['User-Agent'] = kwargs['headers'].get( 'User-Agent', 'python-dandelion-eu/' + __version__ ) - return self.requests.post( - url=url, data=params, headers=headers, **kwargs - ) + return self.requests.post(**kwargs) def _get_uri_tokens(self): raise NotImplementedError From 7c895536d3cd58caf6fdc6ac4e61ada805a5e984 Mon Sep 17 00:00:00 2001 From: Stefano Parmesan Date: Sat, 22 Mar 2014 18:02:32 +0100 Subject: [PATCH 04/17] fix tests, and use GET for connecting to the dataGEM data API --- dandelion/base.py | 4 ++-- dandelion/datagem.py | 7 +------ tests/base.py | 5 +++-- tests/cache/base.py | 2 +- 4 files changed, 7 insertions(+), 11 deletions(-) diff --git a/dandelion/base.py b/dandelion/base.py index 0d7caa1..79ef763 100644 --- a/dandelion/base.py +++ b/dandelion/base.py @@ -65,7 +65,7 @@ def __init__(self, **kwargs): if self.REQUIRE_AUTH and not self.app_key: raise MissingParameterException("app_key") - def do_request(self, params, method='post', extra_url='', **kwargs): + def do_request(self, params, extra_url='', method='post', **kwargs): if self.REQUIRE_AUTH: params['$app_id'] = self.app_id params['$app_key'] = self.app_key @@ -104,7 +104,7 @@ def _do_raw_request(self, url, params, method, **kwargs): kwargs['headers']['User-Agent'] = kwargs['headers'].get( 'User-Agent', 'python-dandelion-eu/' + __version__ ) - return self.requests.post(**kwargs) + return getattr(self.requests, method)(**kwargs) def _get_uri_tokens(self): raise NotImplementedError diff --git a/dandelion/datagem.py b/dandelion/datagem.py index 6bf57a5..d15fa5c 100644 --- a/dandelion/datagem.py +++ b/dandelion/datagem.py @@ -29,11 +29,6 @@ def objects(self): ) return DatagemManager(self) - def _do_raw_request(self, url, params, **kwargs): - return self.requests.get( - url=url, params=params, **kwargs - ) - class DatagemManager(object): """ an object responsible for retrieving data form a datagem @@ -90,7 +85,7 @@ def __iter__(self): self.PAGINATE_BY, actual_limit or self.PAGINATE_BY ) params['$offset'] = offset - response = self.datagem.do_request(params) + response = self.datagem.do_request(params, method='get') for obj in response['items']: if returned % self._step == 0: diff --git a/tests/base.py b/tests/base.py index 4e8c899..b51950b 100644 --- a/tests/base.py +++ b/tests/base.py @@ -116,7 +116,8 @@ def test_authentication_required(self): _do_raw_request.assert_called_once_with( 'https://api.dandelion.eu', - {'foo': 'bar', '$app_id': 'aa', '$app_key': 'bb'} + {'foo': 'bar', '$app_id': 'aa', '$app_key': 'bb'}, + 'post' ) def test_authentication_not_required(self): @@ -127,5 +128,5 @@ def test_authentication_not_required(self): obj.do_request(params=dict(foo='bar')) _do_raw_request.assert_called_once_with( - 'https://api.dandelion.eu', dict(foo='bar') + 'https://api.dandelion.eu', dict(foo='bar'), 'post' ) diff --git a/tests/cache/base.py b/tests/cache/base.py index 41722c6..f93fdef 100644 --- a/tests/cache/base.py +++ b/tests/cache/base.py @@ -32,7 +32,7 @@ def do_request(self, *args, **kwargs): *args, **kwargs ) - def _do_raw_request(self, url, params, **kwargs): + def _do_raw_request(self, url, params, method, **kwargs): self.last_cache_status = 'miss' return FakeResponse(ok=True, content=json.dumps( dict(url=url, params=params) From 47a55d75917b635eb0b3ac8c52973878196955bc Mon Sep 17 00:00:00 2001 From: Stefano Parmesan Date: Wed, 28 May 2014 12:23:17 +0200 Subject: [PATCH 05/17] add ability to fetch the datagem version --- dandelion/datagem.py | 19 +++++++++++++++++++ docs/datagem.rst | 13 +++++++++++++ tests/datagem.py | 11 +++++++++++ 3 files changed, 43 insertions(+) diff --git a/dandelion/datagem.py b/dandelion/datagem.py index d15fa5c..a711e33 100644 --- a/dandelion/datagem.py +++ b/dandelion/datagem.py @@ -13,11 +13,18 @@ class Datagem(BaseDandelionRequest): def __init__(self, uid, **kwargs): self.uid = uid + self._version = None super(Datagem, self).__init__(**kwargs) def _get_uri_tokens(self): return 'datagem', self.uid, 'data/v1' + @property + def version(self): + if self._version is None: + self._version = self.items.meta['version'] + return self._version + @property def items(self): return DatagemManager(self) @@ -39,6 +46,7 @@ def __init__(self, datagem): self.datagem = datagem self.params = {} self._step = 1 + self._meta = None def where(self, **kwargs): if not kwargs: @@ -86,6 +94,10 @@ def __iter__(self): ) params['$offset'] = offset response = self.datagem.do_request(params, method='get') + self._meta = { + 'version': response['datagem-version'], + 'count': response['count'] + } for obj in response['items']: if returned % self._step == 0: @@ -151,3 +163,10 @@ def _parse_single_filter(key, value): key = '.'.join(tokens[:key_last_index]) return '{} {} {}'.format(key, operator, value) + + @property + def meta(self): + if self._meta is None: + # this will send a request and populate the metadata + list(self.select('acheneID')[:1]) + return dict(self._meta) # return a copy of the metadata diff --git a/docs/datagem.rst b/docs/datagem.rst index 9e12b46..6ee10ec 100644 --- a/docs/datagem.rst +++ b/docs/datagem.rst @@ -130,3 +130,16 @@ Sorting is easy as everything else, with the ``order`` method:: http://dandelion.eu/resource/fffb71883dbeaf8511f58a6d5260c5cb1c52be74 http://dandelion.eu/resource/fffb636f2df4a5be30e3d56da3df2dc388a534a5 http://dandelion.eu/resource/fffacd9ff1bdaca8107642a1048be2bef5796a53 + + +Get the datagem version +----------------------- + +Each datagem comes with a version that can be used to check whether the +data changed from the last query. This is available on the datagem itself: + + >>> d.version + 'b882dee6af3597804f2ed48bd27da798d3f114e6' + +Please notice that calling ``d.version`` will effectively submit a query +to dandelion.eu, but the version itself will be cached for future calls. diff --git a/tests/datagem.py b/tests/datagem.py index cff6da8..bb30feb 100644 --- a/tests/datagem.py +++ b/tests/datagem.py @@ -3,6 +3,7 @@ import os import warnings from unittest import TestCase +from datetime import datetime from dandelion import Datagem, default_config, DandelionException from dandelion.datagem import DatagemManager @@ -233,6 +234,16 @@ def test_negative_index(self): "Negative indexes are not supported" ) + def test_version(self): + now = datetime.now() + self.assertIsNotNone(self.datagem.version) + self.assertGreater((datetime.now() - now).total_seconds(), 0.3) + self.assertLess((datetime.now() - now).total_seconds(), 1.0) + + now = datetime.now() + self.assertEqual(len(self.datagem.version), 40) + self.assertLess((datetime.now() - now).total_seconds(), 0.01) + class TestDeprecatedCode(TestDatagemBase): def test_objects(self): From d682b487bdc59ad2e85a4997cbf0ffd97d3ebbf1 Mon Sep 17 00:00:00 2001 From: Stefano Parmesan Date: Wed, 28 May 2014 12:24:09 +0200 Subject: [PATCH 06/17] update version to 0.2.2 --- dandelion/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dandelion/__init__.py b/dandelion/__init__.py index 2750a72..5dbc670 100644 --- a/dandelion/__init__.py +++ b/dandelion/__init__.py @@ -5,5 +5,5 @@ from dandelion.datagem import Datagem from dandelion.datatxt import DataTXT -__version__ = '0.2.1' +__version__ = '0.2.2' default_config = DandelionConfig() From c4194c53ba366c0d47b14efc24b47a03190e0c2a Mon Sep 17 00:00:00 2001 From: Stefano Parmesan Date: Wed, 28 May 2014 12:26:22 +0200 Subject: [PATCH 07/17] update badges --- README.rst | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index eca5421..fd59a1a 100644 --- a/README.rst +++ b/README.rst @@ -1,16 +1,14 @@ -.. image:: https://travis-ci.org/SpazioDati/python-dandelion-eu.png?branch=develop +.. image:: https://travis-ci.org/SpazioDati/python-dandelion-eu.png?branch=master :target: https://travis-ci.org/SpazioDati/python-dandelion-eu -.. image:: https://coveralls.io/repos/SpazioDati/python-dandelion-eu/badge.png?branch=develop +.. image:: https://coveralls.io/repos/SpazioDati/python-dandelion-eu/badge.png?branch=master :target: https://coveralls.io/r/SpazioDati/python-dandelion-eu?branch=develop -.. - image:: https://pypip.in/v/dandelion-eu/badge.png +.. image:: https://pypip.in/v/dandelion-eu/badge.png :target: https://crate.io/packages/dandelion-eu/ :alt: Latest PyPI version -.. - image:: https://pypip.in/d/dandelion-eu/badge.png +.. image:: https://pypip.in/d/dandelion-eu/badge.png :target: https://crate.io/packages/dandelion-eu/ :alt: Number of PyPI downloads From e2489a854bef68b252752f6c95d0ee5492075d3e Mon Sep 17 00:00:00 2001 From: Stefano Parmesan Date: Wed, 22 Apr 2015 14:56:49 +0200 Subject: [PATCH 08/17] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 32cfbf0..3199c9c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: python python: - '2.7' -- '3.2' - '3.3' +- '3.4' install: - pip install . - pip install -r requirements-dev.txt From 81d602c5749eed26cd54832f2d216bb5aa430ce2 Mon Sep 17 00:00:00 2001 From: Stefano Parmesan Date: Wed, 22 Apr 2015 14:57:01 +0200 Subject: [PATCH 09/17] Update base.py --- dandelion/cache/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dandelion/cache/base.py b/dandelion/cache/base.py index 1e06e01..678e3ef 100644 --- a/dandelion/cache/base.py +++ b/dandelion/cache/base.py @@ -16,7 +16,7 @@ def get_key_for(**kwargs): import six input_s = '' for key in sorted(kwargs): - input_s += '{}={},'.format(key, kwargs[key]) + input_s += u'{}={},'.format(key, kwargs[key]) if isinstance(input_s, six.text_type): input_s = input_s.encode('utf-8') return hashlib.sha1(input_s).hexdigest() From f9ce3b693b0818bb5d177b4771e2e29bf35858d5 Mon Sep 17 00:00:00 2001 From: Stefano Parmesan Date: Wed, 22 Apr 2015 16:06:50 +0200 Subject: [PATCH 10/17] Update .travis.yml --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3199c9c..5137795 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python python: - '2.7' - '3.3' -- '3.4' install: - pip install . - pip install -r requirements-dev.txt From 0b3f9ced469180605b3d4ed6627e347afdda88b0 Mon Sep 17 00:00:00 2001 From: ZarHenry96 Date: Wed, 9 May 2018 12:05:59 +0200 Subject: [PATCH 11/17] edit authentication system, which accepts token or app_id/app_key now --- .gitignore | 5 +++- dandelion/base.py | 63 ++++++++++++++++++++++++++++++++++++----------- 2 files changed, 53 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index 1976dae..c43ae01 100644 --- a/.gitignore +++ b/.gitignore @@ -39,4 +39,7 @@ nosetests.xml htmlcov coverage.xml -docs/_build \ No newline at end of file +docs/_build + +# Virtual Environment +venv/ diff --git a/dandelion/base.py b/dandelion/base.py index 79ef763..e7ca49b 100644 --- a/dandelion/base.py +++ b/dandelion/base.py @@ -14,7 +14,7 @@ class DandelionConfig(dict): """ class for storing the default dandelion configuration, such as authentication parameters """ - ALLOWED_KEYS = ['app_id', 'app_key'] + ALLOWED_KEYS = ['token','app_id', 'app_key'] def __setitem__(self, key, value): if not key in self.ALLOWED_KEYS: @@ -38,12 +38,16 @@ def __init__(self, dandelion_obj=None, **kwargs): class MissingParameterException(DandelionException): - code = 'error.missingParameter' - - def __init__(self, param_name): - self.data = {'parameter': param_name} + def __init__(self, mode): super(MissingParameterException, self).__init__( - 'Param "{}" is required'.format(param_name) + "To use the legacy authentication system you have to specify both 'app_id' and 'app_key'"+mode+"!" + ) + + +class TooManyParametersException(DandelionException): + def __init__(self, mode): + super(TooManyParametersException, self).__init__( + "Too many authentication parameters"+mode+", you have to specify 'token' OR 'app_id' and 'app_key'!" ) @@ -55,20 +59,51 @@ def __init__(self, **kwargs): import requests from dandelion import default_config self.uri = self._get_uri(host=kwargs.get('host')) - self.app_id = kwargs.get('app_id', default_config.get('app_id')) - self.app_key = kwargs.get('app_key', default_config.get('app_key')) self.requests = requests.session() self.cache = kwargs.get('cache', NoCache()) - if self.REQUIRE_AUTH and not self.app_id: - raise MissingParameterException("app_id") - if self.REQUIRE_AUTH and not self.app_key: - raise MissingParameterException("app_key") + if self.REQUIRE_AUTH: + self.auth = '' + + token = kwargs.get('token') + app_id = kwargs.get('app_id') + app_key = kwargs.get('app_key') + + if not self.__check_authentication_parameters(token, app_id, app_key,''): + token = default_config.get('token') + app_id = default_config.get('app_id') + app_key = default_config.get('app_key') + + if not self.__check_authentication_parameters(token, app_id, app_key,' (in default config)'): + raise DandelionException('You have to specify the authentication token OR the app_id and app_key!') + + def __check_authentication_parameters(self,token,app_id,app_key,mode): + if token: + if not app_id and not app_key: + self.auth = 'token' + self.token = token + return True + else: + raise TooManyParametersException(mode) + else: + if app_id and app_key: + self.auth = 'legacy' + self.app_id = app_id + self.app_key = app_key + return True + elif app_id or app_key: + raise MissingParameterException(mode) + return False def do_request(self, params, extra_url='', method='post', **kwargs): if self.REQUIRE_AUTH: - params['$app_id'] = self.app_id - params['$app_key'] = self.app_key + if self.auth == 'token': + params['token'] = self.token + elif self.auth == 'legacy': + params['$app_id'] = self.app_id + params['$app_key'] = self.app_key + else: + raise DandelionException('Error in authentication mechanism!') url = self.uri + ''.join('/' + x for x in extra_url) From 4601555f08fb79194a0d25bd7d939e17821716ae Mon Sep 17 00:00:00 2001 From: ZarHenry96 Date: Wed, 9 May 2018 15:20:08 +0200 Subject: [PATCH 12/17] style updates and test fixes --- dandelion/base.py | 34 ++++++++++++++++------------------ dandelion/datagem.py | 2 +- tests/base.py | 14 +++++++------- tests/datagem.py | 8 ++++---- tests/datatxt.py | 2 +- 5 files changed, 29 insertions(+), 31 deletions(-) diff --git a/dandelion/base.py b/dandelion/base.py index e7ca49b..1c9d037 100644 --- a/dandelion/base.py +++ b/dandelion/base.py @@ -1,23 +1,26 @@ """ base classes """ from __future__ import unicode_literals + +import requests + +from dandelion.cache.base import NoCache +from dandelion.utils import AttributeDict + try: import urlparse except ImportError: from urllib import parse as urlparse -from dandelion.cache.base import NoCache -from dandelion.utils import AttributeDict - class DandelionConfig(dict): """ class for storing the default dandelion configuration, such as authentication parameters """ - ALLOWED_KEYS = ['token','app_id', 'app_key'] + ALLOWED_KEYS = ['token', 'app_id', 'app_key'] def __setitem__(self, key, value): - if not key in self.ALLOWED_KEYS: + if key not in self.ALLOWED_KEYS: raise DandelionException('invalid config param: {}'.format(key)) super(DandelionConfig, self).__setitem__(key, value) @@ -40,14 +43,14 @@ def __init__(self, dandelion_obj=None, **kwargs): class MissingParameterException(DandelionException): def __init__(self, mode): super(MissingParameterException, self).__init__( - "To use the legacy authentication system you have to specify both 'app_id' and 'app_key'"+mode+"!" + 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\''+mode+'!' ) class TooManyParametersException(DandelionException): def __init__(self, mode): super(TooManyParametersException, self).__init__( - "Too many authentication parameters"+mode+", you have to specify 'token' OR 'app_id' and 'app_key'!" + 'Too many authentication parameters'+mode+', you have to specify \'token\' OR \'app_id\' and \'app_key\'!' ) @@ -55,29 +58,24 @@ class BaseDandelionRequest(object): DANDELION_HOST = 'api.dandelion.eu' REQUIRE_AUTH = True - def __init__(self, **kwargs): - import requests + def __init__(self, host=None, cache=NoCache(), token=None, app_id=None, app_key=None, **kwargs): from dandelion import default_config - self.uri = self._get_uri(host=kwargs.get('host')) + self.uri = self._get_uri(host=host) self.requests = requests.session() - self.cache = kwargs.get('cache', NoCache()) + self.cache = cache if self.REQUIRE_AUTH: self.auth = '' - token = kwargs.get('token') - app_id = kwargs.get('app_id') - app_key = kwargs.get('app_key') - - if not self.__check_authentication_parameters(token, app_id, app_key,''): + if not self._check_authentication_parameters(token, app_id, app_key, ''): token = default_config.get('token') app_id = default_config.get('app_id') app_key = default_config.get('app_key') - if not self.__check_authentication_parameters(token, app_id, app_key,' (in default config)'): + if not self._check_authentication_parameters(token, app_id, app_key, ' (in default config)'): raise DandelionException('You have to specify the authentication token OR the app_id and app_key!') - def __check_authentication_parameters(self,token,app_id,app_key,mode): + def _check_authentication_parameters(self, token, app_id, app_key, mode): if token: if not app_id and not app_key: self.auth = 'token' diff --git a/dandelion/datagem.py b/dandelion/datagem.py index a711e33..6c21972 100644 --- a/dandelion/datagem.py +++ b/dandelion/datagem.py @@ -4,7 +4,7 @@ import warnings -from dandelion.base import DandelionException, BaseDandelionRequest +from dandelion.base import BaseDandelionRequest, DandelionException class Datagem(BaseDandelionRequest): diff --git a/tests/base.py b/tests/base.py index b51950b..4f6e9b3 100644 --- a/tests/base.py +++ b/tests/base.py @@ -1,5 +1,5 @@ """ tests can be run from the root dir with: -clean-pyc && \ +clean-pyc && APP_ID= APP_KEY= coverage run --source=. --branch `which nosetests` tests/* &&\ coverage html """ @@ -8,7 +8,7 @@ from mock import patch -from dandelion import Datagem, DandelionException, DataTXT, default_config +from dandelion import DandelionException, Datagem, DataTXT, default_config from dandelion.base import BaseDandelionRequest from dandelion.utils import AttributeDict @@ -27,7 +27,7 @@ def test_can_set_app_id(self): Datagem('administrative-regions') self.assertEqual( - context.exception.message, 'Param "app_key" is required' + context.exception.message, 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\' (in default config)!' ) def test_can_set_app_key(self): @@ -37,20 +37,20 @@ def test_can_set_app_key(self): Datagem('administrative-regions') self.assertEqual( - context.exception.message, 'Param "app_id" is required' + context.exception.message, 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\' (in default config)!' ) def test_can_authenticate(self): with self.assertRaises(DandelionException) as context: Datagem('administrative-regions') self.assertEqual( - context.exception.message, 'Param "app_id" is required' + context.exception.message, 'You have to specify the authentication token OR the app_id and app_key!' ) with self.assertRaises(DandelionException) as context: DataTXT() self.assertEqual( - context.exception.message, 'Param "app_id" is required' + context.exception.message, 'You have to specify the authentication token OR the app_id and app_key!' ) default_config['app_id'] = os.environ['APP_ID'] @@ -103,7 +103,7 @@ def test_authentication_required(self): self._make_class(require_auth=True, implement_abstract=True)() self.assertEqual( - context.exception.message, 'Param "app_id" is required' + context.exception.message, 'You have to specify the authentication token OR the app_id and app_key!' ) obj = self._make_class(require_auth=True, implement_abstract=True)( diff --git a/tests/datagem.py b/tests/datagem.py index bb30feb..178c20b 100644 --- a/tests/datagem.py +++ b/tests/datagem.py @@ -2,10 +2,10 @@ import os import warnings -from unittest import TestCase from datetime import datetime +from unittest import TestCase -from dandelion import Datagem, default_config, DandelionException +from dandelion import DandelionException, Datagem, default_config from dandelion.datagem import DatagemManager @@ -32,7 +32,7 @@ def test_select_multiple(self): acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') ): self.assertEqual( - item, dict(name='Trento', population={'2011': 114063}) + item, dict(name='Trento', population={"2001": None, "2011": 114063}) ) def test_select_concat(self): @@ -41,7 +41,7 @@ def test_select_concat(self): acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') ): self.assertEqual( - item, dict(population={'2011': 114063}) + item, dict(population={"2001": None, "2011": 114063}) ) def test_select_empty(self): diff --git a/tests/datatxt.py b/tests/datatxt.py index c8f0091..5a71c89 100644 --- a/tests/datatxt.py +++ b/tests/datatxt.py @@ -3,7 +3,7 @@ import os from unittest import TestCase -from dandelion import DataTXT, default_config, DandelionException +from dandelion import DandelionException, DataTXT, default_config class TestDatatxt(TestCase): From 0ae65d019e8f2dc354677e4eb0f4d0c2caf0e72e Mon Sep 17 00:00:00 2001 From: ZarHenry96 Date: Wed, 9 May 2018 16:25:55 +0200 Subject: [PATCH 13/17] add top_entities parameter validation --- dandelion/base.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dandelion/base.py b/dandelion/base.py index 1c9d037..e0514d2 100644 --- a/dandelion/base.py +++ b/dandelion/base.py @@ -103,6 +103,10 @@ def do_request(self, params, extra_url='', method='post', **kwargs): else: raise DandelionException('Error in authentication mechanism!') + top_ents = params.get('top_entities') + if top_ents is not None and (not isinstance(top_ents,(int,long)) or top_ents < 0): + raise DandelionException('The \'top-entities\' parameter must be an integer greater than or equal to 0') + url = self.uri + ''.join('/' + x for x in extra_url) cache_key = self.cache.get_key_for( From d6322d7211230502fc9b38c50109f9b4294c76ff Mon Sep 17 00:00:00 2001 From: ZarHenry96 Date: Thu, 10 May 2018 09:58:05 +0200 Subject: [PATCH 14/17] add parameters validation for DataTXT API and support for Sentiment API, delete useless Exception classes --- dandelion/__init__.py | 1 + dandelion/base.py | 24 ++---------------------- dandelion/datatxt.py | 13 +++++++++---- dandelion/sentiment.py | 19 +++++++++++++++++++ 4 files changed, 31 insertions(+), 26 deletions(-) create mode 100644 dandelion/sentiment.py diff --git a/dandelion/__init__.py b/dandelion/__init__.py index 5dbc670..116f9eb 100644 --- a/dandelion/__init__.py +++ b/dandelion/__init__.py @@ -4,6 +4,7 @@ from dandelion.base import DandelionException, DandelionConfig from dandelion.datagem import Datagem from dandelion.datatxt import DataTXT +from dandelion.sentiment import Sentiment __version__ = '0.2.2' default_config = DandelionConfig() diff --git a/dandelion/base.py b/dandelion/base.py index e0514d2..b51a4e4 100644 --- a/dandelion/base.py +++ b/dandelion/base.py @@ -35,25 +35,9 @@ def __init__(self, dandelion_obj=None, **kwargs): self.data = dandelion_obj.data else: self.message = "{}".format(dandelion_obj) - self.code = kwargs.get('code') - self.data = kwargs.get('data') super(DandelionException, self).__init__(self.message) -class MissingParameterException(DandelionException): - def __init__(self, mode): - super(MissingParameterException, self).__init__( - 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\''+mode+'!' - ) - - -class TooManyParametersException(DandelionException): - def __init__(self, mode): - super(TooManyParametersException, self).__init__( - 'Too many authentication parameters'+mode+', you have to specify \'token\' OR \'app_id\' and \'app_key\'!' - ) - - class BaseDandelionRequest(object): DANDELION_HOST = 'api.dandelion.eu' REQUIRE_AUTH = True @@ -82,7 +66,7 @@ def _check_authentication_parameters(self, token, app_id, app_key, mode): self.token = token return True else: - raise TooManyParametersException(mode) + raise DandelionException('Too many authentication parameters'+mode+', you have to specify \'token\' OR \'app_id\' and \'app_key\'!') else: if app_id and app_key: self.auth = 'legacy' @@ -90,7 +74,7 @@ def _check_authentication_parameters(self, token, app_id, app_key, mode): self.app_key = app_key return True elif app_id or app_key: - raise MissingParameterException(mode) + raise DandelionException('To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\''+mode+'!') return False def do_request(self, params, extra_url='', method='post', **kwargs): @@ -103,10 +87,6 @@ def do_request(self, params, extra_url='', method='post', **kwargs): else: raise DandelionException('Error in authentication mechanism!') - top_ents = params.get('top_entities') - if top_ents is not None and (not isinstance(top_ents,(int,long)) or top_ents < 0): - raise DandelionException('The \'top-entities\' parameter must be an integer greater than or equal to 0') - url = self.uri + ''.join('/' + x for x in extra_url) cache_key = self.cache.get_key_for( diff --git a/dandelion/datatxt.py b/dandelion/datatxt.py index be173dd..5762499 100644 --- a/dandelion/datatxt.py +++ b/dandelion/datatxt.py @@ -1,16 +1,21 @@ """ classes for querying the dataTXT family """ from dandelion.base import BaseDandelionRequest +from dandelion.base import DandelionException class DataTXT(BaseDandelionRequest): """ class for accessing the dataTXT family """ - def nex(self, text, **params): - if 'min_confidence' not in params: - params['min_confidence'] = 0.6 + def nex(self, text, top_entities=None, min_confidence=None, **params): + if top_entities is not None and (not isinstance(top_entities, (int, long)) or top_entities < 0): + raise DandelionException('The \'top-entities\' parameter must be an integer greater than or equal to 0') + + if min_confidence is not None and (not isinstance(min_confidence,float) or min_confidence < 0.0 or min_confidence > 1.0): + raise DandelionException('The \'top-entities\' parameter must be a float between 0.0 and 1.0') + return self.do_request( - dict(params, text=text), ('nex', 'v1') + dict(params, text=text, top_entities=top_entities, min_confidence=min_confidence), ('nex', 'v1') ) def sim(self, text1, text2, **params): diff --git a/dandelion/sentiment.py b/dandelion/sentiment.py new file mode 100644 index 0000000..fc35eb3 --- /dev/null +++ b/dandelion/sentiment.py @@ -0,0 +1,19 @@ +""" classes for querying the Sentiment family +""" +from dandelion.base import BaseDandelionRequest +from dandelion.base import DandelionException + + +class Sentiment(BaseDandelionRequest): + """ class for accessing the Sentiment family + """ + def sent(self, text, lang=None, **params): + if lang is not None and lang not in ['en','it','auto']: + raise DandelionException('Illegal \'lang\' parameter value!') + + return self.do_request( + dict(params, text=text, lang=lang), ('sent', 'v1') + ) + + def _get_uri_tokens(self): + return 'datatxt', \ No newline at end of file From 2c1117ef4d5385a289a5b27020e85fd7e29e6e6b Mon Sep 17 00:00:00 2001 From: ZarHenry96 Date: Thu, 10 May 2018 10:15:46 +0200 Subject: [PATCH 15/17] fix code style --- dandelion/datatxt.py | 5 ++--- dandelion/sentiment.py | 7 +++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/dandelion/datatxt.py b/dandelion/datatxt.py index 5762499..f04f47e 100644 --- a/dandelion/datatxt.py +++ b/dandelion/datatxt.py @@ -1,7 +1,6 @@ """ classes for querying the dataTXT family """ -from dandelion.base import BaseDandelionRequest -from dandelion.base import DandelionException +from dandelion.base import BaseDandelionRequest, DandelionException class DataTXT(BaseDandelionRequest): @@ -11,7 +10,7 @@ def nex(self, text, top_entities=None, min_confidence=None, **params): if top_entities is not None and (not isinstance(top_entities, (int, long)) or top_entities < 0): raise DandelionException('The \'top-entities\' parameter must be an integer greater than or equal to 0') - if min_confidence is not None and (not isinstance(min_confidence,float) or min_confidence < 0.0 or min_confidence > 1.0): + if min_confidence is not None and (not isinstance(min_confidence, float) or min_confidence < 0.0 or min_confidence > 1.0): raise DandelionException('The \'top-entities\' parameter must be a float between 0.0 and 1.0') return self.do_request( diff --git a/dandelion/sentiment.py b/dandelion/sentiment.py index fc35eb3..6ce418f 100644 --- a/dandelion/sentiment.py +++ b/dandelion/sentiment.py @@ -1,14 +1,13 @@ """ classes for querying the Sentiment family """ -from dandelion.base import BaseDandelionRequest -from dandelion.base import DandelionException +from dandelion.base import BaseDandelionRequest, DandelionException class Sentiment(BaseDandelionRequest): """ class for accessing the Sentiment family """ def sent(self, text, lang=None, **params): - if lang is not None and lang not in ['en','it','auto']: + if lang is not None and lang not in ['en', 'it', 'auto']: raise DandelionException('Illegal \'lang\' parameter value!') return self.do_request( @@ -16,4 +15,4 @@ def sent(self, text, lang=None, **params): ) def _get_uri_tokens(self): - return 'datatxt', \ No newline at end of file + return 'datatxt', From 7520275f0b875b4e64161f4ff5f2a90c820072db Mon Sep 17 00:00:00 2001 From: ZarHenry96 Date: Thu, 10 May 2018 14:57:38 +0200 Subject: [PATCH 16/17] add docs for Sentiment, edit docs about authentication --- README.rst | 10 +++++----- dandelion/sentiment.py | 4 ++-- docs/base.rst | 38 +++++++++++++++++++++++++++++++++----- docs/datagem.rst | 6 ++++-- docs/datatxt.rst | 14 ++++++-------- docs/index.rst | 1 + docs/sentiment.rst | 25 +++++++++++++++++++++++++ 7 files changed, 76 insertions(+), 22 deletions(-) create mode 100644 docs/sentiment.rst diff --git a/README.rst b/README.rst index 7d67075..1e69719 100644 --- a/README.rst +++ b/README.rst @@ -22,22 +22,22 @@ python-dandelion-eu =================== -=================== -======= -Bring the power of the dandelion.eu_ semantic and datagem API to your python applications and scripts! +Bring the power of the dandelion.eu_ Datagem, DataTXT and Sentiment API to your python applications and scripts! Semantic in python couldn't be easier. .. code-block:: py >>> from dandelion import DataTXT - >>> datatxt = DataTXT(app_id='YOUR_APP_ID', app_key='YOUR_APP_KEY') + >>> datatxt = DataTXT(token='YOUR_TOKEN') >>> response = datatxt.nex('The doctor says an apple is better than an orange') >>> for annotation in response.annotations: print annotation ... -Register on dandelion_ to obtain your authentication keys and enrich your application with our semantic intelligence. +Register on dandelion_ to obtain your authentication token and enrich your application with our semantic intelligence. + +NOTE: the client still supports the legacy authentication system through ``app_id`` and ``app_key``. Installation ------------ diff --git a/dandelion/sentiment.py b/dandelion/sentiment.py index 6ce418f..8b53ce6 100644 --- a/dandelion/sentiment.py +++ b/dandelion/sentiment.py @@ -1,10 +1,10 @@ -""" classes for querying the Sentiment family +""" classes for querying the Sentiment API """ from dandelion.base import BaseDandelionRequest, DandelionException class Sentiment(BaseDandelionRequest): - """ class for accessing the Sentiment family + """ class for accessing the Sentiment API """ def sent(self, text, lang=None, **params): if lang is not None and lang not in ['en', 'it', 'auto']: diff --git a/docs/base.rst b/docs/base.rst index 799734f..4127605 100644 --- a/docs/base.rst +++ b/docs/base.rst @@ -10,26 +10,54 @@ For specific documentation on each service, please refer to their page. Authentication -------------- Most (all?) of the dandelion.eu_ services require authentication. You can -find your authentication keys on your dashboard_ and pass them to the class +find your authentication token on your dashboard_ and pass it to the class constructor, for example:: >>> from dandelion import Datagem >>> administrative_regions = Datagem('administrative-regions', - ... app_id='24cxxxx', - ... app_key='8697xxxx8b99xxxxeecbxxxxb163xxxx') + ... token='7682xxxxxeh2nb2v2mxxxxxxxjh9sbxxxx') If you need to instantiate more services, you can specify your authentication -keys just once using ``dandelion.default_config``:: +token just once using ``dandelion.default_config`` :: + + >>> from dandelion import default_config + >>> default_config['token'] = '7682xxxxxeh2nb2v2mxxxxxxxjh9sbxxxx' + + >>> from dandelion import DataTXT, Datagem, Sentiment + >>> datatxt = DataTXT() + >>> administrative_regions = Datagem('administrative-regions') + >>> sentiment = Sentiment() + +Legacy authentication system +---------------------------- +The client still supports authentication through ``$app_id`` and ``$app_key`` . +The use is the same as for the token: you can pass ``app_id`` and ``app_key`` +to the class contructor or specify them once using ``dandelion.default_config`` :: + + >>> from dandelion import Datagem + >>> administrative_regions = Datagem('administrative-regions', + ... app_id='24cxxxx', + ... app_key='8697xxxx8b99xxxxeecbxxxxb163xxxx') + + OR >>> from dandelion import default_config >>> default_config['app_id'] = '24cxxxx' >>> default_config['app_key'] = '8697xxxx8b99xxxxeecbxxxxb163xxxx' - >>> from dandelion import DataTXT, Datagem + >>> from dandelion import DataTXT, Datagem, Sentiment >>> datatxt = DataTXT() >>> administrative_regions = Datagem('administrative-regions') + >>> sentiment = Sentiment() + +Notes on authentication +----------------------- +You have to specify the ``token`` OR the pair (``app_id``, ``app_key``): if you specify +them both, the client will raise an exception. +Moreover, the client will use what is stored in ``default_config`` only if you +don't pass anything to the class constructor. Caching your queries -------------------- diff --git a/docs/datagem.rst b/docs/datagem.rst index 6ee10ec..47e8841 100644 --- a/docs/datagem.rst +++ b/docs/datagem.rst @@ -9,7 +9,8 @@ Get entities Retrieving entities from dandelion is easy, just instantiate a datagem and iterate; pagination is implemented automatically for you, so don't worry and just get data:: >>> from dandelion import Datagem - >>> d = Datagem('administrative-regions') + >>> d = Datagem('administrative-regions', + ... token='7682xxxxxeh2nb2v2mxxxxxxxjh9sbxxxx') >>> for obj in d.items[:10]: ... print(obj.acheneID) ... @@ -31,7 +32,8 @@ Select fields If you want to reduce the network load, you can retrieve only the fields you will actually use with ``select``:: >>> from dandelion import Datagem - >>> d = Datagem('administrative-regions') + >>> d = Datagem('administrative-regions', + ... token='7682xxxxxeh2nb2v2mxxxxxxxjh9sbxxxx') >>> for obj in d.items.select('acheneID')[:10]: ... print(obj) ... diff --git a/docs/datatxt.rst b/docs/datatxt.rst index dcab68e..726c1c0 100644 --- a/docs/datatxt.rst +++ b/docs/datatxt.rst @@ -1,7 +1,5 @@ -:title: - The dataTXT API - .. _SpazioDati: http://www.spaziodati.eu +.. _check here which ones are supported: https://dandelion.eu/docs/api/datatxt/nex/v1/#param-lang .. _dataTXT-NEX documentation on dandelion.eu: https://dandelion.eu/docs/api/datatxt/nex/v1/ .. _dataTXT-SIM documentation on dandelion.eu: https://dandelion.eu/docs/api/datatxt/sim/v1/ .. _dataTXT-LI documentation on dandelion.eu: https://dandelion.eu/docs/api/datatxt/li/v1/ @@ -13,16 +11,16 @@ dataTXT is a family of semantic services developed by SpazioDati_. All its methods are available in the same class:: >>> from dandelion import DataTXT - >>> datatxt = DataTXT(app_id='', app_key='') + >>> datatxt = DataTXT(token='') NEX: Named Entity Extraction ---------------------------- dataTXT-NEX is a named entity extraction & linking API that performs very well even on short texts, on which many other similar services do not. dataTXT-NEX -currently works on Italian and English texts. With this API you will be able -to automatically tag your texts, extracting Wikipedia entities and enriching -your data. +currently works on various languages (`check here which ones are supported`_). +With this API you will be able to automatically tag your texts, extracting Wikipedia +entities and enriching your data. You can extract annotated entities with:: @@ -42,7 +40,7 @@ Additional parameters can be specified simply by:: 'http://dbpedia.org/resource/Open_source'] Check out the `dataTXT-NEX documentation on dandelion.eu`_ for more information -about what can be done with NEX. +about what can be done with NEX (in particular see the ``top_entities`` parameter!). SIM: Text Similarity diff --git a/docs/index.rst b/docs/index.rst index 4d35e28..4c278ca 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -28,3 +28,4 @@ Contents base datatxt datagem + sentiment diff --git a/docs/sentiment.rst b/docs/sentiment.rst new file mode 100644 index 0000000..eb55cfe --- /dev/null +++ b/docs/sentiment.rst @@ -0,0 +1,25 @@ +.. _Sentiment Analysis API documentation on dandelion.eu: https://dandelion.eu/docs/api/datatxt/sent/v1/ + +The Sentiment Analysis API +=========================== + +The Sentiment API analyses a text and tells whether the expressed opinion is positive, +negative, or neutral. Given a short sentence, it returns a label representing the +identified sentiment, along with a numeric score ranging from stronglypositive (1.0) +to extremely negative (-1.0). It currently works on texts in English and Italian. + +First of all you have to authenticate yourself using the ``token`` (or the pair ``app_id`` / ``app_key``):: + + >>> from dandelion import Sentiment + >>> sentiment = Sentiment(token='') + +Then you can take advantage of the Sentiment API:: + + >>> results = sentiment.sent('The best film I have ever seen') + >>> print(results['sentiment']) + {'score': 0.7, 'type': 'positive'} + +NOTE: you can also specify the text language using the ``lang`` parameter (by default the language is +automatically recognized). + +Check out the `Sentiment Analysis API documentation on dandelion.eu`_ for more information. \ No newline at end of file From 711c3ad02d823bd5ed1a1d0fc51f91f8ea75d3ca Mon Sep 17 00:00:00 2001 From: ZarHenry96 Date: Wed, 16 May 2018 16:57:48 +0200 Subject: [PATCH 17/17] add Sentiment API test cases, edit preexisting test cases to remove calls to production APIs, edit parameters management --- dandelion/__init__.py | 1 + dandelion/datagem.py | 6 +- dandelion/datatxt.py | 16 +- dandelion/sentiment.py | 9 +- tests/__init__.py | 0 tests/base.py | 143 ++++++++++-- tests/cache/base.py | 1 - tests/data.json | 39 ++++ tests/datagem.py | 506 ++++++++++++++++++++++++++++------------- tests/datatxt.py | 183 ++++++++++++--- tests/sentiment.py | 58 +++++ tests/utils.py | 10 + 12 files changed, 760 insertions(+), 212 deletions(-) create mode 100644 tests/__init__.py create mode 100644 tests/data.json create mode 100644 tests/sentiment.py create mode 100644 tests/utils.py diff --git a/dandelion/__init__.py b/dandelion/__init__.py index 116f9eb..1bcebfe 100644 --- a/dandelion/__init__.py +++ b/dandelion/__init__.py @@ -5,6 +5,7 @@ from dandelion.datagem import Datagem from dandelion.datatxt import DataTXT from dandelion.sentiment import Sentiment +from dandelion.base import AttributeDict __version__ = '0.2.2' default_config = DandelionConfig() diff --git a/dandelion/datagem.py b/dandelion/datagem.py index 6c21972..226bc86 100644 --- a/dandelion/datagem.py +++ b/dandelion/datagem.py @@ -72,7 +72,11 @@ def get(self, **kwargs): raise DandelionException('The requested item does not exist') def select(self, *args): - self.params['$select'] = ','.join(args) + if '$select' not in self.params or self.params['$select'] == '': + self.params['$select'] = ','.join(args) + elif args: + self.params['$select'] = self.params['$select']+','+(','.join(args)) + if any(param.startswith('count(') for param in args): self.params['$group'] = ','.join( param for param in args if not param.startswith('count(') diff --git a/dandelion/datatxt.py b/dandelion/datatxt.py index f04f47e..0682ad4 100644 --- a/dandelion/datatxt.py +++ b/dandelion/datatxt.py @@ -7,14 +7,20 @@ class DataTXT(BaseDandelionRequest): """ class for accessing the dataTXT family """ def nex(self, text, top_entities=None, min_confidence=None, **params): - if top_entities is not None and (not isinstance(top_entities, (int, long)) or top_entities < 0): - raise DandelionException('The \'top-entities\' parameter must be an integer greater than or equal to 0') + if top_entities is not None: + if not isinstance(top_entities, (int, long)) or top_entities < 0: + raise DandelionException('The \'top-entities\' parameter must be an integer greater than or equal to 0') + else: + params['top_entities'] = top_entities - if min_confidence is not None and (not isinstance(min_confidence, float) or min_confidence < 0.0 or min_confidence > 1.0): - raise DandelionException('The \'top-entities\' parameter must be a float between 0.0 and 1.0') + if min_confidence is not None: + if not isinstance(min_confidence, float) or min_confidence < 0.0 or min_confidence > 1.0: + raise DandelionException('The \'top-entities\' parameter must be a float between 0.0 and 1.0') + else: + params['min_confidence'] = min_confidence return self.do_request( - dict(params, text=text, top_entities=top_entities, min_confidence=min_confidence), ('nex', 'v1') + dict(params, text=text), ('nex', 'v1') ) def sim(self, text1, text2, **params): diff --git a/dandelion/sentiment.py b/dandelion/sentiment.py index 8b53ce6..2fff125 100644 --- a/dandelion/sentiment.py +++ b/dandelion/sentiment.py @@ -7,11 +7,14 @@ class Sentiment(BaseDandelionRequest): """ class for accessing the Sentiment API """ def sent(self, text, lang=None, **params): - if lang is not None and lang not in ['en', 'it', 'auto']: - raise DandelionException('Illegal \'lang\' parameter value!') + if lang is not None: + if lang not in ['en', 'it', 'auto']: + raise DandelionException('Illegal \'lang\' parameter value!') + else: + params['lang'] = lang return self.do_request( - dict(params, text=text, lang=lang), ('sent', 'v1') + dict(params, text=text), ('sent', 'v1') ) def _get_uri_tokens(self): diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/base.py b/tests/base.py index 4f6e9b3..4f438d5 100644 --- a/tests/base.py +++ b/tests/base.py @@ -1,65 +1,142 @@ """ tests can be run from the root dir with: -clean-pyc && -APP_ID= APP_KEY= coverage run --source=. --branch `which nosetests` tests/* &&\ -coverage html +find -name \*.pyc -delete && coverage run --source=. --branch `which nosetests` tests/*.py tests/cache/*.py && coverage html """ -import os from unittest import TestCase from mock import patch -from dandelion import DandelionException, Datagem, DataTXT, default_config +from dandelion import (DandelionException, Datagem, DataTXT, Sentiment, + default_config) from dandelion.base import BaseDandelionRequest from dandelion.utils import AttributeDict class TestDefaultConfiguration(TestCase): + TOKEN = 'token' + APP_ID = 'app_id' + APP_KEY = 'app_key' + def tearDown(self): # cleanup default config - for key in ['app_id', 'app_key']: + for key in ['token', 'app_id', 'app_key']: if key in default_config: del default_config[key] - def test_can_set_app_id(self): - default_config['app_id'] = os.environ['APP_ID'] - + def test_authentication_is_required(self): with self.assertRaises(DandelionException) as context: Datagem('administrative-regions') + self.assertEqual( + context.exception.message, 'You have to specify the authentication token OR the app_id and app_key!' + ) + with self.assertRaises(DandelionException) as context: + DataTXT() self.assertEqual( - context.exception.message, 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\' (in default config)!' + context.exception.message, 'You have to specify the authentication token OR the app_id and app_key!' ) - def test_can_set_app_key(self): - default_config['app_key'] = os.environ['APP_KEY'] + with self.assertRaises(DandelionException) as context: + Sentiment() + self.assertEqual( + context.exception.message, 'You have to specify the authentication token OR the app_id and app_key!' + ) + + def test_legacy_authentication_without_app_key(self): + app_id = self.APP_ID with self.assertRaises(DandelionException) as context: - Datagem('administrative-regions') + Datagem('administrative-regions', app_id=app_id) self.assertEqual( - context.exception.message, 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\' (in default config)!' + context.exception.message, + 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\'!' + ) + + def test_legacy_authentication_without_app_id(self): + app_key = self.APP_KEY + + with self.assertRaises(DandelionException) as context: + Datagem('administrative-regions', app_key=app_key) + + self.assertEqual( + context.exception.message, + 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\'!' ) - def test_can_authenticate(self): + def test_can_set_default_config_app_id(self): + default_config['app_id'] = self.APP_ID + with self.assertRaises(DandelionException) as context: Datagem('administrative-regions') + self.assertEqual( - context.exception.message, 'You have to specify the authentication token OR the app_id and app_key!' + context.exception.message, 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\' (in default config)!' ) + def test_can_set_default_config_app_key(self): + default_config['app_key'] = self.APP_KEY + with self.assertRaises(DandelionException) as context: - DataTXT() + Datagem('administrative-regions') + self.assertEqual( - context.exception.message, 'You have to specify the authentication token OR the app_id and app_key!' + context.exception.message, 'To use the legacy authentication system you have to specify both \'app_id\' and \'app_key\' (in default config)!' ) - default_config['app_id'] = os.environ['APP_ID'] - default_config['app_key'] = os.environ['APP_KEY'] + def test_can_authenticate_using_token(self): + token = self.TOKEN + + Datagem('administrative-regions', token=token) + DataTXT(token=token) + Sentiment(token=token) + + def test_can_authenticate_using_app_key_and_id(self): + app_id = self.APP_ID + app_key = self.APP_KEY + + Datagem('administrative-regions', app_id=app_id, app_key=app_key) + DataTXT(app_id=app_id, app_key=app_key) + Sentiment(app_id=app_id, app_key=app_key) + + def test_can_authenticate_using_default_config_token(self): + default_config['token'] = self.TOKEN Datagem('administrative-regions') DataTXT() + Sentiment() + + def test_can_authenticate_using_default_config_app_id_and_key(self): + default_config['app_id'] = self.APP_ID + default_config['app_key'] = self.APP_KEY + + Datagem('administrative-regions') + DataTXT() + Sentiment() + + def test_too_many_authentication_params(self): + token = self.TOKEN + app_id = self.APP_ID + app_key = self.APP_KEY + + with self.assertRaises(DandelionException) as context: + Datagem('administrative-regions', token=token, app_id=app_id, app_key=app_key) + + self.assertEqual( + context.exception.message, 'Too many authentication parameters, you have to specify \'token\' OR \'app_id\' and \'app_key\'!' + ) + + def test_too_many_authentication_params_in_default_config(self): + default_config['token'] = self.TOKEN + default_config['app_id'] = self.APP_ID - def test_cannot_set_other_params(self): + with self.assertRaises(DandelionException) as context: + Datagem('administrative-regions') + + self.assertEqual( + context.exception.message, 'Too many authentication parameters (in default config), you have to specify \'token\' OR \'app_id\' and \'app_key\'!' + ) + + def test_cannot_set_other_default_config_params(self): with self.assertRaises(DandelionException) as context: default_config['foo'] = 42 @@ -98,7 +175,29 @@ def test_abstract_methods(self): with self.assertRaises(NotImplementedError): self._make_class(require_auth=False)() - def test_authentication_required(self): + def test_authentication_required_with_token(self): + with self.assertRaises(DandelionException) as context: + self._make_class(require_auth=True, implement_abstract=True)() + + self.assertEqual( + context.exception.message, 'You have to specify the authentication token OR the app_id and app_key!' + ) + + obj = self._make_class(require_auth=True, implement_abstract=True)( + token='tk' + ) + with patch.object(obj, '_do_raw_request') as _do_raw_request: + _do_raw_request.return_value.ok = True + _do_raw_request.return_value.content = '{}' + obj.do_request(params=dict(foo='bar')) + + _do_raw_request.assert_called_once_with( + 'https://api.dandelion.eu', + {'foo': 'bar', 'token': 'tk'}, + 'post' + ) + + def test_authentication_required_with_app_id_and_key(self): with self.assertRaises(DandelionException) as context: self._make_class(require_auth=True, implement_abstract=True)() diff --git a/tests/cache/base.py b/tests/cache/base.py index f93fdef..5b03870 100644 --- a/tests/cache/base.py +++ b/tests/cache/base.py @@ -1,6 +1,5 @@ import json -from mock import MagicMock from unittest import TestCase from dandelion.base import BaseDandelionRequest diff --git a/tests/data.json b/tests/data.json new file mode 100644 index 0000000..dde721b --- /dev/null +++ b/tests/data.json @@ -0,0 +1,39 @@ +{ + "datagem_test_select": "{\"items\":[{\"name\":\"Trento\"}],\"count\":1,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_select_multiple": "{\"items\":[{\"name\":\"Trento\",\"population\":{\"2001\":null,\"2011\":114063}}],\"count\":1,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_select_concat": "{\"items\":[{\"name\":\"Trento\",\"population\":{\"2001\":null,\"2011\":114063}}],\"count\":1,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_select_empty": "{\"items\":[{\"licensePlate\":null,\"tel\":\"0512193111\",\"isMountainMunicipality\":\"P\",\"isProvinceCheflieu\":true,\"localCode\":\"037006\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/c59b12fe31ac36662552c95d51cbf15b792094c0\",\"provenance\":[\"Geonames\",\"ISTAT\",\"SpazioDati\",\"SpazioDati Partner\",\"Wikipedia in Italiano\"],\"wikipedia\":{\"de\":\"http://de.wikipedia.org/wiki/Bologna\",\"en\":\"http://en.wikipedia.org/wiki/Bologna\",\"it\":\"http://it.wikipedia.org/wiki/Bologna\"},\"alternateNames\":[\"Bologne\",\"Bolon'ja\",\"Bolona\",\"Bolonha\",\"Bolonia\",\"Bolonija\",\"Bolonja\",\"Bolonjo\",\"Bolonya\",\"Bolo\u00f1a\",\"Bolo\u0146a\",\"Bol\u00f2gna\",\"Bononia\",\"Bulogna\",\"Bu\u0142ogna\",\"Comune di Bologna\",\"Gorad Balonnja\",\"blwnya\",\"bo luo ni ya\",\"bollonya\",\"bolon'ya\",\"bolonia\",\"boloyya\",\"boronya\",\"bwlwna\",\"bwlwnya\",\"bwlwnyh\",\"\u039c\u03c0\u03bf\u03bb\u03cc\u03bd\u03b9\u03b1\",\"\u0411\u043e\u043b\u043e\u043d\u044c\u044f\",\"\u0411\u043e\u043b\u043e\u043d\u044f\",\"\u0411\u043e\u043b\u043e\u045a\u0430\",\"\u0413\u043e\u0440\u0430\u0434 \u0411\u0430\u043b\u043e\u043d\u043d\u044f\",\"\u0532\u0578\u056c\u0578\u0576\u056b\u0561\",\"\u05d1\u05d5\u05dc\u05d5\u05e0\u05d9\u05d4\",\"\u0628\u0644\u0648\u0646\u06cc\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u064a\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u06cc\u0627\",\"\u092c\u094b\u0932\u094b\u0928\u094d\u092f\u093e\",\"\u0e42\u0e1a\u0e42\u0e25\u0e0d\u0e0d\u0e32\",\"\u10d1\u10dd\u10da\u10dd\u10dc\u10d8\u10d0\",\"\u30dc\u30ed\u30fc\u30cb\u30e3\",\"\u535a\u6d1b\u5c3c\u4e9a\",\"\ubcfc\ub85c\ub0d0\"],\"parentNames\":{\"province\":\"Bologna\",\"country\":\"ITALIA\",\"region\":\"Emilia-Romagna\",\"macroregion\":\"NORD-EST\",\"municipality\":null},\"email\":\"protocollogenerale@pec.comune.bologna.it\",\"website\":\"http://www.comune.bologna.it/\",\"isCoastal\":false,\"fax\":\"0512193718\",\"elevation\":54,\"dialingCodes\":[\"051\"],\"postCodes\":[\"40121\",\"40141\"],\"cadastralCode\":\"A944\",\"population\":{\"2001\":null,\"2011\":371151},\"name\":\"Bologna\",\"level\":60,\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[11.371615030483849,44.55260696774072],[11.371683399764958,44.55263449295944],[11.371850909981305,44.552767736301284],[11.371966605561001,44.55288461340939],[11.372042074975841,44.55299894329224],[11.372112552714023,44.55316515220926],[11.372200479295843,44.55343810683848],[11.372288417909607,44.553697119405406],[11.372318616888847,44.55377259652481],[11.372976733159817,44.55359617495196],[11.374371655839564,44.55324364698487],[11.375023140518103,44.553068621750455],[11.375237441191524,44.55300789610728],[11.375312336948463,44.55307892248818],[11.37549258826638,44.5529356298896],[11.376182020855437,44.552755865326645],[11.376859419095307,44.55258000658355],[11.377223047198097,44.55248606878287],[11.37772140100687,44.552357532188424],[11.377914405158439,44.55228599595104],[11.377795904501502,44.55202345900086],[11.377233293402513,44.55109557434928],[11.3770659409483,44.550811546619215],[11.377689909170236,44.55063820350091],[11.379243779211953,44.55020247225941],[11.381112046044146,44.54966102317204],[11.381368698452416,44.54958758620495],[11.38185410863312,44.54945142730544],[11.381937695127242,44.54939806527645],[11.382025431168511,44.54925769024259],[11.38210173234158,44.54911823883935],[11.382462053093981,44.54902126196006],[11.383652503314401,44.54871340506481],[11.384830398061993,44.54840691252731],[11.385519540460272,44.5482315986127],[11.386102599656807,44.54807875582393],[11.386747150510965,44.547909990298535],[11.387467223210058,44.54772164251097],[11.388057246920857,44.54756638539569],[11.38843945079304,44.547466115004035],[11.38900217699357,44.5473164996277],[11.389504838427717,44.54717994617846],[11.390244292555087,44.54698497438703],[11.391168287175649,44.54674338419237],[11.391893776792447,44.54655377238333],[11.392033112076243,44.54651709244543],[11.39197833010627,44.54644734071617],[11.391883961973194,44.54635254428176],[11.391621403798544,44.545954634466476],[11.39147408294175,44.545719166605025],[11.391144616869987,44.54520505773529],[11.391032633262022,44.545044806207834],[11.390845899684066,44.54474995528144],[11.390558564640752,44.5442653545989],[11.390452924325112,44.544067827340925],[11.390121452060317,44.54350425143768],[11.3899419188228,44.54319293074979],[11.389832784707092,44.543006167981744],[11.389648537814987,44.542579605330666],[11.389605531830993,44.542499490982244],[11.389844500238809,44.54244666370952],[11.38993748113705,44.542450341563686],[11.390072152634893,44.542453713548745],[11.390161576567555,44.5424473417905],[11.390275685445443,44.54242919306462],[11.390381020317166,44.542407863830555],[11.39050734622138,44.542380459503114],[11.390734357432903,44.542314372030965],[11.390858832955274,44.54228251845755],[11.391391890168434,44.543040472832175],[11.391422997717692,44.54308933787872],[11.391762207229004,44.54365044783415],[11.39179346978779,44.54370215873189],[11.39224112796103,44.54354874662596],[11.393042866835481,44.54328156951995],[11.393859852738155,44.54300280882741],[11.394637458394486,44.542741347904155],[11.394791818999858,44.54268899696984],[11.395359151732027,44.542499860658666],[11.395651603657038,44.54289770270896],[11.396072489494518,44.543645050324365],[11.396299589051631,44.54396437128258],[11.396424615019377,44.54392460423094],[11.396475383513815,44.543982621786334],[11.397012678772636,44.54379973339415],[11.397737936422617,44.543548198913406],[11.398112609543729,44.54341879341483],[11.398738821136456,44.54320758835112],[11.398832216725031,44.54317631258953],[11.398926542810589,44.543144923572676],[11.399677130133664,44.54289528581079],[11.400288670302244,44.542691130530564],[11.399730872249805,44.5419252938404],[11.400188416950556,44.54172606798039],[11.401045333333593,44.54136765112833],[11.401560220452486,44.54114751307236],[11.401876721760868,44.54157263030605],[11.40228727688513,44.54211683551545],[11.402348918147611,44.542196376427555],[11.403051797011843,44.54200790130606],[11.404725019768152,44.54154731105244],[11.405352644011401,44.54137148975357],[11.407034447637578,44.54372457504679],[11.407341911119996,44.54363524895624],[11.407673377164693,44.543526974693194],[11.408265526863785,44.54334541845832],[11.408446673636234,44.543296864390165],[11.40901248442909,44.54312906808067],[11.409526555873725,44.542965744186375],[11.409962200208204,44.542827708279184],[11.41038936839721,44.54269378186789],[11.4111683707367,44.542450023859864],[11.411799001470655,44.54225215256389],[11.412122029862672,44.542149679931185],[11.412423339712774,44.54205441166669],[11.41309816558239,44.541840975004895],[11.413625310036403,44.54167116541149],[11.414134570346272,44.54150623093636],[11.414735738396239,44.541319101212245],[11.41523494389894,44.541158873839414],[11.415778665033256,44.540990386046516],[11.415880424396676,44.54095898322238],[11.41581242106911,44.54081750760427],[11.415562913725045,44.540415434415166],[11.41531523362604,44.54001895648533],[11.414905233357763,44.53936878149522],[11.414630240151814,44.53892054538019],[11.414417014790526,44.53857678819788],[11.414366472441696,44.53849627273348],[11.414063006449718,44.53800588042468],[11.413811130850505,44.53760272892693],[11.41369137324568,44.537426904596956],[11.41226059140029,44.5351491583288],[11.411115306183035,44.533277865486866],[11.410471133889073,44.532173508465824],[11.410251102307903,44.531816375384054],[11.410087902928023,44.53157844869783],[11.409836170585859,44.531277156147816],[11.409584810275074,44.53095666059203],[11.409398449644694,44.53067195553174],[11.40925435747843,44.53047751652879],[11.409126787062391,44.5302450191401],[11.408887784745678,44.530037948706806],[11.408456358476954,44.529504143345875],[11.409285965282965,44.52916532956536],[11.410230965808742,44.52877404325182],[11.411091750380166,44.52841996804047],[11.411531141261953,44.52824188672151],[11.411790324905624,44.52815707845399],[11.412410659606413,44.5279037223242],[11.413491770341224,44.52745776483934],[11.414032965687205,44.52723138926808],[11.414983039900768,44.52683123482317],[11.415395283138608,44.526662999663614],[11.416661766544872,44.527295613160895],[11.417023845836885,44.52748564780502],[11.417408092456887,44.527703943398365],[11.417474349444195,44.52774539266649],[11.417985688747256,44.52806145872235],[11.41814140365194,44.528156154907336],[11.41840442909683,44.52831590153624],[11.4186142300048,44.52844423761554],[11.419511573635278,44.528992931702085],[11.419637963876887,44.52907814058832],[11.419908851875721,44.529260765494094],[11.420114932581884,44.52937511255284],[11.420267910631534,44.529460199928636],[11.420465006389335,44.52965518180388],[11.420522909818807,44.529805880296706],[11.420568976573966,44.52986523734807],[11.420649211584008,44.529968616338195],[11.420746800574287,44.53014097060914],[11.420853396987646,44.5302647422067],[11.420950424271776,44.53027765779786],[11.421015667597981,44.530175775684526],[11.421056972405493,44.530109634252106],[11.421110103652577,44.53004408726846],[11.421167249654806,44.52998070476225],[11.421206366052717,44.529937675238486],[11.421237069680085,44.529881320787574],[11.421245783878168,44.52980686564162],[11.421251652202317,44.52967817833455],[11.421325500299169,44.529604877478434],[11.421436340665638,44.52958452263009],[11.421541923835052,44.52957004333887],[11.42163263295503,44.52955728655829],[11.421680618964526,44.52951463673969],[11.42176571399457,44.52943771484262],[11.421833559850812,44.52935722667893],[11.42189451533528,44.529271817308434],[11.421897128722312,44.52919271316013],[11.421869512670836,44.52914322412359],[11.42182807507968,44.529092336810486],[11.42177464931791,44.52903664636912],[11.421716824767879,44.528988923489464],[11.421669591502905,44.52894997632362],[11.421607960916361,44.528905150937305],[11.421543245500915,44.52886207437998],[11.421468114561904,44.52880459009267],[11.421411429671439,44.52873686870063],[11.421402103327905,44.52868277040809],[11.421407506973088,44.52862329858229],[11.421431393614593,44.5285448630385],[11.42148067857378,44.52845323964028],[11.421579949254205,44.528352808462465],[11.421669845620157,44.52821628713048],[11.421818346996819,44.52800383970144],[11.421882891049787,44.527910195448406],[11.421974587415665,44.52776491610225],[11.421969953764833,44.52758201857715],[11.421961767346096,44.527498360666954],[11.421951054641521,44.52739168000135],[11.421937834302073,44.52720572925004],[11.421927913048819,44.52711816515856],[11.421931006524183,44.52705986759246],[11.42195703787829,44.52700502451369],[11.42199210347269,44.526949701664996],[11.422037222820844,44.526890232395715],[11.42209521387052,44.526828235817945],[11.422250312233317,44.526680346050114],[11.422321767537754,44.5266017470623],[11.422370751634785,44.526550066307856],[11.42241548408159,44.52645290998834],[11.422509544997936,44.52625567394653],[11.422531073987999,44.526205710078344],[11.42258589842535,44.52614321330943],[11.42263122588227,44.525719147454666],[11.422499425425448,44.525594220815755],[11.422426121422177,44.52547650302473],[11.42236455942958,44.5253765359957],[11.4223020392141,44.52526280142262],[11.42226343623161,44.52518540817821],[11.422269743429368,44.52508147210622],[11.423930594212962,44.52458428211943],[11.425207215411493,44.5241717611519],[11.425435824749007,44.52410894547679],[11.425666948498428,44.52405002699769],[11.425968560213514,44.52396484298466],[11.426220769395444,44.5238847304623],[11.426317113281144,44.523835911399914],[11.4263616948967,44.5237162393784],[11.42566807243238,44.52288364904361],[11.4254602376246,44.52260393100752],[11.425425020440601,44.52253610287168],[11.425397054643973,44.52247417826064],[11.425296940088451,44.52220342561042],[11.425255394427543,44.521979252030675],[11.425270058819924,44.521764008975616],[11.425299020812746,44.52162836162266],[11.425381717353178,44.5214229321379],[11.425670393030067,44.52096949400596],[11.425710902049385,44.52086566718014],[11.425719087261484,44.52079741909291],[11.425707349634088,44.520590647293666],[11.42621868849449,44.52040532954464],[11.42695576011139,44.520164037808826],[11.427341538813058,44.52004218581967],[11.427451482338274,44.519999607712286],[11.427780111840239,44.52052854614357],[11.428267497288024,44.52129968698271],[11.428309393178958,44.52136817607097],[11.428546776297713,44.52175623256027],[11.429045911450023,44.52156106307746],[11.429699981230232,44.521290579160926],[11.430174634258924,44.521093118048775],[11.43095083268026,44.52079076762535],[11.431290727424829,44.5206465483238],[11.43136071005841,44.5205676734088],[11.430492207327335,44.519482830847394],[11.429658259195456,44.51843381133167],[11.427966374890671,44.51630533193266],[11.433586317497346,44.51447016199065],[11.434694903101136,44.514108374155676],[11.434662251143866,44.51406069065253],[11.434492978534841,44.51380998441208],[11.434193800173247,44.51336680989287],[11.433865307174724,44.51284268651015],[11.433575110932178,44.51235036986699],[11.433445066087735,44.512135402764784],[11.433184200156981,44.51176229973365],[11.43299564006417,44.51151417006002],[11.432732016197878,44.511167549091304],[11.432210509178178,44.510490104352094],[11.431433551943687,44.50950939752574],[11.431323014462993,44.50936957921462],[11.430004872339754,44.50768786237529],[11.429937668044255,44.50760272809906],[11.429863782149964,44.507509134345284],[11.429817623354156,44.50742951689793],[11.429822858492901,44.507347398371024],[11.429871401314069,44.507295165519345],[11.429930023070773,44.50722069313206],[11.429343539410903,44.50651013662671],[11.429275606200056,44.506674877319455],[11.429217527649621,44.506753196189806],[11.428848596952763,44.5068134087291],[11.428749749649926,44.50682954113199],[11.428447400704753,44.50697044808376],[11.427412906781651,44.5044374880305],[11.426955999929266,44.50327916276976],[11.42679040624326,44.50285078391124],[11.426714785161792,44.50265568374576],[11.426534488069784,44.50221572325125],[11.426397348567962,44.50198008260547],[11.426107064901574,44.50155786129413],[11.425023719552284,44.50191812338644],[11.424104200444868,44.50214258968477],[11.42397498839464,44.50163499625888],[11.423935785440104,44.501465801798794],[11.42384193141728,44.50106329983692],[11.423703511907078,44.50045235100038],[11.423460757231917,44.49939411068821],[11.423412883417125,44.49933807602368],[11.422911454312722,44.49937988824999],[11.422837026618385,44.499385968281885],[11.422600814833565,44.499396050940966],[11.422234352651047,44.4994117004401],[11.421834976065202,44.49941116512226],[11.421494731212059,44.499368316405416],[11.420541724699676,44.498061247906584],[11.42042753413087,44.497904586335615],[11.420374446507482,44.49783169883066],[11.420228346456636,44.497631287379846],[11.422581824491088,44.49713518203347],[11.42265466755574,44.4970994525654],[11.422529595383153,44.49695958913597],[11.419405786709167,44.493457969081504],[11.419549744160827,44.493392912684115],[11.419462862276578,44.4932724851435],[11.4188726557605,44.49245107170478],[11.418256111557852,44.49156953041661],[11.419025487713695,44.49131917326672],[11.420998518959143,44.490676438815484],[11.425048587520564,44.4899125635022],[11.425230290099572,44.49034627222377],[11.42544551604915,44.490859982876174],[11.425503440909063,44.491067872619645],[11.4255323249174,44.49117152972053],[11.42561366191599,44.49114411421355],[11.425803620264222,44.49107968019844],[11.427419886612528,44.49049786519043],[11.428257849402748,44.49021560264073],[11.427104290861742,44.48842336259593],[11.427057384270144,44.4883273629136],[11.426970792438675,44.48831988665631],[11.426819304710449,44.48827978388614],[11.426680114415156,44.48824515574565],[11.42648416044711,44.48825312305453],[11.42625794483981,44.48818084852127],[11.426086290135354,44.48809728903589],[11.425961879791032,44.48803522466515],[11.425888811935188,44.487997961436086],[11.425833991787353,44.48794566813101],[11.42563660060027,44.4877726301349],[11.425517173035155,44.48760300256988],[11.425393175595273,44.487436846936326],[11.425359840415242,44.48737697246922],[11.425304014270584,44.48727670092743],[11.425193743810146,44.48717945047303],[11.425118032135675,44.48710525247238],[11.425039290276803,44.486995934213915],[11.425001168280943,44.486891527937196],[11.4249244231578,44.48682669434463],[11.424955609013537,44.48674576554408],[11.425019120321316,44.486661031603546],[11.425308258635491,44.486412390108434],[11.425734523696145,44.48622947463321],[11.426096083032117,44.486021482277444],[11.42632265831195,44.48593227617431],[11.426712251225412,44.48574644378828],[11.426662840544427,44.48564484549563],[11.426484588251963,44.48547815195607],[11.426361214107873,44.48534574269872],[11.426318421726926,44.485299394722915],[11.426065451571997,44.48518829619041],[11.42568814595068,44.4850730984148],[11.425448092738305,44.48500786620903],[11.424915909781891,44.48491058178117],[11.424602205628885,44.48486998797718],[11.424155511057739,44.484844025113624],[11.42379502046395,44.48481229699118],[11.423198553991508,44.48479457789644],[11.422588284450987,44.48482328992217],[11.42249620815415,44.4848304194604],[11.422060984054948,44.48486261278924],[11.421745992566452,44.484885612691635],[11.420947323286644,44.484938562606615],[11.419966621617448,44.48494911146956],[11.419654250703939,44.48495247093121],[11.41916466466285,44.48495384825636],[11.418979486763332,44.485017971901286],[11.418523952036132,44.48504450828812],[11.418425733493608,44.485044677166314],[11.417888172096944,44.4850456025648],[11.417598935447138,44.48489306232997],[11.416983795767688,44.484794401015876],[11.416845904177155,44.484681134241015],[11.416689578432058,44.484549969399],[11.416484641570394,44.48426905206182],[11.416405477325103,44.484083928327244],[11.416381929718215,44.484027602465396],[11.416290320091056,44.483862216779045],[11.416180594884217,44.48366276535294],[11.416074285661267,44.483657698475305],[11.416003620044679,44.48354497833636],[11.415983297477313,44.48345257581252],[11.41597604100779,44.483250150549054],[11.415972958780177,44.48316415375629],[11.415998539394062,44.48310170528953],[11.416043634929188,44.482991616780396],[11.416000046600965,44.482907391054454],[11.415650797195116,44.48265165774869],[11.415224196789552,44.48248401006225],[11.414909098558818,44.48238996966514],[11.414658561438918,44.482355877416126],[11.414264605505283,44.482255060970004],[11.413949528583883,44.48218070010628],[11.413634350481297,44.48210353179029],[11.41333799935442,44.481949448561146],[11.413166650519198,44.48181161425276],[11.4130933253373,44.481752630152],[11.412872547477061,44.481630140473435],[11.412787259837993,44.481592045922916],[11.412713597936119,44.48155866585207],[11.412223321593526,44.481218504712466],[11.411982776090863,44.48106435400878],[11.411677102193057,44.48087445599135],[11.411371660213165,44.48069016698787],[11.41121005559346,44.48056361530876],[11.411024524761459,44.48046681726299],[11.41093456570474,44.48040832352989],[11.410857227841294,44.48035335223486],[11.410777565390179,44.4802848355947],[11.410617857974666,44.4801333156052],[11.410541881010195,44.48006347414718],[11.41038256462805,44.479916044315964],[11.410160591009937,44.47963997448628],[11.410040654480065,44.479532790228276],[11.409906355555803,44.479439408924335],[11.409763183060731,44.47928320761913],[11.409680333775817,44.47917973938862],[11.409528628725397,44.47895000968475],[11.409436106753096,44.4787831630262],[11.409279424656072,44.478623304140854],[11.409206254900118,44.47856408196619],[11.409029139247128,44.47843765826837],[11.408840147463204,44.47835631732111],[11.40874867192958,44.47831042376996],[11.408567389575715,44.478219669810564],[11.408479071579846,44.47817545406535],[11.408149823297716,44.47806142565132],[11.407948900448792,44.47800037136898],[11.407607894949892,44.477896749409446],[11.407121253247638,44.47773878896958],[11.406667553749116,44.477541296838375],[11.40655887576695,44.477482346260935],[11.406218255724147,44.47729757775872],[11.405973158923489,44.47714689507041],[11.405676973654717,44.47697646258773],[11.405580273168228,44.47690792504835],[11.40544466223896,44.476811726761575],[11.405181640937794,44.476643839455136],[11.404959591374501,44.476467219408796],[11.40486793897086,44.47639261267035],[11.404802717685529,44.47633546986679],[11.404429019156689,44.47601869331607],[11.404285640283055,44.475895121875524],[11.404068937524116,44.47563186169671],[11.403869641077828,44.47547709954479],[11.40377266600138,44.47540179379376],[11.403697644926016,44.475320433428486],[11.40358843958452,44.47520199839225],[11.40341310702347,44.47500819911859],[11.403334505290205,44.47483542875547],[11.403132043810073,44.47461238363766],[11.402906510260127,44.4744016411736],[11.402682217361056,44.47420212143802],[11.402665720100947,44.47414309119153],[11.402483831678829,44.473905848221506],[11.40233019150812,44.47364689102102],[11.40218432386334,44.47348172723822],[11.402072341925239,44.47331866793414],[11.401881133215028,44.47306330847982],[11.401768377570002,44.472919955919274],[11.401637502031596,44.4727561684111],[11.40156973861709,44.47267488617258],[11.401186009761998,44.47236195935473],[11.401039039247785,44.47224605996291],[11.400989212851698,44.47218071588856],[11.400939403593503,44.47213506400772],[11.400708925660414,44.47187997034157],[11.400560349941234,44.4717259225371],[11.400520147784038,44.47168364325506],[11.400457594540056,44.47162317396858],[11.400361658800822,44.47151567901433],[11.400319718530767,44.47147123064049],[11.400211415098621,44.47132103384052],[11.40008463950332,44.47116110041326],[11.400012462002213,44.47101070108305],[11.399917785439854,44.47086696742802],[11.399846126439044,44.47067154907189],[11.399828564161224,44.47060330978995],[11.399796582963397,44.47047904160052],[11.39973853426012,44.47027038629096],[11.39965363600766,44.47009719738426],[11.399507869438764,44.4699885220357],[11.39938131810597,44.46989417130796],[11.399254816709636,44.46976011463872],[11.399032338988157,44.46964213207376],[11.398656006356752,44.46937721977314],[11.398356601745835,44.469239406989885],[11.398079032528114,44.469195731130036],[11.397977085756155,44.4691867639182],[11.397542014695576,44.46914849464893],[11.397355893231248,44.46913158759273],[11.397261939758316,44.46911206318484],[11.39701011066754,44.46911071592551],[11.396776603928878,44.46915420838464],[11.396540636701342,44.469197089451306],[11.396413107660416,44.4692295914984],[11.396307812266791,44.46924037577637],[11.396225135998254,44.46924422957617],[11.39610411087725,44.469186003451014],[11.39583135891952,44.46910677074265],[11.395532136146185,44.46899489141564],[11.395406966383602,44.468928714249245],[11.39595128820011,44.46850447091584],[11.39635630300173,44.46820676945817],[11.396959304968687,44.46781263459783],[11.397141787795341,44.46770355643514],[11.397405656786498,44.467545570425166],[11.397720556171333,44.46740729829972],[11.398239603923464,44.467016603489036],[11.398339150117893,44.46693405373224],[11.3998276836293,44.46596709628034],[11.400228065956986,44.46571054520498],[11.40081777926875,44.46539600228434],[11.401021641008906,44.465289881925145],[11.401209179054494,44.46519614519394],[11.401322219335318,44.46514795892907],[11.401455256248665,44.46505851010221],[11.401629050172142,44.46494738754664],[11.401751075985429,44.46485761189177],[11.401882057597646,44.464756398351845],[11.402004813573797,44.46466547276632],[11.402128223732078,44.46457116821035],[11.402303808850787,44.464446507032655],[11.402467576585238,44.46434009355788],[11.402582022637914,44.46427636003636],[11.402879874234253,44.46412549158111],[11.403267218971815,44.463953603782855],[11.403379896576157,44.46389469142919],[11.403460094635673,44.46384827388981],[11.403403050745244,44.46381751486878],[11.40325119671978,44.46373563367337],[11.40295171493769,44.46338747156642],[11.402867228681233,44.46328122474885],[11.402718617030095,44.46308686156117],[11.402573123338138,44.46289187440398],[11.402475631788452,44.46273694272765],[11.402016812552246,44.462162016548675],[11.401724362312542,44.46227225233951],[11.40154420403176,44.46215113443808],[11.401415505797953,44.461886593280695],[11.401333851158617,44.4618508874358],[11.401277611103362,44.46173195237152],[11.401179221004544,44.461757083344615],[11.400596787099719,44.46207597995106],[11.400112767769068,44.46224651644742],[11.39965870089213,44.46245804442513],[11.398587379598636,44.46291548845346],[11.39843952807158,44.46284489477757],[11.396049492777493,44.464665166168345],[11.3958192434462,44.46458729089731],[11.39547193090933,44.46435545449684],[11.395313757749872,44.464195607309414],[11.395191060810296,44.464077215749846],[11.39508756330607,44.46408219518329],[11.39492940261713,44.46399943056243],[11.39471690691629,44.46385591366619],[11.394650725294673,44.463793718564624],[11.39430756573766,44.46314487811477],[11.394108323854221,44.46276813857821],[11.39387713318771,44.46266665427283],[11.392392361673197,44.462880072891764],[11.391706427954276,44.46249384822501],[11.390477606356646,44.46151019662806],[11.388965815945172,44.46127290425593],[11.388958722191148,44.46142609423259],[11.387591968111854,44.46150869714662],[11.388059110738121,44.462811015828684],[11.387259375537102,44.463043244145],[11.386364563947037,44.4616564633952],[11.38623395434006,44.46157422699184],[11.385688442024792,44.46152880366828],[11.385055687325448,44.46130852612609],[11.384522534293055,44.46118013181567],[11.383751158147188,44.46066172603445],[11.383633481846344,44.46041493378849],[11.383579585466883,44.46032603401588],[11.382967768709229,44.45992469910388],[11.380339669886778,44.460891106470775],[11.38018900999557,44.460946489455196],[11.380061785012847,44.46088950076885],[11.37995216812109,44.460840586323116],[11.379731894417464,44.460794536837156],[11.37938588872424,44.460774600254766],[11.379186714251771,44.460679309143465],[11.378843939976743,44.4604799616746],[11.378449009889614,44.460369474492886],[11.3779951440282,44.46029734654243],[11.377360312259043,44.460218294587314],[11.377061153829155,44.46012549970471],[11.37644766117399,44.46006906499905],[11.376106297907203,44.46000077917173],[11.375747525633505,44.45985182997933],[11.375570931576808,44.45973959640304],[11.375388830115014,44.45954983646918],[11.375298746246424,44.45940148622496],[11.375229457689684,44.45924256927357],[11.375159386542311,44.45913946326892],[11.375113328594162,44.45907169411072],[11.375092325656686,44.458979856209105],[11.375160592067664,44.45872636845487],[11.375286838464636,44.458352401287094],[11.375306920595245,44.458169682385545],[11.375268321779574,44.45807033629247],[11.375337014220332,44.45780783989353],[11.375311255856015,44.45765701679096],[11.375179800270589,44.45743751122861],[11.375137609215974,44.45738493948035],[11.374978153445921,44.457307798674066],[11.37489236173316,44.457148666673],[11.374930969777523,44.45689973904119],[11.37494948626059,44.45669792005403],[11.375057121476425,44.45646556451917],[11.37512612336993,44.45630771130614],[11.375224762822084,44.456144175750055],[11.375332769385894,44.45586342010387],[11.375391587718854,44.45564783142237],[11.375517170412127,44.45521929102268],[11.375616738334028,44.454788485821155],[11.37559916916903,44.4546459337924],[11.375516092141112,44.45437927928215],[11.375303484850683,44.45428917879295],[11.375150079218091,44.45412864597915],[11.37506985145702,44.45389344005509],[11.374947212445953,44.453736201747304],[11.374854571768038,44.45365991849745],[11.37444672705512,44.453656019013884],[11.374369729243623,44.453655370902204],[11.374225598360802,44.45362548854621],[11.374037844157417,44.453587439784094],[11.373916271152158,44.45356242899103],[11.373831744185747,44.453543835169086],[11.373633514504586,44.45349569769079],[11.37362355427473,44.45321120461469],[11.373632907293038,44.45272488506719],[11.373966980224303,44.45240117146079],[11.374157509793752,44.45231505892959],[11.374415965972613,44.451618191095314],[11.374142859851693,44.45019024509923],[11.373548881876218,44.45006981323938],[11.372259836246979,44.44946645021882],[11.371259677318061,44.44914908047322],[11.37050494805198,44.44882153818098],[11.370392831542139,44.44872934160413],[11.370214108272439,44.44868016021292],[11.369939758993402,44.44886871485795],[11.369705736266747,44.449024932468],[11.369531233642263,44.44907975482419],[11.369327658657275,44.44909579683007],[11.368956538903731,44.449261041173656],[11.368807434523035,44.449439109619554],[11.368502542109786,44.44980497029704],[11.36807970187035,44.450147960579834],[11.36772187671784,44.450253840846436],[11.367007377611893,44.450474591796215],[11.366856534518362,44.450483673633684],[11.366765254874108,44.45048916983166],[11.365871549123632,44.45074569633174],[11.365478128156907,44.4509428997653],[11.365240587059995,44.451051356087454],[11.36517888307743,44.451079633524074],[11.365022827738146,44.45112345478265],[11.36466706529187,44.45122358783352],[11.36327386983136,44.45192520381132],[11.363106904087038,44.45184161296966],[11.362937265656427,44.451725561609166],[11.3627921804279,44.45160362467992],[11.362636861899817,44.4514248586546],[11.36240653948639,44.45114773292457],[11.362196367723724,44.450922524020214],[11.3620620975804,44.450767760321874],[11.361917369452808,44.450645846377896],[11.361728449534558,44.45049953012091],[11.361493125288824,44.45031254033245],[11.36134207565136,44.450189631126456],[11.361258713339726,44.45010920541076],[11.36119444360373,44.45003457563671],[11.361138308084772,44.44996709559321],[11.36101940365843,44.449823263061205],[11.360937859308704,44.449729298672985],[11.36084831199071,44.44965125926042],[11.360751267376598,44.449562683626695],[11.360582968697855,44.44942099650823],[11.360395003947051,44.44927016248092],[11.359944654968125,44.448920502844814],[11.359842882563745,44.44883145611678],[11.359738354865833,44.44873234220227],[11.35967698419798,44.44861263444056],[11.35957045755125,44.448405537003595],[11.359519452464083,44.44830924878178],[11.359436132681454,44.448151746243596],[11.359345719807584,44.44797413133541],[11.35922936848981,44.44776666586573],[11.359187120326803,44.44771625707078],[11.359120014726873,44.4477495059493],[11.359050759586971,44.44776866820799],[11.358883242613699,44.44769003740469],[11.358815395654734,44.447658190066875],[11.358748885378445,44.44763297771423],[11.35869292731478,44.44760107909485],[11.358714882255214,44.44724897531806],[11.358746614492798,44.44702269352004],[11.358644600502194,44.446243320030746],[11.358574868659623,44.44605399088572],[11.358425736380156,44.445988106774415],[11.358221719240381,44.44598307886483],[11.357821792904307,44.4460127673496],[11.357633641420824,44.44602673425323],[11.35742741795831,44.445996109966075],[11.35713204238402,44.4458969916677],[11.357077541825518,44.445849407044044],[11.356990392677789,44.44577331625472],[11.35689480079591,44.445603124284126],[11.356706101869268,44.4452660511712],[11.356432213907958,44.44474045604263],[11.356307987212656,44.44461398136111],[11.35622486175213,44.44452935009614],[11.35612601985478,44.444484524817874],[11.355905663081884,44.444384588605125],[11.355355684307263,44.444197856883086],[11.355211340470369,44.44414909846528],[11.35487309503115,44.444077309496116],[11.354647531158452,44.444053829106],[11.354447594408128,44.44408158690229],[11.354082783094599,44.44402015338338],[11.353761647717812,44.44395675676784],[11.353666769434332,44.44390188831011],[11.353571596132445,44.443761500695594],[11.35347836493687,44.443503089770836],[11.35344366361085,44.44320655520778],[11.353413936496963,44.443101949324834],[11.353415142984158,44.44299502676736],[11.353290229472076,44.443052732404574],[11.353003779018557,44.443042351924994],[11.352745962873783,44.44303300909928],[11.352640702154009,44.44303236165155],[11.352332795491561,44.44303139973921],[11.35205955658072,44.44303308778537],[11.351910494674486,44.44306759164007],[11.351812084876757,44.44308995366164],[11.351499085330536,44.44317741752744],[11.350766807162705,44.4432418721167],[11.350631171359094,44.443253809761174],[11.350477514829622,44.44331458433098],[11.350324751033446,44.44337500452479],[11.350222055518259,44.443415138558464],[11.349530607975526,44.4434823923386],[11.349130645952128,44.443477123697996],[11.348807671469723,44.443414003029936],[11.348614369491145,44.44345061375053],[11.347348799842305,44.44208100493246],[11.346565740737754,44.44197078112976],[11.346204623227493,44.441950753653884],[11.345948208477187,44.441807922752275],[11.345752678622924,44.441631898871584],[11.346966001243443,44.44039557253041],[11.347395160747158,44.44048296666537],[11.346815389666864,44.43922329965182],[11.346994798604568,44.438604634001166],[11.347119103033597,44.43841416186164],[11.347119393781231,44.43820597152454],[11.347088114961808,44.437895471934866],[11.347157944280859,44.437717360119336],[11.347231063023816,44.43758251534445],[11.347224209959707,44.43748981387963],[11.347192591003525,44.43735825605852],[11.346201644817869,44.43713385785064],[11.345435913468288,44.43695548483939],[11.344322723319415,44.43696428478652],[11.343817055685758,44.43696566759566],[11.343542175045943,44.43694542742885],[11.343283968672365,44.43698842899739],[11.342986878007109,44.43708061043016],[11.342801930409268,44.43708489686861],[11.342593274211543,44.43697784563979],[11.342368440460664,44.43683448451066],[11.342014011580755,44.43669039688523],[11.341812446598121,44.43653924913949],[11.341598416387447,44.43645203502757],[11.341467724600312,44.43663802841328],[11.341326492755517,44.436739392237214],[11.34088346859878,44.43685425298434],[11.340312055062668,44.43695936953485],[11.340220615139266,44.437226253320205],[11.340125286831821,44.43737561601572],[11.33988871238081,44.43756726647626],[11.339650836311122,44.43776569219867],[11.339524098285722,44.43783693185819],[11.339311715709828,44.43804440121923],[11.339165134480634,44.43811042242575],[11.339049912155867,44.438174674706985],[11.338905435441829,44.438214768833305],[11.338650986203618,44.43831281436602],[11.338325783529408,44.4384286353449],[11.337744971638909,44.43865321568007],[11.336679404600336,44.43904974944846],[11.336559980062537,44.439146718825015],[11.336397711544725,44.43942967444019],[11.335430515055497,44.43957999020402],[11.335333929188,44.43914254864366],[11.335298490759188,44.43898235710356],[11.335185029536978,44.43883501998595],[11.335154528889914,44.438621266791216],[11.335092373669319,44.43852878569385],[11.334926617544674,44.43828215323873],[11.334821305051051,44.43822073247018],[11.334511269701293,44.43824451437455],[11.334375875840848,44.43821690011282],[11.334342021867096,44.43815570016591],[11.334367992745454,44.43801901088277],[11.334298462948041,44.4378111229649],[11.334153076208395,44.4377296949241],[11.334040944256946,44.437713988288365],[11.333862534256655,44.43755277724062],[11.333641035494876,44.43720527657511],[11.333535709311116,44.43711313698048],[11.333446947362154,44.437035762887234],[11.33339187009882,44.4369137352985],[11.333363406762942,44.43685066939772],[11.333282765225988,44.43669927549728],[11.333243425468936,44.436651211972794],[11.333120154282195,44.43650060643239],[11.33309804794344,44.43635927440892],[11.333009614854467,44.43622885664118],[11.332978977257733,44.43611020758496],[11.332879885773195,44.4359720404297],[11.332731351745384,44.4357884609726],[11.332650920742507,44.43568823631253],[11.332597116569561,44.435572232797135],[11.332494502034873,44.43546426103933],[11.332388339452311,44.43533794011296],[11.332399827009946,44.4352251729757],[11.33249806426549,44.43505662178491],[11.332467655766097,44.4349629107788],[11.332331803337054,44.43481526842134],[11.332645172661946,44.43458447853293],[11.332683923318022,44.43452204921427],[11.33270365243533,44.43446708444543],[11.332663608273434,44.43434262020069],[11.332702799027247,44.434239767498255],[11.332729728908353,44.43416909316633],[11.33268431775484,44.433947818073214],[11.33264526770941,44.43386192580141],[11.3326303636768,44.43378346402148],[11.332570319554641,44.433655839857714],[11.332767752247312,44.433526339345185],[11.332814540527789,44.43343928985811],[11.33279089514243,44.43337789069081],[11.333018098151808,44.43325029484364],[11.333189467586896,44.43324824001318],[11.33330699806958,44.43321701577812],[11.333412778395173,44.433258838356274],[11.333491237394867,44.43333600091757],[11.333610545577427,44.43332626292334],[11.3336948691722,44.43328625290439],[11.333777021625732,44.43329527546408],[11.333851379414643,44.43328650117326],[11.333906270162617,44.43324452074941],[11.33448384793072,44.43325888162703],[11.334536469631233,44.433318005325575],[11.334638872253374,44.433315094593254],[11.334781044293344,44.433208920600215],[11.334890586635279,44.43318494028353],[11.335033103754558,44.4330906636651],[11.335236656542373,44.433005026523155],[11.335405499553174,44.43303635496047],[11.335513304218434,44.43304202382657],[11.33557756749854,44.43301748110813],[11.335920406097562,44.43301525105664],[11.336095773027909,44.4329703397492],[11.336401817334375,44.432946937706205],[11.336576732819857,44.43285709051239],[11.336814289640575,44.43283137747912],[11.337407638305809,44.432687570972526],[11.33764163707307,44.432676626356],[11.337784862809455,44.432704076384724],[11.33802649177288,44.43267241418286],[11.33835019655972,44.432580852776745],[11.338538488159825,44.432600865507666],[11.338620357153541,44.43260593834054],[11.338700466139603,44.432607520038836],[11.338660015370019,44.43247796635696],[11.338562006964684,44.432343815850444],[11.3384516363846,44.43217559241191],[11.33841231886966,44.43207568096715],[11.3383937125199,44.43188476059123],[11.33831768794487,44.43171133406538],[11.33825417667527,44.43155622669122],[11.338152830534707,44.43141707673807],[11.3381845784416,44.43128757536861],[11.338241344664834,44.43111649537474],[11.33830126677924,44.43096504251835],[11.338331185655036,44.43082938672536],[11.33830681485247,44.43067121891685],[11.338316432343289,44.430577630289996],[11.338253033360598,44.430385936700496],[11.33812932167796,44.43015834356559],[11.338294255038003,44.42992315661237],[11.338275445060226,44.42982564096831],[11.338216492288074,44.429725573461326],[11.338332758511921,44.42962866692778],[11.338278300782415,44.42942498174661],[11.338247775476564,44.42928943871699],[11.33811926523546,44.4292566294106],[11.338045987320006,44.429171479584504],[11.338001552889315,44.42909168415455],[11.337976338413588,44.42898048005448],[11.337982700283714,44.42886444134108],[11.337972113438287,44.42877372416325],[11.337963826568767,44.42866677718936],[11.337872348567588,44.42857806684371],[11.33779725992247,44.42853521203344],[11.33763682496398,44.42848048967434],[11.337527152846135,44.428447284933405],[11.337420178288895,44.42840334172039],[11.337323605993626,44.4283512408171],[11.337152528964682,44.42826759674168],[11.33693146914336,44.42815846270186],[11.336722398532933,44.4280744092348],[11.336547788886273,44.42800764851623],[11.336361694672703,44.427928748794955],[11.336222393034186,44.427880957668826],[11.336080774383847,44.42783403210398],[11.335960286771439,44.42778617073143],[11.33586321620607,44.42773414899916],[11.335752226961816,44.427658084821296],[11.335598676369516,44.4275583859303],[11.335512549184203,44.42751606063106],[11.335374439197407,44.42744818946465],[11.33514065010517,44.42735451377732],[11.334892678039006,44.427259435250775],[11.334690923903938,44.42718141033559],[11.334589464212476,44.42713735256688],[11.334455285302722,44.427060762996284],[11.334396318579604,44.42699950935106],[11.33429517061867,44.426893732667125],[11.33420429829638,44.42680317407683],[11.334129571397067,44.426728703850635],[11.33403337900851,44.42665921236208],[11.333922825960833,44.42660408963062],[11.333794622085383,44.42655888547926],[11.33368851225266,44.4265248299997],[11.333623253716226,44.42649786323861],[11.33355620010113,44.42646698378607],[11.333413610563666,44.42641531427683],[11.33316768288239,44.42633200762905],[11.332893621426186,44.42625208233608],[11.33275886679084,44.426219952722874],[11.332612835763792,44.42620043705381],[11.33244206427199,44.42619041738231],[11.332231815922372,44.42615533020654],[11.33210426157676,44.42612642771233],[11.331905470710215,44.42608322967784],[11.331720707741617,44.426037486969605],[11.331541297866403,44.42598770148546],[11.331379040395369,44.42593531482563],[11.331197580008855,44.42587375323767],[11.33104005112208,44.42582182858001],[11.330877873929094,44.425771122112586],[11.330722659413725,44.42571802446101],[11.330483128361037,44.425598014596645],[11.330307282803943,44.425499762045796],[11.330100571781443,44.42537569740756],[11.32984137227327,44.425234695261175],[11.329581450392043,44.42509539881237],[11.329307228470569,44.424991276921716],[11.328834310173443,44.42482650870404],[11.328610979137405,44.424738221019254],[11.328314632526872,44.42463061579158],[11.328068142944092,44.42455236711528],[11.327942083649615,44.424521746916795],[11.327660611290735,44.42449203594952],[11.327329279022297,44.42445209050363],[11.327040747625011,44.424343197328795],[11.326364060373912,44.42389055363533],[11.325942215906025,44.42366677244153],[11.325793264853077,44.42363267682744],[11.325650657510149,44.423600128928655],[11.325217557781688,44.42362695974256],[11.324757682229885,44.423691459166044],[11.324339484516377,44.423759254650584],[11.324123173212227,44.423758032225],[11.323813851776185,44.42374780896334],[11.323569417014223,44.42371105116613],[11.323240440397043,44.423661579862994],[11.321785933907798,44.423272561035205],[11.320396232626447,44.4228546392497],[11.320222759331486,44.422776014708255],[11.319958187845089,44.422498381595865],[11.31980456566284,44.42236076088798],[11.3196985190122,44.42231707561067],[11.319479530040628,44.42226673218932],[11.319329129755722,44.42223157097429],[11.319167316281941,44.42219374175296],[11.318843122835691,44.42211536820135],[11.318755730059797,44.422109264444344],[11.318292333244461,44.422143996986996],[11.31789281337407,44.42216617589246],[11.316867699988748,44.422251127547376],[11.316684827112322,44.422264887333505],[11.31596673195059,44.42231891807431],[11.315887971008847,44.42232504770737],[11.315731929240057,44.422337190362676],[11.315639022297512,44.422348493280545],[11.315369974923858,44.422380526434864],[11.315182468601169,44.42239953526174],[11.315029310257021,44.422377881993214],[11.314884929268413,44.42234030173825],[11.31469833245033,44.42224730959973],[11.314564196304206,44.42217069566795],[11.314381238019967,44.42207110789845],[11.310433610633126,44.42467545001488],[11.309835078802399,44.42506664571544],[11.30973987686956,44.42510870013231],[11.309419753741953,44.425246801586006],[11.309169894933001,44.42550110705256],[11.308863520791764,44.425576512527286],[11.308782551751218,44.4256338506215],[11.30862088075655,44.425814912090296],[11.308402495970954,44.425971813525706],[11.308076019702293,44.42613483225546],[11.307871778276185,44.42627174497672],[11.30774276925555,44.42638519587561],[11.307581900645417,44.426427263390245],[11.30740022962285,44.42651927871098],[11.307204652538077,44.42669709122405],[11.307003374335256,44.4268896429981],[11.306599912440445,44.42715154621848],[11.306045823873156,44.427364266151606],[11.305827215511405,44.42732864108714],[11.305515332319034,44.42733698828503],[11.305398185164341,44.427340122908376],[11.30533413729341,44.427407526289954],[11.305236835275908,44.427509923672766],[11.304974202065216,44.42766647060188],[11.304827939561951,44.42775365368095],[11.304572454447598,44.42790593946889],[11.303937488092497,44.428054999197464],[11.303598981528522,44.42818946362759],[11.303396489711448,44.428291449635154],[11.303151650164484,44.428334656918665],[11.30290566328773,44.4284088199381],[11.302771624691973,44.42851449135862],[11.302633507560998,44.4286765116306],[11.302568607873754,44.42875247389999],[11.302329353145838,44.428889129518545],[11.302218303393158,44.42890608620956],[11.301861958602343,44.42902346398274],[11.301701966023513,44.42913663701968],[11.301555180174931,44.42922939261907],[11.3014749615455,44.4292536743032],[11.301375939667667,44.42928364820748],[11.301381852436586,44.42940817340262],[11.301358523709258,44.429540000270755],[11.30131012347485,44.429598789326285],[11.301239352326352,44.42968475381734],[11.301238416644042,44.42976073124249],[11.301339745037378,44.42984196429277],[11.301546429067331,44.43002628144726],[11.301634808648352,44.43021749280884],[11.301716377746596,44.43027492277687],[11.301740197978132,44.430341959514934],[11.301787600121635,44.430469287788256],[11.301837933546054,44.43065113211356],[11.301831593611547,44.43078967797088],[11.301540641403587,44.431018911475114],[11.301493430937676,44.431096379970555],[11.301486381842162,44.431256881616726],[11.301464730629137,44.43132540227107],[11.301272250932497,44.43142267332774],[11.301164028324964,44.43152613985577],[11.300964415061319,44.43162187164069],[11.300920765824742,44.43169026842681],[11.30087745135451,44.43177007617584],[11.300757243689832,44.43186517309078],[11.300650165388674,44.43189771506512],[11.300564826849959,44.43190922407146],[11.300439267809194,44.43192615634064],[11.300165614264841,44.43193617078813],[11.300027699127352,44.431983399732545],[11.299806232826157,44.43211639493642],[11.299640336302005,44.432181165616335],[11.299573880626998,44.432204660075485],[11.299408660148394,44.43225638044387],[11.299254287474504,44.43230449809115],[11.299164505102613,44.43231756474194],[11.299090829196789,44.432401189937366],[11.299020798218194,44.432437484552715],[11.298936229693211,44.43252358771059],[11.298856193726886,44.432625350105575],[11.298743051717087,44.432743537763244],[11.298593115570092,44.43288496583133],[11.298334439478229,44.433056715455635],[11.298184871071395,44.4331671943793],[11.297999454804222,44.433264884846956],[11.297910331592721,44.43335502196601],[11.297942732244076,44.4334459573298],[11.298027532218684,44.43352033037785],[11.298046108724503,44.4335936652553],[11.2979957794407,44.43363181142826],[11.297880850097826,44.433662331161365],[11.29776885294311,44.43369207877084],[11.297636497582422,44.43364360828722],[11.297506346048266,44.43362590395875],[11.297397787887045,44.433701239387716],[11.297365649457142,44.43380259403738],[11.29729745191719,44.43394352591985],[11.297065418809266,44.43403835215267],[11.296696031421256,44.43412834514951],[11.296403182512472,44.43416967795003],[11.29611514998579,44.434213729970786],[11.295837425241851,44.43430417750787],[11.295662587991444,44.43431170048738],[11.295574161496045,44.434175101211736],[11.295410317788381,44.4341018701064],[11.295335626169573,44.4340994396837],[11.295235466184655,44.43415254835072],[11.295050471150633,44.434148164612914],[11.294654494653743,44.43415139122234],[11.294504965698888,44.43425022353318],[11.294483038721921,44.434365271804474],[11.294400541194378,44.43442431290119],[11.293871888618607,44.43441974522471],[11.293694005564548,44.43446946114777],[11.293554547899577,44.434557789326774],[11.293347734840001,44.43453043497223],[11.293392492374878,44.43436974349823],[11.293391351613792,44.43422461646717],[11.293390715386707,44.43414359518239],[11.293333065254068,44.434074977647995],[11.292994816678151,44.434040138905026],[11.29306299759129,44.4339560608854],[11.293201421992945,44.433861571218166],[11.293358865410926,44.43371099074439],[11.293470977172326,44.43356583007843],[11.293571060178314,44.433414709227804],[11.293692890542117,44.43327722836746],[11.29379472277884,44.433050122637795],[11.293783598196848,44.43294625337193],[11.293813015061794,44.43287533835379],[11.293945627692658,44.43273257221906],[11.293974273777483,44.43264197092228],[11.294165965218744,44.432403493181134],[11.294630963391285,44.43146465095759],[11.294631427112975,44.43131609862798],[11.294646724725158,44.4310648576586],[11.294615308901738,44.43092426325303],[11.294630001459842,44.430757983678696],[11.29467220799925,44.430512383743505],[11.294540160585338,44.430188135939495],[11.294697806099588,44.429796001848736],[11.29469355402741,44.42969360860671],[11.294630142464694,44.429540795599536],[11.294577558138434,44.42939873614143],[11.294553668336473,44.429189159027466],[11.29454698029367,44.4291184023237],[11.294516104799504,44.428991863225505],[11.294461390113666,44.42893783049553],[11.294424214891139,44.428770342772786],[11.294395653167529,44.42862237465],[11.294320869124993,44.428517256025124],[11.29418023376154,44.42855524482052],[11.294035254221399,44.428562100443216],[11.293736669545739,44.42849664096134],[11.293627480244673,44.42835480101871],[11.293438966876437,44.42811214518802],[11.293358785191408,44.42798941404969],[11.292880716434311,44.42783134028766],[11.292513496304021,44.42785729175113],[11.292121406906277,44.427910172395414],[11.291656164232393,44.4280601715418],[11.291398313298204,44.428092356397975],[11.29098358817579,44.428088305317964],[11.290818466823008,44.42810231105665],[11.290644799330407,44.42811873773632],[11.290517227546967,44.42814942181996],[11.290360856400403,44.42806591745303],[11.289979715878257,44.4279165789642],[11.289508588802416,44.42779549388417],[11.288032619225465,44.42753757157087],[11.285856865723183,44.427193493588646],[11.285296500330496,44.42709893808866],[11.28370583977673,44.42683875079769],[11.283257800571063,44.42676557127067],[11.283566459213814,44.427402783400616],[11.283567554971045,44.42747503180929],[11.283568412766511,44.42754368671995],[11.28357486835769,44.42793122680825],[11.283579436184404,44.42818938711988],[11.283582938097402,44.428944396430985],[11.284354264024692,44.43203422143133],[11.284918383167497,44.433090279288834],[11.284933477192395,44.43363856373424],[11.285055251108668,44.43794995335826],[11.2850712329301,44.438641695047515],[11.284118485098148,44.439967233947925],[11.28351496806555,44.43999787420663],[11.282062645119204,44.444266469337826],[11.283148583111318,44.44694039973129],[11.283501397137403,44.44789153793161],[11.284768093134293,44.45139827479629],[11.284645675199762,44.45175488496605],[11.284593024761051,44.451875747489154],[11.284726263224556,44.45265347409373],[11.285376681241344,44.45384454131697],[11.28579389030649,44.45460924781078],[11.286021267652924,44.455161712074045],[11.286119459713303,44.45554403835266],[11.286151583603182,44.45560246940189],[11.286576174542525,44.45595462524306],[11.286858288466298,44.45668154176383],[11.28689223750703,44.45682658640226],[11.287255916584359,44.45823379343244],[11.287313131224101,44.45947722320517],[11.287554733997007,44.459930373993856],[11.287534561359859,44.460097887065245],[11.289077924216697,44.46027006731088],[11.289165440988468,44.46055919543016],[11.289333410140564,44.460394910048265],[11.289598984378056,44.46045597527706],[11.289791415764585,44.46057534156539],[11.289916075706206,44.46064935740673],[11.290162496548142,44.46070293116755],[11.290333385573414,44.46069331092779],[11.290628452458202,44.46076559852271],[11.290787819726559,44.46080290848079],[11.290895393161417,44.46090202528309],[11.291006105785096,44.46096057021088],[11.291156812479159,44.46097723732761],[11.291280822587346,44.46097419020014],[11.291910383183351,44.46114216016382],[11.29210422761209,44.46117709354103],[11.292328270102455,44.461321128222025],[11.292598297465508,44.46141586483918],[11.293145267177168,44.46156072834384],[11.293180356113558,44.46163429015407],[11.293084847058452,44.46170316726527],[11.292824329566141,44.46197171690155],[11.292761498373318,44.46225317870862],[11.292805606106393,44.462296175667525],[11.292936048814502,44.46303906432792],[11.29259848222964,44.463346860997454],[11.292301555817472,44.463521058699044],[11.292227536554488,44.46355515690296],[11.291953653210737,44.463672643440475],[11.29190126485496,44.46371926961778],[11.291828060145107,44.463936231152545],[11.291714603660399,44.46405686720062],[11.291634635150459,44.46411829853875],[11.29157111343409,44.464154575703795],[11.29149536347864,44.46418800508885],[11.291420831414191,44.464220757307274],[11.291329681951636,44.46426525619203],[11.291086674732842,44.46452557235602],[11.290950221337066,44.46471286341114],[11.290926381826846,44.46480617130418],[11.290767888053221,44.46497196033093],[11.29062034562425,44.46513696224168],[11.290541255620678,44.46528427464],[11.290386901235998,44.46565647221848],[11.290227527654567,44.466020886013375],[11.290175124435606,44.46622786140594],[11.290157793979875,44.46660855983648],[11.290048421249368,44.46714639508948],[11.290135705252286,44.46718852689841],[11.290180013050746,44.467236588244106],[11.290199806364464,44.46740105012193],[11.290290942363328,44.467421163126495],[11.291328332592057,44.467227054069376],[11.291447779267866,44.467247721391445],[11.291640613855781,44.46856100984423],[11.29262504438915,44.46880006080719],[11.292621178681172,44.46888172123573],[11.291597951197527,44.469237598909864],[11.291734391745992,44.46943122699023],[11.29219821537286,44.46971843089341],[11.293336811117584,44.46980207665243],[11.293698735214344,44.469732741303446],[11.293724466302205,44.46978793975986],[11.29369437056108,44.46997135132248],[11.293670700936639,44.47010014621333],[11.293626487369783,44.470307347410674],[11.293430126341796,44.47075821260885],[11.2932849707915,44.4710041953998],[11.293122346787063,44.4712068630713],[11.2930001857287,44.47135910498371],[11.292817608594522,44.471554954026594],[11.292774050983583,44.47160128976071],[11.292615348103775,44.47178227773818],[11.292086533869645,44.4717822047],[11.292120810458254,44.47173228090263],[11.292486452769676,44.47119971721589],[11.291241134637477,44.47069580918559],[11.291099629901579,44.47093948424918],[11.290831442855247,44.47131452391945],[11.290649056859934,44.47153310826087],[11.290519154009793,44.47156666483465],[11.290472639869476,44.471723448345834],[11.290520049907828,44.47235266320072],[11.290570188652014,44.473031330655495],[11.291087921991327,44.47300912457487],[11.291310554706577,44.472995656535865],[11.29167656874498,44.473091834442855],[11.291344060013934,44.47379112421066],[11.291433812479358,44.473815773312964],[11.291414673164908,44.47388873159114],[11.291363772581525,44.473973595607326],[11.291227185180356,44.4741980204544],[11.291090492012344,44.47435942103225],[11.291039142469748,44.474472985238634],[11.291534954856772,44.474452341451844],[11.29170963965587,44.47445840152271],[11.292005293657077,44.47471409515541],[11.291694300877158,44.47490172315469],[11.291469963483335,44.474919521174954],[11.291415064257928,44.474882365057525],[11.291217099765001,44.47490909645278],[11.290821966464124,44.47544903447325],[11.2906329739831,44.47557941768035],[11.290343415699635,44.4757308429195],[11.28964731548123,44.47585637361806],[11.289366076167058,44.47601668946121],[11.28896800008094,44.47630655479908],[11.288941614772849,44.47647588472227],[11.288965045941223,44.47669315512445],[11.289178416294822,44.47708554347975],[11.289384842409646,44.477480877602524],[11.289860537687455,44.477411921233106],[11.290245377045133,44.4773324282117],[11.290763005041617,44.47731538943891],[11.291284408788453,44.477404779966285],[11.291482033234688,44.47733527442355],[11.292283408652533,44.47696978614049],[11.292414698837012,44.47686580061192],[11.292536079027828,44.47690000343102],[11.292787900155197,44.47708962128537],[11.292796978042812,44.477160896732634],[11.29270952910013,44.477275744831495],[11.292412743774012,44.47762322907675],[11.29210628914082,44.47776441581764],[11.291962841363658,44.47785394607517],[11.292061561370524,44.47808715606028],[11.291444577827862,44.478285207290185],[11.291359998299384,44.478352739030576],[11.291124317815632,44.47841486104605],[11.291139660207195,44.47858616175697],[11.291586584960209,44.47890127288671],[11.29179387359978,44.47915761092093],[11.292032243087544,44.479364940632905],[11.292196549076811,44.47950680854079],[11.292236168905767,44.47963542139582],[11.292314179834184,44.479741321060054],[11.292699125568612,44.47995864856366],[11.293089256644091,44.4802681453123],[11.292630178309723,44.48036501179881],[11.292631705073221,44.480203627095385],[11.291901961261466,44.48014792553275],[11.291283584288998,44.480656051034046],[11.29163871010654,44.480974696798725],[11.291169090043681,44.48150513000223],[11.290905921121652,44.481668520327375],[11.290544299859615,44.481926718379235],[11.290396201406182,44.482078221892245],[11.290752270140416,44.48222017638277],[11.291189588280327,44.482289608473444],[11.29146521345909,44.48228407613176],[11.291503628899536,44.482341821889875],[11.291276538067653,44.48259337954403],[11.29158364949773,44.48271943921217],[11.29188378387264,44.482897964111615],[11.291913039940686,44.482982618803575],[11.291867485927883,44.483163857051245],[11.291844252223493,44.483272914883585],[11.29183577472374,44.48337773434274],[11.291851761658876,44.483464621547014],[11.291869293091027,44.48353122792311],[11.291955346643919,44.48362120773894],[11.292024460713376,44.4836400788989],[11.292143597288975,44.48363206215159],[11.292322622190463,44.48360765038184],[11.292419418310027,44.483593723618775],[11.292498866171735,44.48357260302438],[11.29256926963712,44.483544181285],[11.29268108906762,44.483489610495724],[11.292813889347201,44.48340873472993],[11.292913733339493,44.483329646060035],[11.293067916778659,44.48319264134538],[11.29316704823631,44.48311525019829],[11.293262922079517,44.483054816358724],[11.293330008379671,44.48302196052708],[11.293452575427393,44.48298123108531],[11.293888034928788,44.48288246560942],[11.294348652834612,44.48276553927856],[11.294597058523587,44.48280575698221],[11.294874099218864,44.482976295821764],[11.295453386858904,44.482877998857354],[11.295496294384211,44.48299022769465],[11.295553890054313,44.483196128256736],[11.295599074234474,44.48332630960439],[11.29569670875835,44.483551096588776],[11.295752650078676,44.483594979569524],[11.295887158525128,44.48363784865527],[11.296166121128575,44.48371720530599],[11.296311839518117,44.48374521513928],[11.296450026105772,44.48378181867692],[11.296586839724299,44.483823516172905],[11.296811346370433,44.48387694902312],[11.296898966643715,44.483906694175026],[11.296997174984522,44.48394579297301],[11.297113898468881,44.48395638596893],[11.29750433709345,44.48401211197708],[11.297685367058822,44.48403884761628],[11.297733384042077,44.484180792923],[11.29775737102565,44.48431140995344],[11.29778624812392,44.484456265635124],[11.297763619705758,44.48453070845485],[11.297730574646314,44.48460958122363],[11.297703688015151,44.48468552310348],[11.29768325585421,44.48480577499847],[11.297678600479141,44.48490714386123],[11.297674904065524,44.4850332506907],[11.29767284021387,44.485200958569564],[11.297666303481797,44.485334439644554],[11.297664578749659,44.485390743334484],[11.297661148390617,44.48552359293528],[11.297654430426945,44.48561262871828],[11.297655188970849,44.48569194635572],[11.29765074166718,44.4857989347625],[11.297649692862407,44.48587209698275],[11.297651109358274,44.485928335642576],[11.297636712490162,44.485982074859386],[11.29762178079193,44.48604201663083],[11.297612206426237,44.48609847650461],[11.297601874864238,44.486155508860534],[11.297599657509101,44.4862590828094],[11.29762830697748,44.48636821738525],[11.297651962109734,44.48643020022754],[11.2976639890747,44.48649634932272],[11.297659134074298,44.48662241372471],[11.297615579107193,44.486684681652186],[11.297401948742653,44.48692867233551],[11.297196920258589,44.48716032108439],[11.297118766314025,44.48721261552313],[11.29703262347986,44.48727087805354],[11.296809831375267,44.48752179289458],[11.29675706810849,44.487579122542314],[11.296681685561653,44.487661095558956],[11.296369685068086,44.488002146668926],[11.295811243410906,44.488632851557036],[11.296010975501275,44.48872532487491],[11.29599311393537,44.48882105641361],[11.295928548558573,44.489178507132294],[11.295837414774226,44.48962033064942],[11.295822332550891,44.48969422336186],[11.295805737806786,44.48977456693797],[11.295708639026879,44.49026433414765],[11.29565386652455,44.49055126255842],[11.29559819438221,44.4907487872882],[11.29492769661406,44.49061368559002],[11.294640127994956,44.49055645023664],[11.294294025737624,44.49048969854268],[11.293914262016726,44.49040971005125],[11.293682555913287,44.49036135579033],[11.293532400763509,44.490330019901705],[11.293255708047537,44.490269187573944],[11.293133748366865,44.49023998543124],[11.292951029707426,44.49019653312714],[11.292540168292463,44.49010182745048],[11.292187380044977,44.490025078728124],[11.291825338383935,44.48995244779792],[11.291450897890957,44.48988457385825],[11.2912623713413,44.489847282278625],[11.291191040361907,44.48983919583175],[11.291054812235785,44.489805873910804],[11.290744517849804,44.48972995040484],[11.290455945545501,44.48966709998247],[11.290232452351901,44.489612739515955],[11.290098484782833,44.4895636989748],[11.28993221609769,44.48949981595776],[11.289810369800104,44.489439243927634],[11.289709653534327,44.48937599826771],[11.289614942650411,44.489305881234664],[11.289502780534962,44.48921134696623],[11.289345972721803,44.48904064365855],[11.28921272084732,44.48891304704647],[11.2891381401672,44.48895196883789],[11.2892219179953,44.48910445521602],[11.289140632305582,44.48909596125627],[11.288854585068993,44.4891174465096],[11.288518355063378,44.489161887428146],[11.28841787333436,44.489185275971494],[11.288183615322776,44.489204605949425],[11.287886288735443,44.48921900678546],[11.287730460492917,44.489233946202816],[11.287523776513897,44.489254962899984],[11.28714778931174,44.48928781287283],[11.287063275219776,44.48929739033935],[11.286986335110278,44.489272216521066],[11.286829155115434,44.4891424750241],[11.285655868878383,44.49053244909221],[11.285476942193219,44.49055966434493],[11.285355449664449,44.49056827943904],[11.285253273652335,44.49056864239346],[11.284589338158579,44.490572591750926],[11.28445727395036,44.4905946994672],[11.284293094403289,44.49063736728675],[11.283973852453421,44.490730178070194],[11.28376390682003,44.49041052295941],[11.283451381591837,44.490136576097626],[11.28334127989303,44.490074637840294],[11.283219901280043,44.490005606146404],[11.282747354462483,44.489739924308154],[11.282488633644316,44.489595440472115],[11.282421691911885,44.48964791475417],[11.282123311848355,44.48988180969314],[11.282026453632065,44.489955818484106],[11.281926421537701,44.49003316207681],[11.281225935175463,44.49057323583668],[11.280042081875798,44.4915179333693],[11.279568021393686,44.49190887460798],[11.279410943879755,44.4921503635101],[11.279288900246474,44.492132260692195],[11.278631053086855,44.49204018551771],[11.278195645993572,44.49198015390405],[11.277765831891065,44.49192346411538],[11.277581603076353,44.49190576572789],[11.27748055029795,44.49188872035068],[11.277119525170832,44.49181764198016],[11.276862782560645,44.49176424714556],[11.276616976092228,44.491709507443446],[11.275968628322149,44.49154255148678],[11.27575788191252,44.491488080467256],[11.274577144777693,44.4911813389113],[11.274160472628598,44.49107824132034],[11.274052731337925,44.49105675477313],[11.27398364499383,44.49107429284105],[11.273826719097038,44.49118728919685],[11.273641629857982,44.49133951659322],[11.27331021080329,44.49162968255641],[11.273227238093487,44.491669034725874],[11.273136781312777,44.491677585919305],[11.27293765539205,44.49167085880664],[11.272755849303328,44.49166463814193],[11.272647705094515,44.491673256615805],[11.272487793398193,44.49168432429116],[11.272285309066088,44.49171254594713],[11.272071586724902,44.49175505792673],[11.27181004281539,44.491821029685234],[11.271722170092803,44.4918452868756],[11.271616007199798,44.49188453311288],[11.271383317944872,44.49192460350436],[11.27121364950452,44.491947680857024],[11.271079721553306,44.49196248678308],[11.270943646364675,44.49197780158723],[11.270829841479232,44.49200257396376],[11.27053927448174,44.49209050332721],[11.27016267418022,44.49208785930117],[11.26986575804936,44.492093205386674],[11.269715034850426,44.49209845282531],[11.269580685719532,44.49187327187513],[11.269357262943002,44.49134543487547],[11.269307373397796,44.49123550015974],[11.269207710362508,44.49101588401567],[11.26917157605811,44.49096446450262],[11.269070875925406,44.49097358698108],[11.26851383584771,44.491121949399435],[11.267753515746584,44.49127771346793],[11.266912276137953,44.49145533819332],[11.265742094312035,44.49170419454739],[11.265032129012043,44.4918539447476],[11.26469267336713,44.491925317038685],[11.26458656699712,44.49194896541153],[11.263994411498652,44.4920809501694],[11.263746628468372,44.492136138333514],[11.262865612687,44.49234357962322],[11.262789386214536,44.49234397070871],[11.262688065429161,44.492366233324724],[11.262310470205843,44.49248061582571],[11.261314005142337,44.49277099189638],[11.26035257466016,44.49305334758132],[11.258872425286262,44.49347987793374],[11.257933544468814,44.49375614326541],[11.257016942693511,44.49401957590412],[11.25669903986496,44.494112510711915],[11.256275433615874,44.49423679228412],[11.256127598335363,44.494276977367754],[11.256167081350961,44.49436243375748],[11.25625912555502,44.49454769695461],[11.256323359756887,44.49464375943193],[11.256373947499391,44.49475304322333],[11.256418717621417,44.494853990614764],[11.256482782076434,44.494965815792725],[11.256532439749844,44.49503451658449],[11.256612530649019,44.49515061696779],[11.2566878270846,44.49526840277899],[11.256725167611291,44.4953396902729],[11.256763764182985,44.49542331759187],[11.25680635854586,44.495508558296585],[11.25691010188472,44.49566095718644],[11.256962508244358,44.49572547138183],[11.257032886442586,44.49579722097081],[11.257116738124914,44.49587207908175],[11.257149684808633,44.495932573117464],[11.25715205640764,44.495992913696476],[11.257173454483029,44.496058323568406],[11.257200087491283,44.49611715546767],[11.257215769615478,44.49617732828035],[11.257215936535554,44.49624259079844],[11.257214559067355,44.49629860157543],[11.25725464891001,44.49641061676757],[11.257316075839798,44.49657650923547],[11.257352316965608,44.49670070049093],[11.25738982208901,44.49679673363349],[11.257444563292411,44.49691155941939],[11.257458923348766,44.497018732362314],[11.257487621748616,44.49709019048518],[11.257525496390771,44.497195783019],[11.25756180053727,44.49726033088138],[11.257648008424175,44.497538816421994],[11.257779233936661,44.497903627657536],[11.257804174203093,44.49797965937012],[11.25790499189922,44.49833100574359],[11.257929697870889,44.49844135343531],[11.257756061646676,44.49844366691341],[11.257195222505535,44.49835348355736],[11.256879388568192,44.49831752795211],[11.25661129321049,44.4982963773292],[11.256378098018354,44.4982835457616],[11.255678344305206,44.49826024110593],[11.255257485126892,44.49825280767567],[11.254863739877635,44.49823470233733],[11.254529872861692,44.498220479589264],[11.25441450137281,44.498204749846124],[11.254033211890201,44.49816332905399],[11.252993852469643,44.49805838055725],[11.252582818270097,44.49802034976908],[11.252091760057263,44.49796589793911],[11.251934870862211,44.49793355178009],[11.251833483031183,44.4979136005626],[11.251567622806505,44.497868770140926],[11.25142644061265,44.49783611348385],[11.250942457374832,44.49774100859622],[11.250199812670585,44.49760373304191],[11.249755023803884,44.497525849731794],[11.249529027359833,44.497495420316994],[11.249068598761218,44.49741953494945],[11.24860802904871,44.49734027553643],[11.248603129757644,44.49739662924754],[11.248639992674862,44.49754370568498],[11.248847864189253,44.497996088959454],[11.249169352928172,44.49869025248864],[11.24934765415422,44.49909521259089],[11.249501297366793,44.49945171636791],[11.249593295394465,44.49963613590681],[11.24974179324613,44.499879092064155],[11.250003034922027,44.500314491686105],[11.250296322338302,44.500785833533286],[11.250897369974966,44.50173666193988],[11.251089149232326,44.50209886701416],[11.250716985576622,44.50217683275505],[11.25024836378637,44.50227722123974],[11.249971528905355,44.5023355600608],[11.249751272355294,44.50237310147593],[11.249538523635445,44.50240148501825],[11.24932314336203,44.50242261284964],[11.249074138734997,44.50242807706601],[11.248762761364809,44.50238582843467],[11.248542511891008,44.502321526170945],[11.248293016688297,44.5022324733057],[11.248005120772191,44.5021261768998],[11.247814339409656,44.50207141691369],[11.247480845432754,44.50202622620305],[11.247128800626049,44.502010090011574],[11.246220786000624,44.50200995118984],[11.24595687596739,44.5020162690307],[11.245490020781084,44.50204007736484],[11.244936068739522,44.502068423334244],[11.24416251285781,44.50211007452006],[11.243778029756141,44.502129448681195],[11.243208746953998,44.50216764533041],[11.24304803464953,44.502200051719846],[11.242806200846193,44.50226951173811],[11.242560113046604,44.50237168814653],[11.242424649610937,44.50242667324619],[11.24229663832861,44.502471378819976],[11.241909764861695,44.502571818829935],[11.241724011806324,44.502627791614785],[11.241560821561,44.50269795429818],[11.24147623397671,44.50274155511998],[11.24118612773273,44.50293149294556],[11.240988649454126,44.50305071081665],[11.240727413654797,44.50318862177779],[11.24056135935009,44.50326614730997],[11.240342322101055,44.50336445174674],[11.240061648878159,44.50348492799008],[11.23995936132898,44.50351820907889],[11.239821224519671,44.5035445532123],[11.239685719504914,44.503557903840566],[11.23927424285546,44.503611551030986],[11.23901404343889,44.503653220269385],[11.238386238715222,44.50378593949238],[11.237974459014806,44.50387278841004],[11.237671902580109,44.50393779340453],[11.237319822373799,44.50402346072959],[11.236702618127667,44.504182921207764],[11.237180269049626,44.50489660800493],[11.238020713690503,44.50622654203918],[11.236884829723715,44.50659422045794],[11.23735408240263,44.507301879937785],[11.237718415832257,44.50786469378352],[11.237992102407807,44.50827349437575],[11.237661790170199,44.50839806788011],[11.237549397223422,44.50844022128072],[11.237163002098653,44.5085546928347],[11.236962182780474,44.50862839412636],[11.236358557840871,44.508839394761345],[11.236216368771215,44.50889586445073],[11.235867987454792,44.50901832007826],[11.234931189070336,44.5093455959019],[11.233903219649028,44.509707239147694],[11.233492640028928,44.50984749855479],[11.233613076345335,44.510068542077136],[11.233711643411658,44.51024944366331],[11.233975595687747,44.510696075601075],[11.234337306472543,44.51127246012811],[11.234385009109612,44.5113480414071],[11.23479259036695,44.512136766478065],[11.234924393490235,44.51235531113188],[11.234992847609144,44.51250025269696],[11.235053179915191,44.51255646285621],[11.23514026148268,44.51260292370416],[11.235833392447404,44.512972731656994],[11.235999573498106,44.513041493259195],[11.236679093379017,44.513106955910786],[11.236788180145078,44.51310144355817],[11.237000760517642,44.51306745258425],[11.237211948497055,44.51302006609391],[11.237619955190114,44.512933226440026],[11.237727213127195,44.51292100002312],[11.237944310283408,44.51292292699373],[11.238254996286289,44.51293533643185],[11.238497498327764,44.512954279983106],[11.23863472658433,44.51298534756198],[11.23877480465491,44.51305011675683],[11.238891594879568,44.51314291741329],[11.23898885376456,44.51325277325673],[11.239029670208113,44.513298875509314],[11.23913850877277,44.51346536793418],[11.239238724826922,44.51368637167668],[11.239334291322697,44.514066527888815],[11.239378192367427,44.51463787975617],[11.239425878694092,44.51483555986738],[11.239720301341304,44.51537779680172],[11.240148003016541,44.51613515758197],[11.240245015492125,44.51632736910061],[11.2402992036007,44.51648947111918],[11.240372493392059,44.51680142198198],[11.24044407866364,44.517396979843255],[11.240472629123394,44.51765895477445],[11.24049153436201,44.51783491136898],[11.240498135797022,44.51792967932683],[11.240514277066795,44.518161362947914],[11.240627392830229,44.51842470730386],[11.240704974461735,44.51860209939727],[11.240833687664965,44.51873911449367],[11.240995780717812,44.518905847851464],[11.241141732531668,44.51906164771831],[11.241290588643434,44.51923134390163],[11.24145177180654,44.51941509165985],[11.241517333023475,44.519504953298316],[11.241589663721903,44.519596649868774],[11.241729987639145,44.51988224986344],[11.241825658896696,44.520059853060395],[11.241873242024024,44.52017256782894],[11.241933862335259,44.52039980824677],[11.242153238831136,44.521218652342554],[11.242225431461586,44.52158351529014],[11.24227239748532,44.52188528972482],[11.24227585839569,44.52230326929234],[11.242230822335971,44.52260515837241],[11.242186229688173,44.522795650001505],[11.24213754948399,44.522920946419525],[11.241905517491233,44.523391375577255],[11.241657036301948,44.52377153559366],[11.241534543232296,44.52390307577197],[11.241445664740144,44.523991742354376],[11.241394926020027,44.524042812824426],[11.24121592737683,44.524194301152235],[11.241069618763213,44.52429619759821],[11.240741794877472,44.524484364378964],[11.24036144940031,44.524626631253966],[11.24010740624324,44.524721653783715],[11.239940086498509,44.52478423856504],[11.239445375965282,44.52492728439927],[11.239206732405206,44.52497979027781],[11.238767997267658,44.52504466225388],[11.237999969081539,44.52513623753056],[11.237815684504305,44.52514809991485],[11.23748452588353,44.525169416118956],[11.237254592435367,44.52518235596229],[11.237066609811992,44.52518210684024],[11.23677787595688,44.52518036930345],[11.236209934993262,44.52517695027879],[11.235937800579677,44.52516864507315],[11.235401284978371,44.525152270688594],[11.234667303009871,44.52512670076699],[11.233905316257179,44.525108981287765],[11.23381596121446,44.52511691258678],[11.23315712796307,44.52528734339404],[11.233075391038476,44.52533001698119],[11.232919745262619,44.525548218489504],[11.232552887003502,44.52606379776035],[11.232451764171657,44.526195741124496],[11.232304080936451,44.5263241054552],[11.232195713327497,44.526418786734205],[11.232036382841645,44.52658562909942],[11.231748357269916,44.526888607051504],[11.231677283315499,44.52696313544378],[11.231594290310053,44.52705534048589],[11.231326410188831,44.52735203335363],[11.23108297223063,44.52769156408877],[11.231027915791977,44.52775339640174],[11.230999629077903,44.52781584070535],[11.230896188206236,44.52807274430708],[11.230927675562416,44.52829999251476],[11.230961463982092,44.52852629460923],[11.231059770392344,44.529184703896405],[11.231107894150853,44.52941500272265],[11.231133661034628,44.52958498580011],[11.231134298821866,44.52965305115521],[11.231049069254007,44.5299754225431],[11.230932775462977,44.530414462614296],[11.230917087782645,44.530473689005056],[11.230769003329769,44.53104485339316],[11.230638354248713,44.53147501021626],[11.230760066968545,44.53189208231012],[11.230791661406043,44.531987962842855],[11.230925521756872,44.532177200395566],[11.231036443582461,44.532321881092784],[11.23125922654265,44.532635424568674],[11.231365262168836,44.532754875282265],[11.231483822618834,44.532914040293484],[11.231512837099679,44.53297367213265],[11.231546643514946,44.5330349018146],[11.231611245196667,44.533181612682036],[11.231795380477571,44.53353361023361],[11.231896956483775,44.53372150987182],[11.231915594727207,44.53379766556344],[11.23193408525795,44.533848744748276],[11.231957794917736,44.53391414710449],[11.232004155976593,44.53397457393453],[11.232122543740763,44.534149491075944],[11.232173638741251,44.534210382510196],[11.232283451533615,44.53432582629472],[11.232798622522667,44.534921152895464],[11.232923969482561,44.53507229943679],[11.233047212228897,44.53523024589177],[11.233183277122086,44.535394124124835],[11.23323080475654,44.53546465245695],[11.233266877431523,44.5355349655562],[11.233317517768647,44.535633996212354],[11.233383631044576,44.53576072924356],[11.233597149309308,44.53617029443748],[11.233873033538686,44.53671802430439],[11.234036720155636,44.536997267672305],[11.23418579707326,44.537234039623755],[11.23435468349038,44.53745409895791],[11.234606757698444,44.537812627209846],[11.234711155689446,44.537950682012735],[11.234772737543892,44.53801811774111],[11.234870956778904,44.53815911015625],[11.234942355173228,44.538277553014815],[11.235055140623214,44.53851109220443],[11.235185199162954,44.538723477159216],[11.235221770605165,44.53878345425478],[11.235279200121315,44.538877484434714],[11.235314414153706,44.53893418605288],[11.23541406158394,44.539092024731914],[11.235515315649769,44.539250389996425],[11.235661738174736,44.53956147777398],[11.235734707944237,44.53974122256302],[11.235835325527843,44.54004757266689],[11.235969045142092,44.54041686708615],[11.236173546958245,44.54092936441493],[11.236346478375369,44.54129563065377],[11.236406559205642,44.54136477738808],[11.236475230111346,44.54145289817639],[11.23653414827355,44.54153275958916],[11.236788859341795,44.54183610045628],[11.23705205477304,44.54211451379587],[11.23718496418965,44.54221600032101],[11.237303195537368,44.542406663440644],[11.237474090393036,44.54273353435856],[11.237266763490537,44.54283160648828],[11.237541280170353,44.54292494737141],[11.237703867562455,44.54321351865994],[11.237807984775209,44.54346691636711],[11.23789483669816,44.54381752828846],[11.237914088967596,44.543895247132454],[11.238390980358488,44.54454090841347],[11.238463423550954,44.544638986089105],[11.23859421295982,44.54509553213539],[11.239310052795934,44.54630298739576],[11.23944544284202,44.54653044491447],[11.239510391326574,44.546640559079684],[11.239605377129966,44.546755041440605],[11.239983433121072,44.54718268215958],[11.240825940442276,44.5481382349096],[11.240875033031525,44.54820184607713],[11.240849818247247,44.54826304583479],[11.240728494297295,44.54855552625847],[11.241702795121638,44.54999644695763],[11.243605538778377,44.5529911379157],[11.24437710554308,44.55412825628782],[11.246047904616601,44.556589012554745],[11.249870678731813,44.5554245528364],[11.249997399822734,44.55538594907313],[11.250098529656269,44.555352887250216],[11.251205933878033,44.555005415237176],[11.252168779599756,44.55663945689322],[11.252859478677856,44.555809205300626],[11.253143378934347,44.55546793786277],[11.253627360372604,44.55481575561399],[11.254723041253452,44.55333922510545],[11.256740042604495,44.55075018570418],[11.257037958371242,44.55036775662593],[11.257075770585576,44.55031152193436],[11.25728795265606,44.54999596706985],[11.257442673173081,44.549838201415916],[11.257542280409883,44.549736633577076],[11.25758419656278,44.54965307769105],[11.257729290848292,44.549363838936124],[11.258543199820284,44.548295045988525],[11.258675711313156,44.54812081543396],[11.258949169855706,44.547868545961734],[11.2589974074058,44.54782331659591],[11.259064661604112,44.54776203078226],[11.259436651596033,44.54723742619325],[11.259652565320065,44.54693292510664],[11.259704456734266,44.5468571127248],[11.259840149980093,44.54665741168464],[11.260429156186973,44.54595698506757],[11.260887120027162,44.54541237791672],[11.261160070149229,44.545016334750656],[11.261340014428665,44.544755238682974],[11.26137900160618,44.54470551757425],[11.261927758997425,44.544005411340656],[11.262028042354647,44.543994422866334],[11.262066211162454,44.54391376262708],[11.262102678350711,44.54383561261054],[11.262202421488462,44.54362187269853],[11.26288450099979,44.542708130454535],[11.263689888104468,44.541753255332594],[11.263811139319543,44.54160949579591],[11.26387311544614,44.54151302747138],[11.264262216058425,44.54090737394743],[11.264555158045944,44.54061596767719],[11.264650038307078,44.54052158465189],[11.264874710124277,44.54014803967807],[11.265148806901285,44.53979485784295],[11.266691846376782,44.53780499143421],[11.26672747352615,44.53775924394639],[11.266858929782266,44.53761951401273],[11.266950326793134,44.53752319160585],[11.267072570085348,44.53734141032483],[11.26734301258252,44.536939248699454],[11.268408327480138,44.53555912424627],[11.268552661619482,44.535372186071],[11.270039144744226,44.53344680091173],[11.270069362601332,44.53349314495908],[11.27136806251659,44.53546513387069],[11.271621601471935,44.53584978637249],[11.271545011061896,44.53590259539629],[11.271214166508193,44.53605265177216],[11.271113894322314,44.536100363785856],[11.271863282798602,44.53712305322105],[11.273149623587344,44.53887428219152],[11.273184726144269,44.53892235735908],[11.273235326762059,44.53899125756494],[11.273384776611229,44.5391948468956],[11.27343531026916,44.53924953559641],[11.273461765728804,44.53929973097377],[11.273682152364707,44.539599849751944],[11.274115069528493,44.54018938758479],[11.274199562362542,44.540157320844635],[11.274511930573274,44.54003744036849],[11.274553622046447,44.54009793295011],[11.275335642106771,44.541227304932974],[11.27563601548989,44.54162943500556],[11.275719742541618,44.5415983258459],[11.276600461678715,44.541275813729726],[11.27665832079024,44.541362136407095],[11.277329247674198,44.54236421639655],[11.27779764710632,44.54306313670534],[11.278893057315976,44.544697573305555],[11.278938225207357,44.544765364067494],[11.278610867321815,44.54486145951482],[11.27848785803997,44.5448975697114],[11.27841396652552,44.54491929329493],[11.278337307523426,44.54494180754876],[11.278017273624865,44.545035800727725],[11.279050429815209,44.54687247594193],[11.278180699220895,44.54717474578283],[11.277937831329874,44.547254194035666],[11.277828298595658,44.54729013720949],[11.278739039402724,44.548697977368384],[11.279808958337686,44.54836687635983],[11.279527941256658,44.547940375744325],[11.279694619057558,44.54788336419007],[11.280301985980897,44.54767561544969],[11.281218962326395,44.54738800418451],[11.28207615576275,44.54869923146732],[11.282610853382819,44.549517175595916],[11.282681577044828,44.54946558653261],[11.283143447732233,44.54912809047852],[11.28333295325667,44.54898960775223],[11.283485314646393,44.54885491769631],[11.28386758094986,44.54851698554733],[11.283779096376596,44.5478698577541],[11.284863829753132,44.5472707755938],[11.286250440047782,44.546500423042495],[11.286474378364085,44.546271068230304],[11.287620895922311,44.545653955518674],[11.287698770863171,44.54559331229476],[11.290505886901197,44.54340735715404],[11.291482123025807,44.54236270642579],[11.29234632355174,44.54148627952633],[11.292668444998247,44.54115959165968],[11.293920690416769,44.53993171310179],[11.293739292543044,44.53964866644668],[11.293668695307064,44.53953851477368],[11.29362180624232,44.53946536393975],[11.291730942197468,44.536515260262824],[11.297666806384075,44.5353944298141],[11.297823716297678,44.535364933530644],[11.300296549805122,44.534897548893426],[11.301501317647862,44.534670148230944],[11.301578622973832,44.53465543461044],[11.302687003040756,44.534297964795634],[11.30276626920963,44.534272163254236],[11.305717557004929,44.53341590280267],[11.305772343544636,44.5333674731424],[11.30668041212777,44.53257192515334],[11.307053402289416,44.532238226000615],[11.307308670818092,44.53200843794178],[11.307447373080548,44.53188548845998],[11.30752571533536,44.531816717424014],[11.308636958267387,44.530833776772404],[11.308974275100415,44.5305357970922],[11.309574473172237,44.53001323815479],[11.31014434791016,44.53078776020535],[11.310525740936617,44.5321573858267],[11.310433314391474,44.53236631287117],[11.310311842869552,44.53247679481006],[11.310027589213743,44.53260857987185],[11.309503097340999,44.5333483766502],[11.30917989734729,44.53412962445711],[11.309112516758434,44.5342925085402],[11.309003827927464,44.53472682134668],[11.30855249032997,44.53572619717005],[11.308463976150223,44.53603405820996],[11.30848722808401,44.53630366079465],[11.308912775306279,44.53688019746953],[11.309520568401874,44.537291005926775],[11.310089690905821,44.538314754405064],[11.310572335094122,44.53906116821743],[11.311578000136876,44.540301127976825],[11.312336065565132,44.5406908690655],[11.312851504695695,44.541310586260046],[11.31333466783365,44.541750907679976],[11.31359946937385,44.54208031177376],[11.313637285052017,44.54212757226592],[11.313718649024672,44.542229244524584],[11.314117255240529,44.54307637978236],[11.314300280746792,44.54388286694511],[11.314226821427772,44.54552276207472],[11.314140093785603,44.54587560741245],[11.313438735740924,44.54660100723329],[11.312629390493598,44.54777869213909],[11.312353159131398,44.548432445983096],[11.312143743309653,44.549183870279315],[11.312852397926493,44.548939400980416],[11.314638391913473,44.548442397775005],[11.314967460082183,44.5482883096584],[11.315938355410964,44.547970977813065],[11.316542944338364,44.547781478639045],[11.317102683033577,44.5476114537649],[11.317749649178262,44.54737945536289],[11.318971047771667,44.54701275523298],[11.319669658240162,44.54679906235922],[11.320722392078116,44.54647678405762],[11.321504547772541,44.54622232521378],[11.321521327940888,44.54609032720606],[11.321550116872757,44.54598662294095],[11.321725134633256,44.546091239584285],[11.322569646468802,44.546732352483104],[11.32307653266962,44.547113075063926],[11.32337720571376,44.54733369394183],[11.323436607002257,44.54736343456028],[11.32353246264506,44.547399741134576],[11.3237968202927,44.54747875932978],[11.324215927229252,44.54757149994174],[11.324433529817611,44.54764190195917],[11.324639168481381,44.54776767865793],[11.324761133626621,44.54786703522719],[11.324889964478203,44.54800001019101],[11.324962361892645,44.54813862474427],[11.325005333984773,44.54824971472242],[11.325151643575012,44.54824898425891],[11.325267001288536,44.54824619244279],[11.325476058428807,44.548235626744116],[11.325671026938895,44.54821196318788],[11.326013997576995,44.54817065946411],[11.326267969388365,44.5481272164742],[11.326524201845032,44.54807136318244],[11.326726185542602,44.548016604279674],[11.32695132638403,44.54796025758636],[11.327112643745723,44.5479215191372],[11.327331191907312,44.54785798998285],[11.327543419088249,44.54779345501472],[11.327679596566169,44.54775579460795],[11.327761634590848,44.54774118010333],[11.327849660208487,44.547738827802405],[11.32791943965609,44.54775259603828],[11.32798134117666,44.54778564923033],[11.328059953626234,44.54786282088399],[11.328134943930355,44.54794793070484],[11.32819012574336,44.547990130264],[11.328288732464518,44.548035943391625],[11.328388494273252,44.548071608065754],[11.328493972206253,44.54809252292898],[11.328628334765082,44.54810779100766],[11.328997061105891,44.54814021768609],[11.329286063927366,44.54816638674566],[11.329630331916416,44.548202896045126],[11.329850308882644,44.54823245465876],[11.330080087401235,44.548249205153496],[11.330426489332298,44.54825450817572],[11.330727648478334,44.54825005188371],[11.331048540913075,44.54824687434194],[11.331367413937283,44.54826301451266],[11.331790662058824,44.54829079062912],[11.332206979030273,44.54831323523112],[11.33238266536429,44.54831921319674],[11.33247365603941,44.548312286625446],[11.332560116975515,44.54829026128338],[11.332662400588577,44.54825103876236],[11.332826438798904,44.54818186311423],[11.332983530669027,44.54811619423155],[11.333104847306183,44.54808052349156],[11.333314474383963,44.548030097813175],[11.333443351344373,44.54800664663651],[11.33365347123476,44.54796859372605],[11.333810997059965,44.54793330725408],[11.33392485675462,44.54790790390364],[11.33404073159338,44.54787402684805],[11.334161231953438,44.54783780453378],[11.334331891063794,44.54777693362159],[11.33457291881551,44.54768535706071],[11.334701708739727,44.54763996330896],[11.334784965724563,44.54761687743082],[11.334879928501312,44.547591301498606],[11.335175779801768,44.54753292505585],[11.335476269929421,44.547472203279064],[11.335959581839116,44.54737004005498],[11.335704516868553,44.547061304879755],[11.335253748633574,44.54652467730357],[11.334936920017745,44.546144154399215],[11.334734083876363,44.54591199827983],[11.33441354393611,44.5455494579299],[11.334083726708878,44.54517135694982],[11.334717939248591,44.54489844854371],[11.335533904524864,44.54454698608088],[11.336126080653427,44.54428562184663],[11.336868772731858,44.543961869261054],[11.336931852714468,44.54393443178624],[11.337014387046487,44.54403224915778],[11.337173254990576,44.54422761097527],[11.337372876188518,44.54443845463989],[11.337417472491149,44.5445106818997],[11.33745484476649,44.54461906509825],[11.337469929664328,44.544740288139536],[11.337502129005365,44.54507271676883],[11.337549804999812,44.545536476173794],[11.337590944702622,44.54595480368848],[11.337606794373446,44.546154208900795],[11.337626891095152,44.54638111266498],[11.33764879767525,44.54667266757661],[11.337669747135289,44.5468224614603],[11.337688486238969,44.54693685972646],[11.337730765323386,44.54701025956889],[11.33781347372589,44.54713066474291],[11.337974663286692,44.547383359805956],[11.338163196010434,44.54769063590383],[11.338283404725324,44.54788284584764],[11.338311634518995,44.547939100439486],[11.338341574691787,44.54801894453343],[11.338351758263432,44.548116068010046],[11.338377411511017,44.54834397222402],[11.338395427147377,44.548538275432655],[11.338418901020145,44.548613752650354],[11.338478775000203,44.548713799333505],[11.338525502254424,44.54878036686718],[11.338615790307253,44.54885390809085],[11.338724364178,44.54891300681917],[11.338814102507794,44.54895336793775],[11.339066487557684,44.54902752864607],[11.339168296612492,44.549054700539095],[11.339246817638951,44.54909022472927],[11.33933624989173,44.54914240802995],[11.339395261063554,44.549201397447526],[11.339503274578579,44.549324657676976],[11.339679960674419,44.54955171657502],[11.339750209507036,44.549635800530645],[11.339838371023548,44.549734700421425],[11.339922495842579,44.54981174996826],[11.340059625992525,44.54997435297045],[11.340140163611615,44.550079600642164],[11.340192024179123,44.550175878509506],[11.340229410504516,44.5502645689478],[11.3402575444193,44.550357948375286],[11.340265152176226,44.550469199431525],[11.340252810051272,44.550573543385916],[11.340247178580782,44.550649048867164],[11.34026403968901,44.55073591043081],[11.340329085987998,44.550847109146794],[11.340510166737849,44.55108532577964],[11.3405713871373,44.5511403371003],[11.340642525976858,44.55118782710181],[11.3407100142553,44.551222451219914],[11.340831244449632,44.551243598781056],[11.340971995269578,44.55126097095221],[11.341081842226794,44.55129247109272],[11.341244477146414,44.55152206982311],[11.341313952081117,44.55160616956086],[11.341379185687641,44.55166333788066],[11.341490097148123,44.55174096208389],[11.341807608950642,44.55188861352266],[11.34195045807585,44.55195826505197],[11.342100105831248,44.55204015226262],[11.34232600219125,44.552179548168546],[11.342676113623575,44.55243342601101],[11.342821111557772,44.552536790672534],[11.342988073402042,44.55263857904752],[11.343221351111698,44.55276544720358],[11.343616924143006,44.55297563194937],[11.343938469617003,44.55316482717164],[11.344100064411151,44.553250407589175],[11.344293495330385,44.55334489161435],[11.344373835056754,44.553386008483514],[11.34441732824305,44.55343068985732],[11.344456916965413,44.553495700099745],[11.344583498576998,44.5537867958392],[11.344659591091755,44.55393771518915],[11.344836771436176,44.55425448538347],[11.345479492304168,44.554079789139415],[11.34608328646753,44.55390508813471],[11.346584101415354,44.55375750281033],[11.346974473090865,44.553642579419524],[11.3477490862228,44.553416219738565],[11.348334656787928,44.55324382699516],[11.348872180889138,44.55310954327436],[11.34895897514511,44.553090242529684],[11.349049356636947,44.5530835601277],[11.349251881046882,44.553061789284314],[11.349910415747873,44.553099433541455],[11.350681369226066,44.55315389230748],[11.351018467199529,44.55316214113579],[11.35134770644713,44.553150850392285],[11.351606848191757,44.55311851347398],[11.351684655117324,44.55309665192877],[11.35250181677161,44.55297698239876],[11.352668186084916,44.552939661991275],[11.352780891851664,44.552905273094865],[11.352919042433143,44.55283828469147],[11.353379905430982,44.55255927651919],[11.353589425440726,44.55297468698992],[11.35383121599199,44.553473819309374],[11.35398854707293,44.55379859505202],[11.354125862354227,44.554081584558894],[11.354154027272177,44.55413614588574],[11.354215552821586,44.55425696506799],[11.354253898487704,44.554316029959786],[11.355176400638923,44.55382980115001],[11.355386645509608,44.55375568776165],[11.355519041380665,44.5537087215678],[11.355684536574037,44.553649959813484],[11.3558646341375,44.553618671891634],[11.356127378911353,44.55354854544734],[11.356081954705276,44.553436950802215],[11.356577188373452,44.55330801377289],[11.357670716417948,44.55303056103967],[11.357913629844708,44.55296584621477],[11.358324546685067,44.5528567215175],[11.35851700175314,44.55300182014188],[11.358646914980108,44.5530818428007],[11.358863302964052,44.5531792116634],[11.359309214694184,44.55332922729652],[11.359545962173009,44.55342391539287],[11.359754587325705,44.553543385028625],[11.359948819599376,44.55367665067188],[11.36007319841265,44.553775361292544],[11.360167145087162,44.55388031748997],[11.360244674362136,44.55399487815526],[11.360290622743204,44.55404793687263],[11.360261085444652,44.554121429577826],[11.36034865141356,44.55426309176295],[11.360468488794577,44.55442434512985],[11.360601681184137,44.554585322183094],[11.360682031249565,44.55466524218817],[11.360854898194997,44.55481469749184],[11.361009603282483,44.5549240299166],[11.361147351013669,44.55500276327419],[11.361340772156886,44.55505631786487],[11.361594916528594,44.55517355152939],[11.361771692528931,44.555244726808255],[11.362084789008655,44.55537890428513],[11.362202877474274,44.55547717648084],[11.362263379076886,44.555552996896346],[11.362424107550378,44.55575222668524],[11.362537714724679,44.55593442349882],[11.362662535982945,44.556141136069925],[11.36271433108341,44.55621545483356],[11.362786507917953,44.55628766827136],[11.362866230824798,44.55633271701552],[11.362976433834625,44.55637263543114],[11.363081250289913,44.55639578159974],[11.363175610074396,44.55641052183392],[11.363275269957896,44.55642608938908],[11.363529017251421,44.556454593910814],[11.36371689085839,44.556469269832114],[11.363929591991434,44.556494680449696],[11.36401599631461,44.556508923977965],[11.364105459145572,44.556523671235624],[11.364225335939167,44.55656901267168],[11.36441079517553,44.556679395877836],[11.364710627169606,44.55685491525985],[11.364835308051717,44.556921530483635],[11.364940641553282,44.556977306252904],[11.365004406716206,44.55701746102739],[11.365220040522479,44.557153247620626],[11.365308154855441,44.55712357344805],[11.365624437333118,44.557015461597274],[11.366500243756455,44.556723861058515],[11.366908684965207,44.55658908698948],[11.3669825199601,44.5565664556696],[11.36695505148703,44.55650704260863],[11.36691442146535,44.556419142181426],[11.36686607059885,44.556314557789484],[11.366366170278695,44.55526097027119],[11.36610023455212,44.55471847403444],[11.365591603409902,44.55368194838916],[11.365529344630502,44.55356283126041],[11.365840729729335,44.55351147571386],[11.366028660389722,44.55348048290694],[11.36632818906443,44.55343149180814],[11.367313617173055,44.55328334475639],[11.368674307360882,44.55307563639333],[11.36959722169877,44.5529383244648],[11.371615030483849,44.55260696774072]]]},\"geomComplex\":{\"provenance\":0,\"accuracy\":100},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/e099b06896aa93a3ee43d44870ce1441143486de\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/ffcd4ddeecbdb84946122d08728f51cded1db3b0\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":null}}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_group": "{\"items\":[{\"name\":\"Trento\",\"count_1\":3,\"level\":70},{\"name\":\"Trento\",\"count_1\":1,\"level\":60},{\"name\":\"Trento\",\"count_1\":1,\"level\":50}],\"count\":3,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_where": "{\"items\":[{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120001\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/20be7cb0fe6f050850cc9cef3134c5321f15c9b3\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":147,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":56,\"2011\":null},\"name\":\"Borgo General Cantore\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200110003\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/11cdd78399ce1e0e59b4992bd4553bf2e50b473d\",\"provenance\":[\"ISTAT\",\"SpazioDati\",\"Wikipedia in Italiano\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":\"http://it.wikipedia.org/wiki/Pilcante\"},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":150,\"dialingCodes\":[\"0464\"],\"postCodes\":[\"38061\"],\"cadastralCode\":null,\"population\":{\"2001\":554,\"2011\":null},\"name\":\"Pilcante\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120006\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/05d76a4687a235466aefdc91f1c18dc08ef8e244\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":210,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":45,\"2011\":null},\"name\":\"Mori\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120010\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/4a0cc0604ec38bd3de6d24baa79ae71e01d0a4e0\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":700,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":49,\"2011\":null},\"name\":\"Ronchi\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120011\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/9d06f2e767239cf24dbebd60e2369ee5c7ad6afe\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":191,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":60,\"2011\":null},\"name\":\"Santa Cecilia\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120013\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/66801d08bf8b1c19becad34550f62c5218ad0eaa\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":145,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":49,\"2011\":null},\"name\":\"Sdruzzin\u00e0\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200110002\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/3caa6d2c8e7994cea08eade137f9d20403cdfd7e\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":160,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":497,\"2011\":null},\"name\":\"Chizzola\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120012\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/555daaf1662c4ee20206cb06efb83e1ec0dbc4a2\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":159,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":101,\"2011\":null},\"name\":\"Santa Lucia\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200110005\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/43ca61137785f6ecd436ec8186197c82af4a8b62\",\"provenance\":[\"ISTAT\",\"SpazioDati\",\"Wikipedia in Italiano\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":\"http://it.wikipedia.org/wiki/Serravalle_%28Ala%29\"},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":175,\"dialingCodes\":[\"0464\"],\"postCodes\":[\"38061\"],\"cadastralCode\":null,\"population\":{\"2001\":472,\"2011\":null},\"name\":\"Serravalle\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120003\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/b3ad0e669c3dbd8c87964668a152ceb66967c24a\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":155,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":97,\"2011\":null},\"name\":\"Cumerlotti\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120008\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/136fb50c6efa655b980031817251fc4870e4811c\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":714,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":22,\"2011\":null},\"name\":\"Ponzolotti\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120002\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/1eecab4c8400782437a26ec42f9da36a777cded2\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":234,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":51,\"2011\":null},\"name\":\"Brustolotti\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120009\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/44c49d9b06bc9135b284153badd83cf6dcb33705\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":150,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":24,\"2011\":null},\"name\":\"Prati\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200124916\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/9d768cca6744647528dc3b3a93b3346695bcdbb5\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":1226,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":8,\"2011\":null},\"name\":\"Villaggio San Michele\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200110001\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/35f7e614d115f743552a33efd1049338b30b5117\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":180,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":4167,\"2011\":null},\"name\":\"Ala\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200110004\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/1782a3a278de4ef57ed5b0a3d42f39e3253119cd\",\"provenance\":[\"ISTAT\",\"SpazioDati\",\"Wikipedia in Italiano\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":\"http://it.wikipedia.org/wiki/Santa_Margherita_%28Ala%29\"},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":166,\"dialingCodes\":[\"0464\"],\"postCodes\":[\"38060\"],\"cadastralCode\":null,\"population\":{\"2001\":619,\"2011\":null},\"name\":\"Santa Margherita\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120007\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/ee36b388cf1d15de4320cd35b02f378dd429fd19\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":402,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":28,\"2011\":null},\"name\":\"Muravalle\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120005\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/9ed35fdf320b51fa34f4d65eb685030c55f75235\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":180,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":50,\"2011\":null},\"name\":\"Molini\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":\"02200120004\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/5ffa1a11fa4797274ad43f5a90252703702730f0\",\"provenance\":[\"ISTAT\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":\"Ala\"},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":175,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":43,\"2011\":null},\"name\":\"Guido Cumer\",\"level\":70,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":\"http://dandelion.eu/resource/c7b6d0410ac9b8805ae428b9453e4563beff69e8\"}}],\"count\":19,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_where_empty": "{\"items\":[{\"acheneID\":\"http://dandelion.eu/resource/c59b12fe31ac36662552c95d51cbf15b792094c0\"},{\"acheneID\":\"http://dandelion.eu/resource/f5882e6af5c6391d36d7e5dece6688cb4ac203c5\"},{\"acheneID\":\"http://dandelion.eu/resource/0fe4f6bea944679a92aae439c564c0ddcc866bb6\"},{\"acheneID\":\"http://dandelion.eu/resource/23184225e583b78d38f4cfa46894bb3b42c29bee\"},{\"acheneID\":\"http://dandelion.eu/resource/0d33fdb63fd80f69fa00984bd829583ec71e08b2\"}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_where_multiple": "{\"items\":[{\"licensePlate\":null,\"tel\":\"0461884111\",\"isMountainMunicipality\":\"T\",\"isProvinceCheflieu\":true,\"localCode\":\"022205\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/05a192433bede90cd0f12652b1a12c428cb253d5\",\"provenance\":[\"Geonames\",\"ISTAT\",\"SpazioDati\",\"SpazioDati Partner\",\"Wikipedia in Italiano\"],\"wikipedia\":{\"de\":\"http://de.wikipedia.org/wiki/Trient\",\"en\":\"http://en.wikipedia.org/wiki/Trento\",\"it\":\"http://it.wikipedia.org/wiki/Trento\"},\"alternateNames\":[\"Comune di Trento\"],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":null},\"email\":\"protocollo.comune.tn@cert.legalmail.it\",\"website\":\"http://www.comune.trento.it/\",\"isCoastal\":false,\"fax\":\"0461884145\",\"elevation\":194,\"dialingCodes\":[\"0461\"],\"postCodes\":[\"38121\",\"38122\",\"38123\"],\"cadastralCode\":\"L378\",\"population\":{\"2001\":null,\"2011\":114063},\"name\":\"Trento\",\"level\":60,\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[11.164436735737318,46.1493632532124],[11.164590002468058,46.149254604392574],[11.164739980404189,46.14914594477371],[11.164814679357926,46.1490091820703],[11.164840298588516,46.14885370120299],[11.164843495946323,46.14881349494669],[11.164848634942034,46.14874844323093],[11.164824927889361,46.148590265413176],[11.164753427134976,46.148534719912085],[11.164669589169916,46.14843437898933],[11.164672326253873,46.14840610743825],[11.164012931417453,46.14668487179872],[11.164042067968163,46.14639451156773],[11.164065825423936,46.14615768838589],[11.164124523498165,46.145965213620734],[11.1642981915893,46.14541942979675],[11.164629081349322,46.14492301425395],[11.164805296610435,46.14462223604887],[11.165022513727672,46.14442710823431],[11.165203546504065,46.14423168830091],[11.165231423355992,46.143941149017806],[11.165254083119601,46.14376502385836],[11.165237357326868,46.14358402453364],[11.165214578702596,46.143401443392456],[11.165265194791843,46.1433262948128],[11.166088042538552,46.142104388119215],[11.166019679273182,46.14204684797057],[11.165714473512772,46.14178990161742],[11.165884653294482,46.14040964754283],[11.166036499177547,46.13917798882686],[11.166054584821829,46.13903136863679],[11.166122199041336,46.13886784692938],[11.166224283080329,46.13866719434726],[11.166285852929988,46.13852802613544],[11.166311031137369,46.13840001587344],[11.166313303672032,46.138262653218185],[11.166292112025456,46.13815030565316],[11.166270760468016,46.13804938941198],[11.166254936706927,46.13801033659031],[11.166191240926079,46.13792294116673],[11.166229738935154,46.137610670896436],[11.166189378893582,46.13721720838917],[11.166091079003463,46.136258443233736],[11.166193799598998,46.13594232010274],[11.166221003361224,46.13569297012768],[11.166126350867284,46.13504882706972],[11.166011653116035,46.134422833647946],[11.165928976999188,46.13385204523924],[11.165898467916357,46.13331143690925],[11.165814378066306,46.1330222634483],[11.1657465989105,46.13289883588786],[11.165738266460803,46.132817542173434],[11.16525539841775,46.131189032316705],[11.165168166729254,46.130432735936374],[11.164651940752016,46.12595550100094],[11.164622614959795,46.12590213884584],[11.164559772833048,46.125536418114365],[11.164434127588517,46.12517592363727],[11.164385358586216,46.12494198465417],[11.16438179596424,46.12476106654378],[11.164378147913736,46.12458473919502],[11.16435344643276,46.124289185902775],[11.164384624791312,46.12399637117539],[11.164367680095722,46.12382908878652],[11.164294052243234,46.123704849397264],[11.164135489426089,46.123543271772284],[11.163987082737671,46.12336345637212],[11.16387527125428,46.12316105046006],[11.163789458984624,46.122979459779245],[11.16360846611276,46.122781072797615],[11.163475228809556,46.12267923339957],[11.163305508735919,46.1225954098135],[11.163142278910186,46.12251621874743],[11.162926793582972,46.1224137056439],[11.162593470989838,46.1222735890926],[11.162250577172978,46.12211507380209],[11.162018500432625,46.122019287344195],[11.161871636705378,46.12194708384123],[11.16161409668341,46.121800720811784],[11.161454665545932,46.1216917983371],[11.161373734483064,46.121610991972254],[11.161332542117615,46.12151677247982],[11.161321924927,46.12136328494448],[11.161252375408115,46.12119329181043],[11.160856642385363,46.12065195810658],[11.160637198362776,46.12039370761433],[11.160561093234577,46.12022136748412],[11.160471477151967,46.12006952221101],[11.160121228934592,46.11995900839974],[11.159976924463825,46.11993034604641],[11.159807004394874,46.1198579682514],[11.159602367796873,46.11969828753706],[11.159436473135449,46.11958244271711],[11.159348869170902,46.119508434594685],[11.159202601731531,46.11939962826542],[11.159131688411726,46.1193369443772],[11.15894693558391,46.11914336764298],[11.158872294836435,46.119080929528174],[11.158696163892515,46.11898787539997],[11.158558962015292,46.11892722659965],[11.158392186492614,46.11886402138902],[11.158199428644783,46.11878228412072],[11.158026604488333,46.11868699206945],[11.157899989332096,46.11858518575037],[11.157794193701594,46.11841718364825],[11.157731087496751,46.11825637542913],[11.157668694964228,46.118052089500466],[11.157635265822508,46.117886959621494],[11.157615855099333,46.11767157752751],[11.15762397033903,46.1175800561309],[11.157625765249634,46.11752553291172],[11.157639271271726,46.11745195761527],[11.157607405965567,46.11733859737501],[11.157617667665372,46.11717016915661],[11.157640412515576,46.11699175897938],[11.157656453771716,46.1168201822673],[11.157679909735824,46.11659827733974],[11.157718860697342,46.1164337524391],[11.157757391392247,46.11629439615039],[11.157829241401899,46.116130135482614],[11.15787711038959,46.116022932955744],[11.157791027401482,46.115857360212324],[11.157662351943474,46.11568228844831],[11.157585231234417,46.115571751137196],[11.157436660008619,46.115405660731525],[11.157383062050181,46.115265556553275],[11.157318564922688,46.11518716487137],[11.157198682183871,46.11507627370562],[11.157033692700168,46.114907765726166],[11.156916574569989,46.11482894884648],[11.156822088671674,46.11477322548213],[11.156737696721988,46.11470383473711],[11.156702162432385,46.114664618838816],[11.156670526074876,46.11458879611745],[11.15665864403732,46.11451313510653],[11.15662053649314,46.11443039283788],[11.15657585275389,46.114347591082996],[11.156545105308545,46.114219127918446],[11.156543402901901,46.114125229532476],[11.15653847272243,46.114026746214726],[11.156568451590429,46.11380947396144],[11.156603228299728,46.11369757799513],[11.15664668857076,46.1136567233585],[11.155864707350567,46.11202231415644],[11.155473057146352,46.11112336555298],[11.155383152465165,46.110917004285334],[11.155273531454702,46.110597183263145],[11.155192130100192,46.110359696535696],[11.15517668879828,46.110281081128626],[11.155137958093935,46.11023724135937],[11.155083058893622,46.11017498092391],[11.154988332144098,46.110135259158824],[11.15491639966705,46.110107198142444],[11.154736213737175,46.11006219210747],[11.154663280863227,46.110046303550526],[11.154605087525947,46.11003362542724],[11.154493475735919,46.11001895758444],[11.154391960886365,46.109990642271406],[11.154320202252054,46.109953417286796],[11.154258624923557,46.1098979352591],[11.154177824917396,46.109810265829445],[11.154100324499444,46.10972491196118],[11.154029877768078,46.10960983988274],[11.15399624923367,46.10945615975176],[11.153963070489809,46.10927729241063],[11.153969112594185,46.10911477145222],[11.153958371932653,46.108970446518484],[11.153948652246335,46.10876658457854],[11.153912143465861,46.1085899742127],[11.153893107545876,46.10835170944921],[11.153887054395959,46.10812497747185],[11.153903338434615,46.107939647916],[11.153911969226833,46.107818385054344],[11.153897605183248,46.107694625259526],[11.153900188940048,46.107541239780076],[11.153907386463601,46.10730775088547],[11.153946326145173,46.10714551328887],[11.153965388048658,46.106989973911894],[11.154009200551933,46.106830068149996],[11.154024471549938,46.10680271238945],[11.154042961806546,46.10668152101466],[11.154009933167895,46.10649350846489],[11.1539927653611,46.106339960728405],[11.153967268367815,46.10609704404556],[11.15398308509828,46.10593918619015],[11.153986340192677,46.1057445908698],[11.153936365364054,46.10558620574589],[11.15387305419539,46.10543912956156],[11.153867179660207,46.10539787756379],[11.154418502923999,46.105283396268874],[11.154606075502928,46.10528037568217],[11.154866754712554,46.1052344656092],[11.155129848058165,46.105238940669615],[11.155403719223935,46.10519084550104],[11.155637988097705,46.105149283958156],[11.155947792380758,46.1051175233309],[11.156165641977704,46.105073525502924],[11.156330308674784,46.10506344986484],[11.156485217517615,46.105046424674406],[11.156610648020743,46.10502227141189],[11.156796155773662,46.10474906839817],[11.156829079824199,46.10455242064064],[11.15688791866828,46.10437889455281],[11.156936596532447,46.104221319470945],[11.156981865368278,46.104072877246715],[11.157048484008527,46.10382844342912],[11.157090395365652,46.10368223897069],[11.15715222861714,46.10352707043524],[11.157197178373087,46.103396938581284],[11.157229419627065,46.103239212885995],[11.157274266574365,46.10311593923],[11.157298393714244,46.103049753963916],[11.157364193184799,46.102895396018056],[11.157415531787779,46.10276164057697],[11.157472964105322,46.1025789515692],[11.157797651071318,46.10159967959008],[11.157504871877302,46.10140138479762],[11.156728483763395,46.10087555540341],[11.155108234290772,46.09977812962115],[11.154842267489304,46.099597975865365],[11.156232176923204,46.09857705670184],[11.162104547387141,46.09511038977097],[11.165032388990252,46.0941504341402],[11.166798040157307,46.09351016996948],[11.16951385489778,46.092405612268955],[11.17217152927348,46.09031165455324],[11.174232856651516,46.08868638197753],[11.174417575817733,46.08857044831938],[11.174569019241712,46.08837765737136],[11.1748028047486,46.0880092620431],[11.17500029679652,46.0877392654627],[11.175173993420415,46.087506200075374],[11.175237301266778,46.08742122134821],[11.175438172951301,46.08706884067574],[11.175527087155716,46.08689952520823],[11.175625814298021,46.08677825819481],[11.175688380489218,46.08667985430704],[11.17575094075441,46.08658604057212],[11.175833226558648,46.08645561472801],[11.175895799215533,46.08635265832198],[11.175938607041655,46.08627256429582],[11.175948543887078,46.086169596929075],[11.175886180050165,46.08605287373498],[11.175781077150752,46.08593386661007],[11.175574047766004,46.08582170367934],[11.17545576849545,46.085746173088104],[11.175307891866343,46.085645472695454],[11.175061422887525,46.08551041097913],[11.174805131461612,46.08534103093331],[11.174489682453673,46.085164776955814],[11.1743352672708,46.08504117736285],[11.174272842253513,46.08499082875198],[11.174164409880923,46.084913006981736],[11.173954172812719,46.08471159904823],[11.173717614313757,46.084546798340696],[11.173559946506908,46.084411759184455],[11.173458090910088,46.08432936913984],[11.173306958699104,46.084210333568194],[11.173195280234498,46.084105051957735],[11.173047427179936,46.084013490529124],[11.1728831462889,46.083903625440314],[11.172707363051575,46.083761824019156],[11.172561165559042,46.083679308926925],[11.172419848792268,46.08361521505268],[11.172219397997027,46.083519068999216],[11.171989409299456,46.083363411736585],[11.172022317711418,46.08331307465132],[11.172058577475577,46.08323069269681],[11.172071785789816,46.08315289626081],[11.172104734730322,46.08307052323443],[11.172117957185701,46.08301331527273],[11.172183811905693,46.0829034781353],[11.172223334452838,46.082827984005256],[11.17227929551063,46.0827501864657],[11.172374707640266,46.082651806009366],[11.172443849184337,46.08256028273035],[11.172532693491856,46.082450451030105],[11.172610557986365,46.082359812986546],[11.172664357714218,46.082297153212],[11.172720288094595,46.082242248824585],[11.17279598550227,46.082159872605416],[11.172937253561004,46.08205961422729],[11.17298922316695,46.08202456377858],[11.173032831698283,46.081995154333484],[11.173161060785842,46.081960845714455],[11.173332073138322,46.08191053442034],[11.173437284668147,46.081899113343404],[11.173575370562142,46.081894551255466],[11.17365751035943,46.08193576982112],[11.173706802817732,46.081970092774036],[11.17378893915115,46.0820044369925],[11.17392040469026,46.08206395915564],[11.1740354224524,46.082100589960724],[11.17411429969588,46.08212347396518],[11.174232652074515,46.08214181039971],[11.17433455648651,46.08212580735472],[11.174449720062709,46.08202056012436],[11.1745024550809,46.08186953641719],[11.174516417544544,46.08167755655079],[11.174534424989805,46.08159395516249],[11.174558418968829,46.08148260934427],[11.174568565140937,46.08143552360932],[11.17458556665301,46.081356605237566],[11.174608166204472,46.08130889544991],[11.174733137551515,46.081240271870506],[11.17498631076237,46.08118996190769],[11.175157332029567,46.08113050533893],[11.175305307754483,46.08108247290657],[11.17550256371305,46.081055032058046],[11.175643985554604,46.08098183534583],[11.175685890172101,46.08094148163677],[11.175729531745489,46.080899453204296],[11.175884051058572,46.08091549531974],[11.175982651931854,46.080913230353126],[11.176107581897535,46.080910962406925],[11.176216073184353,46.08091097849261],[11.176262103749037,46.080915557562754],[11.176402832971519,46.080927825991765],[11.17646263493457,46.080928990777494],[11.176561263977051,46.08091330554026],[11.176755288501774,46.080840118688485],[11.176836181816153,46.080781593781154],[11.177216429861906,46.08047065738728],[11.177697695579171,46.08053391440275],[11.177810673708267,46.080551076947756],[11.178053293348755,46.080578312303125],[11.178131511971905,46.080533625707076],[11.179110271325928,46.079974580805604],[11.179313162712567,46.07973062964349],[11.179549966558792,46.07944588502686],[11.180506526696721,46.079286163835086],[11.18162783827025,46.0787088924303],[11.182058056100441,46.078487395741526],[11.182244984808268,46.078391166821994],[11.183050450334928,46.07797647812691],[11.183636735653,46.07709994928777],[11.185275372725412,46.07465003588039],[11.185980564197724,46.07433364587934],[11.186489018902963,46.07410551144321],[11.186821584208404,46.073956295397814],[11.189592245078764,46.07271308648586],[11.190663955239804,46.07261720784799],[11.190663130847248,46.0725796227397],[11.190655348897161,46.072220470705616],[11.193563491824905,46.068381980070264],[11.194822621656535,46.06555469424038],[11.194667971441314,46.06256356508783],[11.194608467298158,46.05780740079652],[11.193973608249578,46.055944292061696],[11.193908218969161,46.055834482727796],[11.192685463011138,46.053948767427144],[11.192715019891216,46.053465640128266],[11.19284264134572,46.05137806122786],[11.192869839054016,46.051145640886965],[11.1929155759768,46.05072686289498],[11.192488417633852,46.05032905179047],[11.191404687760091,46.04919890683281],[11.191051880826937,46.04892273640637],[11.189821598299103,46.04795963889435],[11.18883075293091,46.04718393126098],[11.188793986507008,46.04715516362629],[11.188678496477985,46.045432137485726],[11.188653207348441,46.04505468344796],[11.188598382891785,46.0449346143829],[11.187895138665388,46.043394618225236],[11.187749762702433,46.04189632008078],[11.187581618148899,46.040163038809986],[11.187596883349292,46.04003014452515],[11.18761232495477,46.03989569702037],[11.18771999621353,46.03976105114531],[11.187994278807144,46.039619009301575],[11.188257844387298,46.039458262626944],[11.188386998981287,46.03933485447115],[11.188516183424953,46.039192716144036],[11.188529529305487,46.03913261083108],[11.188402032620449,46.03869624951999],[11.188425325503994,46.038660781663744],[11.18838813113149,46.03853392329995],[11.188866762795993,46.03791432629274],[11.189018061240025,46.0377184589486],[11.188980949930867,46.03736662969823],[11.188992355796458,46.03690630193396],[11.188890553601745,46.03669290613316],[11.18881081765414,46.03607530515848],[11.188762667584799,46.03593304499718],[11.1887745024757,46.03517330936248],[11.18859226470759,46.03485506272152],[11.188506755438958,46.034673407766874],[11.188458309459586,46.0345705236926],[11.188466858950328,46.03439932597598],[11.188555442837604,46.03428989175818],[11.188706021362432,46.034211396012395],[11.18876553374699,46.03393448714001],[11.188798260538452,46.03358644605803],[11.18883092434802,46.033294531554546],[11.188831288728336,46.03304378731509],[11.188595269541109,46.0327479528801],[11.188434272966697,46.032616848331806],[11.188058466610402,46.03237705201534],[11.187306701496219,46.03203220005732],[11.187000732588128,46.03182239823317],[11.186864640827496,46.03172740419068],[11.186103107349812,46.03093655494693],[11.186130698086531,46.03087053590005],[11.186130284057535,46.030806380303346],[11.186082096103082,46.03070911267479],[11.186029999558889,46.030625504762476],[11.185952254001513,46.03052760475393],[11.185896753364712,46.030446199471044],[11.185892188366221,46.03040318473034],[11.185875983577585,46.03025102914278],[11.185870050810378,46.03009053989366],[11.185848759948628,46.02998011307092],[11.185795007104488,46.02985981940364],[11.185677038263883,46.02977935184081],[11.185531924902275,46.029730535266346],[11.184352790768628,46.02826427890348],[11.18426324397562,46.02796946772068],[11.184149987008114,46.027596734871835],[11.184122983843954,46.02750779875707],[11.183687736505227,46.026637701410195],[11.183653922614694,46.02658673684076],[11.181236580154538,46.025886108684084],[11.180514071752981,46.025705845261754],[11.18037892107955,46.02562940464965],[11.179778673284812,46.02528985060997],[11.17916968425272,46.02522445786406],[11.178795648280815,46.02518427630524],[11.177780350809636,46.025093649747355],[11.176625509798765,46.02492431184929],[11.175304038136677,46.02479225436762],[11.175030929645763,46.02475480158453],[11.174950961013392,46.024761411064574],[11.174744686684472,46.02474543141297],[11.174434674677117,46.02469741774417],[11.17417319966139,46.024666469146304],[11.17392771018898,46.02464505930075],[11.173559676506773,46.024572839638786],[11.173282001016858,46.02453698160669],[11.17316402562389,46.024529807207],[11.173095186691423,46.024526010898825],[11.172872684880966,46.02450508221867],[11.172690719711204,46.02445986362976],[11.172412201716725,46.024442304379576],[11.171830856691486,46.02443641794265],[11.170841819379,46.02443532816171],[11.170437041483043,46.024376036095],[11.170074233635344,46.024333714487035],[11.169779610771455,46.02430891525014],[11.169457707360367,46.02430642110009],[11.169019589497974,46.024257858118695],[11.168685273568443,46.02423906313921],[11.16828212009431,46.02421644994345],[11.167984746244043,46.02418014109135],[11.167712702620076,46.02416499097122],[11.167503025443223,46.024151219262286],[11.167347527670698,46.024101987080584],[11.167203546339353,46.02401635347321],[11.167179530591367,46.023994266193434],[11.166748309027113,46.023774085834695],[11.166625840124594,46.02364780522436],[11.166510033566452,46.02351935237651],[11.166311650453533,46.02332732527533],[11.166201594618503,46.023217324238594],[11.165942610962755,46.02298506342816],[11.165901999049687,46.02293838869409],[11.165800468901413,46.02285834400366],[11.165721709194925,46.022783379282345],[11.165594101438149,46.02268649613681],[11.165469328548603,46.02262453852005],[11.165304426413023,46.022566045073894],[11.1651042770528,46.02248847831298],[11.16493741852668,46.022400178438545],[11.164739511061818,46.0222722662406],[11.164569588151068,46.02217930417284],[11.164407750436615,46.02205218217783],[11.164266310870929,46.02190944870494],[11.164111138866822,46.021780153347706],[11.163944375489026,46.021616277040174],[11.163800599858797,46.02145288669356],[11.163668699509603,46.0213172151745],[11.163548803362897,46.02120701182498],[11.163359973602612,46.02102204200657],[11.163220812400116,46.020902266879155],[11.163021342110351,46.02073537785552],[11.162834911225337,46.02057108028191],[11.162695341832933,46.02046045467693],[11.162468210283992,46.020325036564365],[11.162275023763717,46.02023846599301],[11.162098542318034,46.02007206183508],[11.161948182359048,46.01990853453983],[11.161929564065936,46.01987686944913],[11.16186319297156,46.01984528003742],[11.160785078502405,46.01933235237571],[11.160612350467927,46.01930279012654],[11.160408113655542,46.01924344770244],[11.160275335209528,46.019201666719724],[11.16016235560599,46.01915801535787],[11.160029892249588,46.01910938975071],[11.159894845328903,46.01904464481051],[11.159819575591369,46.018965168387076],[11.159722455580328,46.018860022320005],[11.15958432018895,46.018717348337205],[11.1595137610013,46.01854077178938],[11.158943580142783,46.018139122954885],[11.158100833790273,46.01756117323071],[11.158206137805394,46.01750203950926],[11.158281997861835,46.017507648090294],[11.1583958967128,46.017457424051095],[11.15865420196398,46.01733468697336],[11.158873856385316,46.01726839843482],[11.15912764981479,46.01709977411792],[11.159258515439678,46.01696287302331],[11.159352255007535,46.01677478536803],[11.15945982584841,46.016570953957],[11.159564765233736,46.016426615177465],[11.159759096156913,46.016265878094806],[11.160028860052664,46.01610675646263],[11.160307819709114,46.015888272894784],[11.160370729476575,46.01572929994925],[11.16037447135675,46.01557135593021],[11.160382072146911,46.015326446983885],[11.160366431640682,46.01508791231678],[11.160388516766837,46.01496014480924],[11.160512133531434,46.0149123881196],[11.16062295894695,46.01493080721244],[11.16076014404433,46.015020763759765],[11.160828556644965,46.015106968290056],[11.160993527249111,46.01523646985916],[11.161028096463887,46.01527157387732],[11.16115304112115,46.01526736695369],[11.161288997559767,46.015311502468435],[11.161462029758445,46.01533353733786],[11.161671971441333,46.015338025062746],[11.161921477079005,46.015265490196505],[11.162121447309463,46.01519877767292],[11.162407668133874,46.015186575685846],[11.162569234941635,46.01524499068727],[11.16276464901016,46.01535453945452],[11.162927092800311,46.01546793963279],[11.163059644723086,46.01551429395821],[11.163217681242225,46.01543064124404],[11.16323855716814,46.01533032342375],[11.163234326389091,46.01520425072488],[11.163246747737922,46.01499840133491],[11.163262355200388,46.01479488746728],[11.163292544869142,46.014632921584194],[11.163318440492988,46.014567049817046],[11.163423366872625,46.01442272747522],[11.163546886321951,46.01437727519567],[11.16384558177411,46.01437906452118],[11.164101360505434,46.01438682683525],[11.164386446058472,46.014399802470415],[11.164494054306715,46.01434253989781],[11.164468545607287,46.01410380570304],[11.164479347427502,46.0139345566229],[11.16458559665916,46.01383376391881],[11.164753820328677,46.013816751843116],[11.164950842903647,46.01381637340633],[11.16516930435599,46.013850829652085],[11.165347380453237,46.01390730597634],[11.16548927477524,46.013965295925175],[11.165528677366725,46.014039440035155],[11.165574713575042,46.013815976848726],[11.165510335160642,46.01356494735583],[11.165516053065277,46.013287946376124],[11.165519396351003,46.012916984616545],[11.165533735691607,46.012667652540806],[11.165486058117091,46.01233682700661],[11.16543206756443,46.01214786601797],[11.16537448058783,46.01196570175637],[11.165335393819118,46.01188471319659],[11.165335994208654,46.01157553246559],[11.165290783849208,46.01133636177366],[11.16522413612942,46.01098910297177],[11.16512756061637,46.01042820718492],[11.164975141229336,46.00994169468227],[11.16489491811641,46.009752179301735],[11.16487269735443,46.00958680137515],[11.164935109920677,46.00951255093005],[11.165173097374586,46.009476409953386],[11.165450169596477,46.00952125887971],[11.165512398027236,46.0095248889882],[11.165474226287735,46.00942329412538],[11.165441682203896,46.00934243895463],[11.165383495082823,46.00917400058478],[11.165447300021466,46.008994438505425],[11.165436472758982,46.00886823339761],[11.16537749923435,46.00849594518521],[11.165427888632015,46.008396246437464],[11.165391361905549,46.00833133778247],[11.165327804133998,46.00830030363397],[11.16533608241618,46.00824542157606],[11.165209576525893,46.008137352129545],[11.165097311173522,46.00807769501401],[11.164931659581976,46.00803751807635],[11.164793980662076,46.00795898634124],[11.164689487207488,46.00787201157623],[11.164579244179786,46.00769329626669],[11.16453296560733,46.00755261176756],[11.16443317461166,46.0074336579591],[11.164337929567859,46.0073606272344],[11.16420181468473,46.007273321399644],[11.164075176296853,46.007215306312844],[11.163914736597242,46.00713171273665],[11.163735739040806,46.007022535308415],[11.16354382724601,46.00690847924295],[11.163404197674325,46.00680014152195],[11.16329961177044,46.00671545149025],[11.163300690713148,46.00661700246476],[11.163440484668033,46.00657419051134],[11.163673944954784,46.006492148861525],[11.16384761981687,46.00644469406346],[11.164003727635986,46.00638468881701],[11.164052911368119,46.006346965847094],[11.164247748912114,46.00638686832791],[11.164624549528131,46.006346899636426],[11.164844796729433,46.00624221470703],[11.165225669442371,46.00612699851628],[11.165452337648603,46.00602082626412],[11.165787201191701,46.006053850548604],[11.166122620919179,46.00608443773531],[11.166601939360993,46.006147631610524],[11.166670632659947,46.006153719743594],[11.16683493643518,46.0061527597547],[11.16698217083652,46.00616515570203],[11.167096824624178,46.00617227077049],[11.167205650296237,46.00616290701901],[11.167290890664498,46.006186303356586],[11.167583848800302,46.006134478161925],[11.167580447004324,46.006031819176506],[11.16757196898451,46.005775582515156],[11.167613752307425,46.005711696071835],[11.167621617361347,46.005611069754416],[11.167623515718349,46.00549656845387],[11.167632418348704,46.0053730491883],[11.167506850443694,46.00524430345244],[11.167362022813403,46.00510594890631],[11.167169958855238,46.004923019212455],[11.167008938420183,46.00477973866067],[11.166842171415237,46.00461800474926],[11.166712431204838,46.00451031237485],[11.166355959695474,46.00437822162407],[11.166288910577332,46.00431462826811],[11.16609420762332,46.00424345711379],[11.16587653890029,46.00413211368998],[11.165720182757136,46.00403028807278],[11.165545925590216,46.00396244276358],[11.165316641999288,46.00387737330514],[11.165132729335289,46.00380473324149],[11.164920022703352,46.00371543908073],[11.164659776981111,46.00366177376989],[11.164352303363922,46.00363689269066],[11.164066165818761,46.003649096273634],[11.16367863812755,46.00365225187212],[11.16343104395845,46.003683594588864],[11.163128084823283,46.00370459443936],[11.162748788637577,46.003744585674454],[11.162537152182047,46.00377898797988],[11.162310677977807,46.003852010056924],[11.1619866680869,46.003755750351694],[11.161540296850923,46.00367977683138],[11.161169252104047,46.003607702860904],[11.160901868741727,46.00356763740837],[11.16070927428095,46.00354289542467],[11.160361424894603,46.0035400186976],[11.160065440111024,46.00355201146628],[11.15983676479877,46.00352649221886],[11.159647767903456,46.003494951831364],[11.159484403546655,46.003477708601906],[11.159455658431838,46.00343128684419],[11.159368416537795,46.003280554421956],[11.159229771491699,46.003002741460406],[11.159166978732857,46.00279068338429],[11.159065359323773,46.002566344734916],[11.158985841013823,46.002425418512665],[11.158969509689209,46.00239653032332],[11.158934510117065,46.00233452117954],[11.158832697327176,46.00211475719686],[11.158687301476649,46.00184136693748],[11.158533287096734,46.001613631157944],[11.158395398835566,46.001393092188444],[11.15834931219993,46.001174523981476],[11.158386849720976,46.00092110447874],[11.158460369829285,46.00067072847353],[11.158537246899943,46.000344863174085],[11.158605023525734,46.00007605233671],[11.158608967714255,45.999840244701346],[11.158595391486926,45.99978903683411],[11.15878146727392,45.9987064986147],[11.158867002333341,45.99831639737904],[11.15899281615917,45.99810576873369],[11.159176089053526,45.997786131700444],[11.159279674115515,45.99752696591997],[11.159452102662083,45.99612137651861],[11.159136394920262,45.99477174064089],[11.159143585801754,45.99428026642311],[11.159157658999332,45.99331855805174],[11.159411283059992,45.99195355164874],[11.15874882493557,45.991486512751884],[11.158533435016125,45.99109485434511],[11.158493548348472,45.990941603416445],[11.158879902986143,45.98983028430354],[11.158938322201852,45.9879873604761],[11.159322396214753,45.98636675287799],[11.160361552421456,45.984726420296724],[11.160402380193801,45.984583809959304],[11.160411051349282,45.98444518018028],[11.160032070875245,45.98353042259008],[11.160034714362519,45.98334691346481],[11.160372689762157,45.982599199927506],[11.159767923068461,45.98147834018585],[11.159697828140871,45.98134842593507],[11.15920709406708,45.98152538368817],[11.158363862859387,45.98189476435343],[11.15805156416024,45.98184459292603],[11.1574277359591,45.98179669206082],[11.157294538510243,45.98259158753868],[11.157143925889436,45.982577694874436],[11.156918945593194,45.982620522912846],[11.15676435695742,45.982700287105715],[11.156546195962388,45.98284042005734],[11.155771470111665,45.98095482785529],[11.155646303397953,45.98084712900135],[11.155501615257354,45.98087065087714],[11.154849420425585,45.9810813274737],[11.154633447501809,45.981007984487114],[11.154456534451205,45.98066847508837],[11.15431465379663,45.980519708475434],[11.153839103442662,45.98032840607876],[11.15335452858586,45.97988997985656],[11.15242984185485,45.97947346727635],[11.151426464272308,45.9788215884305],[11.151212728577207,45.97853474771837],[11.150895845385076,45.9781737765788],[11.150797633152473,45.97770636948005],[11.150639844503544,45.97756893843481],[11.149180442736077,45.97695025105149],[11.149022869572374,45.976827800096494],[11.148168500660159,45.97680396373346],[11.148152354216833,45.97753060359299],[11.147731130136524,45.977743329323395],[11.14624647444258,45.978326920614606],[11.145304418388237,45.97855085921911],[11.144848974330444,45.97862901275964],[11.144192868672041,45.978573774882356],[11.143813062118035,45.97831433106578],[11.14354614290474,45.978061578991834],[11.143259911449839,45.9779550086442],[11.142004945325954,45.978087521717775],[11.141554707211743,45.978521387353425],[11.1407754926831,45.97923097553215],[11.140530051961221,45.97971207633929],[11.140111568821268,45.980115757156575],[11.139483730846418,45.979790643416926],[11.139400383547418,45.97960024719413],[11.13939315273834,45.97947295834352],[11.139485930331492,45.97883566536119],[11.139457172272925,45.978704797961896],[11.13936415694108,45.97858936345837],[11.138499105797079,45.97820227437614],[11.137213218439747,45.977687076757064],[11.136450567564443,45.97769245793124],[11.135754648539955,45.97785464674515],[11.134842754537626,45.978310479994846],[11.134560159478582,45.979196286140244],[11.134313249961524,45.97995075585869],[11.13381987919037,45.98074816844621],[11.133040229801528,45.98180971893088],[11.132740601420121,45.982264975683506],[11.13239109504302,45.98261196857916],[11.131954109435465,45.98285469844996],[11.131201624038487,45.9831970421773],[11.131037684543237,45.98337793807722],[11.130590558053319,45.983661956145106],[11.130172766856694,45.98374727524851],[11.129879765570921,45.98391783889363],[11.129651272951449,45.9840917154987],[11.129455731780686,45.98431402620695],[11.129271227389458,45.98455874854952],[11.128850605580023,45.98482009079855],[11.128385055699482,45.9849469368079],[11.127942335700956,45.98516723303663],[11.12747141475447,45.98529410245671],[11.126969136019843,45.98548110863465],[11.126447439317834,45.98581431274236],[11.125887880444976,45.98612904937611],[11.125470005494714,45.986585086711926],[11.125369510902413,45.98656188804086],[11.125151766812973,45.98651159990735],[11.124084769897918,45.986265186145786],[11.122873733420363,45.98535233805907],[11.122055926443803,45.98526438440488],[11.121452648970356,45.985152459508285],[11.121166458685718,45.98504959342547],[11.120701104154053,45.98481313527332],[11.120313907644606,45.98440761777445],[11.119542476927828,45.98380252578313],[11.119159830796107,45.983715287637835],[11.118952502738042,45.98311377129858],[11.118589067949397,45.982865367793146],[11.116349465756693,45.98289954574403],[11.114788590824896,45.983063821381926],[11.112368669821766,45.98332034943507],[11.111347468244713,45.98356899034722],[11.111623467143538,45.98402744894619],[11.112388916715302,45.98485833824558],[11.113014501083775,45.98537698084578],[11.113985963762486,45.98610836473926],[11.114973697756072,45.98715094929979],[11.116039874554122,45.98832535808243],[11.117144480166571,45.98945508272336],[11.117074310587363,45.989535090538034],[11.116895654501652,45.989610894055936],[11.116819604224634,45.98964316165524],[11.116601719917512,45.989735619399426],[11.115388910882627,45.990250196790605],[11.114350078241088,45.990631426190994],[11.112542029875566,45.990713944408185],[11.111507626925155,45.99083282609047],[11.11030604269248,45.99098029727494],[11.107709377994697,45.991899505830965],[11.104410879641527,45.99172215073993],[11.10405404739989,45.991835356077345],[11.102685585413385,45.99199260399505],[11.100804471900346,45.99225424684083],[11.099505345875665,45.992442014505514],[11.098918879306483,45.99249089141977],[11.098810690957553,45.99249990208151],[11.098259062688545,45.99268267413918],[11.097144663104949,45.993070627436936],[11.095532930003303,45.99360803948655],[11.09391042430127,45.9941453300458],[11.09449007085665,45.99502652503849],[11.095143884097332,45.99591100179801],[11.095389714074756,45.99638826402506],[11.095694803176784,45.99685468770887],[11.095936732429314,45.99722706468711],[11.096290688447928,45.997812751635934],[11.096784032177263,45.99876034525794],[11.096994427806349,45.999111069867396],[11.09828099215309,45.99988693811857],[11.098297287065307,46.00003387753185],[11.09829564372331,46.00014149852259],[11.098302809065775,46.00027220086268],[11.098341377854343,46.00050667258446],[11.098427543855033,46.000776545487724],[11.098569583577564,46.00104535501019],[11.098718106760016,46.00138760967677],[11.098782745000392,46.00155393659604],[11.098915320267436,46.0017423691123],[11.099162199391735,46.002015776747086],[11.099361677755622,46.00224919021496],[11.099490918793807,46.00251084183997],[11.09956434271208,46.00270026886704],[11.099615460793899,46.00287547050992],[11.09963590008493,46.003075180252885],[11.09963198604954,46.003233126432534],[11.099653884332824,46.00340080986724],[11.099709352839257,46.003557677189725],[11.099902962352191,46.00377046636861],[11.100087131475922,46.00390735237864],[11.100332819729763,46.00413490054666],[11.10060462874405,46.00429434002401],[11.100973350918167,46.00448793901652],[11.101223643529645,46.00461483272847],[11.101500787621733,46.00472855058997],[11.101664623827377,46.00495203493575],[11.101760716067256,46.00514882236495],[11.101865914822982,46.005361846903256],[11.102001693826324,46.005552631568364],[11.10211430091634,46.005747510961974],[11.102181638574779,46.0059986305927],[11.102182321267051,46.00620021449388],[11.102151436555342,46.00637360640454],[11.102081409918126,46.006541561491105],[11.101986131035899,46.00675934300983],[11.101924028057253,46.00689769709774],[11.10187532535366,46.007029482825445],[11.101769337590616,46.00719435794886],[11.101634646139601,46.00734027731076],[11.101537790674872,46.007448100873354],[11.101448827715691,46.0075080211829],[11.101436073156753,46.00755885336672],[11.101424026620267,46.007606760046265],[11.098279160462894,46.00862912012235],[11.098219794728639,46.00898907345889],[11.098006221514163,46.01028371203742],[11.097984700001383,46.01041409320798],[11.0979760382629,46.010603996177416],[11.097930232568888,46.01096029003075],[11.097948130415197,46.01114391717418],[11.097916271445596,46.011482203699764],[11.097870689586493,46.011833921249924],[11.09780374315964,46.012077537759],[11.097743163603392,46.01232584883097],[11.09774116563965,46.01251361960759],[11.097764491865735,46.012722566416535],[11.097762847949225,46.012830186299446],[11.097653233349384,46.01300185169998],[11.097591829449684,46.01312417272518],[11.097516791650904,46.01323800391835],[11.097502865506849,46.01334668272079],[11.097506451693196,46.013484197136734],[11.097433599363141,46.01356962390805],[11.097293372816363,46.013548217269644],[11.097253863969701,46.013478640881004],[11.097246864420141,46.01341665247491],[11.097259508332868,46.01335507656425],[11.097277161096283,46.01332798849106],[11.09727218133245,46.013293519018056],[11.097246982443142,46.01327005631333],[11.09721521642226,46.01324645675695],[11.09709872995923,46.01328055680163],[11.097035825665541,46.0133639205548],[11.09695985361568,46.01351799146555],[11.096919324531761,46.01368659964417],[11.096881392909474,46.013797982551374],[11.096744949427244,46.01390951573205],[11.09660859131282,46.01394774029087],[11.096559370298943,46.0139466707739],[11.09634553268175,46.0139557008367],[11.096262790065284,46.013969919403785],[11.096089079980905,46.014034818705184],[11.0957537503793,46.01418778540845],[11.09545922405755,46.01430957110197],[11.095040922900113,46.014481311038736],[11.094703766277703,46.01460216202179],[11.094332303934944,46.01468332889946],[11.09401319460181,46.01476792255629],[11.093660853246737,46.015005247154946],[11.093448738327828,46.015263981287376],[11.093291084580136,46.01548039164231],[11.093133983025822,46.01575636596843],[11.092998959776553,46.01598015815263],[11.092841302347361,46.01619656882546],[11.092737908688886,46.01637523010431],[11.092669304676274,46.01651115453885],[11.092480688935193,46.01661466052245],[11.092148034708986,46.016708104835615],[11.092044314953455,46.01667833697826],[11.091834467751926,46.01667143339638],[11.091696669273194,46.016597388896855],[11.091538524789579,46.01653665546093],[11.091475252466864,46.01655587731084],[11.091363526530094,46.01677330624838],[11.091122167573674,46.017024517023714],[11.090951038136748,46.017176491511236],[11.090710394684455,46.01741168859802],[11.090501608290934,46.017597197879816],[11.090237352947396,46.017774616168225],[11.0899408104329,46.017939869394695],[11.089845957595816,46.01807520306313],[11.089864971741257,46.01823365159476],[11.089876477948406,46.01841256717518],[11.089850720116754,46.01854484936606],[11.089972415615,46.01875595987971],[11.089826536731595,46.01907339970486],[11.08974745163253,46.0192228226775],[11.089637079265847,46.019410492824186],[11.089478554818966,46.01964521742276],[11.089269660009194,46.01990401426633],[11.08908307187391,46.02010603621053],[11.088975402088241,46.020234212500725],[11.088899102743765,46.020412724831935],[11.088794137683928,46.02046385819328],[11.088721461374512,46.020544704854245],[11.08857152373732,46.02059179473942],[11.08843817330216,46.02056365345458],[11.088302484336888,46.020514854253065],[11.088209032277017,46.02047615871419],[11.088087494170079,46.020404761141975],[11.087982597535103,46.02032915138733],[11.087877775280868,46.020251255020085],[11.087716241125737,46.02012173286911],[11.087682910600517,46.02013244292042],[11.087559143612529,46.02025339145163],[11.08737856544517,46.020396003709294],[11.087152170948146,46.02060630638344],[11.086933932974574,46.02078245316377],[11.08677598640298,46.02093242900938],[11.086578787641768,46.021079232575744],[11.086340746113342,46.02125723214668],[11.086159739064808,46.021408974701586],[11.086049424798736,46.02152335324828],[11.085868092280327,46.02168197564301],[11.08560191319957,46.02190057797255],[11.085337945625382,46.0220711051365],[11.085158076576434,46.02219770119499],[11.085008156845433,46.0223157878731],[11.084674236899561,46.02250768045052],[11.084464938556511,46.02263132844374],[11.084272156930808,46.02275305377215],[11.084030518363113,46.02293782284975],[11.083799748185717,46.0230999250243],[11.08361300690898,46.02323322492988],[11.083242137479917,46.0234426346886],[11.083080301509675,46.02358886107103],[11.08297286654735,46.02363789652544],[11.081955740849931,46.02407419046237],[11.081667968138364,46.02417436159271],[11.081424380609754,46.02420399690559],[11.08128987556719,46.02419809704616],[11.08099130625321,46.02418829243375],[11.080466606179975,46.02415792497531],[11.080046800415722,46.024135487028865],[11.079725553613095,46.02410942900619],[11.079321786053221,46.02410542496941],[11.078819478680265,46.024102750936834],[11.077180836618902,46.02469792170142],[11.077045201536611,46.024601566341566],[11.076944341025301,46.024585465332514],[11.076662031022222,46.02442702847648],[11.07647094764556,46.024301548531554],[11.075753517008847,46.02391220573044],[11.075486079823309,46.02382715167345],[11.075366744001167,46.02372526816964],[11.075134188678675,46.02354214507994],[11.074966486249743,46.02339858038192],[11.074834795255759,46.02325994514099],[11.074725215253835,46.023162732192446],[11.074401585999077,46.02309543197393],[11.07424146024986,46.02305950260265],[11.073839482289994,46.02297084106831],[11.073656661795077,46.02292096391172],[11.073491259872004,46.02282317717769],[11.073378305157672,46.02273050269187],[11.073258602180506,46.02264692737613],[11.07319424605587,46.022584485372384],[11.07315239948239,46.02254515421423],[11.073116258417214,46.022479397473546],[11.071253898182288,46.022269262399846],[11.07117491237356,46.0222783068052],[11.07076400544087,46.02230169960145],[11.070405565926636,46.02232788235026],[11.070113852156252,46.02230437703029],[11.06974324705446,46.02228466014208],[11.069438712970028,46.02224728472807],[11.069169479896763,46.0222469080276],[11.06856331321036,46.022188210275104],[11.068108339452602,46.02212186995376],[11.067974080603165,46.02213375687831],[11.067782673345905,46.022150676844824],[11.067553163591828,46.02229029029015],[11.067294985286734,46.022388415351905],[11.067208437805107,46.022407566083324],[11.066970854222102,46.02258192216886],[11.066788073071972,46.02271602648359],[11.06669616785248,46.02271991038807],[11.066652892827738,46.02278482877284],[11.06653468899255,46.022939292055355],[11.06623548933317,46.02311254980171],[11.065862355002361,46.02305845283995],[11.065545913333768,46.02296145075103],[11.065402983062034,46.02288906942753],[11.065165415062005,46.02279056648123],[11.064954220219988,46.0226854670957],[11.064536056165084,46.022740783493475],[11.06389380587011,46.02283505784334],[11.063413373591029,46.02288519039461],[11.062965170386699,46.02296308871014],[11.062643528166038,46.02311091797884],[11.062507605783779,46.02317136034912],[11.06225547588763,46.02344806760055],[11.061790385167525,46.023855394876016],[11.0615132433806,46.02407233233845],[11.061232198581363,46.024316711879685],[11.060981310183664,46.024533911464026],[11.06072521606883,46.02484034426847],[11.060559642558742,46.02506068585621],[11.060358814228069,46.02523948983869],[11.060257329315416,46.02537808904739],[11.060145052356983,46.02556235453154],[11.059960275006349,46.0257573468274],[11.059794149105594,46.026002858208884],[11.05967770578091,46.02616836089665],[11.059621430637478,46.02624832168776],[11.059599581207602,46.026277709766504],[11.05957439994922,46.0264161306204],[11.05946556894156,46.027014473298884],[11.059436779454106,46.02717260750234],[11.059419116287732,46.02726982573331],[11.059305514207377,46.0271728361737],[11.058974496506227,46.02702000736988],[11.058822405162328,46.026915489315705],[11.058689868019767,46.026818029457424],[11.058528951284012,46.02666534163518],[11.058374552623755,46.026515023801345],[11.058197178374435,46.02636445637115],[11.057901183755845,46.026079956743075],[11.057633828483167,46.025836948087665],[11.057354657514109,46.0255343020002],[11.057071705672284,46.0252545055267],[11.056798340972863,46.02498624051064],[11.056479954049335,46.02467404974514],[11.056045481334062,46.02426454184138],[11.055605258090807,46.023816076624676],[11.055058395777426,46.023288701627486],[11.05472763911007,46.0229420389153],[11.054464406729684,46.02266243384253],[11.054150427900193,46.02229992884366],[11.053910129754671,46.022022841466914],[11.053530820693672,46.02164363033759],[11.053213619584227,46.021278802784174],[11.053041873103549,46.021020701364606],[11.05286346879757,46.02076714382079],[11.05277119938516,46.020578209675186],[11.052152352834316,46.01996577673595],[11.052081527330337,46.019875735484234],[11.051837608541296,46.019614633683354],[11.051522637139055,46.01930015530607],[11.051285383094369,46.01903454681931],[11.050906548513627,46.018637032581786],[11.0504399175651,46.01819971259404],[11.050157849364851,46.01788099025419],[11.049850442835702,46.01752082494174],[11.04950281857429,46.017199148817255],[11.049054142124701,46.01677020060089],[11.04895595976814,46.01667633424414],[11.048762878234834,46.01641554971773],[11.048447882824846,46.01439983964195],[11.048370813950916,46.01393198683935],[11.048340458263665,46.013730400516756],[11.048116117812786,46.0122402514438],[11.046665602508996,46.00260348357621],[11.046272306025106,45.99999969537941],[11.04630941357672,45.999999694014974],[11.046057132321971,45.99919946867767],[11.045871050955324,45.99865734697413],[11.045739373037165,45.99821986857072],[11.04566609001477,45.997681145509276],[11.045638845683593,45.99677923367809],[11.045477514077875,45.99674604949233],[11.045223230692605,45.996451166735724],[11.044558802551121,45.99583569070539],[11.043926526788121,45.995208872113324],[11.043154409038367,45.994545067940095],[11.042300938257595,45.99375049655294],[11.041161556964472,45.992743469038324],[11.040534968625492,45.992157799578656],[11.040393983125458,45.991937413057826],[11.04024746597032,45.99169458311887],[11.040024141542158,45.991193740931315],[11.039588365646704,45.99020699584676],[11.03906577747015,45.98907079855339],[11.038460134180822,45.98753440018523],[11.038472559252943,45.98694675234772],[11.037861453977216,45.98538788505725],[11.037129345712815,45.9833615491007],[11.036852587644864,45.98238983574278],[11.03611888493852,45.98290828014312],[11.035724471677163,45.98328163803253],[11.035388765292021,45.983718830544646],[11.034674601010623,45.98455191123282],[11.034214657960806,45.98509735485079],[11.03390123163945,45.985403533434955],[11.033403450426633,45.985982568509776],[11.033289683916362,45.98613951851614],[11.032697684707806,45.98719390638396],[11.032739684783488,45.98735881237023],[11.032936904383034,45.9876140773668],[11.032893525122015,45.98856895290842],[11.032154780943232,45.989892556983285],[11.032120933611258,45.990158365925],[11.032178551155116,45.990296248182105],[11.032232144014946,45.99042459963519],[11.03230601288131,45.99064950776504],[11.032613828821434,45.99127586065445],[11.032885611226423,45.991647434879454],[11.033199306539258,45.99219139939945],[11.033256185352732,45.99256233678428],[11.033191781131663,45.993434769234355],[11.033249395135899,45.993682103866],[11.033402537369414,45.994124486248396],[11.033422629988614,45.994356746293406],[11.033410779778167,45.99542781191385],[11.033354806044205,45.995798416777454],[11.03321750035975,45.99628862166309],[11.033133950071521,45.9976628500479],[11.033120867761582,45.9980485623395],[11.032887957466963,45.99835496321164],[11.032412666589304,45.998750557253665],[11.032216031400582,45.99905540862227],[11.032178620191397,45.999244214242815],[11.032212623208999,46.00000117211714],[11.032004431012078,46.00057371482193],[11.031796621337671,46.00072383854257],[11.031606964230248,46.00099197598458],[11.031438350137726,46.001347292314286],[11.031144184716318,46.001891304883955],[11.031002641011758,46.00221028857296],[11.030784902165408,46.00256052445108],[11.030593897245488,46.002739378351414],[11.030321447705475,46.00304098367485],[11.030104940458209,46.003334017828585],[11.029968689240395,46.00356148173222],[11.029919295761974,46.00386769321895],[11.029993103981116,46.00409503622884],[11.029811885772318,46.00427627723052],[11.02969862085297,46.00450170961358],[11.029682159908159,46.004803668244286],[11.02967058566095,46.0050324365596],[11.029574942215758,46.00520312501888],[11.02945900211515,46.005401047748414],[11.029255905106947,46.005531710886885],[11.029162930501565,46.005729870683055],[11.028975770821164,46.006032372430376],[11.028616339211938,46.006706158545306],[11.028554456540403,46.007282313493675],[11.028532635822343,46.00767805846129],[11.028515413318294,46.0080143328549],[11.028500649676943,46.0082384945463],[11.028508556436522,46.008312194710946],[11.02858785219353,46.00905193729997],[11.028655246288997,46.009272372914126],[11.028798404664425,46.00947985003065],[11.028868106688135,46.00974378130693],[11.028925416163604,46.00997554711502],[11.028977665450821,46.010287362547594],[11.028851435192529,46.01035472639636],[11.02845726178491,46.010515452472816],[11.028171524263653,46.01067272209803],[11.028029030096565,46.01073305658695],[11.028008585095703,46.01076716946283],[11.02819362785393,46.011011708292976],[11.028448647343357,46.011357673486245],[11.028774233039268,46.01177989397226],[11.02897746204284,46.01209328604059],[11.02923691541978,46.01238663818911],[11.029403759295102,46.012713375975004],[11.029507184135161,46.01293646949322],[11.02967525551357,46.013131079822394],[11.029175303948856,46.01440975429852],[11.02894040163586,46.015010473431374],[11.028534627838638,46.01540752543235],[11.028508482748936,46.015426855925966],[11.02852898626088,46.01562721199011],[11.028567650032834,46.01595950735531],[11.028599166911624,46.016319173250295],[11.028568371766553,46.01682469514259],[11.028532375743413,46.01726835726133],[11.028531366387373,46.01761396539689],[11.028487858169067,46.018101041059246],[11.028480112810318,46.01845345951111],[11.028544626718967,46.01865553158914],[11.028682386971951,46.01896138584313],[11.028763456916558,46.01915676823636],[11.028822549849354,46.01945721781115],[11.028873494652657,46.01982853750277],[11.02891287000895,46.02012878455577],[11.029000312266373,46.02033339849675],[11.029027493612604,46.02037848020616],[11.029092103302645,46.0207406729462],[11.029097230965299,46.02076944734451],[11.029112237219856,46.02085345337456],[11.029056138674752,46.021082422340925],[11.02902739607088,46.02134535551584],[11.028872173548903,46.02183585243141],[11.02879747337017,46.022247079073885],[11.028721925942643,46.02254842726092],[11.028641644907966,46.022616264477406],[11.028625593336738,46.022748839043466],[11.028853271514578,46.023147176256586],[11.029062304101053,46.02349723674734],[11.029259791388892,46.023773938736866],[11.029395284809155,46.024033972529224],[11.029563600597436,46.02429434558201],[11.029726740030206,46.024641644314265],[11.02980607191697,46.024917127002226],[11.029823185383993,46.02518508840831],[11.029933180519476,46.025410534058445],[11.030040281318856,46.02561763641176],[11.030100870194133,46.02584943461573],[11.030088908615559,46.02609651282026],[11.030048375871534,46.02629750106457],[11.030101306999406,46.02657959074107],[11.030169507273126,46.026763403152394],[11.030118081379953,46.027012343642106],[11.030072783544155,46.02728196656893],[11.02992718627029,46.02763294512851],[11.029837437547142,46.02798221118995],[11.029719093721551,46.02828771141874],[11.029660248909623,46.02857549150139],[11.029575142890192,46.02886301896235],[11.029423215896992,46.029202478277504],[11.02938547610033,46.02942640217504],[11.029373483952755,46.02967347980628],[11.02934802233338,46.02993642822949],[11.029364528024859,46.03023186439064],[11.029381911977552,46.03048839238872],[11.029395038700299,46.03078836794003],[11.0293504131646,46.03102594317796],[11.029306494658492,46.03123148853734],[11.029215718279586,46.03147775413257],[11.029116041675293,46.03168041967925],[11.029030200713587,46.03185120912542],[11.028905526992936,46.031996403082815],[11.028857230845887,46.03210120131145],[11.028844438259345,46.032236113687006],[11.028882590751467,46.03229371959427],[11.028959306906888,46.03238835322552],[11.029057668923896,46.032463054844285],[11.029149565431865,46.033324011925636],[11.028684045366717,46.03470082935912],[11.028662314180526,46.03476508329002],[11.028639724267695,46.03483189681799],[11.028555046723595,46.03508232943397],[11.028498195489318,46.03559485651645],[11.028418253669326,46.03594650923201],[11.02827464025051,46.03635473704477],[11.02822662766969,46.03659685115317],[11.02807549984534,46.0369726791003],[11.028028632930113,46.037089211162794],[11.027895248796675,46.03763028408021],[11.027809922404614,46.0379994966876],[11.027726544104851,46.03828314857758],[11.027636231080034,46.03865758322671],[11.027449235466822,46.0393684099011],[11.027417498287939,46.03992964940065],[11.027144478395039,46.04475968173842],[11.029502842039351,46.0471693710807],[11.029630285483268,46.047332279160685],[11.029298803372177,46.04746848462318],[11.028932732507602,46.0476844329001],[11.028487485199953,46.04791561007541],[11.02810907588164,46.048094800256315],[11.027773573835386,46.048265300274885],[11.027441327544357,46.04843581622523],[11.027023361997315,46.04862147385138],[11.026727792130034,46.048767209323444],[11.026263045138892,46.04898900979681],[11.025762194660166,46.0492081310702],[11.025467473046891,46.04931495488742],[11.025172702080198,46.04942406575833],[11.0248752826869,46.04950566518817],[11.024603494969142,46.04961501164968],[11.024232826926198,46.049739363099484],[11.023521975516525,46.049932131814096],[11.023455669478498,46.04996276103166],[11.023235977576887,46.05006423251086],[11.02295653998621,46.0501933038709],[11.022464904897776,46.05027223183683],[11.023453309996016,46.05234743099943],[11.023502211143347,46.05246785021566],[11.023667708053194,46.05287540649071],[11.023727520060401,46.052951707941],[11.02383156845118,46.05310548847359],[11.024013232539088,46.0534358775309],[11.02416592875001,46.053679152134954],[11.024299429505769,46.05385135935239],[11.024410159413259,46.053993722151034],[11.024488360241923,46.05408560424005],[11.024622054810838,46.054232647684806],[11.024700345354008,46.05431536677149],[11.02510200379518,46.05467862708904],[11.025291424933599,46.0548464686438],[11.025487354407536,46.05502578940447],[11.025637493234676,46.05517060417327],[11.025807491338648,46.05530174007098],[11.0261370792143,46.055630387367195],[11.027107618347442,46.05642163138086],[11.0272282943208,46.05655258993375],[11.027263540534799,46.05667864986191],[11.02727887097131,46.056829818108596],[11.027247866820156,46.057024313573585],[11.02730916447163,46.05854247317751],[11.027259453777415,46.05950388158976],[11.026942966369546,46.06010098980934],[11.026922781548762,46.0601390603596],[11.02685613333739,46.060264771589154],[11.026292007753963,46.06144174605583],[11.025541544822133,46.062917934458994],[11.024210439525227,46.06416586561628],[11.024102097955412,46.0655431371566],[11.02386991059344,46.0658215784725],[11.02358139439479,46.06615933613805],[11.023445411852716,46.06632136841687],[11.023319538372157,46.06645138889171],[11.023239689517121,46.06657930357464],[11.0232581890274,46.0667442213206],[11.02359695226753,46.06717821893378],[11.023746911189047,46.06735279001228],[11.023864426137262,46.06747000169111],[11.023955469892075,46.06760771830621],[11.024075784805971,46.067791329118485],[11.024143775317425,46.06793583238876],[11.02419551004561,46.068055075817135],[11.024273206105562,46.06822021628016],[11.02434125828546,46.068355557087145],[11.024382736818847,46.068527422373855],[11.024370924013516,46.068795249997386],[11.024339947216856,46.068985153735134],[11.024263466495176,46.06910163682635],[11.024180397980901,46.06922266014871],[11.02375469234002,46.069882723428265],[11.02366142690513,46.0700472059469],[11.023657104764961,46.070186852167446],[11.023712548556203,46.070248889993195],[11.023624396902788,46.07061487600701],[11.022983942457232,46.071411488108915],[11.022772599641858,46.07153430274981],[11.022675154861153,46.07182012445476],[11.02264461462157,46.07194821686601],[11.022626879893672,46.07212673443723],[11.022606321599985,46.07223885307917],[11.02267730362654,46.072424573391245],[11.022606623154077,46.07264638560729],[11.02256893735547,46.07285001031568],[11.02264668014624,46.073010561769244],[11.022856189341319,46.07313956495054],[11.023006161427697,46.073314135725184],[11.023067650213978,46.07344946380144],[11.023112899131373,46.07355494335898],[11.023247531635045,46.073582935635066],[11.023352399056881,46.07362911314689],[11.02342069373983,46.07373470015559],[11.023482369414717,46.07384252388106],[11.023603416113597,46.073927712800675],[11.023813179532496,46.07402008456563],[11.024006606757762,46.07410094887016],[11.024242420511001,46.07422775097364],[11.024340659718545,46.07428307664415],[11.024457977778315,46.07442775590311],[11.024661475664393,46.074932216433844],[11.024922571081637,46.07565210714817],[11.02526940886693,46.0763402656923],[11.025782949128226,46.076264363304254],[11.026008551325896,46.075988173794364],[11.026202201098895,46.076041566518015],[11.02652363456279,46.0761526702295],[11.026819150260218,46.07621559070397],[11.02710501216343,46.076244140089415],[11.027321823641978,46.07627472494064],[11.027551734157829,46.07631222752666],[11.027936209550832,46.0763525906659],[11.028330634034027,46.076374675718895],[11.028593487523917,46.07640770240633],[11.028878788731753,46.07651409674743],[11.02906565898111,46.07659263617152],[11.029212938062445,46.076689333322925],[11.029287983649088,46.07677205175635],[11.029277479536832,46.07685899869153],[11.02918457562878,46.07697542652919],[11.029102047339583,46.077020908289285],[11.029128121665261,46.07705305178563],[11.029189479864014,46.07720668239577],[11.029205283255553,46.07729601961979],[11.029191161180716,46.07742876136098],[11.029088023780108,46.0775955069871],[11.028975150169138,46.077741615317095],[11.028931903778833,46.07779517267157],[11.02889220261711,46.07784433619058],[11.028809111602262,46.0779676671464],[11.028821000088488,46.07814169674879],[11.028839526826976,46.078308916870654],[11.028880988225783,46.07848763688787],[11.028932365389489,46.078657259871],[11.028993267630646,46.078874987662644],[11.029041532904218,46.079023985356],[11.029099111717567,46.07924857349819],[11.02914360912308,46.07946165236582],[11.029198667655606,46.07957633694634],[11.029213721954521,46.079768723600246],[11.02913129574272,46.07980045404926],[11.029065064075297,46.0798643179918],[11.029064229945673,46.079978797321814],[11.029079594169437,46.080127660163924],[11.029114755919155,46.08026745207835],[11.029139814760262,46.08044156088753],[11.02911209523484,46.080638337838245],[11.02905842219685,46.080784666484696],[11.028994929383433,46.080921805759296],[11.028945023851042,46.08100403334587],[11.028931023365454,46.08111847016262],[11.028936846416443,46.0812237987235],[11.02892948536759,46.08133367516918],[11.028932124795851,46.081422969838826],[11.028934640784271,46.08153058825341],[11.028927420440297,46.08161756857785],[11.028925900420715,46.08182818408503],[11.02893151196052,46.081961000070194],[11.028924296512757,46.08205026633315],[11.028920325876369,46.082146405968174],[11.02890271115768,46.08230890370277],[11.02890096214457,46.082551577192994],[11.028912414333899,46.08278515022632],[11.02889453226258,46.08298656382195],[11.028843807030928,46.083178680288206],[11.028799633683716,46.083375418048334],[11.02875242326579,46.08353551081574],[11.028633133716689,46.08365869227038],[11.028474789165363,46.08372448650809],[11.028293321421858,46.08380622973347],[11.028144857814286,46.08387206950139],[11.028029143253779,46.08395406350125],[11.02796935257146,46.08403626357832],[11.027932163842433,46.084175773929566],[11.02792155579395,46.084278777796364],[11.027927210466899,46.084407002050746],[11.027945815220766,46.08456047128631],[11.027961285159028,46.08469559991151],[11.02799339174619,46.084803337472415],[11.028028698842084,46.084922520366185],[11.028038079321755,46.084991235377586],[11.028030923431965,46.08507134016094],[11.02804922070706,46.08527059933014],[11.028091020038223,46.08540354604053],[11.028106737419206,46.0855020460522],[11.028092509856126,46.08565082576758],[11.028071624080562,46.08580871838366],[11.028070580372637,46.08595295031043],[11.028066380096005,46.08608114785326],[11.028042164389463,46.08624361492036],[11.02797392097774,46.08658449608912],[11.027834583896254,46.08666466091094],[11.027936942219833,46.086696537899606],[11.027923273145742,46.086765164308275],[11.027780455453906,46.086959246820896],[11.027714170695877,46.08702768289794],[11.027554792828475,46.08723542239088],[11.027428839340939,46.08737003750777],[11.027329132224274,46.08751390149402],[11.027318583234024,46.08760772408313],[11.027314500276034,46.08771531191613],[11.027323270383214,46.08786644824624],[11.027348684512525,46.08799247952027],[11.027351132580963,46.08810695535003],[11.02734347256914,46.088255747074186],[11.027319637850805,46.0883701366553],[11.027341906873607,46.088473238334565],[11.02729182037189,46.08857607586455],[11.027179194986955,46.08868555266634],[11.026821601847068,46.08901390735734],[11.027888856332453,46.08925143610245],[11.028808260071276,46.08946549891652],[11.029849637280016,46.08964568360494],[11.030559239911524,46.08976508552568],[11.030441175288088,46.090174462272834],[11.03020800016684,46.09241043549452],[11.030184505936743,46.09293233731385],[11.030451091751944,46.09291044045514],[11.030727622696364,46.09287942550391],[11.031047061511783,46.09282794320025],[11.031353541767935,46.09274895025641],[11.03155506487825,46.09262835943999],[11.031703984155236,46.09250298952012],[11.031836304496439,46.09239817203762],[11.032018102896648,46.09227291720337],[11.032382864755064,46.09232235242249],[11.032770860558307,46.092344388978965],[11.03344977759331,46.092464622180096],[11.034719902774437,46.09163496554084],[11.034928473601166,46.09144342674057],[11.035150316754706,46.09123819507151],[11.035411777953058,46.09101249833618],[11.035706341420726,46.09075485840708],[11.035799707267351,46.0905766324109],[11.035830183168235,46.09045310912803],[11.03583775922382,46.0903134786684],[11.03587237915348,46.09006863468866],[11.035932742033502,46.08990858105548],[11.03602969844126,46.0896868653092],[11.036163757409371,46.08933247546704],[11.036568413376862,46.08839297898497],[11.036559944654291,46.08819605257739],[11.036541331173702,46.08803801469598],[11.036493939116331,46.0877631129355],[11.036543720475915,46.087234418180536],[11.038181388096158,46.085873596379265],[11.038571975456874,46.08551785347783],[11.039230533847467,46.084943309185476],[11.039575212204717,46.08503613736712],[11.039831273038619,46.08510347071836],[11.040093682927571,46.085202871863764],[11.040332952139357,46.085320510395775],[11.040549297525013,46.08542204262141],[11.041264271551915,46.08571082280028],[11.04220182985876,46.08614921533327],[11.042513401108922,46.08627626615821],[11.042769351563813,46.08636189753768],[11.043137045925954,46.08645710518869],[11.043281230944416,46.08653317786],[11.043336632433876,46.0866066342566],[11.043316391104824,46.08667753650237],[11.043249866571522,46.086784896136656],[11.043146734556036,46.08695395818905],[11.043050312125581,46.087102421291085],[11.04311217129262,46.08719651749218],[11.043213376645104,46.08730449022433],[11.04324919706435,46.0873526950853],[11.043363490325913,46.087472156279894],[11.043412258156883,46.08755245975924],[11.043401759425599,46.08764399783941],[11.043292414636722,46.087760380915206],[11.043090032804205,46.08801148987507],[11.043188234243557,46.08807822738972],[11.043358334296313,46.088213924901616],[11.04356770860826,46.08837723226765],[11.043787421971517,46.08847189580177],[11.044000656011129,46.08854822458594],[11.044314892593068,46.08876913451812],[11.045175989315892,46.08933774958232],[11.04622675121903,46.090069570729945],[11.04712757712215,46.09060394934253],[11.047453578410018,46.09055016506723],[11.047526435457154,46.09047944423174],[11.047629205515852,46.090363064274506],[11.047752009673271,46.09020323079693],[11.047788790167298,46.09011407883125],[11.047802292810426,46.09006375566984],[11.047822370789193,46.090015749185284],[11.047852342148973,46.089960910684184],[11.04790548023459,46.089887832199565],[11.04801792337986,46.08979666062722],[11.048146904045861,46.08969638047135],[11.048298765830385,46.08961449211039],[11.048351818045976,46.0895505761722],[11.048329313919318,46.08947723266231],[11.048333334550964,46.089371930302434],[11.04834714779612,46.089273530970985],[11.048378215151148,46.089063012929685],[11.048434970325758,46.088939586575684],[11.048633230255415,46.0888052177991],[11.049028570261866,46.088712750593345],[11.049311754405014,46.08866339730656],[11.049608105909178,46.08861408340918],[11.049871340075336,46.08859898376607],[11.0501115346019,46.08858838838594],[11.050312406301309,46.08855247252308],[11.050467050914321,46.088541568360256],[11.050654645241039,46.088526220548815],[11.050812701617367,46.08850159700043],[11.051052138188968,46.088596298445204],[11.051298021415052,46.08871622798107],[11.051537460425095,46.08881094726354],[11.051711320136608,46.088880244755536],[11.05190816122912,46.08895419902236],[11.052088298746654,46.089067031972675],[11.05222586872373,46.0891499388415],[11.052356595237953,46.08927401801745],[11.052500292494534,46.08942564019662],[11.052637476881953,46.08956807217811],[11.052764951148033,46.08968299228841],[11.052951233714294,46.08985993110661],[11.053098182459527,46.09001842509033],[11.053215631998386,46.09016078618997],[11.053300294635799,46.09028700068104],[11.053385036495595,46.09040178443429],[11.053512129431716,46.09057622922966],[11.053626310369259,46.090714003684525],[11.05377996870358,46.09085189820852],[11.053933692038326,46.09098295306644],[11.05415304085024,46.091134816944695],[11.05436548744693,46.091334747227535],[11.054731849438717,46.09163367351778],[11.054934598507849,46.09181066303323],[11.055176434059902,46.09204276152753],[11.055333041882433,46.09220335767965],[11.055427961208531,46.092304638435905],[11.055473402728898,46.09233978179231],[11.055558832728293,46.09240583570193],[11.055593732760205,46.092453500621474],[11.055571070957436,46.092545534911075],[11.055534565607438,46.092591185059],[11.055477994772552,46.09268714682195],[11.055421485824617,46.09277625115447],[11.055396568760816,46.092812937471095],[11.055374967903282,46.0928447715639],[11.055394047110607,46.09294328019344],[11.05546903347112,46.09304198095554],[11.055573311719797,46.093188872289815],[11.05572670729178,46.09336569707653],[11.056003174096206,46.093831426519024],[11.056165699579516,46.094120468120835],[11.056442138649537,46.09459307214079],[11.056708855092822,46.09504273639531],[11.056907514518135,46.09533035602705],[11.057163605004254,46.095706164762504],[11.05728442465297,46.09581174404881],[11.0575912483659,46.09628302316059],[11.057935618891024,46.096811908947146],[11.058335833692214,46.09742658376789],[11.058548354783824,46.097538472918465],[11.059006773443498,46.097779803567896],[11.059511300970053,46.09804540524063],[11.060768946291672,46.09846913827718],[11.06114194185133,46.09859480885412],[11.065571272868237,46.10063855988406],[11.068664440182971,46.10300119938109],[11.07207116151985,46.10688145331452],[11.072286816016202,46.10727241513756],[11.072429047964551,46.10740411320372],[11.073025862357175,46.108060992726195],[11.073127061396585,46.10815979653391],[11.073270728225454,46.10829996539529],[11.073535450352104,46.10852071648662],[11.073646395521136,46.10863558182811],[11.073799744109651,46.10879638432316],[11.073946713746034,46.10893199502864],[11.074083960465982,46.10904923914586],[11.07441097881082,46.109299988639954],[11.074515608752684,46.10938278524344],[11.074652757650398,46.109511494769755],[11.074780308037102,46.10961040901254],[11.07497974077904,46.10976681531174],[11.075231766303965,46.109934874259274],[11.075460827830966,46.11008911974293],[11.075588218842958,46.11020631966576],[11.075686027188713,46.11032114534772],[11.075737413614819,46.11047924436921],[11.075847879465105,46.11065588210346],[11.076030536593676,46.1108579905111],[11.076134271562765,46.11105292414983],[11.076231846632158,46.111197465600775],[11.076284251344093,46.11122742412254],[11.076391160254463,46.11143839200812],[11.07656380272161,46.11165876272915],[11.07672633260274,46.11191113141938],[11.076856491561392,46.11209471017618],[11.077193026930017,46.112391267301945],[11.077353015330202,46.112549786923516],[11.077588147433579,46.11277270722791],[11.077995859700263,46.113227425008525],[11.078031808061048,46.113257313012504],[11.078060369602714,46.11339243571861],[11.078127062310639,46.11369935341743],[11.07817789409598,46.113928389271805],[11.078232465614219,46.1141025204247],[11.078270403054532,46.11429946063989],[11.078380072405936,46.114581358275885],[11.078580013650662,46.11509933292975],[11.07894387723668,46.11611451985521],[11.079130823137419,46.116193067538475],[11.079239067252036,46.11623468968583],[11.0793900608186,46.11628333050291],[11.079508205806023,46.116320422463176],[11.079600154846236,46.11634595528427],[11.079843067304717,46.116417860776025],[11.080072811081083,46.11649199721082],[11.080233668374747,46.11654069674187],[11.080433902639351,46.11660327810025],[11.080561917053233,46.11664267778664],[11.08071954186338,46.11668221940612],[11.080877204324125,46.11671715297776],[11.08101757733961,46.11680642155761],[11.08099085424044,46.11691212289289],[11.080960167624706,46.11705158643211],[11.080893269239454,46.1171909174638],[11.080812812561549,46.11738051965279],[11.080742745284615,46.117506102167496],[11.080639874363898,46.11761783146561],[11.080507372857776,46.1177317220334],[11.080177553496958,46.11783110494862],[11.079936967560416,46.11787819205135],[11.079768683180719,46.11793931673799],[11.0796199303848,46.11802568821876],[11.079421549926336,46.11814846265036],[11.079286103249782,46.11821658325647],[11.079209995017926,46.11827120017652],[11.079150369386996,46.1183235820915],[11.079031383971515,46.118391770946445],[11.078869592035536,46.11846206604888],[11.078782078025991,46.118477207933964],[11.078681535978168,46.11852539207896],[11.07850328681637,46.11859790308365],[11.078410643585416,46.118663897564176],[11.078153070737603,46.118779581631486],[11.077987990030797,46.11884986149416],[11.07787550196997,46.118929487975024],[11.077802291942106,46.11903446340674],[11.077735924214448,46.119102855927714],[11.077649352177323,46.11923522479198],[11.077615654809025,46.11933579515919],[11.077641098657347,46.11944572300655],[11.077673457832876,46.119516798642294],[11.077768092221206,46.11961785599337],[11.077882416142938,46.119725872259025],[11.077973725092845,46.119831505255036],[11.078054972614776,46.11995997437601],[11.078109982005893,46.12008147399193],[11.078187823449923,46.120223662587904],[11.078298456632513,46.120384277234656],[11.078412399187386,46.12054263825171],[11.07852683872234,46.12063461631339],[11.078611961079828,46.12068987537753],[11.078762576394722,46.12078659512061],[11.078893594051067,46.120862621853384],[11.079070573805845,46.12095486185284],[11.079139493794177,46.120980316375906],[11.079267337331704,46.12104030829393],[11.07952977409745,46.12114662283159],[11.079713522746268,46.12121370851203],[11.07988402298956,46.12129218526472],[11.080061568168915,46.12131348649911],[11.080343983662663,46.12138784246612],[11.080702178775601,46.12144876305355],[11.08108395259856,46.12144110984731],[11.08142944221713,46.1214447697567],[11.081811197818974,46.121439418470864],[11.08216318924722,46.12145453359791],[11.082383629489804,46.12145768656113],[11.08256492530389,46.121419507813066],[11.082913451230404,46.12145519857716],[11.083172951144737,46.12151571727212],[11.08325925274698,46.121553589315305],[11.083338074075769,46.12156813267622],[11.083685176458088,46.12166511509237],[11.08401229284316,46.12177335469084],[11.08411064713598,46.12181028714606],[11.084636204777734,46.1220076374416],[11.084504902006667,46.12219448334943],[11.084379299250674,46.122406293037926],[11.084263698937749,46.12261134015922],[11.084164469782042,46.12282110157538],[11.084044557980594,46.12308334880634],[11.083985127667884,46.123275149864305],[11.083956521933601,46.123400825804325],[11.083866292485556,46.12365877120496],[11.08382291891604,46.123873614712245],[11.083803879135441,46.12401539187813],[11.083804781004975,46.12414821657394],[11.083803156174493,46.12423831448128],[11.083787440098225,46.12437930291303],[11.083768335796142,46.12452568927772],[11.083750195000823,46.124605554697126],[11.083736143719833,46.12466735617827],[11.083674583473286,46.12479503432322],[11.083592772411638,46.12495227797333],[11.083507964632558,46.12509119895082],[11.08338583748547,46.125174029674],[11.0833569634374,46.12519634354599],[11.082964075793823,46.12592444334807],[11.084940714432374,46.126390169848406],[11.085229874950752,46.12652016679487],[11.085366527736845,46.12750816059332],[11.085384209743276,46.12763596021067],[11.085629260169352,46.127673825546246],[11.086677729534497,46.12783587088492],[11.086919663489313,46.12787325576316],[11.087821957699404,46.12822582070891],[11.087937335353955,46.12827091685125],[11.088449397692315,46.12894826655434],[11.089480891674283,46.12951215893326],[11.093664743270129,46.132571928583864],[11.093790775530609,46.13266410272119],[11.100440126231227,46.13398186705879],[11.101647699370764,46.134221140526776],[11.102190046890474,46.13411756449497],[11.108511091524498,46.13594704640407],[11.108633344406666,46.1359824105759],[11.110887469386274,46.13663470267534],[11.111332558535763,46.1367632205307],[11.1119083531488,46.136920336843],[11.11414584505638,46.13753179395584],[11.114204691222437,46.13755123154778],[11.114250070042193,46.13756635977827],[11.115050501978416,46.13783320184034],[11.115753680250787,46.138067615555926],[11.119425763164921,46.13929161520183],[11.119785434599045,46.13950764053645],[11.119828099967508,46.13953328036563],[11.120093464597575,46.13997043271073],[11.120089050198837,46.14042239700422],[11.12008878921556,46.140448778331645],[11.119848340976873,46.14111231692026],[11.119839023918068,46.14214959565241],[11.119850748844854,46.142382190785035],[11.120272148142531,46.14281644752085],[11.121685093285645,46.1431760589096],[11.122130906455714,46.14361094262152],[11.122295263963888,46.14423257317405],[11.122096633556419,46.145275870797086],[11.121911841989588,46.14576736677888],[11.12268313811073,46.1462850283375],[11.12282100785816,46.14676568261582],[11.122648410041965,46.147574225739135],[11.123662533530785,46.14892689595117],[11.125916635092647,46.148743401258294],[11.126433844515223,46.149246595392654],[11.126771156128465,46.14938580139635],[11.126843016623024,46.149411724958846],[11.127009543535182,46.14947525697565],[11.127334919671322,46.14950152944125],[11.127447863872167,46.14945463688363],[11.127567796932295,46.14938951317262],[11.127703795981699,46.14934287237033],[11.127862528837621,46.149310185619285],[11.128079894123042,46.14930558480766],[11.128355808817151,46.149335908487544],[11.128688598819426,46.149323350467256],[11.129003538986796,46.149374695948104],[11.129289704762659,46.149386818156756],[11.129543327822843,46.149380304062916],[11.129876750971373,46.149491335706124],[11.13017711637102,46.14960888132057],[11.130435274473685,46.14969853266296],[11.130710015021327,46.149781477856436],[11.13094543773557,46.14985715642747],[11.131148228488184,46.14991877127685],[11.131199684149319,46.149982803604004],[11.131283754493133,46.15004604304992],[11.13138113075969,46.15011113484008],[11.131426516384035,46.150143650509165],[11.131521027098009,46.15018811531401],[11.131683307055127,46.150297357208416],[11.131843015316216,46.150372253154536],[11.13199256065598,46.15046077558696],[11.132165587016107,46.150528934438135],[11.132235839380064,46.150557070728574],[11.132348484253557,46.15059720401584],[11.133494125415323,46.151366592212916],[11.133918531320502,46.1513801400073],[11.134168272800364,46.15140332621385],[11.134408452726726,46.15141037879458],[11.134668327603203,46.15141993753541],[11.134898550467707,46.15143146993306],[11.135306463319358,46.15144712704409],[11.135678187089711,46.15146240882364],[11.135951539868673,46.15145836834523],[11.136225272322696,46.15143603470879],[11.13659449080238,46.151414661733355],[11.136910365056808,46.15142250489476],[11.13755503683933,46.15145204811094],[11.138054786102982,46.151484667709305],[11.138794629532105,46.15152890030629],[11.139281730048985,46.15153620465481],[11.139393754195579,46.15153277966334],[11.139564996669812,46.1515299790953],[11.139795667825176,46.15152090380465],[11.139957285829754,46.151506541421625],[11.140579554412735,46.15150609216938],[11.140842704479251,46.151517953311945],[11.141125433933436,46.15153687559198],[11.141440889675716,46.15156530258248],[11.141779689124132,46.151580223052285],[11.142092301902201,46.15158800231294],[11.14227641418208,46.15159905678155],[11.142500014684964,46.15161279862883],[11.143068795132082,46.15165068178356],[11.14336871262827,46.15163545302691],[11.143447363785592,46.15162998517447],[11.143655583951146,46.15161551011696],[11.144045002814977,46.15157144992333],[11.1443125106577,46.15153299379845],[11.144616407523264,46.151485762991136],[11.144867263065413,46.15145628157447],[11.145154552796654,46.15141575651787],[11.14537528318942,46.15140886539482],[11.145626025078045,46.15138397447089],[11.145853736457102,46.151358832420456],[11.14594091808474,46.15135889067552],[11.14602524859385,46.1513445717273],[11.1461931999137,46.15134171052932],[11.146371003285488,46.15134124702827],[11.146674077463695,46.15133289832655],[11.146960988886601,46.1513106612383],[11.14712333968728,46.15126197302924],[11.14728604640977,46.15119727760266],[11.14736653935465,46.15112714304294],[11.147530423757981,46.151007533798136],[11.147754302028988,46.15085190699748],[11.147881768015974,46.15074107465099],[11.148028729658765,46.15064187452358],[11.14814206083709,46.150576669690594],[11.148287669000924,46.150541528268874],[11.148525002785398,46.15052794143272],[11.148745972081883,46.15050959302235],[11.148950423238007,46.150493380065335],[11.149115064259545,46.15049277283721],[11.149324856419582,46.150536103920274],[11.14941642428768,46.15056449918621],[11.149540497492888,46.15061383079742],[11.149693161558902,46.15071152526532],[11.149852535152258,46.15080240084318],[11.150195344885525,46.15093863343014],[11.150421100623742,46.15100501542969],[11.150641411152302,46.151018712349874],[11.150843018758204,46.15098186740133],[11.150996222574578,46.150898749646444],[11.151201570433903,46.15068571515355],[11.15133580924479,46.15056577476573],[11.151469933827423,46.15045042639675],[11.151660302307715,46.15032192804916],[11.151803848637725,46.15023062100918],[11.151838552049641,46.15020884430989],[11.151990490677006,46.150121600006734],[11.152332783853032,46.14998548338874],[11.152356961788625,46.14996008877811],[11.152505760762736,46.149886543414446],[11.152652027025898,46.14981938701287],[11.152894590027143,46.1497142879781],[11.153182921930048,46.14962338482372],[11.153487887898516,46.14952578998761],[11.153725900436505,46.14948016272813],[11.15409628372603,46.14955715829571],[11.154348316379865,46.149626097163704],[11.154647117388883,46.14966346514417],[11.154991342150907,46.14973333704547],[11.15524028536971,46.14979308015395],[11.155417068729937,46.14984063710759],[11.155639253703637,46.14992071664994],[11.155884378844306,46.15000559914955],[11.156258605464433,46.15020586098265],[11.156529796130137,46.15035096458106],[11.157320725058216,46.15152378209495],[11.157712421442005,46.151683380037504],[11.158206009874043,46.15185314454],[11.158908415645062,46.15211200589047],[11.159899250766466,46.15243329835151],[11.16100823151418,46.152771773470604],[11.161769798584652,46.15288018014275],[11.1622688489712,46.1529470089056],[11.16301791817848,46.15301118529322],[11.163059313396275,46.152538723998134],[11.163077688907602,46.15232887640855],[11.164246079828622,46.151398177286],[11.164395472554148,46.151279188182116],[11.164499916365637,46.15019529903777],[11.164380638827154,46.149964944812645],[11.164325635707328,46.14951115606139],[11.164346756615183,46.14942891752393],[11.164436735737318,46.1493632532124]]]},\"geomComplex\":{\"provenance\":0,\"accuracy\":100},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":null}}],\"count\":1,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_where_concat": "{\"items\":[{\"licensePlate\":null,\"tel\":\"0461884111\",\"isMountainMunicipality\":\"T\",\"isProvinceCheflieu\":true,\"localCode\":\"022205\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/05a192433bede90cd0f12652b1a12c428cb253d5\",\"provenance\":[\"Geonames\",\"ISTAT\",\"SpazioDati\",\"SpazioDati Partner\",\"Wikipedia in Italiano\"],\"wikipedia\":{\"de\":\"http://de.wikipedia.org/wiki/Trient\",\"en\":\"http://en.wikipedia.org/wiki/Trento\",\"it\":\"http://it.wikipedia.org/wiki/Trento\"},\"alternateNames\":[\"Comune di Trento\"],\"parentNames\":{\"province\":\"Trento\",\"country\":\"ITALIA\",\"region\":\"Trentino-Alto Adige/S\u00fcdtirol\",\"macroregion\":\"NORD-EST\",\"municipality\":null},\"email\":\"protocollo.comune.tn@cert.legalmail.it\",\"website\":\"http://www.comune.trento.it/\",\"isCoastal\":false,\"fax\":\"0461884145\",\"elevation\":194,\"dialingCodes\":[\"0461\"],\"postCodes\":[\"38121\",\"38122\",\"38123\"],\"cadastralCode\":\"L378\",\"population\":{\"2001\":null,\"2011\":114063},\"name\":\"Trento\",\"level\":60,\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[11.164436735737318,46.1493632532124],[11.164590002468058,46.149254604392574],[11.164739980404189,46.14914594477371],[11.164814679357926,46.1490091820703],[11.164840298588516,46.14885370120299],[11.164843495946323,46.14881349494669],[11.164848634942034,46.14874844323093],[11.164824927889361,46.148590265413176],[11.164753427134976,46.148534719912085],[11.164669589169916,46.14843437898933],[11.164672326253873,46.14840610743825],[11.164012931417453,46.14668487179872],[11.164042067968163,46.14639451156773],[11.164065825423936,46.14615768838589],[11.164124523498165,46.145965213620734],[11.1642981915893,46.14541942979675],[11.164629081349322,46.14492301425395],[11.164805296610435,46.14462223604887],[11.165022513727672,46.14442710823431],[11.165203546504065,46.14423168830091],[11.165231423355992,46.143941149017806],[11.165254083119601,46.14376502385836],[11.165237357326868,46.14358402453364],[11.165214578702596,46.143401443392456],[11.165265194791843,46.1433262948128],[11.166088042538552,46.142104388119215],[11.166019679273182,46.14204684797057],[11.165714473512772,46.14178990161742],[11.165884653294482,46.14040964754283],[11.166036499177547,46.13917798882686],[11.166054584821829,46.13903136863679],[11.166122199041336,46.13886784692938],[11.166224283080329,46.13866719434726],[11.166285852929988,46.13852802613544],[11.166311031137369,46.13840001587344],[11.166313303672032,46.138262653218185],[11.166292112025456,46.13815030565316],[11.166270760468016,46.13804938941198],[11.166254936706927,46.13801033659031],[11.166191240926079,46.13792294116673],[11.166229738935154,46.137610670896436],[11.166189378893582,46.13721720838917],[11.166091079003463,46.136258443233736],[11.166193799598998,46.13594232010274],[11.166221003361224,46.13569297012768],[11.166126350867284,46.13504882706972],[11.166011653116035,46.134422833647946],[11.165928976999188,46.13385204523924],[11.165898467916357,46.13331143690925],[11.165814378066306,46.1330222634483],[11.1657465989105,46.13289883588786],[11.165738266460803,46.132817542173434],[11.16525539841775,46.131189032316705],[11.165168166729254,46.130432735936374],[11.164651940752016,46.12595550100094],[11.164622614959795,46.12590213884584],[11.164559772833048,46.125536418114365],[11.164434127588517,46.12517592363727],[11.164385358586216,46.12494198465417],[11.16438179596424,46.12476106654378],[11.164378147913736,46.12458473919502],[11.16435344643276,46.124289185902775],[11.164384624791312,46.12399637117539],[11.164367680095722,46.12382908878652],[11.164294052243234,46.123704849397264],[11.164135489426089,46.123543271772284],[11.163987082737671,46.12336345637212],[11.16387527125428,46.12316105046006],[11.163789458984624,46.122979459779245],[11.16360846611276,46.122781072797615],[11.163475228809556,46.12267923339957],[11.163305508735919,46.1225954098135],[11.163142278910186,46.12251621874743],[11.162926793582972,46.1224137056439],[11.162593470989838,46.1222735890926],[11.162250577172978,46.12211507380209],[11.162018500432625,46.122019287344195],[11.161871636705378,46.12194708384123],[11.16161409668341,46.121800720811784],[11.161454665545932,46.1216917983371],[11.161373734483064,46.121610991972254],[11.161332542117615,46.12151677247982],[11.161321924927,46.12136328494448],[11.161252375408115,46.12119329181043],[11.160856642385363,46.12065195810658],[11.160637198362776,46.12039370761433],[11.160561093234577,46.12022136748412],[11.160471477151967,46.12006952221101],[11.160121228934592,46.11995900839974],[11.159976924463825,46.11993034604641],[11.159807004394874,46.1198579682514],[11.159602367796873,46.11969828753706],[11.159436473135449,46.11958244271711],[11.159348869170902,46.119508434594685],[11.159202601731531,46.11939962826542],[11.159131688411726,46.1193369443772],[11.15894693558391,46.11914336764298],[11.158872294836435,46.119080929528174],[11.158696163892515,46.11898787539997],[11.158558962015292,46.11892722659965],[11.158392186492614,46.11886402138902],[11.158199428644783,46.11878228412072],[11.158026604488333,46.11868699206945],[11.157899989332096,46.11858518575037],[11.157794193701594,46.11841718364825],[11.157731087496751,46.11825637542913],[11.157668694964228,46.118052089500466],[11.157635265822508,46.117886959621494],[11.157615855099333,46.11767157752751],[11.15762397033903,46.1175800561309],[11.157625765249634,46.11752553291172],[11.157639271271726,46.11745195761527],[11.157607405965567,46.11733859737501],[11.157617667665372,46.11717016915661],[11.157640412515576,46.11699175897938],[11.157656453771716,46.1168201822673],[11.157679909735824,46.11659827733974],[11.157718860697342,46.1164337524391],[11.157757391392247,46.11629439615039],[11.157829241401899,46.116130135482614],[11.15787711038959,46.116022932955744],[11.157791027401482,46.115857360212324],[11.157662351943474,46.11568228844831],[11.157585231234417,46.115571751137196],[11.157436660008619,46.115405660731525],[11.157383062050181,46.115265556553275],[11.157318564922688,46.11518716487137],[11.157198682183871,46.11507627370562],[11.157033692700168,46.114907765726166],[11.156916574569989,46.11482894884648],[11.156822088671674,46.11477322548213],[11.156737696721988,46.11470383473711],[11.156702162432385,46.114664618838816],[11.156670526074876,46.11458879611745],[11.15665864403732,46.11451313510653],[11.15662053649314,46.11443039283788],[11.15657585275389,46.114347591082996],[11.156545105308545,46.114219127918446],[11.156543402901901,46.114125229532476],[11.15653847272243,46.114026746214726],[11.156568451590429,46.11380947396144],[11.156603228299728,46.11369757799513],[11.15664668857076,46.1136567233585],[11.155864707350567,46.11202231415644],[11.155473057146352,46.11112336555298],[11.155383152465165,46.110917004285334],[11.155273531454702,46.110597183263145],[11.155192130100192,46.110359696535696],[11.15517668879828,46.110281081128626],[11.155137958093935,46.11023724135937],[11.155083058893622,46.11017498092391],[11.154988332144098,46.110135259158824],[11.15491639966705,46.110107198142444],[11.154736213737175,46.11006219210747],[11.154663280863227,46.110046303550526],[11.154605087525947,46.11003362542724],[11.154493475735919,46.11001895758444],[11.154391960886365,46.109990642271406],[11.154320202252054,46.109953417286796],[11.154258624923557,46.1098979352591],[11.154177824917396,46.109810265829445],[11.154100324499444,46.10972491196118],[11.154029877768078,46.10960983988274],[11.15399624923367,46.10945615975176],[11.153963070489809,46.10927729241063],[11.153969112594185,46.10911477145222],[11.153958371932653,46.108970446518484],[11.153948652246335,46.10876658457854],[11.153912143465861,46.1085899742127],[11.153893107545876,46.10835170944921],[11.153887054395959,46.10812497747185],[11.153903338434615,46.107939647916],[11.153911969226833,46.107818385054344],[11.153897605183248,46.107694625259526],[11.153900188940048,46.107541239780076],[11.153907386463601,46.10730775088547],[11.153946326145173,46.10714551328887],[11.153965388048658,46.106989973911894],[11.154009200551933,46.106830068149996],[11.154024471549938,46.10680271238945],[11.154042961806546,46.10668152101466],[11.154009933167895,46.10649350846489],[11.1539927653611,46.106339960728405],[11.153967268367815,46.10609704404556],[11.15398308509828,46.10593918619015],[11.153986340192677,46.1057445908698],[11.153936365364054,46.10558620574589],[11.15387305419539,46.10543912956156],[11.153867179660207,46.10539787756379],[11.154418502923999,46.105283396268874],[11.154606075502928,46.10528037568217],[11.154866754712554,46.1052344656092],[11.155129848058165,46.105238940669615],[11.155403719223935,46.10519084550104],[11.155637988097705,46.105149283958156],[11.155947792380758,46.1051175233309],[11.156165641977704,46.105073525502924],[11.156330308674784,46.10506344986484],[11.156485217517615,46.105046424674406],[11.156610648020743,46.10502227141189],[11.156796155773662,46.10474906839817],[11.156829079824199,46.10455242064064],[11.15688791866828,46.10437889455281],[11.156936596532447,46.104221319470945],[11.156981865368278,46.104072877246715],[11.157048484008527,46.10382844342912],[11.157090395365652,46.10368223897069],[11.15715222861714,46.10352707043524],[11.157197178373087,46.103396938581284],[11.157229419627065,46.103239212885995],[11.157274266574365,46.10311593923],[11.157298393714244,46.103049753963916],[11.157364193184799,46.102895396018056],[11.157415531787779,46.10276164057697],[11.157472964105322,46.1025789515692],[11.157797651071318,46.10159967959008],[11.157504871877302,46.10140138479762],[11.156728483763395,46.10087555540341],[11.155108234290772,46.09977812962115],[11.154842267489304,46.099597975865365],[11.156232176923204,46.09857705670184],[11.162104547387141,46.09511038977097],[11.165032388990252,46.0941504341402],[11.166798040157307,46.09351016996948],[11.16951385489778,46.092405612268955],[11.17217152927348,46.09031165455324],[11.174232856651516,46.08868638197753],[11.174417575817733,46.08857044831938],[11.174569019241712,46.08837765737136],[11.1748028047486,46.0880092620431],[11.17500029679652,46.0877392654627],[11.175173993420415,46.087506200075374],[11.175237301266778,46.08742122134821],[11.175438172951301,46.08706884067574],[11.175527087155716,46.08689952520823],[11.175625814298021,46.08677825819481],[11.175688380489218,46.08667985430704],[11.17575094075441,46.08658604057212],[11.175833226558648,46.08645561472801],[11.175895799215533,46.08635265832198],[11.175938607041655,46.08627256429582],[11.175948543887078,46.086169596929075],[11.175886180050165,46.08605287373498],[11.175781077150752,46.08593386661007],[11.175574047766004,46.08582170367934],[11.17545576849545,46.085746173088104],[11.175307891866343,46.085645472695454],[11.175061422887525,46.08551041097913],[11.174805131461612,46.08534103093331],[11.174489682453673,46.085164776955814],[11.1743352672708,46.08504117736285],[11.174272842253513,46.08499082875198],[11.174164409880923,46.084913006981736],[11.173954172812719,46.08471159904823],[11.173717614313757,46.084546798340696],[11.173559946506908,46.084411759184455],[11.173458090910088,46.08432936913984],[11.173306958699104,46.084210333568194],[11.173195280234498,46.084105051957735],[11.173047427179936,46.084013490529124],[11.1728831462889,46.083903625440314],[11.172707363051575,46.083761824019156],[11.172561165559042,46.083679308926925],[11.172419848792268,46.08361521505268],[11.172219397997027,46.083519068999216],[11.171989409299456,46.083363411736585],[11.172022317711418,46.08331307465132],[11.172058577475577,46.08323069269681],[11.172071785789816,46.08315289626081],[11.172104734730322,46.08307052323443],[11.172117957185701,46.08301331527273],[11.172183811905693,46.0829034781353],[11.172223334452838,46.082827984005256],[11.17227929551063,46.0827501864657],[11.172374707640266,46.082651806009366],[11.172443849184337,46.08256028273035],[11.172532693491856,46.082450451030105],[11.172610557986365,46.082359812986546],[11.172664357714218,46.082297153212],[11.172720288094595,46.082242248824585],[11.17279598550227,46.082159872605416],[11.172937253561004,46.08205961422729],[11.17298922316695,46.08202456377858],[11.173032831698283,46.081995154333484],[11.173161060785842,46.081960845714455],[11.173332073138322,46.08191053442034],[11.173437284668147,46.081899113343404],[11.173575370562142,46.081894551255466],[11.17365751035943,46.08193576982112],[11.173706802817732,46.081970092774036],[11.17378893915115,46.0820044369925],[11.17392040469026,46.08206395915564],[11.1740354224524,46.082100589960724],[11.17411429969588,46.08212347396518],[11.174232652074515,46.08214181039971],[11.17433455648651,46.08212580735472],[11.174449720062709,46.08202056012436],[11.1745024550809,46.08186953641719],[11.174516417544544,46.08167755655079],[11.174534424989805,46.08159395516249],[11.174558418968829,46.08148260934427],[11.174568565140937,46.08143552360932],[11.17458556665301,46.081356605237566],[11.174608166204472,46.08130889544991],[11.174733137551515,46.081240271870506],[11.17498631076237,46.08118996190769],[11.175157332029567,46.08113050533893],[11.175305307754483,46.08108247290657],[11.17550256371305,46.081055032058046],[11.175643985554604,46.08098183534583],[11.175685890172101,46.08094148163677],[11.175729531745489,46.080899453204296],[11.175884051058572,46.08091549531974],[11.175982651931854,46.080913230353126],[11.176107581897535,46.080910962406925],[11.176216073184353,46.08091097849261],[11.176262103749037,46.080915557562754],[11.176402832971519,46.080927825991765],[11.17646263493457,46.080928990777494],[11.176561263977051,46.08091330554026],[11.176755288501774,46.080840118688485],[11.176836181816153,46.080781593781154],[11.177216429861906,46.08047065738728],[11.177697695579171,46.08053391440275],[11.177810673708267,46.080551076947756],[11.178053293348755,46.080578312303125],[11.178131511971905,46.080533625707076],[11.179110271325928,46.079974580805604],[11.179313162712567,46.07973062964349],[11.179549966558792,46.07944588502686],[11.180506526696721,46.079286163835086],[11.18162783827025,46.0787088924303],[11.182058056100441,46.078487395741526],[11.182244984808268,46.078391166821994],[11.183050450334928,46.07797647812691],[11.183636735653,46.07709994928777],[11.185275372725412,46.07465003588039],[11.185980564197724,46.07433364587934],[11.186489018902963,46.07410551144321],[11.186821584208404,46.073956295397814],[11.189592245078764,46.07271308648586],[11.190663955239804,46.07261720784799],[11.190663130847248,46.0725796227397],[11.190655348897161,46.072220470705616],[11.193563491824905,46.068381980070264],[11.194822621656535,46.06555469424038],[11.194667971441314,46.06256356508783],[11.194608467298158,46.05780740079652],[11.193973608249578,46.055944292061696],[11.193908218969161,46.055834482727796],[11.192685463011138,46.053948767427144],[11.192715019891216,46.053465640128266],[11.19284264134572,46.05137806122786],[11.192869839054016,46.051145640886965],[11.1929155759768,46.05072686289498],[11.192488417633852,46.05032905179047],[11.191404687760091,46.04919890683281],[11.191051880826937,46.04892273640637],[11.189821598299103,46.04795963889435],[11.18883075293091,46.04718393126098],[11.188793986507008,46.04715516362629],[11.188678496477985,46.045432137485726],[11.188653207348441,46.04505468344796],[11.188598382891785,46.0449346143829],[11.187895138665388,46.043394618225236],[11.187749762702433,46.04189632008078],[11.187581618148899,46.040163038809986],[11.187596883349292,46.04003014452515],[11.18761232495477,46.03989569702037],[11.18771999621353,46.03976105114531],[11.187994278807144,46.039619009301575],[11.188257844387298,46.039458262626944],[11.188386998981287,46.03933485447115],[11.188516183424953,46.039192716144036],[11.188529529305487,46.03913261083108],[11.188402032620449,46.03869624951999],[11.188425325503994,46.038660781663744],[11.18838813113149,46.03853392329995],[11.188866762795993,46.03791432629274],[11.189018061240025,46.0377184589486],[11.188980949930867,46.03736662969823],[11.188992355796458,46.03690630193396],[11.188890553601745,46.03669290613316],[11.18881081765414,46.03607530515848],[11.188762667584799,46.03593304499718],[11.1887745024757,46.03517330936248],[11.18859226470759,46.03485506272152],[11.188506755438958,46.034673407766874],[11.188458309459586,46.0345705236926],[11.188466858950328,46.03439932597598],[11.188555442837604,46.03428989175818],[11.188706021362432,46.034211396012395],[11.18876553374699,46.03393448714001],[11.188798260538452,46.03358644605803],[11.18883092434802,46.033294531554546],[11.188831288728336,46.03304378731509],[11.188595269541109,46.0327479528801],[11.188434272966697,46.032616848331806],[11.188058466610402,46.03237705201534],[11.187306701496219,46.03203220005732],[11.187000732588128,46.03182239823317],[11.186864640827496,46.03172740419068],[11.186103107349812,46.03093655494693],[11.186130698086531,46.03087053590005],[11.186130284057535,46.030806380303346],[11.186082096103082,46.03070911267479],[11.186029999558889,46.030625504762476],[11.185952254001513,46.03052760475393],[11.185896753364712,46.030446199471044],[11.185892188366221,46.03040318473034],[11.185875983577585,46.03025102914278],[11.185870050810378,46.03009053989366],[11.185848759948628,46.02998011307092],[11.185795007104488,46.02985981940364],[11.185677038263883,46.02977935184081],[11.185531924902275,46.029730535266346],[11.184352790768628,46.02826427890348],[11.18426324397562,46.02796946772068],[11.184149987008114,46.027596734871835],[11.184122983843954,46.02750779875707],[11.183687736505227,46.026637701410195],[11.183653922614694,46.02658673684076],[11.181236580154538,46.025886108684084],[11.180514071752981,46.025705845261754],[11.18037892107955,46.02562940464965],[11.179778673284812,46.02528985060997],[11.17916968425272,46.02522445786406],[11.178795648280815,46.02518427630524],[11.177780350809636,46.025093649747355],[11.176625509798765,46.02492431184929],[11.175304038136677,46.02479225436762],[11.175030929645763,46.02475480158453],[11.174950961013392,46.024761411064574],[11.174744686684472,46.02474543141297],[11.174434674677117,46.02469741774417],[11.17417319966139,46.024666469146304],[11.17392771018898,46.02464505930075],[11.173559676506773,46.024572839638786],[11.173282001016858,46.02453698160669],[11.17316402562389,46.024529807207],[11.173095186691423,46.024526010898825],[11.172872684880966,46.02450508221867],[11.172690719711204,46.02445986362976],[11.172412201716725,46.024442304379576],[11.171830856691486,46.02443641794265],[11.170841819379,46.02443532816171],[11.170437041483043,46.024376036095],[11.170074233635344,46.024333714487035],[11.169779610771455,46.02430891525014],[11.169457707360367,46.02430642110009],[11.169019589497974,46.024257858118695],[11.168685273568443,46.02423906313921],[11.16828212009431,46.02421644994345],[11.167984746244043,46.02418014109135],[11.167712702620076,46.02416499097122],[11.167503025443223,46.024151219262286],[11.167347527670698,46.024101987080584],[11.167203546339353,46.02401635347321],[11.167179530591367,46.023994266193434],[11.166748309027113,46.023774085834695],[11.166625840124594,46.02364780522436],[11.166510033566452,46.02351935237651],[11.166311650453533,46.02332732527533],[11.166201594618503,46.023217324238594],[11.165942610962755,46.02298506342816],[11.165901999049687,46.02293838869409],[11.165800468901413,46.02285834400366],[11.165721709194925,46.022783379282345],[11.165594101438149,46.02268649613681],[11.165469328548603,46.02262453852005],[11.165304426413023,46.022566045073894],[11.1651042770528,46.02248847831298],[11.16493741852668,46.022400178438545],[11.164739511061818,46.0222722662406],[11.164569588151068,46.02217930417284],[11.164407750436615,46.02205218217783],[11.164266310870929,46.02190944870494],[11.164111138866822,46.021780153347706],[11.163944375489026,46.021616277040174],[11.163800599858797,46.02145288669356],[11.163668699509603,46.0213172151745],[11.163548803362897,46.02120701182498],[11.163359973602612,46.02102204200657],[11.163220812400116,46.020902266879155],[11.163021342110351,46.02073537785552],[11.162834911225337,46.02057108028191],[11.162695341832933,46.02046045467693],[11.162468210283992,46.020325036564365],[11.162275023763717,46.02023846599301],[11.162098542318034,46.02007206183508],[11.161948182359048,46.01990853453983],[11.161929564065936,46.01987686944913],[11.16186319297156,46.01984528003742],[11.160785078502405,46.01933235237571],[11.160612350467927,46.01930279012654],[11.160408113655542,46.01924344770244],[11.160275335209528,46.019201666719724],[11.16016235560599,46.01915801535787],[11.160029892249588,46.01910938975071],[11.159894845328903,46.01904464481051],[11.159819575591369,46.018965168387076],[11.159722455580328,46.018860022320005],[11.15958432018895,46.018717348337205],[11.1595137610013,46.01854077178938],[11.158943580142783,46.018139122954885],[11.158100833790273,46.01756117323071],[11.158206137805394,46.01750203950926],[11.158281997861835,46.017507648090294],[11.1583958967128,46.017457424051095],[11.15865420196398,46.01733468697336],[11.158873856385316,46.01726839843482],[11.15912764981479,46.01709977411792],[11.159258515439678,46.01696287302331],[11.159352255007535,46.01677478536803],[11.15945982584841,46.016570953957],[11.159564765233736,46.016426615177465],[11.159759096156913,46.016265878094806],[11.160028860052664,46.01610675646263],[11.160307819709114,46.015888272894784],[11.160370729476575,46.01572929994925],[11.16037447135675,46.01557135593021],[11.160382072146911,46.015326446983885],[11.160366431640682,46.01508791231678],[11.160388516766837,46.01496014480924],[11.160512133531434,46.0149123881196],[11.16062295894695,46.01493080721244],[11.16076014404433,46.015020763759765],[11.160828556644965,46.015106968290056],[11.160993527249111,46.01523646985916],[11.161028096463887,46.01527157387732],[11.16115304112115,46.01526736695369],[11.161288997559767,46.015311502468435],[11.161462029758445,46.01533353733786],[11.161671971441333,46.015338025062746],[11.161921477079005,46.015265490196505],[11.162121447309463,46.01519877767292],[11.162407668133874,46.015186575685846],[11.162569234941635,46.01524499068727],[11.16276464901016,46.01535453945452],[11.162927092800311,46.01546793963279],[11.163059644723086,46.01551429395821],[11.163217681242225,46.01543064124404],[11.16323855716814,46.01533032342375],[11.163234326389091,46.01520425072488],[11.163246747737922,46.01499840133491],[11.163262355200388,46.01479488746728],[11.163292544869142,46.014632921584194],[11.163318440492988,46.014567049817046],[11.163423366872625,46.01442272747522],[11.163546886321951,46.01437727519567],[11.16384558177411,46.01437906452118],[11.164101360505434,46.01438682683525],[11.164386446058472,46.014399802470415],[11.164494054306715,46.01434253989781],[11.164468545607287,46.01410380570304],[11.164479347427502,46.0139345566229],[11.16458559665916,46.01383376391881],[11.164753820328677,46.013816751843116],[11.164950842903647,46.01381637340633],[11.16516930435599,46.013850829652085],[11.165347380453237,46.01390730597634],[11.16548927477524,46.013965295925175],[11.165528677366725,46.014039440035155],[11.165574713575042,46.013815976848726],[11.165510335160642,46.01356494735583],[11.165516053065277,46.013287946376124],[11.165519396351003,46.012916984616545],[11.165533735691607,46.012667652540806],[11.165486058117091,46.01233682700661],[11.16543206756443,46.01214786601797],[11.16537448058783,46.01196570175637],[11.165335393819118,46.01188471319659],[11.165335994208654,46.01157553246559],[11.165290783849208,46.01133636177366],[11.16522413612942,46.01098910297177],[11.16512756061637,46.01042820718492],[11.164975141229336,46.00994169468227],[11.16489491811641,46.009752179301735],[11.16487269735443,46.00958680137515],[11.164935109920677,46.00951255093005],[11.165173097374586,46.009476409953386],[11.165450169596477,46.00952125887971],[11.165512398027236,46.0095248889882],[11.165474226287735,46.00942329412538],[11.165441682203896,46.00934243895463],[11.165383495082823,46.00917400058478],[11.165447300021466,46.008994438505425],[11.165436472758982,46.00886823339761],[11.16537749923435,46.00849594518521],[11.165427888632015,46.008396246437464],[11.165391361905549,46.00833133778247],[11.165327804133998,46.00830030363397],[11.16533608241618,46.00824542157606],[11.165209576525893,46.008137352129545],[11.165097311173522,46.00807769501401],[11.164931659581976,46.00803751807635],[11.164793980662076,46.00795898634124],[11.164689487207488,46.00787201157623],[11.164579244179786,46.00769329626669],[11.16453296560733,46.00755261176756],[11.16443317461166,46.0074336579591],[11.164337929567859,46.0073606272344],[11.16420181468473,46.007273321399644],[11.164075176296853,46.007215306312844],[11.163914736597242,46.00713171273665],[11.163735739040806,46.007022535308415],[11.16354382724601,46.00690847924295],[11.163404197674325,46.00680014152195],[11.16329961177044,46.00671545149025],[11.163300690713148,46.00661700246476],[11.163440484668033,46.00657419051134],[11.163673944954784,46.006492148861525],[11.16384761981687,46.00644469406346],[11.164003727635986,46.00638468881701],[11.164052911368119,46.006346965847094],[11.164247748912114,46.00638686832791],[11.164624549528131,46.006346899636426],[11.164844796729433,46.00624221470703],[11.165225669442371,46.00612699851628],[11.165452337648603,46.00602082626412],[11.165787201191701,46.006053850548604],[11.166122620919179,46.00608443773531],[11.166601939360993,46.006147631610524],[11.166670632659947,46.006153719743594],[11.16683493643518,46.0061527597547],[11.16698217083652,46.00616515570203],[11.167096824624178,46.00617227077049],[11.167205650296237,46.00616290701901],[11.167290890664498,46.006186303356586],[11.167583848800302,46.006134478161925],[11.167580447004324,46.006031819176506],[11.16757196898451,46.005775582515156],[11.167613752307425,46.005711696071835],[11.167621617361347,46.005611069754416],[11.167623515718349,46.00549656845387],[11.167632418348704,46.0053730491883],[11.167506850443694,46.00524430345244],[11.167362022813403,46.00510594890631],[11.167169958855238,46.004923019212455],[11.167008938420183,46.00477973866067],[11.166842171415237,46.00461800474926],[11.166712431204838,46.00451031237485],[11.166355959695474,46.00437822162407],[11.166288910577332,46.00431462826811],[11.16609420762332,46.00424345711379],[11.16587653890029,46.00413211368998],[11.165720182757136,46.00403028807278],[11.165545925590216,46.00396244276358],[11.165316641999288,46.00387737330514],[11.165132729335289,46.00380473324149],[11.164920022703352,46.00371543908073],[11.164659776981111,46.00366177376989],[11.164352303363922,46.00363689269066],[11.164066165818761,46.003649096273634],[11.16367863812755,46.00365225187212],[11.16343104395845,46.003683594588864],[11.163128084823283,46.00370459443936],[11.162748788637577,46.003744585674454],[11.162537152182047,46.00377898797988],[11.162310677977807,46.003852010056924],[11.1619866680869,46.003755750351694],[11.161540296850923,46.00367977683138],[11.161169252104047,46.003607702860904],[11.160901868741727,46.00356763740837],[11.16070927428095,46.00354289542467],[11.160361424894603,46.0035400186976],[11.160065440111024,46.00355201146628],[11.15983676479877,46.00352649221886],[11.159647767903456,46.003494951831364],[11.159484403546655,46.003477708601906],[11.159455658431838,46.00343128684419],[11.159368416537795,46.003280554421956],[11.159229771491699,46.003002741460406],[11.159166978732857,46.00279068338429],[11.159065359323773,46.002566344734916],[11.158985841013823,46.002425418512665],[11.158969509689209,46.00239653032332],[11.158934510117065,46.00233452117954],[11.158832697327176,46.00211475719686],[11.158687301476649,46.00184136693748],[11.158533287096734,46.001613631157944],[11.158395398835566,46.001393092188444],[11.15834931219993,46.001174523981476],[11.158386849720976,46.00092110447874],[11.158460369829285,46.00067072847353],[11.158537246899943,46.000344863174085],[11.158605023525734,46.00007605233671],[11.158608967714255,45.999840244701346],[11.158595391486926,45.99978903683411],[11.15878146727392,45.9987064986147],[11.158867002333341,45.99831639737904],[11.15899281615917,45.99810576873369],[11.159176089053526,45.997786131700444],[11.159279674115515,45.99752696591997],[11.159452102662083,45.99612137651861],[11.159136394920262,45.99477174064089],[11.159143585801754,45.99428026642311],[11.159157658999332,45.99331855805174],[11.159411283059992,45.99195355164874],[11.15874882493557,45.991486512751884],[11.158533435016125,45.99109485434511],[11.158493548348472,45.990941603416445],[11.158879902986143,45.98983028430354],[11.158938322201852,45.9879873604761],[11.159322396214753,45.98636675287799],[11.160361552421456,45.984726420296724],[11.160402380193801,45.984583809959304],[11.160411051349282,45.98444518018028],[11.160032070875245,45.98353042259008],[11.160034714362519,45.98334691346481],[11.160372689762157,45.982599199927506],[11.159767923068461,45.98147834018585],[11.159697828140871,45.98134842593507],[11.15920709406708,45.98152538368817],[11.158363862859387,45.98189476435343],[11.15805156416024,45.98184459292603],[11.1574277359591,45.98179669206082],[11.157294538510243,45.98259158753868],[11.157143925889436,45.982577694874436],[11.156918945593194,45.982620522912846],[11.15676435695742,45.982700287105715],[11.156546195962388,45.98284042005734],[11.155771470111665,45.98095482785529],[11.155646303397953,45.98084712900135],[11.155501615257354,45.98087065087714],[11.154849420425585,45.9810813274737],[11.154633447501809,45.981007984487114],[11.154456534451205,45.98066847508837],[11.15431465379663,45.980519708475434],[11.153839103442662,45.98032840607876],[11.15335452858586,45.97988997985656],[11.15242984185485,45.97947346727635],[11.151426464272308,45.9788215884305],[11.151212728577207,45.97853474771837],[11.150895845385076,45.9781737765788],[11.150797633152473,45.97770636948005],[11.150639844503544,45.97756893843481],[11.149180442736077,45.97695025105149],[11.149022869572374,45.976827800096494],[11.148168500660159,45.97680396373346],[11.148152354216833,45.97753060359299],[11.147731130136524,45.977743329323395],[11.14624647444258,45.978326920614606],[11.145304418388237,45.97855085921911],[11.144848974330444,45.97862901275964],[11.144192868672041,45.978573774882356],[11.143813062118035,45.97831433106578],[11.14354614290474,45.978061578991834],[11.143259911449839,45.9779550086442],[11.142004945325954,45.978087521717775],[11.141554707211743,45.978521387353425],[11.1407754926831,45.97923097553215],[11.140530051961221,45.97971207633929],[11.140111568821268,45.980115757156575],[11.139483730846418,45.979790643416926],[11.139400383547418,45.97960024719413],[11.13939315273834,45.97947295834352],[11.139485930331492,45.97883566536119],[11.139457172272925,45.978704797961896],[11.13936415694108,45.97858936345837],[11.138499105797079,45.97820227437614],[11.137213218439747,45.977687076757064],[11.136450567564443,45.97769245793124],[11.135754648539955,45.97785464674515],[11.134842754537626,45.978310479994846],[11.134560159478582,45.979196286140244],[11.134313249961524,45.97995075585869],[11.13381987919037,45.98074816844621],[11.133040229801528,45.98180971893088],[11.132740601420121,45.982264975683506],[11.13239109504302,45.98261196857916],[11.131954109435465,45.98285469844996],[11.131201624038487,45.9831970421773],[11.131037684543237,45.98337793807722],[11.130590558053319,45.983661956145106],[11.130172766856694,45.98374727524851],[11.129879765570921,45.98391783889363],[11.129651272951449,45.9840917154987],[11.129455731780686,45.98431402620695],[11.129271227389458,45.98455874854952],[11.128850605580023,45.98482009079855],[11.128385055699482,45.9849469368079],[11.127942335700956,45.98516723303663],[11.12747141475447,45.98529410245671],[11.126969136019843,45.98548110863465],[11.126447439317834,45.98581431274236],[11.125887880444976,45.98612904937611],[11.125470005494714,45.986585086711926],[11.125369510902413,45.98656188804086],[11.125151766812973,45.98651159990735],[11.124084769897918,45.986265186145786],[11.122873733420363,45.98535233805907],[11.122055926443803,45.98526438440488],[11.121452648970356,45.985152459508285],[11.121166458685718,45.98504959342547],[11.120701104154053,45.98481313527332],[11.120313907644606,45.98440761777445],[11.119542476927828,45.98380252578313],[11.119159830796107,45.983715287637835],[11.118952502738042,45.98311377129858],[11.118589067949397,45.982865367793146],[11.116349465756693,45.98289954574403],[11.114788590824896,45.983063821381926],[11.112368669821766,45.98332034943507],[11.111347468244713,45.98356899034722],[11.111623467143538,45.98402744894619],[11.112388916715302,45.98485833824558],[11.113014501083775,45.98537698084578],[11.113985963762486,45.98610836473926],[11.114973697756072,45.98715094929979],[11.116039874554122,45.98832535808243],[11.117144480166571,45.98945508272336],[11.117074310587363,45.989535090538034],[11.116895654501652,45.989610894055936],[11.116819604224634,45.98964316165524],[11.116601719917512,45.989735619399426],[11.115388910882627,45.990250196790605],[11.114350078241088,45.990631426190994],[11.112542029875566,45.990713944408185],[11.111507626925155,45.99083282609047],[11.11030604269248,45.99098029727494],[11.107709377994697,45.991899505830965],[11.104410879641527,45.99172215073993],[11.10405404739989,45.991835356077345],[11.102685585413385,45.99199260399505],[11.100804471900346,45.99225424684083],[11.099505345875665,45.992442014505514],[11.098918879306483,45.99249089141977],[11.098810690957553,45.99249990208151],[11.098259062688545,45.99268267413918],[11.097144663104949,45.993070627436936],[11.095532930003303,45.99360803948655],[11.09391042430127,45.9941453300458],[11.09449007085665,45.99502652503849],[11.095143884097332,45.99591100179801],[11.095389714074756,45.99638826402506],[11.095694803176784,45.99685468770887],[11.095936732429314,45.99722706468711],[11.096290688447928,45.997812751635934],[11.096784032177263,45.99876034525794],[11.096994427806349,45.999111069867396],[11.09828099215309,45.99988693811857],[11.098297287065307,46.00003387753185],[11.09829564372331,46.00014149852259],[11.098302809065775,46.00027220086268],[11.098341377854343,46.00050667258446],[11.098427543855033,46.000776545487724],[11.098569583577564,46.00104535501019],[11.098718106760016,46.00138760967677],[11.098782745000392,46.00155393659604],[11.098915320267436,46.0017423691123],[11.099162199391735,46.002015776747086],[11.099361677755622,46.00224919021496],[11.099490918793807,46.00251084183997],[11.09956434271208,46.00270026886704],[11.099615460793899,46.00287547050992],[11.09963590008493,46.003075180252885],[11.09963198604954,46.003233126432534],[11.099653884332824,46.00340080986724],[11.099709352839257,46.003557677189725],[11.099902962352191,46.00377046636861],[11.100087131475922,46.00390735237864],[11.100332819729763,46.00413490054666],[11.10060462874405,46.00429434002401],[11.100973350918167,46.00448793901652],[11.101223643529645,46.00461483272847],[11.101500787621733,46.00472855058997],[11.101664623827377,46.00495203493575],[11.101760716067256,46.00514882236495],[11.101865914822982,46.005361846903256],[11.102001693826324,46.005552631568364],[11.10211430091634,46.005747510961974],[11.102181638574779,46.0059986305927],[11.102182321267051,46.00620021449388],[11.102151436555342,46.00637360640454],[11.102081409918126,46.006541561491105],[11.101986131035899,46.00675934300983],[11.101924028057253,46.00689769709774],[11.10187532535366,46.007029482825445],[11.101769337590616,46.00719435794886],[11.101634646139601,46.00734027731076],[11.101537790674872,46.007448100873354],[11.101448827715691,46.0075080211829],[11.101436073156753,46.00755885336672],[11.101424026620267,46.007606760046265],[11.098279160462894,46.00862912012235],[11.098219794728639,46.00898907345889],[11.098006221514163,46.01028371203742],[11.097984700001383,46.01041409320798],[11.0979760382629,46.010603996177416],[11.097930232568888,46.01096029003075],[11.097948130415197,46.01114391717418],[11.097916271445596,46.011482203699764],[11.097870689586493,46.011833921249924],[11.09780374315964,46.012077537759],[11.097743163603392,46.01232584883097],[11.09774116563965,46.01251361960759],[11.097764491865735,46.012722566416535],[11.097762847949225,46.012830186299446],[11.097653233349384,46.01300185169998],[11.097591829449684,46.01312417272518],[11.097516791650904,46.01323800391835],[11.097502865506849,46.01334668272079],[11.097506451693196,46.013484197136734],[11.097433599363141,46.01356962390805],[11.097293372816363,46.013548217269644],[11.097253863969701,46.013478640881004],[11.097246864420141,46.01341665247491],[11.097259508332868,46.01335507656425],[11.097277161096283,46.01332798849106],[11.09727218133245,46.013293519018056],[11.097246982443142,46.01327005631333],[11.09721521642226,46.01324645675695],[11.09709872995923,46.01328055680163],[11.097035825665541,46.0133639205548],[11.09695985361568,46.01351799146555],[11.096919324531761,46.01368659964417],[11.096881392909474,46.013797982551374],[11.096744949427244,46.01390951573205],[11.09660859131282,46.01394774029087],[11.096559370298943,46.0139466707739],[11.09634553268175,46.0139557008367],[11.096262790065284,46.013969919403785],[11.096089079980905,46.014034818705184],[11.0957537503793,46.01418778540845],[11.09545922405755,46.01430957110197],[11.095040922900113,46.014481311038736],[11.094703766277703,46.01460216202179],[11.094332303934944,46.01468332889946],[11.09401319460181,46.01476792255629],[11.093660853246737,46.015005247154946],[11.093448738327828,46.015263981287376],[11.093291084580136,46.01548039164231],[11.093133983025822,46.01575636596843],[11.092998959776553,46.01598015815263],[11.092841302347361,46.01619656882546],[11.092737908688886,46.01637523010431],[11.092669304676274,46.01651115453885],[11.092480688935193,46.01661466052245],[11.092148034708986,46.016708104835615],[11.092044314953455,46.01667833697826],[11.091834467751926,46.01667143339638],[11.091696669273194,46.016597388896855],[11.091538524789579,46.01653665546093],[11.091475252466864,46.01655587731084],[11.091363526530094,46.01677330624838],[11.091122167573674,46.017024517023714],[11.090951038136748,46.017176491511236],[11.090710394684455,46.01741168859802],[11.090501608290934,46.017597197879816],[11.090237352947396,46.017774616168225],[11.0899408104329,46.017939869394695],[11.089845957595816,46.01807520306313],[11.089864971741257,46.01823365159476],[11.089876477948406,46.01841256717518],[11.089850720116754,46.01854484936606],[11.089972415615,46.01875595987971],[11.089826536731595,46.01907339970486],[11.08974745163253,46.0192228226775],[11.089637079265847,46.019410492824186],[11.089478554818966,46.01964521742276],[11.089269660009194,46.01990401426633],[11.08908307187391,46.02010603621053],[11.088975402088241,46.020234212500725],[11.088899102743765,46.020412724831935],[11.088794137683928,46.02046385819328],[11.088721461374512,46.020544704854245],[11.08857152373732,46.02059179473942],[11.08843817330216,46.02056365345458],[11.088302484336888,46.020514854253065],[11.088209032277017,46.02047615871419],[11.088087494170079,46.020404761141975],[11.087982597535103,46.02032915138733],[11.087877775280868,46.020251255020085],[11.087716241125737,46.02012173286911],[11.087682910600517,46.02013244292042],[11.087559143612529,46.02025339145163],[11.08737856544517,46.020396003709294],[11.087152170948146,46.02060630638344],[11.086933932974574,46.02078245316377],[11.08677598640298,46.02093242900938],[11.086578787641768,46.021079232575744],[11.086340746113342,46.02125723214668],[11.086159739064808,46.021408974701586],[11.086049424798736,46.02152335324828],[11.085868092280327,46.02168197564301],[11.08560191319957,46.02190057797255],[11.085337945625382,46.0220711051365],[11.085158076576434,46.02219770119499],[11.085008156845433,46.0223157878731],[11.084674236899561,46.02250768045052],[11.084464938556511,46.02263132844374],[11.084272156930808,46.02275305377215],[11.084030518363113,46.02293782284975],[11.083799748185717,46.0230999250243],[11.08361300690898,46.02323322492988],[11.083242137479917,46.0234426346886],[11.083080301509675,46.02358886107103],[11.08297286654735,46.02363789652544],[11.081955740849931,46.02407419046237],[11.081667968138364,46.02417436159271],[11.081424380609754,46.02420399690559],[11.08128987556719,46.02419809704616],[11.08099130625321,46.02418829243375],[11.080466606179975,46.02415792497531],[11.080046800415722,46.024135487028865],[11.079725553613095,46.02410942900619],[11.079321786053221,46.02410542496941],[11.078819478680265,46.024102750936834],[11.077180836618902,46.02469792170142],[11.077045201536611,46.024601566341566],[11.076944341025301,46.024585465332514],[11.076662031022222,46.02442702847648],[11.07647094764556,46.024301548531554],[11.075753517008847,46.02391220573044],[11.075486079823309,46.02382715167345],[11.075366744001167,46.02372526816964],[11.075134188678675,46.02354214507994],[11.074966486249743,46.02339858038192],[11.074834795255759,46.02325994514099],[11.074725215253835,46.023162732192446],[11.074401585999077,46.02309543197393],[11.07424146024986,46.02305950260265],[11.073839482289994,46.02297084106831],[11.073656661795077,46.02292096391172],[11.073491259872004,46.02282317717769],[11.073378305157672,46.02273050269187],[11.073258602180506,46.02264692737613],[11.07319424605587,46.022584485372384],[11.07315239948239,46.02254515421423],[11.073116258417214,46.022479397473546],[11.071253898182288,46.022269262399846],[11.07117491237356,46.0222783068052],[11.07076400544087,46.02230169960145],[11.070405565926636,46.02232788235026],[11.070113852156252,46.02230437703029],[11.06974324705446,46.02228466014208],[11.069438712970028,46.02224728472807],[11.069169479896763,46.0222469080276],[11.06856331321036,46.022188210275104],[11.068108339452602,46.02212186995376],[11.067974080603165,46.02213375687831],[11.067782673345905,46.022150676844824],[11.067553163591828,46.02229029029015],[11.067294985286734,46.022388415351905],[11.067208437805107,46.022407566083324],[11.066970854222102,46.02258192216886],[11.066788073071972,46.02271602648359],[11.06669616785248,46.02271991038807],[11.066652892827738,46.02278482877284],[11.06653468899255,46.022939292055355],[11.06623548933317,46.02311254980171],[11.065862355002361,46.02305845283995],[11.065545913333768,46.02296145075103],[11.065402983062034,46.02288906942753],[11.065165415062005,46.02279056648123],[11.064954220219988,46.0226854670957],[11.064536056165084,46.022740783493475],[11.06389380587011,46.02283505784334],[11.063413373591029,46.02288519039461],[11.062965170386699,46.02296308871014],[11.062643528166038,46.02311091797884],[11.062507605783779,46.02317136034912],[11.06225547588763,46.02344806760055],[11.061790385167525,46.023855394876016],[11.0615132433806,46.02407233233845],[11.061232198581363,46.024316711879685],[11.060981310183664,46.024533911464026],[11.06072521606883,46.02484034426847],[11.060559642558742,46.02506068585621],[11.060358814228069,46.02523948983869],[11.060257329315416,46.02537808904739],[11.060145052356983,46.02556235453154],[11.059960275006349,46.0257573468274],[11.059794149105594,46.026002858208884],[11.05967770578091,46.02616836089665],[11.059621430637478,46.02624832168776],[11.059599581207602,46.026277709766504],[11.05957439994922,46.0264161306204],[11.05946556894156,46.027014473298884],[11.059436779454106,46.02717260750234],[11.059419116287732,46.02726982573331],[11.059305514207377,46.0271728361737],[11.058974496506227,46.02702000736988],[11.058822405162328,46.026915489315705],[11.058689868019767,46.026818029457424],[11.058528951284012,46.02666534163518],[11.058374552623755,46.026515023801345],[11.058197178374435,46.02636445637115],[11.057901183755845,46.026079956743075],[11.057633828483167,46.025836948087665],[11.057354657514109,46.0255343020002],[11.057071705672284,46.0252545055267],[11.056798340972863,46.02498624051064],[11.056479954049335,46.02467404974514],[11.056045481334062,46.02426454184138],[11.055605258090807,46.023816076624676],[11.055058395777426,46.023288701627486],[11.05472763911007,46.0229420389153],[11.054464406729684,46.02266243384253],[11.054150427900193,46.02229992884366],[11.053910129754671,46.022022841466914],[11.053530820693672,46.02164363033759],[11.053213619584227,46.021278802784174],[11.053041873103549,46.021020701364606],[11.05286346879757,46.02076714382079],[11.05277119938516,46.020578209675186],[11.052152352834316,46.01996577673595],[11.052081527330337,46.019875735484234],[11.051837608541296,46.019614633683354],[11.051522637139055,46.01930015530607],[11.051285383094369,46.01903454681931],[11.050906548513627,46.018637032581786],[11.0504399175651,46.01819971259404],[11.050157849364851,46.01788099025419],[11.049850442835702,46.01752082494174],[11.04950281857429,46.017199148817255],[11.049054142124701,46.01677020060089],[11.04895595976814,46.01667633424414],[11.048762878234834,46.01641554971773],[11.048447882824846,46.01439983964195],[11.048370813950916,46.01393198683935],[11.048340458263665,46.013730400516756],[11.048116117812786,46.0122402514438],[11.046665602508996,46.00260348357621],[11.046272306025106,45.99999969537941],[11.04630941357672,45.999999694014974],[11.046057132321971,45.99919946867767],[11.045871050955324,45.99865734697413],[11.045739373037165,45.99821986857072],[11.04566609001477,45.997681145509276],[11.045638845683593,45.99677923367809],[11.045477514077875,45.99674604949233],[11.045223230692605,45.996451166735724],[11.044558802551121,45.99583569070539],[11.043926526788121,45.995208872113324],[11.043154409038367,45.994545067940095],[11.042300938257595,45.99375049655294],[11.041161556964472,45.992743469038324],[11.040534968625492,45.992157799578656],[11.040393983125458,45.991937413057826],[11.04024746597032,45.99169458311887],[11.040024141542158,45.991193740931315],[11.039588365646704,45.99020699584676],[11.03906577747015,45.98907079855339],[11.038460134180822,45.98753440018523],[11.038472559252943,45.98694675234772],[11.037861453977216,45.98538788505725],[11.037129345712815,45.9833615491007],[11.036852587644864,45.98238983574278],[11.03611888493852,45.98290828014312],[11.035724471677163,45.98328163803253],[11.035388765292021,45.983718830544646],[11.034674601010623,45.98455191123282],[11.034214657960806,45.98509735485079],[11.03390123163945,45.985403533434955],[11.033403450426633,45.985982568509776],[11.033289683916362,45.98613951851614],[11.032697684707806,45.98719390638396],[11.032739684783488,45.98735881237023],[11.032936904383034,45.9876140773668],[11.032893525122015,45.98856895290842],[11.032154780943232,45.989892556983285],[11.032120933611258,45.990158365925],[11.032178551155116,45.990296248182105],[11.032232144014946,45.99042459963519],[11.03230601288131,45.99064950776504],[11.032613828821434,45.99127586065445],[11.032885611226423,45.991647434879454],[11.033199306539258,45.99219139939945],[11.033256185352732,45.99256233678428],[11.033191781131663,45.993434769234355],[11.033249395135899,45.993682103866],[11.033402537369414,45.994124486248396],[11.033422629988614,45.994356746293406],[11.033410779778167,45.99542781191385],[11.033354806044205,45.995798416777454],[11.03321750035975,45.99628862166309],[11.033133950071521,45.9976628500479],[11.033120867761582,45.9980485623395],[11.032887957466963,45.99835496321164],[11.032412666589304,45.998750557253665],[11.032216031400582,45.99905540862227],[11.032178620191397,45.999244214242815],[11.032212623208999,46.00000117211714],[11.032004431012078,46.00057371482193],[11.031796621337671,46.00072383854257],[11.031606964230248,46.00099197598458],[11.031438350137726,46.001347292314286],[11.031144184716318,46.001891304883955],[11.031002641011758,46.00221028857296],[11.030784902165408,46.00256052445108],[11.030593897245488,46.002739378351414],[11.030321447705475,46.00304098367485],[11.030104940458209,46.003334017828585],[11.029968689240395,46.00356148173222],[11.029919295761974,46.00386769321895],[11.029993103981116,46.00409503622884],[11.029811885772318,46.00427627723052],[11.02969862085297,46.00450170961358],[11.029682159908159,46.004803668244286],[11.02967058566095,46.0050324365596],[11.029574942215758,46.00520312501888],[11.02945900211515,46.005401047748414],[11.029255905106947,46.005531710886885],[11.029162930501565,46.005729870683055],[11.028975770821164,46.006032372430376],[11.028616339211938,46.006706158545306],[11.028554456540403,46.007282313493675],[11.028532635822343,46.00767805846129],[11.028515413318294,46.0080143328549],[11.028500649676943,46.0082384945463],[11.028508556436522,46.008312194710946],[11.02858785219353,46.00905193729997],[11.028655246288997,46.009272372914126],[11.028798404664425,46.00947985003065],[11.028868106688135,46.00974378130693],[11.028925416163604,46.00997554711502],[11.028977665450821,46.010287362547594],[11.028851435192529,46.01035472639636],[11.02845726178491,46.010515452472816],[11.028171524263653,46.01067272209803],[11.028029030096565,46.01073305658695],[11.028008585095703,46.01076716946283],[11.02819362785393,46.011011708292976],[11.028448647343357,46.011357673486245],[11.028774233039268,46.01177989397226],[11.02897746204284,46.01209328604059],[11.02923691541978,46.01238663818911],[11.029403759295102,46.012713375975004],[11.029507184135161,46.01293646949322],[11.02967525551357,46.013131079822394],[11.029175303948856,46.01440975429852],[11.02894040163586,46.015010473431374],[11.028534627838638,46.01540752543235],[11.028508482748936,46.015426855925966],[11.02852898626088,46.01562721199011],[11.028567650032834,46.01595950735531],[11.028599166911624,46.016319173250295],[11.028568371766553,46.01682469514259],[11.028532375743413,46.01726835726133],[11.028531366387373,46.01761396539689],[11.028487858169067,46.018101041059246],[11.028480112810318,46.01845345951111],[11.028544626718967,46.01865553158914],[11.028682386971951,46.01896138584313],[11.028763456916558,46.01915676823636],[11.028822549849354,46.01945721781115],[11.028873494652657,46.01982853750277],[11.02891287000895,46.02012878455577],[11.029000312266373,46.02033339849675],[11.029027493612604,46.02037848020616],[11.029092103302645,46.0207406729462],[11.029097230965299,46.02076944734451],[11.029112237219856,46.02085345337456],[11.029056138674752,46.021082422340925],[11.02902739607088,46.02134535551584],[11.028872173548903,46.02183585243141],[11.02879747337017,46.022247079073885],[11.028721925942643,46.02254842726092],[11.028641644907966,46.022616264477406],[11.028625593336738,46.022748839043466],[11.028853271514578,46.023147176256586],[11.029062304101053,46.02349723674734],[11.029259791388892,46.023773938736866],[11.029395284809155,46.024033972529224],[11.029563600597436,46.02429434558201],[11.029726740030206,46.024641644314265],[11.02980607191697,46.024917127002226],[11.029823185383993,46.02518508840831],[11.029933180519476,46.025410534058445],[11.030040281318856,46.02561763641176],[11.030100870194133,46.02584943461573],[11.030088908615559,46.02609651282026],[11.030048375871534,46.02629750106457],[11.030101306999406,46.02657959074107],[11.030169507273126,46.026763403152394],[11.030118081379953,46.027012343642106],[11.030072783544155,46.02728196656893],[11.02992718627029,46.02763294512851],[11.029837437547142,46.02798221118995],[11.029719093721551,46.02828771141874],[11.029660248909623,46.02857549150139],[11.029575142890192,46.02886301896235],[11.029423215896992,46.029202478277504],[11.02938547610033,46.02942640217504],[11.029373483952755,46.02967347980628],[11.02934802233338,46.02993642822949],[11.029364528024859,46.03023186439064],[11.029381911977552,46.03048839238872],[11.029395038700299,46.03078836794003],[11.0293504131646,46.03102594317796],[11.029306494658492,46.03123148853734],[11.029215718279586,46.03147775413257],[11.029116041675293,46.03168041967925],[11.029030200713587,46.03185120912542],[11.028905526992936,46.031996403082815],[11.028857230845887,46.03210120131145],[11.028844438259345,46.032236113687006],[11.028882590751467,46.03229371959427],[11.028959306906888,46.03238835322552],[11.029057668923896,46.032463054844285],[11.029149565431865,46.033324011925636],[11.028684045366717,46.03470082935912],[11.028662314180526,46.03476508329002],[11.028639724267695,46.03483189681799],[11.028555046723595,46.03508232943397],[11.028498195489318,46.03559485651645],[11.028418253669326,46.03594650923201],[11.02827464025051,46.03635473704477],[11.02822662766969,46.03659685115317],[11.02807549984534,46.0369726791003],[11.028028632930113,46.037089211162794],[11.027895248796675,46.03763028408021],[11.027809922404614,46.0379994966876],[11.027726544104851,46.03828314857758],[11.027636231080034,46.03865758322671],[11.027449235466822,46.0393684099011],[11.027417498287939,46.03992964940065],[11.027144478395039,46.04475968173842],[11.029502842039351,46.0471693710807],[11.029630285483268,46.047332279160685],[11.029298803372177,46.04746848462318],[11.028932732507602,46.0476844329001],[11.028487485199953,46.04791561007541],[11.02810907588164,46.048094800256315],[11.027773573835386,46.048265300274885],[11.027441327544357,46.04843581622523],[11.027023361997315,46.04862147385138],[11.026727792130034,46.048767209323444],[11.026263045138892,46.04898900979681],[11.025762194660166,46.0492081310702],[11.025467473046891,46.04931495488742],[11.025172702080198,46.04942406575833],[11.0248752826869,46.04950566518817],[11.024603494969142,46.04961501164968],[11.024232826926198,46.049739363099484],[11.023521975516525,46.049932131814096],[11.023455669478498,46.04996276103166],[11.023235977576887,46.05006423251086],[11.02295653998621,46.0501933038709],[11.022464904897776,46.05027223183683],[11.023453309996016,46.05234743099943],[11.023502211143347,46.05246785021566],[11.023667708053194,46.05287540649071],[11.023727520060401,46.052951707941],[11.02383156845118,46.05310548847359],[11.024013232539088,46.0534358775309],[11.02416592875001,46.053679152134954],[11.024299429505769,46.05385135935239],[11.024410159413259,46.053993722151034],[11.024488360241923,46.05408560424005],[11.024622054810838,46.054232647684806],[11.024700345354008,46.05431536677149],[11.02510200379518,46.05467862708904],[11.025291424933599,46.0548464686438],[11.025487354407536,46.05502578940447],[11.025637493234676,46.05517060417327],[11.025807491338648,46.05530174007098],[11.0261370792143,46.055630387367195],[11.027107618347442,46.05642163138086],[11.0272282943208,46.05655258993375],[11.027263540534799,46.05667864986191],[11.02727887097131,46.056829818108596],[11.027247866820156,46.057024313573585],[11.02730916447163,46.05854247317751],[11.027259453777415,46.05950388158976],[11.026942966369546,46.06010098980934],[11.026922781548762,46.0601390603596],[11.02685613333739,46.060264771589154],[11.026292007753963,46.06144174605583],[11.025541544822133,46.062917934458994],[11.024210439525227,46.06416586561628],[11.024102097955412,46.0655431371566],[11.02386991059344,46.0658215784725],[11.02358139439479,46.06615933613805],[11.023445411852716,46.06632136841687],[11.023319538372157,46.06645138889171],[11.023239689517121,46.06657930357464],[11.0232581890274,46.0667442213206],[11.02359695226753,46.06717821893378],[11.023746911189047,46.06735279001228],[11.023864426137262,46.06747000169111],[11.023955469892075,46.06760771830621],[11.024075784805971,46.067791329118485],[11.024143775317425,46.06793583238876],[11.02419551004561,46.068055075817135],[11.024273206105562,46.06822021628016],[11.02434125828546,46.068355557087145],[11.024382736818847,46.068527422373855],[11.024370924013516,46.068795249997386],[11.024339947216856,46.068985153735134],[11.024263466495176,46.06910163682635],[11.024180397980901,46.06922266014871],[11.02375469234002,46.069882723428265],[11.02366142690513,46.0700472059469],[11.023657104764961,46.070186852167446],[11.023712548556203,46.070248889993195],[11.023624396902788,46.07061487600701],[11.022983942457232,46.071411488108915],[11.022772599641858,46.07153430274981],[11.022675154861153,46.07182012445476],[11.02264461462157,46.07194821686601],[11.022626879893672,46.07212673443723],[11.022606321599985,46.07223885307917],[11.02267730362654,46.072424573391245],[11.022606623154077,46.07264638560729],[11.02256893735547,46.07285001031568],[11.02264668014624,46.073010561769244],[11.022856189341319,46.07313956495054],[11.023006161427697,46.073314135725184],[11.023067650213978,46.07344946380144],[11.023112899131373,46.07355494335898],[11.023247531635045,46.073582935635066],[11.023352399056881,46.07362911314689],[11.02342069373983,46.07373470015559],[11.023482369414717,46.07384252388106],[11.023603416113597,46.073927712800675],[11.023813179532496,46.07402008456563],[11.024006606757762,46.07410094887016],[11.024242420511001,46.07422775097364],[11.024340659718545,46.07428307664415],[11.024457977778315,46.07442775590311],[11.024661475664393,46.074932216433844],[11.024922571081637,46.07565210714817],[11.02526940886693,46.0763402656923],[11.025782949128226,46.076264363304254],[11.026008551325896,46.075988173794364],[11.026202201098895,46.076041566518015],[11.02652363456279,46.0761526702295],[11.026819150260218,46.07621559070397],[11.02710501216343,46.076244140089415],[11.027321823641978,46.07627472494064],[11.027551734157829,46.07631222752666],[11.027936209550832,46.0763525906659],[11.028330634034027,46.076374675718895],[11.028593487523917,46.07640770240633],[11.028878788731753,46.07651409674743],[11.02906565898111,46.07659263617152],[11.029212938062445,46.076689333322925],[11.029287983649088,46.07677205175635],[11.029277479536832,46.07685899869153],[11.02918457562878,46.07697542652919],[11.029102047339583,46.077020908289285],[11.029128121665261,46.07705305178563],[11.029189479864014,46.07720668239577],[11.029205283255553,46.07729601961979],[11.029191161180716,46.07742876136098],[11.029088023780108,46.0775955069871],[11.028975150169138,46.077741615317095],[11.028931903778833,46.07779517267157],[11.02889220261711,46.07784433619058],[11.028809111602262,46.0779676671464],[11.028821000088488,46.07814169674879],[11.028839526826976,46.078308916870654],[11.028880988225783,46.07848763688787],[11.028932365389489,46.078657259871],[11.028993267630646,46.078874987662644],[11.029041532904218,46.079023985356],[11.029099111717567,46.07924857349819],[11.02914360912308,46.07946165236582],[11.029198667655606,46.07957633694634],[11.029213721954521,46.079768723600246],[11.02913129574272,46.07980045404926],[11.029065064075297,46.0798643179918],[11.029064229945673,46.079978797321814],[11.029079594169437,46.080127660163924],[11.029114755919155,46.08026745207835],[11.029139814760262,46.08044156088753],[11.02911209523484,46.080638337838245],[11.02905842219685,46.080784666484696],[11.028994929383433,46.080921805759296],[11.028945023851042,46.08100403334587],[11.028931023365454,46.08111847016262],[11.028936846416443,46.0812237987235],[11.02892948536759,46.08133367516918],[11.028932124795851,46.081422969838826],[11.028934640784271,46.08153058825341],[11.028927420440297,46.08161756857785],[11.028925900420715,46.08182818408503],[11.02893151196052,46.081961000070194],[11.028924296512757,46.08205026633315],[11.028920325876369,46.082146405968174],[11.02890271115768,46.08230890370277],[11.02890096214457,46.082551577192994],[11.028912414333899,46.08278515022632],[11.02889453226258,46.08298656382195],[11.028843807030928,46.083178680288206],[11.028799633683716,46.083375418048334],[11.02875242326579,46.08353551081574],[11.028633133716689,46.08365869227038],[11.028474789165363,46.08372448650809],[11.028293321421858,46.08380622973347],[11.028144857814286,46.08387206950139],[11.028029143253779,46.08395406350125],[11.02796935257146,46.08403626357832],[11.027932163842433,46.084175773929566],[11.02792155579395,46.084278777796364],[11.027927210466899,46.084407002050746],[11.027945815220766,46.08456047128631],[11.027961285159028,46.08469559991151],[11.02799339174619,46.084803337472415],[11.028028698842084,46.084922520366185],[11.028038079321755,46.084991235377586],[11.028030923431965,46.08507134016094],[11.02804922070706,46.08527059933014],[11.028091020038223,46.08540354604053],[11.028106737419206,46.0855020460522],[11.028092509856126,46.08565082576758],[11.028071624080562,46.08580871838366],[11.028070580372637,46.08595295031043],[11.028066380096005,46.08608114785326],[11.028042164389463,46.08624361492036],[11.02797392097774,46.08658449608912],[11.027834583896254,46.08666466091094],[11.027936942219833,46.086696537899606],[11.027923273145742,46.086765164308275],[11.027780455453906,46.086959246820896],[11.027714170695877,46.08702768289794],[11.027554792828475,46.08723542239088],[11.027428839340939,46.08737003750777],[11.027329132224274,46.08751390149402],[11.027318583234024,46.08760772408313],[11.027314500276034,46.08771531191613],[11.027323270383214,46.08786644824624],[11.027348684512525,46.08799247952027],[11.027351132580963,46.08810695535003],[11.02734347256914,46.088255747074186],[11.027319637850805,46.0883701366553],[11.027341906873607,46.088473238334565],[11.02729182037189,46.08857607586455],[11.027179194986955,46.08868555266634],[11.026821601847068,46.08901390735734],[11.027888856332453,46.08925143610245],[11.028808260071276,46.08946549891652],[11.029849637280016,46.08964568360494],[11.030559239911524,46.08976508552568],[11.030441175288088,46.090174462272834],[11.03020800016684,46.09241043549452],[11.030184505936743,46.09293233731385],[11.030451091751944,46.09291044045514],[11.030727622696364,46.09287942550391],[11.031047061511783,46.09282794320025],[11.031353541767935,46.09274895025641],[11.03155506487825,46.09262835943999],[11.031703984155236,46.09250298952012],[11.031836304496439,46.09239817203762],[11.032018102896648,46.09227291720337],[11.032382864755064,46.09232235242249],[11.032770860558307,46.092344388978965],[11.03344977759331,46.092464622180096],[11.034719902774437,46.09163496554084],[11.034928473601166,46.09144342674057],[11.035150316754706,46.09123819507151],[11.035411777953058,46.09101249833618],[11.035706341420726,46.09075485840708],[11.035799707267351,46.0905766324109],[11.035830183168235,46.09045310912803],[11.03583775922382,46.0903134786684],[11.03587237915348,46.09006863468866],[11.035932742033502,46.08990858105548],[11.03602969844126,46.0896868653092],[11.036163757409371,46.08933247546704],[11.036568413376862,46.08839297898497],[11.036559944654291,46.08819605257739],[11.036541331173702,46.08803801469598],[11.036493939116331,46.0877631129355],[11.036543720475915,46.087234418180536],[11.038181388096158,46.085873596379265],[11.038571975456874,46.08551785347783],[11.039230533847467,46.084943309185476],[11.039575212204717,46.08503613736712],[11.039831273038619,46.08510347071836],[11.040093682927571,46.085202871863764],[11.040332952139357,46.085320510395775],[11.040549297525013,46.08542204262141],[11.041264271551915,46.08571082280028],[11.04220182985876,46.08614921533327],[11.042513401108922,46.08627626615821],[11.042769351563813,46.08636189753768],[11.043137045925954,46.08645710518869],[11.043281230944416,46.08653317786],[11.043336632433876,46.0866066342566],[11.043316391104824,46.08667753650237],[11.043249866571522,46.086784896136656],[11.043146734556036,46.08695395818905],[11.043050312125581,46.087102421291085],[11.04311217129262,46.08719651749218],[11.043213376645104,46.08730449022433],[11.04324919706435,46.0873526950853],[11.043363490325913,46.087472156279894],[11.043412258156883,46.08755245975924],[11.043401759425599,46.08764399783941],[11.043292414636722,46.087760380915206],[11.043090032804205,46.08801148987507],[11.043188234243557,46.08807822738972],[11.043358334296313,46.088213924901616],[11.04356770860826,46.08837723226765],[11.043787421971517,46.08847189580177],[11.044000656011129,46.08854822458594],[11.044314892593068,46.08876913451812],[11.045175989315892,46.08933774958232],[11.04622675121903,46.090069570729945],[11.04712757712215,46.09060394934253],[11.047453578410018,46.09055016506723],[11.047526435457154,46.09047944423174],[11.047629205515852,46.090363064274506],[11.047752009673271,46.09020323079693],[11.047788790167298,46.09011407883125],[11.047802292810426,46.09006375566984],[11.047822370789193,46.090015749185284],[11.047852342148973,46.089960910684184],[11.04790548023459,46.089887832199565],[11.04801792337986,46.08979666062722],[11.048146904045861,46.08969638047135],[11.048298765830385,46.08961449211039],[11.048351818045976,46.0895505761722],[11.048329313919318,46.08947723266231],[11.048333334550964,46.089371930302434],[11.04834714779612,46.089273530970985],[11.048378215151148,46.089063012929685],[11.048434970325758,46.088939586575684],[11.048633230255415,46.0888052177991],[11.049028570261866,46.088712750593345],[11.049311754405014,46.08866339730656],[11.049608105909178,46.08861408340918],[11.049871340075336,46.08859898376607],[11.0501115346019,46.08858838838594],[11.050312406301309,46.08855247252308],[11.050467050914321,46.088541568360256],[11.050654645241039,46.088526220548815],[11.050812701617367,46.08850159700043],[11.051052138188968,46.088596298445204],[11.051298021415052,46.08871622798107],[11.051537460425095,46.08881094726354],[11.051711320136608,46.088880244755536],[11.05190816122912,46.08895419902236],[11.052088298746654,46.089067031972675],[11.05222586872373,46.0891499388415],[11.052356595237953,46.08927401801745],[11.052500292494534,46.08942564019662],[11.052637476881953,46.08956807217811],[11.052764951148033,46.08968299228841],[11.052951233714294,46.08985993110661],[11.053098182459527,46.09001842509033],[11.053215631998386,46.09016078618997],[11.053300294635799,46.09028700068104],[11.053385036495595,46.09040178443429],[11.053512129431716,46.09057622922966],[11.053626310369259,46.090714003684525],[11.05377996870358,46.09085189820852],[11.053933692038326,46.09098295306644],[11.05415304085024,46.091134816944695],[11.05436548744693,46.091334747227535],[11.054731849438717,46.09163367351778],[11.054934598507849,46.09181066303323],[11.055176434059902,46.09204276152753],[11.055333041882433,46.09220335767965],[11.055427961208531,46.092304638435905],[11.055473402728898,46.09233978179231],[11.055558832728293,46.09240583570193],[11.055593732760205,46.092453500621474],[11.055571070957436,46.092545534911075],[11.055534565607438,46.092591185059],[11.055477994772552,46.09268714682195],[11.055421485824617,46.09277625115447],[11.055396568760816,46.092812937471095],[11.055374967903282,46.0928447715639],[11.055394047110607,46.09294328019344],[11.05546903347112,46.09304198095554],[11.055573311719797,46.093188872289815],[11.05572670729178,46.09336569707653],[11.056003174096206,46.093831426519024],[11.056165699579516,46.094120468120835],[11.056442138649537,46.09459307214079],[11.056708855092822,46.09504273639531],[11.056907514518135,46.09533035602705],[11.057163605004254,46.095706164762504],[11.05728442465297,46.09581174404881],[11.0575912483659,46.09628302316059],[11.057935618891024,46.096811908947146],[11.058335833692214,46.09742658376789],[11.058548354783824,46.097538472918465],[11.059006773443498,46.097779803567896],[11.059511300970053,46.09804540524063],[11.060768946291672,46.09846913827718],[11.06114194185133,46.09859480885412],[11.065571272868237,46.10063855988406],[11.068664440182971,46.10300119938109],[11.07207116151985,46.10688145331452],[11.072286816016202,46.10727241513756],[11.072429047964551,46.10740411320372],[11.073025862357175,46.108060992726195],[11.073127061396585,46.10815979653391],[11.073270728225454,46.10829996539529],[11.073535450352104,46.10852071648662],[11.073646395521136,46.10863558182811],[11.073799744109651,46.10879638432316],[11.073946713746034,46.10893199502864],[11.074083960465982,46.10904923914586],[11.07441097881082,46.109299988639954],[11.074515608752684,46.10938278524344],[11.074652757650398,46.109511494769755],[11.074780308037102,46.10961040901254],[11.07497974077904,46.10976681531174],[11.075231766303965,46.109934874259274],[11.075460827830966,46.11008911974293],[11.075588218842958,46.11020631966576],[11.075686027188713,46.11032114534772],[11.075737413614819,46.11047924436921],[11.075847879465105,46.11065588210346],[11.076030536593676,46.1108579905111],[11.076134271562765,46.11105292414983],[11.076231846632158,46.111197465600775],[11.076284251344093,46.11122742412254],[11.076391160254463,46.11143839200812],[11.07656380272161,46.11165876272915],[11.07672633260274,46.11191113141938],[11.076856491561392,46.11209471017618],[11.077193026930017,46.112391267301945],[11.077353015330202,46.112549786923516],[11.077588147433579,46.11277270722791],[11.077995859700263,46.113227425008525],[11.078031808061048,46.113257313012504],[11.078060369602714,46.11339243571861],[11.078127062310639,46.11369935341743],[11.07817789409598,46.113928389271805],[11.078232465614219,46.1141025204247],[11.078270403054532,46.11429946063989],[11.078380072405936,46.114581358275885],[11.078580013650662,46.11509933292975],[11.07894387723668,46.11611451985521],[11.079130823137419,46.116193067538475],[11.079239067252036,46.11623468968583],[11.0793900608186,46.11628333050291],[11.079508205806023,46.116320422463176],[11.079600154846236,46.11634595528427],[11.079843067304717,46.116417860776025],[11.080072811081083,46.11649199721082],[11.080233668374747,46.11654069674187],[11.080433902639351,46.11660327810025],[11.080561917053233,46.11664267778664],[11.08071954186338,46.11668221940612],[11.080877204324125,46.11671715297776],[11.08101757733961,46.11680642155761],[11.08099085424044,46.11691212289289],[11.080960167624706,46.11705158643211],[11.080893269239454,46.1171909174638],[11.080812812561549,46.11738051965279],[11.080742745284615,46.117506102167496],[11.080639874363898,46.11761783146561],[11.080507372857776,46.1177317220334],[11.080177553496958,46.11783110494862],[11.079936967560416,46.11787819205135],[11.079768683180719,46.11793931673799],[11.0796199303848,46.11802568821876],[11.079421549926336,46.11814846265036],[11.079286103249782,46.11821658325647],[11.079209995017926,46.11827120017652],[11.079150369386996,46.1183235820915],[11.079031383971515,46.118391770946445],[11.078869592035536,46.11846206604888],[11.078782078025991,46.118477207933964],[11.078681535978168,46.11852539207896],[11.07850328681637,46.11859790308365],[11.078410643585416,46.118663897564176],[11.078153070737603,46.118779581631486],[11.077987990030797,46.11884986149416],[11.07787550196997,46.118929487975024],[11.077802291942106,46.11903446340674],[11.077735924214448,46.119102855927714],[11.077649352177323,46.11923522479198],[11.077615654809025,46.11933579515919],[11.077641098657347,46.11944572300655],[11.077673457832876,46.119516798642294],[11.077768092221206,46.11961785599337],[11.077882416142938,46.119725872259025],[11.077973725092845,46.119831505255036],[11.078054972614776,46.11995997437601],[11.078109982005893,46.12008147399193],[11.078187823449923,46.120223662587904],[11.078298456632513,46.120384277234656],[11.078412399187386,46.12054263825171],[11.07852683872234,46.12063461631339],[11.078611961079828,46.12068987537753],[11.078762576394722,46.12078659512061],[11.078893594051067,46.120862621853384],[11.079070573805845,46.12095486185284],[11.079139493794177,46.120980316375906],[11.079267337331704,46.12104030829393],[11.07952977409745,46.12114662283159],[11.079713522746268,46.12121370851203],[11.07988402298956,46.12129218526472],[11.080061568168915,46.12131348649911],[11.080343983662663,46.12138784246612],[11.080702178775601,46.12144876305355],[11.08108395259856,46.12144110984731],[11.08142944221713,46.1214447697567],[11.081811197818974,46.121439418470864],[11.08216318924722,46.12145453359791],[11.082383629489804,46.12145768656113],[11.08256492530389,46.121419507813066],[11.082913451230404,46.12145519857716],[11.083172951144737,46.12151571727212],[11.08325925274698,46.121553589315305],[11.083338074075769,46.12156813267622],[11.083685176458088,46.12166511509237],[11.08401229284316,46.12177335469084],[11.08411064713598,46.12181028714606],[11.084636204777734,46.1220076374416],[11.084504902006667,46.12219448334943],[11.084379299250674,46.122406293037926],[11.084263698937749,46.12261134015922],[11.084164469782042,46.12282110157538],[11.084044557980594,46.12308334880634],[11.083985127667884,46.123275149864305],[11.083956521933601,46.123400825804325],[11.083866292485556,46.12365877120496],[11.08382291891604,46.123873614712245],[11.083803879135441,46.12401539187813],[11.083804781004975,46.12414821657394],[11.083803156174493,46.12423831448128],[11.083787440098225,46.12437930291303],[11.083768335796142,46.12452568927772],[11.083750195000823,46.124605554697126],[11.083736143719833,46.12466735617827],[11.083674583473286,46.12479503432322],[11.083592772411638,46.12495227797333],[11.083507964632558,46.12509119895082],[11.08338583748547,46.125174029674],[11.0833569634374,46.12519634354599],[11.082964075793823,46.12592444334807],[11.084940714432374,46.126390169848406],[11.085229874950752,46.12652016679487],[11.085366527736845,46.12750816059332],[11.085384209743276,46.12763596021067],[11.085629260169352,46.127673825546246],[11.086677729534497,46.12783587088492],[11.086919663489313,46.12787325576316],[11.087821957699404,46.12822582070891],[11.087937335353955,46.12827091685125],[11.088449397692315,46.12894826655434],[11.089480891674283,46.12951215893326],[11.093664743270129,46.132571928583864],[11.093790775530609,46.13266410272119],[11.100440126231227,46.13398186705879],[11.101647699370764,46.134221140526776],[11.102190046890474,46.13411756449497],[11.108511091524498,46.13594704640407],[11.108633344406666,46.1359824105759],[11.110887469386274,46.13663470267534],[11.111332558535763,46.1367632205307],[11.1119083531488,46.136920336843],[11.11414584505638,46.13753179395584],[11.114204691222437,46.13755123154778],[11.114250070042193,46.13756635977827],[11.115050501978416,46.13783320184034],[11.115753680250787,46.138067615555926],[11.119425763164921,46.13929161520183],[11.119785434599045,46.13950764053645],[11.119828099967508,46.13953328036563],[11.120093464597575,46.13997043271073],[11.120089050198837,46.14042239700422],[11.12008878921556,46.140448778331645],[11.119848340976873,46.14111231692026],[11.119839023918068,46.14214959565241],[11.119850748844854,46.142382190785035],[11.120272148142531,46.14281644752085],[11.121685093285645,46.1431760589096],[11.122130906455714,46.14361094262152],[11.122295263963888,46.14423257317405],[11.122096633556419,46.145275870797086],[11.121911841989588,46.14576736677888],[11.12268313811073,46.1462850283375],[11.12282100785816,46.14676568261582],[11.122648410041965,46.147574225739135],[11.123662533530785,46.14892689595117],[11.125916635092647,46.148743401258294],[11.126433844515223,46.149246595392654],[11.126771156128465,46.14938580139635],[11.126843016623024,46.149411724958846],[11.127009543535182,46.14947525697565],[11.127334919671322,46.14950152944125],[11.127447863872167,46.14945463688363],[11.127567796932295,46.14938951317262],[11.127703795981699,46.14934287237033],[11.127862528837621,46.149310185619285],[11.128079894123042,46.14930558480766],[11.128355808817151,46.149335908487544],[11.128688598819426,46.149323350467256],[11.129003538986796,46.149374695948104],[11.129289704762659,46.149386818156756],[11.129543327822843,46.149380304062916],[11.129876750971373,46.149491335706124],[11.13017711637102,46.14960888132057],[11.130435274473685,46.14969853266296],[11.130710015021327,46.149781477856436],[11.13094543773557,46.14985715642747],[11.131148228488184,46.14991877127685],[11.131199684149319,46.149982803604004],[11.131283754493133,46.15004604304992],[11.13138113075969,46.15011113484008],[11.131426516384035,46.150143650509165],[11.131521027098009,46.15018811531401],[11.131683307055127,46.150297357208416],[11.131843015316216,46.150372253154536],[11.13199256065598,46.15046077558696],[11.132165587016107,46.150528934438135],[11.132235839380064,46.150557070728574],[11.132348484253557,46.15059720401584],[11.133494125415323,46.151366592212916],[11.133918531320502,46.1513801400073],[11.134168272800364,46.15140332621385],[11.134408452726726,46.15141037879458],[11.134668327603203,46.15141993753541],[11.134898550467707,46.15143146993306],[11.135306463319358,46.15144712704409],[11.135678187089711,46.15146240882364],[11.135951539868673,46.15145836834523],[11.136225272322696,46.15143603470879],[11.13659449080238,46.151414661733355],[11.136910365056808,46.15142250489476],[11.13755503683933,46.15145204811094],[11.138054786102982,46.151484667709305],[11.138794629532105,46.15152890030629],[11.139281730048985,46.15153620465481],[11.139393754195579,46.15153277966334],[11.139564996669812,46.1515299790953],[11.139795667825176,46.15152090380465],[11.139957285829754,46.151506541421625],[11.140579554412735,46.15150609216938],[11.140842704479251,46.151517953311945],[11.141125433933436,46.15153687559198],[11.141440889675716,46.15156530258248],[11.141779689124132,46.151580223052285],[11.142092301902201,46.15158800231294],[11.14227641418208,46.15159905678155],[11.142500014684964,46.15161279862883],[11.143068795132082,46.15165068178356],[11.14336871262827,46.15163545302691],[11.143447363785592,46.15162998517447],[11.143655583951146,46.15161551011696],[11.144045002814977,46.15157144992333],[11.1443125106577,46.15153299379845],[11.144616407523264,46.151485762991136],[11.144867263065413,46.15145628157447],[11.145154552796654,46.15141575651787],[11.14537528318942,46.15140886539482],[11.145626025078045,46.15138397447089],[11.145853736457102,46.151358832420456],[11.14594091808474,46.15135889067552],[11.14602524859385,46.1513445717273],[11.1461931999137,46.15134171052932],[11.146371003285488,46.15134124702827],[11.146674077463695,46.15133289832655],[11.146960988886601,46.1513106612383],[11.14712333968728,46.15126197302924],[11.14728604640977,46.15119727760266],[11.14736653935465,46.15112714304294],[11.147530423757981,46.151007533798136],[11.147754302028988,46.15085190699748],[11.147881768015974,46.15074107465099],[11.148028729658765,46.15064187452358],[11.14814206083709,46.150576669690594],[11.148287669000924,46.150541528268874],[11.148525002785398,46.15052794143272],[11.148745972081883,46.15050959302235],[11.148950423238007,46.150493380065335],[11.149115064259545,46.15049277283721],[11.149324856419582,46.150536103920274],[11.14941642428768,46.15056449918621],[11.149540497492888,46.15061383079742],[11.149693161558902,46.15071152526532],[11.149852535152258,46.15080240084318],[11.150195344885525,46.15093863343014],[11.150421100623742,46.15100501542969],[11.150641411152302,46.151018712349874],[11.150843018758204,46.15098186740133],[11.150996222574578,46.150898749646444],[11.151201570433903,46.15068571515355],[11.15133580924479,46.15056577476573],[11.151469933827423,46.15045042639675],[11.151660302307715,46.15032192804916],[11.151803848637725,46.15023062100918],[11.151838552049641,46.15020884430989],[11.151990490677006,46.150121600006734],[11.152332783853032,46.14998548338874],[11.152356961788625,46.14996008877811],[11.152505760762736,46.149886543414446],[11.152652027025898,46.14981938701287],[11.152894590027143,46.1497142879781],[11.153182921930048,46.14962338482372],[11.153487887898516,46.14952578998761],[11.153725900436505,46.14948016272813],[11.15409628372603,46.14955715829571],[11.154348316379865,46.149626097163704],[11.154647117388883,46.14966346514417],[11.154991342150907,46.14973333704547],[11.15524028536971,46.14979308015395],[11.155417068729937,46.14984063710759],[11.155639253703637,46.14992071664994],[11.155884378844306,46.15000559914955],[11.156258605464433,46.15020586098265],[11.156529796130137,46.15035096458106],[11.157320725058216,46.15152378209495],[11.157712421442005,46.151683380037504],[11.158206009874043,46.15185314454],[11.158908415645062,46.15211200589047],[11.159899250766466,46.15243329835151],[11.16100823151418,46.152771773470604],[11.161769798584652,46.15288018014275],[11.1622688489712,46.1529470089056],[11.16301791817848,46.15301118529322],[11.163059313396275,46.152538723998134],[11.163077688907602,46.15232887640855],[11.164246079828622,46.151398177286],[11.164395472554148,46.151279188182116],[11.164499916365637,46.15019529903777],[11.164380638827154,46.149964944812645],[11.164325635707328,46.14951115606139],[11.164346756615183,46.14942891752393],[11.164436735737318,46.1493632532124]]]},\"geomComplex\":{\"provenance\":0,\"accuracy\":100},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/c675dbfafc3cde960da4719e25c08fd8370067ce\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":null}}],\"count\":1,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_where_greater_than_equal": "{\"items\":[{\"population\":{\"2001\":null,\"2011\":114063}},{\"population\":{\"2001\":null,\"2011\":115374}},{\"population\":{\"2001\":null,\"2011\":116434}},{\"population\":{\"2001\":null,\"2011\":116846}},{\"population\":{\"2001\":null,\"2011\":117760}},{\"population\":{\"2001\":null,\"2011\":118442}},{\"population\":{\"2001\":null,\"2011\":119928}},{\"population\":{\"2001\":null,\"2011\":123624}},{\"population\":{\"2001\":null,\"2011\":132295}},{\"population\":{\"2001\":null,\"2011\":132741}},{\"population\":{\"2001\":null,\"2011\":139727}},{\"population\":{\"2001\":null,\"2011\":147045}},{\"population\":{\"2001\":null,\"2011\":149343}},{\"population\":{\"2001\":null,\"2011\":153458}},{\"population\":{\"2001\":null,\"2011\":156779}},{\"population\":{\"2001\":null,\"2011\":162097}},{\"population\":{\"2001\":null,\"2011\":162570}},{\"population\":{\"2001\":null,\"2011\":175842}},{\"population\":{\"2001\":null,\"2011\":179095}},{\"population\":{\"2001\":null,\"2011\":180817}},{\"population\":{\"2001\":null,\"2011\":184885}},{\"population\":{\"2001\":null,\"2011\":189085}},{\"population\":{\"2001\":null,\"2011\":199936}},{\"population\":{\"2001\":null,\"2011\":201814}},{\"population\":{\"2001\":null,\"2011\":205631}},{\"population\":{\"2001\":null,\"2011\":242914}},{\"population\":{\"2001\":null,\"2011\":251842}},{\"population\":{\"2001\":null,\"2011\":260856}},{\"population\":{\"2001\":null,\"2011\":293104}},{\"population\":{\"2001\":null,\"2011\":315408}},{\"population\":{\"2001\":null,\"2011\":357318}},{\"population\":{\"2001\":null,\"2011\":371151}},{\"population\":{\"2001\":null,\"2011\":584644}},{\"population\":{\"2001\":null,\"2011\":656829}},{\"population\":{\"2001\":null,\"2011\":869312}},{\"population\":{\"2001\":null,\"2011\":961106}},{\"population\":{\"2001\":null,\"2011\":1240173}},{\"population\":{\"2001\":null,\"2011\":2614263}}],\"count\":38,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_where_greater_than": "{\"items\":[{\"population\":{\"2001\":null,\"2011\":115374}},{\"population\":{\"2001\":null,\"2011\":116434}},{\"population\":{\"2001\":null,\"2011\":116846}},{\"population\":{\"2001\":null,\"2011\":117760}},{\"population\":{\"2001\":null,\"2011\":118442}},{\"population\":{\"2001\":null,\"2011\":119928}},{\"population\":{\"2001\":null,\"2011\":123624}},{\"population\":{\"2001\":null,\"2011\":132295}},{\"population\":{\"2001\":null,\"2011\":132741}},{\"population\":{\"2001\":null,\"2011\":139727}},{\"population\":{\"2001\":null,\"2011\":147045}},{\"population\":{\"2001\":null,\"2011\":149343}},{\"population\":{\"2001\":null,\"2011\":153458}},{\"population\":{\"2001\":null,\"2011\":156779}},{\"population\":{\"2001\":null,\"2011\":162097}},{\"population\":{\"2001\":null,\"2011\":162570}},{\"population\":{\"2001\":null,\"2011\":175842}},{\"population\":{\"2001\":null,\"2011\":179095}},{\"population\":{\"2001\":null,\"2011\":180817}},{\"population\":{\"2001\":null,\"2011\":184885}},{\"population\":{\"2001\":null,\"2011\":189085}},{\"population\":{\"2001\":null,\"2011\":199936}},{\"population\":{\"2001\":null,\"2011\":201814}},{\"population\":{\"2001\":null,\"2011\":205631}},{\"population\":{\"2001\":null,\"2011\":242914}},{\"population\":{\"2001\":null,\"2011\":251842}},{\"population\":{\"2001\":null,\"2011\":260856}},{\"population\":{\"2001\":null,\"2011\":293104}},{\"population\":{\"2001\":null,\"2011\":315408}},{\"population\":{\"2001\":null,\"2011\":357318}},{\"population\":{\"2001\":null,\"2011\":371151}},{\"population\":{\"2001\":null,\"2011\":584644}},{\"population\":{\"2001\":null,\"2011\":656829}},{\"population\":{\"2001\":null,\"2011\":869312}},{\"population\":{\"2001\":null,\"2011\":961106}},{\"population\":{\"2001\":null,\"2011\":1240173}},{\"population\":{\"2001\":null,\"2011\":2614263}}],\"count\":37,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_where_lower_than_equal": "{\"items\":[{\"population\":{\"2001\":null,\"2011\":114063}},{\"population\":{\"2001\":null,\"2011\":111222}},{\"population\":{\"2001\":null,\"2011\":109110}},{\"population\":{\"2001\":null,\"2011\":108793}},{\"population\":{\"2001\":null,\"2011\":102486}},{\"population\":{\"2001\":null,\"2011\":101739}},{\"population\":{\"2001\":null,\"2011\":100465}},{\"population\":{\"2001\":null,\"2011\":100195}},{\"population\":{\"2001\":null,\"2011\":100133}},{\"population\":{\"2001\":null,\"2011\":98174}},{\"population\":{\"2001\":null,\"2011\":98018}},{\"population\":{\"2001\":null,\"2011\":95951}},{\"population\":{\"2001\":null,\"2011\":94346}},{\"population\":{\"2001\":null,\"2011\":94322}},{\"population\":{\"2001\":null,\"2011\":92418}},{\"population\":{\"2001\":null,\"2011\":89615}},{\"population\":{\"2001\":null,\"2011\":89493}},{\"population\":{\"2001\":null,\"2011\":89319}},{\"population\":{\"2001\":null,\"2011\":89016}},{\"population\":{\"2001\":null,\"2011\":88734}},{\"population\":{\"2001\":null,\"2011\":86884}},{\"population\":{\"2001\":null,\"2011\":85849}},{\"population\":{\"2001\":null,\"2011\":85517}},{\"population\":{\"2001\":null,\"2011\":82124}},{\"population\":{\"2001\":null,\"2011\":81538}},{\"population\":{\"2001\":null,\"2011\":81026}},{\"population\":{\"2001\":null,\"2011\":80298}},{\"population\":{\"2001\":null,\"2011\":80145}},{\"population\":{\"2001\":null,\"2011\":79405}},{\"population\":{\"2001\":null,\"2011\":79392}},{\"population\":{\"2001\":null,\"2011\":78457}},{\"population\":{\"2001\":null,\"2011\":78433}},{\"population\":{\"2001\":null,\"2011\":76432}},{\"population\":{\"2001\":null,\"2011\":75707}},{\"population\":{\"2001\":null,\"2011\":75625}},{\"population\":{\"2001\":null,\"2011\":73863}},{\"population\":{\"2001\":null,\"2011\":70880}},{\"population\":{\"2001\":null,\"2011\":70329}},{\"population\":{\"2001\":null,\"2011\":69863}},{\"population\":{\"2001\":null,\"2011\":69675}},{\"population\":{\"2001\":null,\"2011\":69585}},{\"population\":{\"2001\":null,\"2011\":69376}},{\"population\":{\"2001\":null,\"2011\":69183}},{\"population\":{\"2001\":null,\"2011\":69182}},{\"population\":{\"2001\":null,\"2011\":68802}},{\"population\":{\"2001\":null,\"2011\":68352}},{\"population\":{\"2001\":null,\"2011\":67661}},{\"population\":{\"2001\":null,\"2011\":67645}},{\"population\":{\"2001\":null,\"2011\":67355}},{\"population\":{\"2001\":null,\"2011\":66958}}],\"count\":8056,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_where_lower_than": "{\"items\":[{\"population\":{\"2001\":null,\"2011\":111222}},{\"population\":{\"2001\":null,\"2011\":109110}},{\"population\":{\"2001\":null,\"2011\":108793}},{\"population\":{\"2001\":null,\"2011\":102486}},{\"population\":{\"2001\":null,\"2011\":101739}},{\"population\":{\"2001\":null,\"2011\":100465}},{\"population\":{\"2001\":null,\"2011\":100195}},{\"population\":{\"2001\":null,\"2011\":100133}},{\"population\":{\"2001\":null,\"2011\":98174}},{\"population\":{\"2001\":null,\"2011\":98018}},{\"population\":{\"2001\":null,\"2011\":95951}},{\"population\":{\"2001\":null,\"2011\":94346}},{\"population\":{\"2001\":null,\"2011\":94322}},{\"population\":{\"2001\":null,\"2011\":92418}},{\"population\":{\"2001\":null,\"2011\":89615}},{\"population\":{\"2001\":null,\"2011\":89493}},{\"population\":{\"2001\":null,\"2011\":89319}},{\"population\":{\"2001\":null,\"2011\":89016}},{\"population\":{\"2001\":null,\"2011\":88734}},{\"population\":{\"2001\":null,\"2011\":86884}},{\"population\":{\"2001\":null,\"2011\":85849}},{\"population\":{\"2001\":null,\"2011\":85517}},{\"population\":{\"2001\":null,\"2011\":82124}},{\"population\":{\"2001\":null,\"2011\":81538}},{\"population\":{\"2001\":null,\"2011\":81026}},{\"population\":{\"2001\":null,\"2011\":80298}},{\"population\":{\"2001\":null,\"2011\":80145}},{\"population\":{\"2001\":null,\"2011\":79405}},{\"population\":{\"2001\":null,\"2011\":79392}},{\"population\":{\"2001\":null,\"2011\":78457}},{\"population\":{\"2001\":null,\"2011\":78433}},{\"population\":{\"2001\":null,\"2011\":76432}},{\"population\":{\"2001\":null,\"2011\":75707}},{\"population\":{\"2001\":null,\"2011\":75625}},{\"population\":{\"2001\":null,\"2011\":73863}},{\"population\":{\"2001\":null,\"2011\":70880}},{\"population\":{\"2001\":null,\"2011\":70329}},{\"population\":{\"2001\":null,\"2011\":69863}},{\"population\":{\"2001\":null,\"2011\":69675}},{\"population\":{\"2001\":null,\"2011\":69585}},{\"population\":{\"2001\":null,\"2011\":69376}},{\"population\":{\"2001\":null,\"2011\":69183}},{\"population\":{\"2001\":null,\"2011\":69182}},{\"population\":{\"2001\":null,\"2011\":68802}},{\"population\":{\"2001\":null,\"2011\":68352}},{\"population\":{\"2001\":null,\"2011\":67661}},{\"population\":{\"2001\":null,\"2011\":67645}},{\"population\":{\"2001\":null,\"2011\":67355}},{\"population\":{\"2001\":null,\"2011\":66958}},{\"population\":{\"2001\":null,\"2011\":66905}}],\"count\":8055,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_where_not": "{\"items\":[{\"population\":{\"2001\":null,\"2011\":2614263}},{\"population\":{\"2001\":null,\"2011\":1240173}},{\"population\":{\"2001\":null,\"2011\":961106}},{\"population\":{\"2001\":null,\"2011\":869312}},{\"population\":{\"2001\":null,\"2011\":656829}},{\"population\":{\"2001\":null,\"2011\":584644}},{\"population\":{\"2001\":null,\"2011\":371151}},{\"population\":{\"2001\":null,\"2011\":357318}},{\"population\":{\"2001\":null,\"2011\":315408}},{\"population\":{\"2001\":null,\"2011\":293104}},{\"population\":{\"2001\":null,\"2011\":260856}},{\"population\":{\"2001\":null,\"2011\":251842}},{\"population\":{\"2001\":null,\"2011\":242914}},{\"population\":{\"2001\":null,\"2011\":205631}},{\"population\":{\"2001\":null,\"2011\":201814}},{\"population\":{\"2001\":null,\"2011\":199936}},{\"population\":{\"2001\":null,\"2011\":189085}},{\"population\":{\"2001\":null,\"2011\":184885}},{\"population\":{\"2001\":null,\"2011\":180817}},{\"population\":{\"2001\":null,\"2011\":179095}},{\"population\":{\"2001\":null,\"2011\":175842}},{\"population\":{\"2001\":null,\"2011\":162570}},{\"population\":{\"2001\":null,\"2011\":162097}},{\"population\":{\"2001\":null,\"2011\":156779}},{\"population\":{\"2001\":null,\"2011\":153458}},{\"population\":{\"2001\":null,\"2011\":149343}},{\"population\":{\"2001\":null,\"2011\":147045}},{\"population\":{\"2001\":null,\"2011\":139727}},{\"population\":{\"2001\":null,\"2011\":132741}},{\"population\":{\"2001\":null,\"2011\":132295}},{\"population\":{\"2001\":null,\"2011\":123624}},{\"population\":{\"2001\":null,\"2011\":119928}},{\"population\":{\"2001\":null,\"2011\":118442}},{\"population\":{\"2001\":null,\"2011\":117760}},{\"population\":{\"2001\":null,\"2011\":116846}},{\"population\":{\"2001\":null,\"2011\":116434}},{\"population\":{\"2001\":null,\"2011\":115374}},{\"population\":{\"2001\":null,\"2011\":111222}}],\"count\":38,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_get": "{\"items\":[{\"name\":\"Trento\"}],\"count\":1,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_get_item": "{\"items\":[{\"name\":\"Trento\"}],\"count\":1,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_get_with_no_result": "{\"items\":[],\"count\":0,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_order": "{\"items\":[{\"population\":{\"2001\":null,\"2011\":31}},{\"population\":{\"2001\":null,\"2011\":36}},{\"population\":{\"2001\":null,\"2011\":42}},{\"population\":{\"2001\":null,\"2011\":46}},{\"population\":{\"2001\":null,\"2011\":47}}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_order_desc": "{\"items\":[{\"population\":{\"2001\":null,\"2011\":2614263}},{\"population\":{\"2001\":null,\"2011\":1240173}},{\"population\":{\"2001\":null,\"2011\":961106}},{\"population\":{\"2001\":null,\"2011\":869312}},{\"population\":{\"2001\":null,\"2011\":656829}}],\"count\":8093,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_limit": "{\"items\":[{\"licensePlate\":null,\"tel\":\"0512193111\",\"isMountainMunicipality\":\"P\",\"isProvinceCheflieu\":true,\"localCode\":\"037006\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/c59b12fe31ac36662552c95d51cbf15b792094c0\",\"provenance\":[\"Geonames\",\"ISTAT\",\"SpazioDati\",\"SpazioDati Partner\",\"Wikipedia in Italiano\"],\"wikipedia\":{\"de\":\"http://de.wikipedia.org/wiki/Bologna\",\"en\":\"http://en.wikipedia.org/wiki/Bologna\",\"it\":\"http://it.wikipedia.org/wiki/Bologna\"},\"alternateNames\":[\"Bologne\",\"Bolon'ja\",\"Bolona\",\"Bolonha\",\"Bolonia\",\"Bolonija\",\"Bolonja\",\"Bolonjo\",\"Bolonya\",\"Bolo\u00f1a\",\"Bolo\u0146a\",\"Bol\u00f2gna\",\"Bononia\",\"Bulogna\",\"Bu\u0142ogna\",\"Comune di Bologna\",\"Gorad Balonnja\",\"blwnya\",\"bo luo ni ya\",\"bollonya\",\"bolon'ya\",\"bolonia\",\"boloyya\",\"boronya\",\"bwlwna\",\"bwlwnya\",\"bwlwnyh\",\"\u039c\u03c0\u03bf\u03bb\u03cc\u03bd\u03b9\u03b1\",\"\u0411\u043e\u043b\u043e\u043d\u044c\u044f\",\"\u0411\u043e\u043b\u043e\u043d\u044f\",\"\u0411\u043e\u043b\u043e\u045a\u0430\",\"\u0413\u043e\u0440\u0430\u0434 \u0411\u0430\u043b\u043e\u043d\u043d\u044f\",\"\u0532\u0578\u056c\u0578\u0576\u056b\u0561\",\"\u05d1\u05d5\u05dc\u05d5\u05e0\u05d9\u05d4\",\"\u0628\u0644\u0648\u0646\u06cc\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u064a\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u06cc\u0627\",\"\u092c\u094b\u0932\u094b\u0928\u094d\u092f\u093e\",\"\u0e42\u0e1a\u0e42\u0e25\u0e0d\u0e0d\u0e32\",\"\u10d1\u10dd\u10da\u10dd\u10dc\u10d8\u10d0\",\"\u30dc\u30ed\u30fc\u30cb\u30e3\",\"\u535a\u6d1b\u5c3c\u4e9a\",\"\ubcfc\ub85c\ub0d0\"],\"parentNames\":{\"province\":\"Bologna\",\"country\":\"ITALIA\",\"region\":\"Emilia-Romagna\",\"macroregion\":\"NORD-EST\",\"municipality\":null},\"email\":\"protocollogenerale@pec.comune.bologna.it\",\"website\":\"http://www.comune.bologna.it/\",\"isCoastal\":false,\"fax\":\"0512193718\",\"elevation\":54,\"dialingCodes\":[\"051\"],\"postCodes\":[\"40121\",\"40141\"],\"cadastralCode\":\"A944\",\"population\":{\"2001\":null,\"2011\":371151},\"name\":\"Bologna\",\"level\":60,\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[11.371615030483849,44.55260696774072],[11.371683399764958,44.55263449295944],[11.371850909981305,44.552767736301284],[11.371966605561001,44.55288461340939],[11.372042074975841,44.55299894329224],[11.372112552714023,44.55316515220926],[11.372200479295843,44.55343810683848],[11.372288417909607,44.553697119405406],[11.372318616888847,44.55377259652481],[11.372976733159817,44.55359617495196],[11.374371655839564,44.55324364698487],[11.375023140518103,44.553068621750455],[11.375237441191524,44.55300789610728],[11.375312336948463,44.55307892248818],[11.37549258826638,44.5529356298896],[11.376182020855437,44.552755865326645],[11.376859419095307,44.55258000658355],[11.377223047198097,44.55248606878287],[11.37772140100687,44.552357532188424],[11.377914405158439,44.55228599595104],[11.377795904501502,44.55202345900086],[11.377233293402513,44.55109557434928],[11.3770659409483,44.550811546619215],[11.377689909170236,44.55063820350091],[11.379243779211953,44.55020247225941],[11.381112046044146,44.54966102317204],[11.381368698452416,44.54958758620495],[11.38185410863312,44.54945142730544],[11.381937695127242,44.54939806527645],[11.382025431168511,44.54925769024259],[11.38210173234158,44.54911823883935],[11.382462053093981,44.54902126196006],[11.383652503314401,44.54871340506481],[11.384830398061993,44.54840691252731],[11.385519540460272,44.5482315986127],[11.386102599656807,44.54807875582393],[11.386747150510965,44.547909990298535],[11.387467223210058,44.54772164251097],[11.388057246920857,44.54756638539569],[11.38843945079304,44.547466115004035],[11.38900217699357,44.5473164996277],[11.389504838427717,44.54717994617846],[11.390244292555087,44.54698497438703],[11.391168287175649,44.54674338419237],[11.391893776792447,44.54655377238333],[11.392033112076243,44.54651709244543],[11.39197833010627,44.54644734071617],[11.391883961973194,44.54635254428176],[11.391621403798544,44.545954634466476],[11.39147408294175,44.545719166605025],[11.391144616869987,44.54520505773529],[11.391032633262022,44.545044806207834],[11.390845899684066,44.54474995528144],[11.390558564640752,44.5442653545989],[11.390452924325112,44.544067827340925],[11.390121452060317,44.54350425143768],[11.3899419188228,44.54319293074979],[11.389832784707092,44.543006167981744],[11.389648537814987,44.542579605330666],[11.389605531830993,44.542499490982244],[11.389844500238809,44.54244666370952],[11.38993748113705,44.542450341563686],[11.390072152634893,44.542453713548745],[11.390161576567555,44.5424473417905],[11.390275685445443,44.54242919306462],[11.390381020317166,44.542407863830555],[11.39050734622138,44.542380459503114],[11.390734357432903,44.542314372030965],[11.390858832955274,44.54228251845755],[11.391391890168434,44.543040472832175],[11.391422997717692,44.54308933787872],[11.391762207229004,44.54365044783415],[11.39179346978779,44.54370215873189],[11.39224112796103,44.54354874662596],[11.393042866835481,44.54328156951995],[11.393859852738155,44.54300280882741],[11.394637458394486,44.542741347904155],[11.394791818999858,44.54268899696984],[11.395359151732027,44.542499860658666],[11.395651603657038,44.54289770270896],[11.396072489494518,44.543645050324365],[11.396299589051631,44.54396437128258],[11.396424615019377,44.54392460423094],[11.396475383513815,44.543982621786334],[11.397012678772636,44.54379973339415],[11.397737936422617,44.543548198913406],[11.398112609543729,44.54341879341483],[11.398738821136456,44.54320758835112],[11.398832216725031,44.54317631258953],[11.398926542810589,44.543144923572676],[11.399677130133664,44.54289528581079],[11.400288670302244,44.542691130530564],[11.399730872249805,44.5419252938404],[11.400188416950556,44.54172606798039],[11.401045333333593,44.54136765112833],[11.401560220452486,44.54114751307236],[11.401876721760868,44.54157263030605],[11.40228727688513,44.54211683551545],[11.402348918147611,44.542196376427555],[11.403051797011843,44.54200790130606],[11.404725019768152,44.54154731105244],[11.405352644011401,44.54137148975357],[11.407034447637578,44.54372457504679],[11.407341911119996,44.54363524895624],[11.407673377164693,44.543526974693194],[11.408265526863785,44.54334541845832],[11.408446673636234,44.543296864390165],[11.40901248442909,44.54312906808067],[11.409526555873725,44.542965744186375],[11.409962200208204,44.542827708279184],[11.41038936839721,44.54269378186789],[11.4111683707367,44.542450023859864],[11.411799001470655,44.54225215256389],[11.412122029862672,44.542149679931185],[11.412423339712774,44.54205441166669],[11.41309816558239,44.541840975004895],[11.413625310036403,44.54167116541149],[11.414134570346272,44.54150623093636],[11.414735738396239,44.541319101212245],[11.41523494389894,44.541158873839414],[11.415778665033256,44.540990386046516],[11.415880424396676,44.54095898322238],[11.41581242106911,44.54081750760427],[11.415562913725045,44.540415434415166],[11.41531523362604,44.54001895648533],[11.414905233357763,44.53936878149522],[11.414630240151814,44.53892054538019],[11.414417014790526,44.53857678819788],[11.414366472441696,44.53849627273348],[11.414063006449718,44.53800588042468],[11.413811130850505,44.53760272892693],[11.41369137324568,44.537426904596956],[11.41226059140029,44.5351491583288],[11.411115306183035,44.533277865486866],[11.410471133889073,44.532173508465824],[11.410251102307903,44.531816375384054],[11.410087902928023,44.53157844869783],[11.409836170585859,44.531277156147816],[11.409584810275074,44.53095666059203],[11.409398449644694,44.53067195553174],[11.40925435747843,44.53047751652879],[11.409126787062391,44.5302450191401],[11.408887784745678,44.530037948706806],[11.408456358476954,44.529504143345875],[11.409285965282965,44.52916532956536],[11.410230965808742,44.52877404325182],[11.411091750380166,44.52841996804047],[11.411531141261953,44.52824188672151],[11.411790324905624,44.52815707845399],[11.412410659606413,44.5279037223242],[11.413491770341224,44.52745776483934],[11.414032965687205,44.52723138926808],[11.414983039900768,44.52683123482317],[11.415395283138608,44.526662999663614],[11.416661766544872,44.527295613160895],[11.417023845836885,44.52748564780502],[11.417408092456887,44.527703943398365],[11.417474349444195,44.52774539266649],[11.417985688747256,44.52806145872235],[11.41814140365194,44.528156154907336],[11.41840442909683,44.52831590153624],[11.4186142300048,44.52844423761554],[11.419511573635278,44.528992931702085],[11.419637963876887,44.52907814058832],[11.419908851875721,44.529260765494094],[11.420114932581884,44.52937511255284],[11.420267910631534,44.529460199928636],[11.420465006389335,44.52965518180388],[11.420522909818807,44.529805880296706],[11.420568976573966,44.52986523734807],[11.420649211584008,44.529968616338195],[11.420746800574287,44.53014097060914],[11.420853396987646,44.5302647422067],[11.420950424271776,44.53027765779786],[11.421015667597981,44.530175775684526],[11.421056972405493,44.530109634252106],[11.421110103652577,44.53004408726846],[11.421167249654806,44.52998070476225],[11.421206366052717,44.529937675238486],[11.421237069680085,44.529881320787574],[11.421245783878168,44.52980686564162],[11.421251652202317,44.52967817833455],[11.421325500299169,44.529604877478434],[11.421436340665638,44.52958452263009],[11.421541923835052,44.52957004333887],[11.42163263295503,44.52955728655829],[11.421680618964526,44.52951463673969],[11.42176571399457,44.52943771484262],[11.421833559850812,44.52935722667893],[11.42189451533528,44.529271817308434],[11.421897128722312,44.52919271316013],[11.421869512670836,44.52914322412359],[11.42182807507968,44.529092336810486],[11.42177464931791,44.52903664636912],[11.421716824767879,44.528988923489464],[11.421669591502905,44.52894997632362],[11.421607960916361,44.528905150937305],[11.421543245500915,44.52886207437998],[11.421468114561904,44.52880459009267],[11.421411429671439,44.52873686870063],[11.421402103327905,44.52868277040809],[11.421407506973088,44.52862329858229],[11.421431393614593,44.5285448630385],[11.42148067857378,44.52845323964028],[11.421579949254205,44.528352808462465],[11.421669845620157,44.52821628713048],[11.421818346996819,44.52800383970144],[11.421882891049787,44.527910195448406],[11.421974587415665,44.52776491610225],[11.421969953764833,44.52758201857715],[11.421961767346096,44.527498360666954],[11.421951054641521,44.52739168000135],[11.421937834302073,44.52720572925004],[11.421927913048819,44.52711816515856],[11.421931006524183,44.52705986759246],[11.42195703787829,44.52700502451369],[11.42199210347269,44.526949701664996],[11.422037222820844,44.526890232395715],[11.42209521387052,44.526828235817945],[11.422250312233317,44.526680346050114],[11.422321767537754,44.5266017470623],[11.422370751634785,44.526550066307856],[11.42241548408159,44.52645290998834],[11.422509544997936,44.52625567394653],[11.422531073987999,44.526205710078344],[11.42258589842535,44.52614321330943],[11.42263122588227,44.525719147454666],[11.422499425425448,44.525594220815755],[11.422426121422177,44.52547650302473],[11.42236455942958,44.5253765359957],[11.4223020392141,44.52526280142262],[11.42226343623161,44.52518540817821],[11.422269743429368,44.52508147210622],[11.423930594212962,44.52458428211943],[11.425207215411493,44.5241717611519],[11.425435824749007,44.52410894547679],[11.425666948498428,44.52405002699769],[11.425968560213514,44.52396484298466],[11.426220769395444,44.5238847304623],[11.426317113281144,44.523835911399914],[11.4263616948967,44.5237162393784],[11.42566807243238,44.52288364904361],[11.4254602376246,44.52260393100752],[11.425425020440601,44.52253610287168],[11.425397054643973,44.52247417826064],[11.425296940088451,44.52220342561042],[11.425255394427543,44.521979252030675],[11.425270058819924,44.521764008975616],[11.425299020812746,44.52162836162266],[11.425381717353178,44.5214229321379],[11.425670393030067,44.52096949400596],[11.425710902049385,44.52086566718014],[11.425719087261484,44.52079741909291],[11.425707349634088,44.520590647293666],[11.42621868849449,44.52040532954464],[11.42695576011139,44.520164037808826],[11.427341538813058,44.52004218581967],[11.427451482338274,44.519999607712286],[11.427780111840239,44.52052854614357],[11.428267497288024,44.52129968698271],[11.428309393178958,44.52136817607097],[11.428546776297713,44.52175623256027],[11.429045911450023,44.52156106307746],[11.429699981230232,44.521290579160926],[11.430174634258924,44.521093118048775],[11.43095083268026,44.52079076762535],[11.431290727424829,44.5206465483238],[11.43136071005841,44.5205676734088],[11.430492207327335,44.519482830847394],[11.429658259195456,44.51843381133167],[11.427966374890671,44.51630533193266],[11.433586317497346,44.51447016199065],[11.434694903101136,44.514108374155676],[11.434662251143866,44.51406069065253],[11.434492978534841,44.51380998441208],[11.434193800173247,44.51336680989287],[11.433865307174724,44.51284268651015],[11.433575110932178,44.51235036986699],[11.433445066087735,44.512135402764784],[11.433184200156981,44.51176229973365],[11.43299564006417,44.51151417006002],[11.432732016197878,44.511167549091304],[11.432210509178178,44.510490104352094],[11.431433551943687,44.50950939752574],[11.431323014462993,44.50936957921462],[11.430004872339754,44.50768786237529],[11.429937668044255,44.50760272809906],[11.429863782149964,44.507509134345284],[11.429817623354156,44.50742951689793],[11.429822858492901,44.507347398371024],[11.429871401314069,44.507295165519345],[11.429930023070773,44.50722069313206],[11.429343539410903,44.50651013662671],[11.429275606200056,44.506674877319455],[11.429217527649621,44.506753196189806],[11.428848596952763,44.5068134087291],[11.428749749649926,44.50682954113199],[11.428447400704753,44.50697044808376],[11.427412906781651,44.5044374880305],[11.426955999929266,44.50327916276976],[11.42679040624326,44.50285078391124],[11.426714785161792,44.50265568374576],[11.426534488069784,44.50221572325125],[11.426397348567962,44.50198008260547],[11.426107064901574,44.50155786129413],[11.425023719552284,44.50191812338644],[11.424104200444868,44.50214258968477],[11.42397498839464,44.50163499625888],[11.423935785440104,44.501465801798794],[11.42384193141728,44.50106329983692],[11.423703511907078,44.50045235100038],[11.423460757231917,44.49939411068821],[11.423412883417125,44.49933807602368],[11.422911454312722,44.49937988824999],[11.422837026618385,44.499385968281885],[11.422600814833565,44.499396050940966],[11.422234352651047,44.4994117004401],[11.421834976065202,44.49941116512226],[11.421494731212059,44.499368316405416],[11.420541724699676,44.498061247906584],[11.42042753413087,44.497904586335615],[11.420374446507482,44.49783169883066],[11.420228346456636,44.497631287379846],[11.422581824491088,44.49713518203347],[11.42265466755574,44.4970994525654],[11.422529595383153,44.49695958913597],[11.419405786709167,44.493457969081504],[11.419549744160827,44.493392912684115],[11.419462862276578,44.4932724851435],[11.4188726557605,44.49245107170478],[11.418256111557852,44.49156953041661],[11.419025487713695,44.49131917326672],[11.420998518959143,44.490676438815484],[11.425048587520564,44.4899125635022],[11.425230290099572,44.49034627222377],[11.42544551604915,44.490859982876174],[11.425503440909063,44.491067872619645],[11.4255323249174,44.49117152972053],[11.42561366191599,44.49114411421355],[11.425803620264222,44.49107968019844],[11.427419886612528,44.49049786519043],[11.428257849402748,44.49021560264073],[11.427104290861742,44.48842336259593],[11.427057384270144,44.4883273629136],[11.426970792438675,44.48831988665631],[11.426819304710449,44.48827978388614],[11.426680114415156,44.48824515574565],[11.42648416044711,44.48825312305453],[11.42625794483981,44.48818084852127],[11.426086290135354,44.48809728903589],[11.425961879791032,44.48803522466515],[11.425888811935188,44.487997961436086],[11.425833991787353,44.48794566813101],[11.42563660060027,44.4877726301349],[11.425517173035155,44.48760300256988],[11.425393175595273,44.487436846936326],[11.425359840415242,44.48737697246922],[11.425304014270584,44.48727670092743],[11.425193743810146,44.48717945047303],[11.425118032135675,44.48710525247238],[11.425039290276803,44.486995934213915],[11.425001168280943,44.486891527937196],[11.4249244231578,44.48682669434463],[11.424955609013537,44.48674576554408],[11.425019120321316,44.486661031603546],[11.425308258635491,44.486412390108434],[11.425734523696145,44.48622947463321],[11.426096083032117,44.486021482277444],[11.42632265831195,44.48593227617431],[11.426712251225412,44.48574644378828],[11.426662840544427,44.48564484549563],[11.426484588251963,44.48547815195607],[11.426361214107873,44.48534574269872],[11.426318421726926,44.485299394722915],[11.426065451571997,44.48518829619041],[11.42568814595068,44.4850730984148],[11.425448092738305,44.48500786620903],[11.424915909781891,44.48491058178117],[11.424602205628885,44.48486998797718],[11.424155511057739,44.484844025113624],[11.42379502046395,44.48481229699118],[11.423198553991508,44.48479457789644],[11.422588284450987,44.48482328992217],[11.42249620815415,44.4848304194604],[11.422060984054948,44.48486261278924],[11.421745992566452,44.484885612691635],[11.420947323286644,44.484938562606615],[11.419966621617448,44.48494911146956],[11.419654250703939,44.48495247093121],[11.41916466466285,44.48495384825636],[11.418979486763332,44.485017971901286],[11.418523952036132,44.48504450828812],[11.418425733493608,44.485044677166314],[11.417888172096944,44.4850456025648],[11.417598935447138,44.48489306232997],[11.416983795767688,44.484794401015876],[11.416845904177155,44.484681134241015],[11.416689578432058,44.484549969399],[11.416484641570394,44.48426905206182],[11.416405477325103,44.484083928327244],[11.416381929718215,44.484027602465396],[11.416290320091056,44.483862216779045],[11.416180594884217,44.48366276535294],[11.416074285661267,44.483657698475305],[11.416003620044679,44.48354497833636],[11.415983297477313,44.48345257581252],[11.41597604100779,44.483250150549054],[11.415972958780177,44.48316415375629],[11.415998539394062,44.48310170528953],[11.416043634929188,44.482991616780396],[11.416000046600965,44.482907391054454],[11.415650797195116,44.48265165774869],[11.415224196789552,44.48248401006225],[11.414909098558818,44.48238996966514],[11.414658561438918,44.482355877416126],[11.414264605505283,44.482255060970004],[11.413949528583883,44.48218070010628],[11.413634350481297,44.48210353179029],[11.41333799935442,44.481949448561146],[11.413166650519198,44.48181161425276],[11.4130933253373,44.481752630152],[11.412872547477061,44.481630140473435],[11.412787259837993,44.481592045922916],[11.412713597936119,44.48155866585207],[11.412223321593526,44.481218504712466],[11.411982776090863,44.48106435400878],[11.411677102193057,44.48087445599135],[11.411371660213165,44.48069016698787],[11.41121005559346,44.48056361530876],[11.411024524761459,44.48046681726299],[11.41093456570474,44.48040832352989],[11.410857227841294,44.48035335223486],[11.410777565390179,44.4802848355947],[11.410617857974666,44.4801333156052],[11.410541881010195,44.48006347414718],[11.41038256462805,44.479916044315964],[11.410160591009937,44.47963997448628],[11.410040654480065,44.479532790228276],[11.409906355555803,44.479439408924335],[11.409763183060731,44.47928320761913],[11.409680333775817,44.47917973938862],[11.409528628725397,44.47895000968475],[11.409436106753096,44.4787831630262],[11.409279424656072,44.478623304140854],[11.409206254900118,44.47856408196619],[11.409029139247128,44.47843765826837],[11.408840147463204,44.47835631732111],[11.40874867192958,44.47831042376996],[11.408567389575715,44.478219669810564],[11.408479071579846,44.47817545406535],[11.408149823297716,44.47806142565132],[11.407948900448792,44.47800037136898],[11.407607894949892,44.477896749409446],[11.407121253247638,44.47773878896958],[11.406667553749116,44.477541296838375],[11.40655887576695,44.477482346260935],[11.406218255724147,44.47729757775872],[11.405973158923489,44.47714689507041],[11.405676973654717,44.47697646258773],[11.405580273168228,44.47690792504835],[11.40544466223896,44.476811726761575],[11.405181640937794,44.476643839455136],[11.404959591374501,44.476467219408796],[11.40486793897086,44.47639261267035],[11.404802717685529,44.47633546986679],[11.404429019156689,44.47601869331607],[11.404285640283055,44.475895121875524],[11.404068937524116,44.47563186169671],[11.403869641077828,44.47547709954479],[11.40377266600138,44.47540179379376],[11.403697644926016,44.475320433428486],[11.40358843958452,44.47520199839225],[11.40341310702347,44.47500819911859],[11.403334505290205,44.47483542875547],[11.403132043810073,44.47461238363766],[11.402906510260127,44.4744016411736],[11.402682217361056,44.47420212143802],[11.402665720100947,44.47414309119153],[11.402483831678829,44.473905848221506],[11.40233019150812,44.47364689102102],[11.40218432386334,44.47348172723822],[11.402072341925239,44.47331866793414],[11.401881133215028,44.47306330847982],[11.401768377570002,44.472919955919274],[11.401637502031596,44.4727561684111],[11.40156973861709,44.47267488617258],[11.401186009761998,44.47236195935473],[11.401039039247785,44.47224605996291],[11.400989212851698,44.47218071588856],[11.400939403593503,44.47213506400772],[11.400708925660414,44.47187997034157],[11.400560349941234,44.4717259225371],[11.400520147784038,44.47168364325506],[11.400457594540056,44.47162317396858],[11.400361658800822,44.47151567901433],[11.400319718530767,44.47147123064049],[11.400211415098621,44.47132103384052],[11.40008463950332,44.47116110041326],[11.400012462002213,44.47101070108305],[11.399917785439854,44.47086696742802],[11.399846126439044,44.47067154907189],[11.399828564161224,44.47060330978995],[11.399796582963397,44.47047904160052],[11.39973853426012,44.47027038629096],[11.39965363600766,44.47009719738426],[11.399507869438764,44.4699885220357],[11.39938131810597,44.46989417130796],[11.399254816709636,44.46976011463872],[11.399032338988157,44.46964213207376],[11.398656006356752,44.46937721977314],[11.398356601745835,44.469239406989885],[11.398079032528114,44.469195731130036],[11.397977085756155,44.4691867639182],[11.397542014695576,44.46914849464893],[11.397355893231248,44.46913158759273],[11.397261939758316,44.46911206318484],[11.39701011066754,44.46911071592551],[11.396776603928878,44.46915420838464],[11.396540636701342,44.469197089451306],[11.396413107660416,44.4692295914984],[11.396307812266791,44.46924037577637],[11.396225135998254,44.46924422957617],[11.39610411087725,44.469186003451014],[11.39583135891952,44.46910677074265],[11.395532136146185,44.46899489141564],[11.395406966383602,44.468928714249245],[11.39595128820011,44.46850447091584],[11.39635630300173,44.46820676945817],[11.396959304968687,44.46781263459783],[11.397141787795341,44.46770355643514],[11.397405656786498,44.467545570425166],[11.397720556171333,44.46740729829972],[11.398239603923464,44.467016603489036],[11.398339150117893,44.46693405373224],[11.3998276836293,44.46596709628034],[11.400228065956986,44.46571054520498],[11.40081777926875,44.46539600228434],[11.401021641008906,44.465289881925145],[11.401209179054494,44.46519614519394],[11.401322219335318,44.46514795892907],[11.401455256248665,44.46505851010221],[11.401629050172142,44.46494738754664],[11.401751075985429,44.46485761189177],[11.401882057597646,44.464756398351845],[11.402004813573797,44.46466547276632],[11.402128223732078,44.46457116821035],[11.402303808850787,44.464446507032655],[11.402467576585238,44.46434009355788],[11.402582022637914,44.46427636003636],[11.402879874234253,44.46412549158111],[11.403267218971815,44.463953603782855],[11.403379896576157,44.46389469142919],[11.403460094635673,44.46384827388981],[11.403403050745244,44.46381751486878],[11.40325119671978,44.46373563367337],[11.40295171493769,44.46338747156642],[11.402867228681233,44.46328122474885],[11.402718617030095,44.46308686156117],[11.402573123338138,44.46289187440398],[11.402475631788452,44.46273694272765],[11.402016812552246,44.462162016548675],[11.401724362312542,44.46227225233951],[11.40154420403176,44.46215113443808],[11.401415505797953,44.461886593280695],[11.401333851158617,44.4618508874358],[11.401277611103362,44.46173195237152],[11.401179221004544,44.461757083344615],[11.400596787099719,44.46207597995106],[11.400112767769068,44.46224651644742],[11.39965870089213,44.46245804442513],[11.398587379598636,44.46291548845346],[11.39843952807158,44.46284489477757],[11.396049492777493,44.464665166168345],[11.3958192434462,44.46458729089731],[11.39547193090933,44.46435545449684],[11.395313757749872,44.464195607309414],[11.395191060810296,44.464077215749846],[11.39508756330607,44.46408219518329],[11.39492940261713,44.46399943056243],[11.39471690691629,44.46385591366619],[11.394650725294673,44.463793718564624],[11.39430756573766,44.46314487811477],[11.394108323854221,44.46276813857821],[11.39387713318771,44.46266665427283],[11.392392361673197,44.462880072891764],[11.391706427954276,44.46249384822501],[11.390477606356646,44.46151019662806],[11.388965815945172,44.46127290425593],[11.388958722191148,44.46142609423259],[11.387591968111854,44.46150869714662],[11.388059110738121,44.462811015828684],[11.387259375537102,44.463043244145],[11.386364563947037,44.4616564633952],[11.38623395434006,44.46157422699184],[11.385688442024792,44.46152880366828],[11.385055687325448,44.46130852612609],[11.384522534293055,44.46118013181567],[11.383751158147188,44.46066172603445],[11.383633481846344,44.46041493378849],[11.383579585466883,44.46032603401588],[11.382967768709229,44.45992469910388],[11.380339669886778,44.460891106470775],[11.38018900999557,44.460946489455196],[11.380061785012847,44.46088950076885],[11.37995216812109,44.460840586323116],[11.379731894417464,44.460794536837156],[11.37938588872424,44.460774600254766],[11.379186714251771,44.460679309143465],[11.378843939976743,44.4604799616746],[11.378449009889614,44.460369474492886],[11.3779951440282,44.46029734654243],[11.377360312259043,44.460218294587314],[11.377061153829155,44.46012549970471],[11.37644766117399,44.46006906499905],[11.376106297907203,44.46000077917173],[11.375747525633505,44.45985182997933],[11.375570931576808,44.45973959640304],[11.375388830115014,44.45954983646918],[11.375298746246424,44.45940148622496],[11.375229457689684,44.45924256927357],[11.375159386542311,44.45913946326892],[11.375113328594162,44.45907169411072],[11.375092325656686,44.458979856209105],[11.375160592067664,44.45872636845487],[11.375286838464636,44.458352401287094],[11.375306920595245,44.458169682385545],[11.375268321779574,44.45807033629247],[11.375337014220332,44.45780783989353],[11.375311255856015,44.45765701679096],[11.375179800270589,44.45743751122861],[11.375137609215974,44.45738493948035],[11.374978153445921,44.457307798674066],[11.37489236173316,44.457148666673],[11.374930969777523,44.45689973904119],[11.37494948626059,44.45669792005403],[11.375057121476425,44.45646556451917],[11.37512612336993,44.45630771130614],[11.375224762822084,44.456144175750055],[11.375332769385894,44.45586342010387],[11.375391587718854,44.45564783142237],[11.375517170412127,44.45521929102268],[11.375616738334028,44.454788485821155],[11.37559916916903,44.4546459337924],[11.375516092141112,44.45437927928215],[11.375303484850683,44.45428917879295],[11.375150079218091,44.45412864597915],[11.37506985145702,44.45389344005509],[11.374947212445953,44.453736201747304],[11.374854571768038,44.45365991849745],[11.37444672705512,44.453656019013884],[11.374369729243623,44.453655370902204],[11.374225598360802,44.45362548854621],[11.374037844157417,44.453587439784094],[11.373916271152158,44.45356242899103],[11.373831744185747,44.453543835169086],[11.373633514504586,44.45349569769079],[11.37362355427473,44.45321120461469],[11.373632907293038,44.45272488506719],[11.373966980224303,44.45240117146079],[11.374157509793752,44.45231505892959],[11.374415965972613,44.451618191095314],[11.374142859851693,44.45019024509923],[11.373548881876218,44.45006981323938],[11.372259836246979,44.44946645021882],[11.371259677318061,44.44914908047322],[11.37050494805198,44.44882153818098],[11.370392831542139,44.44872934160413],[11.370214108272439,44.44868016021292],[11.369939758993402,44.44886871485795],[11.369705736266747,44.449024932468],[11.369531233642263,44.44907975482419],[11.369327658657275,44.44909579683007],[11.368956538903731,44.449261041173656],[11.368807434523035,44.449439109619554],[11.368502542109786,44.44980497029704],[11.36807970187035,44.450147960579834],[11.36772187671784,44.450253840846436],[11.367007377611893,44.450474591796215],[11.366856534518362,44.450483673633684],[11.366765254874108,44.45048916983166],[11.365871549123632,44.45074569633174],[11.365478128156907,44.4509428997653],[11.365240587059995,44.451051356087454],[11.36517888307743,44.451079633524074],[11.365022827738146,44.45112345478265],[11.36466706529187,44.45122358783352],[11.36327386983136,44.45192520381132],[11.363106904087038,44.45184161296966],[11.362937265656427,44.451725561609166],[11.3627921804279,44.45160362467992],[11.362636861899817,44.4514248586546],[11.36240653948639,44.45114773292457],[11.362196367723724,44.450922524020214],[11.3620620975804,44.450767760321874],[11.361917369452808,44.450645846377896],[11.361728449534558,44.45049953012091],[11.361493125288824,44.45031254033245],[11.36134207565136,44.450189631126456],[11.361258713339726,44.45010920541076],[11.36119444360373,44.45003457563671],[11.361138308084772,44.44996709559321],[11.36101940365843,44.449823263061205],[11.360937859308704,44.449729298672985],[11.36084831199071,44.44965125926042],[11.360751267376598,44.449562683626695],[11.360582968697855,44.44942099650823],[11.360395003947051,44.44927016248092],[11.359944654968125,44.448920502844814],[11.359842882563745,44.44883145611678],[11.359738354865833,44.44873234220227],[11.35967698419798,44.44861263444056],[11.35957045755125,44.448405537003595],[11.359519452464083,44.44830924878178],[11.359436132681454,44.448151746243596],[11.359345719807584,44.44797413133541],[11.35922936848981,44.44776666586573],[11.359187120326803,44.44771625707078],[11.359120014726873,44.4477495059493],[11.359050759586971,44.44776866820799],[11.358883242613699,44.44769003740469],[11.358815395654734,44.447658190066875],[11.358748885378445,44.44763297771423],[11.35869292731478,44.44760107909485],[11.358714882255214,44.44724897531806],[11.358746614492798,44.44702269352004],[11.358644600502194,44.446243320030746],[11.358574868659623,44.44605399088572],[11.358425736380156,44.445988106774415],[11.358221719240381,44.44598307886483],[11.357821792904307,44.4460127673496],[11.357633641420824,44.44602673425323],[11.35742741795831,44.445996109966075],[11.35713204238402,44.4458969916677],[11.357077541825518,44.445849407044044],[11.356990392677789,44.44577331625472],[11.35689480079591,44.445603124284126],[11.356706101869268,44.4452660511712],[11.356432213907958,44.44474045604263],[11.356307987212656,44.44461398136111],[11.35622486175213,44.44452935009614],[11.35612601985478,44.444484524817874],[11.355905663081884,44.444384588605125],[11.355355684307263,44.444197856883086],[11.355211340470369,44.44414909846528],[11.35487309503115,44.444077309496116],[11.354647531158452,44.444053829106],[11.354447594408128,44.44408158690229],[11.354082783094599,44.44402015338338],[11.353761647717812,44.44395675676784],[11.353666769434332,44.44390188831011],[11.353571596132445,44.443761500695594],[11.35347836493687,44.443503089770836],[11.35344366361085,44.44320655520778],[11.353413936496963,44.443101949324834],[11.353415142984158,44.44299502676736],[11.353290229472076,44.443052732404574],[11.353003779018557,44.443042351924994],[11.352745962873783,44.44303300909928],[11.352640702154009,44.44303236165155],[11.352332795491561,44.44303139973921],[11.35205955658072,44.44303308778537],[11.351910494674486,44.44306759164007],[11.351812084876757,44.44308995366164],[11.351499085330536,44.44317741752744],[11.350766807162705,44.4432418721167],[11.350631171359094,44.443253809761174],[11.350477514829622,44.44331458433098],[11.350324751033446,44.44337500452479],[11.350222055518259,44.443415138558464],[11.349530607975526,44.4434823923386],[11.349130645952128,44.443477123697996],[11.348807671469723,44.443414003029936],[11.348614369491145,44.44345061375053],[11.347348799842305,44.44208100493246],[11.346565740737754,44.44197078112976],[11.346204623227493,44.441950753653884],[11.345948208477187,44.441807922752275],[11.345752678622924,44.441631898871584],[11.346966001243443,44.44039557253041],[11.347395160747158,44.44048296666537],[11.346815389666864,44.43922329965182],[11.346994798604568,44.438604634001166],[11.347119103033597,44.43841416186164],[11.347119393781231,44.43820597152454],[11.347088114961808,44.437895471934866],[11.347157944280859,44.437717360119336],[11.347231063023816,44.43758251534445],[11.347224209959707,44.43748981387963],[11.347192591003525,44.43735825605852],[11.346201644817869,44.43713385785064],[11.345435913468288,44.43695548483939],[11.344322723319415,44.43696428478652],[11.343817055685758,44.43696566759566],[11.343542175045943,44.43694542742885],[11.343283968672365,44.43698842899739],[11.342986878007109,44.43708061043016],[11.342801930409268,44.43708489686861],[11.342593274211543,44.43697784563979],[11.342368440460664,44.43683448451066],[11.342014011580755,44.43669039688523],[11.341812446598121,44.43653924913949],[11.341598416387447,44.43645203502757],[11.341467724600312,44.43663802841328],[11.341326492755517,44.436739392237214],[11.34088346859878,44.43685425298434],[11.340312055062668,44.43695936953485],[11.340220615139266,44.437226253320205],[11.340125286831821,44.43737561601572],[11.33988871238081,44.43756726647626],[11.339650836311122,44.43776569219867],[11.339524098285722,44.43783693185819],[11.339311715709828,44.43804440121923],[11.339165134480634,44.43811042242575],[11.339049912155867,44.438174674706985],[11.338905435441829,44.438214768833305],[11.338650986203618,44.43831281436602],[11.338325783529408,44.4384286353449],[11.337744971638909,44.43865321568007],[11.336679404600336,44.43904974944846],[11.336559980062537,44.439146718825015],[11.336397711544725,44.43942967444019],[11.335430515055497,44.43957999020402],[11.335333929188,44.43914254864366],[11.335298490759188,44.43898235710356],[11.335185029536978,44.43883501998595],[11.335154528889914,44.438621266791216],[11.335092373669319,44.43852878569385],[11.334926617544674,44.43828215323873],[11.334821305051051,44.43822073247018],[11.334511269701293,44.43824451437455],[11.334375875840848,44.43821690011282],[11.334342021867096,44.43815570016591],[11.334367992745454,44.43801901088277],[11.334298462948041,44.4378111229649],[11.334153076208395,44.4377296949241],[11.334040944256946,44.437713988288365],[11.333862534256655,44.43755277724062],[11.333641035494876,44.43720527657511],[11.333535709311116,44.43711313698048],[11.333446947362154,44.437035762887234],[11.33339187009882,44.4369137352985],[11.333363406762942,44.43685066939772],[11.333282765225988,44.43669927549728],[11.333243425468936,44.436651211972794],[11.333120154282195,44.43650060643239],[11.33309804794344,44.43635927440892],[11.333009614854467,44.43622885664118],[11.332978977257733,44.43611020758496],[11.332879885773195,44.4359720404297],[11.332731351745384,44.4357884609726],[11.332650920742507,44.43568823631253],[11.332597116569561,44.435572232797135],[11.332494502034873,44.43546426103933],[11.332388339452311,44.43533794011296],[11.332399827009946,44.4352251729757],[11.33249806426549,44.43505662178491],[11.332467655766097,44.4349629107788],[11.332331803337054,44.43481526842134],[11.332645172661946,44.43458447853293],[11.332683923318022,44.43452204921427],[11.33270365243533,44.43446708444543],[11.332663608273434,44.43434262020069],[11.332702799027247,44.434239767498255],[11.332729728908353,44.43416909316633],[11.33268431775484,44.433947818073214],[11.33264526770941,44.43386192580141],[11.3326303636768,44.43378346402148],[11.332570319554641,44.433655839857714],[11.332767752247312,44.433526339345185],[11.332814540527789,44.43343928985811],[11.33279089514243,44.43337789069081],[11.333018098151808,44.43325029484364],[11.333189467586896,44.43324824001318],[11.33330699806958,44.43321701577812],[11.333412778395173,44.433258838356274],[11.333491237394867,44.43333600091757],[11.333610545577427,44.43332626292334],[11.3336948691722,44.43328625290439],[11.333777021625732,44.43329527546408],[11.333851379414643,44.43328650117326],[11.333906270162617,44.43324452074941],[11.33448384793072,44.43325888162703],[11.334536469631233,44.433318005325575],[11.334638872253374,44.433315094593254],[11.334781044293344,44.433208920600215],[11.334890586635279,44.43318494028353],[11.335033103754558,44.4330906636651],[11.335236656542373,44.433005026523155],[11.335405499553174,44.43303635496047],[11.335513304218434,44.43304202382657],[11.33557756749854,44.43301748110813],[11.335920406097562,44.43301525105664],[11.336095773027909,44.4329703397492],[11.336401817334375,44.432946937706205],[11.336576732819857,44.43285709051239],[11.336814289640575,44.43283137747912],[11.337407638305809,44.432687570972526],[11.33764163707307,44.432676626356],[11.337784862809455,44.432704076384724],[11.33802649177288,44.43267241418286],[11.33835019655972,44.432580852776745],[11.338538488159825,44.432600865507666],[11.338620357153541,44.43260593834054],[11.338700466139603,44.432607520038836],[11.338660015370019,44.43247796635696],[11.338562006964684,44.432343815850444],[11.3384516363846,44.43217559241191],[11.33841231886966,44.43207568096715],[11.3383937125199,44.43188476059123],[11.33831768794487,44.43171133406538],[11.33825417667527,44.43155622669122],[11.338152830534707,44.43141707673807],[11.3381845784416,44.43128757536861],[11.338241344664834,44.43111649537474],[11.33830126677924,44.43096504251835],[11.338331185655036,44.43082938672536],[11.33830681485247,44.43067121891685],[11.338316432343289,44.430577630289996],[11.338253033360598,44.430385936700496],[11.33812932167796,44.43015834356559],[11.338294255038003,44.42992315661237],[11.338275445060226,44.42982564096831],[11.338216492288074,44.429725573461326],[11.338332758511921,44.42962866692778],[11.338278300782415,44.42942498174661],[11.338247775476564,44.42928943871699],[11.33811926523546,44.4292566294106],[11.338045987320006,44.429171479584504],[11.338001552889315,44.42909168415455],[11.337976338413588,44.42898048005448],[11.337982700283714,44.42886444134108],[11.337972113438287,44.42877372416325],[11.337963826568767,44.42866677718936],[11.337872348567588,44.42857806684371],[11.33779725992247,44.42853521203344],[11.33763682496398,44.42848048967434],[11.337527152846135,44.428447284933405],[11.337420178288895,44.42840334172039],[11.337323605993626,44.4283512408171],[11.337152528964682,44.42826759674168],[11.33693146914336,44.42815846270186],[11.336722398532933,44.4280744092348],[11.336547788886273,44.42800764851623],[11.336361694672703,44.427928748794955],[11.336222393034186,44.427880957668826],[11.336080774383847,44.42783403210398],[11.335960286771439,44.42778617073143],[11.33586321620607,44.42773414899916],[11.335752226961816,44.427658084821296],[11.335598676369516,44.4275583859303],[11.335512549184203,44.42751606063106],[11.335374439197407,44.42744818946465],[11.33514065010517,44.42735451377732],[11.334892678039006,44.427259435250775],[11.334690923903938,44.42718141033559],[11.334589464212476,44.42713735256688],[11.334455285302722,44.427060762996284],[11.334396318579604,44.42699950935106],[11.33429517061867,44.426893732667125],[11.33420429829638,44.42680317407683],[11.334129571397067,44.426728703850635],[11.33403337900851,44.42665921236208],[11.333922825960833,44.42660408963062],[11.333794622085383,44.42655888547926],[11.33368851225266,44.4265248299997],[11.333623253716226,44.42649786323861],[11.33355620010113,44.42646698378607],[11.333413610563666,44.42641531427683],[11.33316768288239,44.42633200762905],[11.332893621426186,44.42625208233608],[11.33275886679084,44.426219952722874],[11.332612835763792,44.42620043705381],[11.33244206427199,44.42619041738231],[11.332231815922372,44.42615533020654],[11.33210426157676,44.42612642771233],[11.331905470710215,44.42608322967784],[11.331720707741617,44.426037486969605],[11.331541297866403,44.42598770148546],[11.331379040395369,44.42593531482563],[11.331197580008855,44.42587375323767],[11.33104005112208,44.42582182858001],[11.330877873929094,44.425771122112586],[11.330722659413725,44.42571802446101],[11.330483128361037,44.425598014596645],[11.330307282803943,44.425499762045796],[11.330100571781443,44.42537569740756],[11.32984137227327,44.425234695261175],[11.329581450392043,44.42509539881237],[11.329307228470569,44.424991276921716],[11.328834310173443,44.42482650870404],[11.328610979137405,44.424738221019254],[11.328314632526872,44.42463061579158],[11.328068142944092,44.42455236711528],[11.327942083649615,44.424521746916795],[11.327660611290735,44.42449203594952],[11.327329279022297,44.42445209050363],[11.327040747625011,44.424343197328795],[11.326364060373912,44.42389055363533],[11.325942215906025,44.42366677244153],[11.325793264853077,44.42363267682744],[11.325650657510149,44.423600128928655],[11.325217557781688,44.42362695974256],[11.324757682229885,44.423691459166044],[11.324339484516377,44.423759254650584],[11.324123173212227,44.423758032225],[11.323813851776185,44.42374780896334],[11.323569417014223,44.42371105116613],[11.323240440397043,44.423661579862994],[11.321785933907798,44.423272561035205],[11.320396232626447,44.4228546392497],[11.320222759331486,44.422776014708255],[11.319958187845089,44.422498381595865],[11.31980456566284,44.42236076088798],[11.3196985190122,44.42231707561067],[11.319479530040628,44.42226673218932],[11.319329129755722,44.42223157097429],[11.319167316281941,44.42219374175296],[11.318843122835691,44.42211536820135],[11.318755730059797,44.422109264444344],[11.318292333244461,44.422143996986996],[11.31789281337407,44.42216617589246],[11.316867699988748,44.422251127547376],[11.316684827112322,44.422264887333505],[11.31596673195059,44.42231891807431],[11.315887971008847,44.42232504770737],[11.315731929240057,44.422337190362676],[11.315639022297512,44.422348493280545],[11.315369974923858,44.422380526434864],[11.315182468601169,44.42239953526174],[11.315029310257021,44.422377881993214],[11.314884929268413,44.42234030173825],[11.31469833245033,44.42224730959973],[11.314564196304206,44.42217069566795],[11.314381238019967,44.42207110789845],[11.310433610633126,44.42467545001488],[11.309835078802399,44.42506664571544],[11.30973987686956,44.42510870013231],[11.309419753741953,44.425246801586006],[11.309169894933001,44.42550110705256],[11.308863520791764,44.425576512527286],[11.308782551751218,44.4256338506215],[11.30862088075655,44.425814912090296],[11.308402495970954,44.425971813525706],[11.308076019702293,44.42613483225546],[11.307871778276185,44.42627174497672],[11.30774276925555,44.42638519587561],[11.307581900645417,44.426427263390245],[11.30740022962285,44.42651927871098],[11.307204652538077,44.42669709122405],[11.307003374335256,44.4268896429981],[11.306599912440445,44.42715154621848],[11.306045823873156,44.427364266151606],[11.305827215511405,44.42732864108714],[11.305515332319034,44.42733698828503],[11.305398185164341,44.427340122908376],[11.30533413729341,44.427407526289954],[11.305236835275908,44.427509923672766],[11.304974202065216,44.42766647060188],[11.304827939561951,44.42775365368095],[11.304572454447598,44.42790593946889],[11.303937488092497,44.428054999197464],[11.303598981528522,44.42818946362759],[11.303396489711448,44.428291449635154],[11.303151650164484,44.428334656918665],[11.30290566328773,44.4284088199381],[11.302771624691973,44.42851449135862],[11.302633507560998,44.4286765116306],[11.302568607873754,44.42875247389999],[11.302329353145838,44.428889129518545],[11.302218303393158,44.42890608620956],[11.301861958602343,44.42902346398274],[11.301701966023513,44.42913663701968],[11.301555180174931,44.42922939261907],[11.3014749615455,44.4292536743032],[11.301375939667667,44.42928364820748],[11.301381852436586,44.42940817340262],[11.301358523709258,44.429540000270755],[11.30131012347485,44.429598789326285],[11.301239352326352,44.42968475381734],[11.301238416644042,44.42976073124249],[11.301339745037378,44.42984196429277],[11.301546429067331,44.43002628144726],[11.301634808648352,44.43021749280884],[11.301716377746596,44.43027492277687],[11.301740197978132,44.430341959514934],[11.301787600121635,44.430469287788256],[11.301837933546054,44.43065113211356],[11.301831593611547,44.43078967797088],[11.301540641403587,44.431018911475114],[11.301493430937676,44.431096379970555],[11.301486381842162,44.431256881616726],[11.301464730629137,44.43132540227107],[11.301272250932497,44.43142267332774],[11.301164028324964,44.43152613985577],[11.300964415061319,44.43162187164069],[11.300920765824742,44.43169026842681],[11.30087745135451,44.43177007617584],[11.300757243689832,44.43186517309078],[11.300650165388674,44.43189771506512],[11.300564826849959,44.43190922407146],[11.300439267809194,44.43192615634064],[11.300165614264841,44.43193617078813],[11.300027699127352,44.431983399732545],[11.299806232826157,44.43211639493642],[11.299640336302005,44.432181165616335],[11.299573880626998,44.432204660075485],[11.299408660148394,44.43225638044387],[11.299254287474504,44.43230449809115],[11.299164505102613,44.43231756474194],[11.299090829196789,44.432401189937366],[11.299020798218194,44.432437484552715],[11.298936229693211,44.43252358771059],[11.298856193726886,44.432625350105575],[11.298743051717087,44.432743537763244],[11.298593115570092,44.43288496583133],[11.298334439478229,44.433056715455635],[11.298184871071395,44.4331671943793],[11.297999454804222,44.433264884846956],[11.297910331592721,44.43335502196601],[11.297942732244076,44.4334459573298],[11.298027532218684,44.43352033037785],[11.298046108724503,44.4335936652553],[11.2979957794407,44.43363181142826],[11.297880850097826,44.433662331161365],[11.29776885294311,44.43369207877084],[11.297636497582422,44.43364360828722],[11.297506346048266,44.43362590395875],[11.297397787887045,44.433701239387716],[11.297365649457142,44.43380259403738],[11.29729745191719,44.43394352591985],[11.297065418809266,44.43403835215267],[11.296696031421256,44.43412834514951],[11.296403182512472,44.43416967795003],[11.29611514998579,44.434213729970786],[11.295837425241851,44.43430417750787],[11.295662587991444,44.43431170048738],[11.295574161496045,44.434175101211736],[11.295410317788381,44.4341018701064],[11.295335626169573,44.4340994396837],[11.295235466184655,44.43415254835072],[11.295050471150633,44.434148164612914],[11.294654494653743,44.43415139122234],[11.294504965698888,44.43425022353318],[11.294483038721921,44.434365271804474],[11.294400541194378,44.43442431290119],[11.293871888618607,44.43441974522471],[11.293694005564548,44.43446946114777],[11.293554547899577,44.434557789326774],[11.293347734840001,44.43453043497223],[11.293392492374878,44.43436974349823],[11.293391351613792,44.43422461646717],[11.293390715386707,44.43414359518239],[11.293333065254068,44.434074977647995],[11.292994816678151,44.434040138905026],[11.29306299759129,44.4339560608854],[11.293201421992945,44.433861571218166],[11.293358865410926,44.43371099074439],[11.293470977172326,44.43356583007843],[11.293571060178314,44.433414709227804],[11.293692890542117,44.43327722836746],[11.29379472277884,44.433050122637795],[11.293783598196848,44.43294625337193],[11.293813015061794,44.43287533835379],[11.293945627692658,44.43273257221906],[11.293974273777483,44.43264197092228],[11.294165965218744,44.432403493181134],[11.294630963391285,44.43146465095759],[11.294631427112975,44.43131609862798],[11.294646724725158,44.4310648576586],[11.294615308901738,44.43092426325303],[11.294630001459842,44.430757983678696],[11.29467220799925,44.430512383743505],[11.294540160585338,44.430188135939495],[11.294697806099588,44.429796001848736],[11.29469355402741,44.42969360860671],[11.294630142464694,44.429540795599536],[11.294577558138434,44.42939873614143],[11.294553668336473,44.429189159027466],[11.29454698029367,44.4291184023237],[11.294516104799504,44.428991863225505],[11.294461390113666,44.42893783049553],[11.294424214891139,44.428770342772786],[11.294395653167529,44.42862237465],[11.294320869124993,44.428517256025124],[11.29418023376154,44.42855524482052],[11.294035254221399,44.428562100443216],[11.293736669545739,44.42849664096134],[11.293627480244673,44.42835480101871],[11.293438966876437,44.42811214518802],[11.293358785191408,44.42798941404969],[11.292880716434311,44.42783134028766],[11.292513496304021,44.42785729175113],[11.292121406906277,44.427910172395414],[11.291656164232393,44.4280601715418],[11.291398313298204,44.428092356397975],[11.29098358817579,44.428088305317964],[11.290818466823008,44.42810231105665],[11.290644799330407,44.42811873773632],[11.290517227546967,44.42814942181996],[11.290360856400403,44.42806591745303],[11.289979715878257,44.4279165789642],[11.289508588802416,44.42779549388417],[11.288032619225465,44.42753757157087],[11.285856865723183,44.427193493588646],[11.285296500330496,44.42709893808866],[11.28370583977673,44.42683875079769],[11.283257800571063,44.42676557127067],[11.283566459213814,44.427402783400616],[11.283567554971045,44.42747503180929],[11.283568412766511,44.42754368671995],[11.28357486835769,44.42793122680825],[11.283579436184404,44.42818938711988],[11.283582938097402,44.428944396430985],[11.284354264024692,44.43203422143133],[11.284918383167497,44.433090279288834],[11.284933477192395,44.43363856373424],[11.285055251108668,44.43794995335826],[11.2850712329301,44.438641695047515],[11.284118485098148,44.439967233947925],[11.28351496806555,44.43999787420663],[11.282062645119204,44.444266469337826],[11.283148583111318,44.44694039973129],[11.283501397137403,44.44789153793161],[11.284768093134293,44.45139827479629],[11.284645675199762,44.45175488496605],[11.284593024761051,44.451875747489154],[11.284726263224556,44.45265347409373],[11.285376681241344,44.45384454131697],[11.28579389030649,44.45460924781078],[11.286021267652924,44.455161712074045],[11.286119459713303,44.45554403835266],[11.286151583603182,44.45560246940189],[11.286576174542525,44.45595462524306],[11.286858288466298,44.45668154176383],[11.28689223750703,44.45682658640226],[11.287255916584359,44.45823379343244],[11.287313131224101,44.45947722320517],[11.287554733997007,44.459930373993856],[11.287534561359859,44.460097887065245],[11.289077924216697,44.46027006731088],[11.289165440988468,44.46055919543016],[11.289333410140564,44.460394910048265],[11.289598984378056,44.46045597527706],[11.289791415764585,44.46057534156539],[11.289916075706206,44.46064935740673],[11.290162496548142,44.46070293116755],[11.290333385573414,44.46069331092779],[11.290628452458202,44.46076559852271],[11.290787819726559,44.46080290848079],[11.290895393161417,44.46090202528309],[11.291006105785096,44.46096057021088],[11.291156812479159,44.46097723732761],[11.291280822587346,44.46097419020014],[11.291910383183351,44.46114216016382],[11.29210422761209,44.46117709354103],[11.292328270102455,44.461321128222025],[11.292598297465508,44.46141586483918],[11.293145267177168,44.46156072834384],[11.293180356113558,44.46163429015407],[11.293084847058452,44.46170316726527],[11.292824329566141,44.46197171690155],[11.292761498373318,44.46225317870862],[11.292805606106393,44.462296175667525],[11.292936048814502,44.46303906432792],[11.29259848222964,44.463346860997454],[11.292301555817472,44.463521058699044],[11.292227536554488,44.46355515690296],[11.291953653210737,44.463672643440475],[11.29190126485496,44.46371926961778],[11.291828060145107,44.463936231152545],[11.291714603660399,44.46405686720062],[11.291634635150459,44.46411829853875],[11.29157111343409,44.464154575703795],[11.29149536347864,44.46418800508885],[11.291420831414191,44.464220757307274],[11.291329681951636,44.46426525619203],[11.291086674732842,44.46452557235602],[11.290950221337066,44.46471286341114],[11.290926381826846,44.46480617130418],[11.290767888053221,44.46497196033093],[11.29062034562425,44.46513696224168],[11.290541255620678,44.46528427464],[11.290386901235998,44.46565647221848],[11.290227527654567,44.466020886013375],[11.290175124435606,44.46622786140594],[11.290157793979875,44.46660855983648],[11.290048421249368,44.46714639508948],[11.290135705252286,44.46718852689841],[11.290180013050746,44.467236588244106],[11.290199806364464,44.46740105012193],[11.290290942363328,44.467421163126495],[11.291328332592057,44.467227054069376],[11.291447779267866,44.467247721391445],[11.291640613855781,44.46856100984423],[11.29262504438915,44.46880006080719],[11.292621178681172,44.46888172123573],[11.291597951197527,44.469237598909864],[11.291734391745992,44.46943122699023],[11.29219821537286,44.46971843089341],[11.293336811117584,44.46980207665243],[11.293698735214344,44.469732741303446],[11.293724466302205,44.46978793975986],[11.29369437056108,44.46997135132248],[11.293670700936639,44.47010014621333],[11.293626487369783,44.470307347410674],[11.293430126341796,44.47075821260885],[11.2932849707915,44.4710041953998],[11.293122346787063,44.4712068630713],[11.2930001857287,44.47135910498371],[11.292817608594522,44.471554954026594],[11.292774050983583,44.47160128976071],[11.292615348103775,44.47178227773818],[11.292086533869645,44.4717822047],[11.292120810458254,44.47173228090263],[11.292486452769676,44.47119971721589],[11.291241134637477,44.47069580918559],[11.291099629901579,44.47093948424918],[11.290831442855247,44.47131452391945],[11.290649056859934,44.47153310826087],[11.290519154009793,44.47156666483465],[11.290472639869476,44.471723448345834],[11.290520049907828,44.47235266320072],[11.290570188652014,44.473031330655495],[11.291087921991327,44.47300912457487],[11.291310554706577,44.472995656535865],[11.29167656874498,44.473091834442855],[11.291344060013934,44.47379112421066],[11.291433812479358,44.473815773312964],[11.291414673164908,44.47388873159114],[11.291363772581525,44.473973595607326],[11.291227185180356,44.4741980204544],[11.291090492012344,44.47435942103225],[11.291039142469748,44.474472985238634],[11.291534954856772,44.474452341451844],[11.29170963965587,44.47445840152271],[11.292005293657077,44.47471409515541],[11.291694300877158,44.47490172315469],[11.291469963483335,44.474919521174954],[11.291415064257928,44.474882365057525],[11.291217099765001,44.47490909645278],[11.290821966464124,44.47544903447325],[11.2906329739831,44.47557941768035],[11.290343415699635,44.4757308429195],[11.28964731548123,44.47585637361806],[11.289366076167058,44.47601668946121],[11.28896800008094,44.47630655479908],[11.288941614772849,44.47647588472227],[11.288965045941223,44.47669315512445],[11.289178416294822,44.47708554347975],[11.289384842409646,44.477480877602524],[11.289860537687455,44.477411921233106],[11.290245377045133,44.4773324282117],[11.290763005041617,44.47731538943891],[11.291284408788453,44.477404779966285],[11.291482033234688,44.47733527442355],[11.292283408652533,44.47696978614049],[11.292414698837012,44.47686580061192],[11.292536079027828,44.47690000343102],[11.292787900155197,44.47708962128537],[11.292796978042812,44.477160896732634],[11.29270952910013,44.477275744831495],[11.292412743774012,44.47762322907675],[11.29210628914082,44.47776441581764],[11.291962841363658,44.47785394607517],[11.292061561370524,44.47808715606028],[11.291444577827862,44.478285207290185],[11.291359998299384,44.478352739030576],[11.291124317815632,44.47841486104605],[11.291139660207195,44.47858616175697],[11.291586584960209,44.47890127288671],[11.29179387359978,44.47915761092093],[11.292032243087544,44.479364940632905],[11.292196549076811,44.47950680854079],[11.292236168905767,44.47963542139582],[11.292314179834184,44.479741321060054],[11.292699125568612,44.47995864856366],[11.293089256644091,44.4802681453123],[11.292630178309723,44.48036501179881],[11.292631705073221,44.480203627095385],[11.291901961261466,44.48014792553275],[11.291283584288998,44.480656051034046],[11.29163871010654,44.480974696798725],[11.291169090043681,44.48150513000223],[11.290905921121652,44.481668520327375],[11.290544299859615,44.481926718379235],[11.290396201406182,44.482078221892245],[11.290752270140416,44.48222017638277],[11.291189588280327,44.482289608473444],[11.29146521345909,44.48228407613176],[11.291503628899536,44.482341821889875],[11.291276538067653,44.48259337954403],[11.29158364949773,44.48271943921217],[11.29188378387264,44.482897964111615],[11.291913039940686,44.482982618803575],[11.291867485927883,44.483163857051245],[11.291844252223493,44.483272914883585],[11.29183577472374,44.48337773434274],[11.291851761658876,44.483464621547014],[11.291869293091027,44.48353122792311],[11.291955346643919,44.48362120773894],[11.292024460713376,44.4836400788989],[11.292143597288975,44.48363206215159],[11.292322622190463,44.48360765038184],[11.292419418310027,44.483593723618775],[11.292498866171735,44.48357260302438],[11.29256926963712,44.483544181285],[11.29268108906762,44.483489610495724],[11.292813889347201,44.48340873472993],[11.292913733339493,44.483329646060035],[11.293067916778659,44.48319264134538],[11.29316704823631,44.48311525019829],[11.293262922079517,44.483054816358724],[11.293330008379671,44.48302196052708],[11.293452575427393,44.48298123108531],[11.293888034928788,44.48288246560942],[11.294348652834612,44.48276553927856],[11.294597058523587,44.48280575698221],[11.294874099218864,44.482976295821764],[11.295453386858904,44.482877998857354],[11.295496294384211,44.48299022769465],[11.295553890054313,44.483196128256736],[11.295599074234474,44.48332630960439],[11.29569670875835,44.483551096588776],[11.295752650078676,44.483594979569524],[11.295887158525128,44.48363784865527],[11.296166121128575,44.48371720530599],[11.296311839518117,44.48374521513928],[11.296450026105772,44.48378181867692],[11.296586839724299,44.483823516172905],[11.296811346370433,44.48387694902312],[11.296898966643715,44.483906694175026],[11.296997174984522,44.48394579297301],[11.297113898468881,44.48395638596893],[11.29750433709345,44.48401211197708],[11.297685367058822,44.48403884761628],[11.297733384042077,44.484180792923],[11.29775737102565,44.48431140995344],[11.29778624812392,44.484456265635124],[11.297763619705758,44.48453070845485],[11.297730574646314,44.48460958122363],[11.297703688015151,44.48468552310348],[11.29768325585421,44.48480577499847],[11.297678600479141,44.48490714386123],[11.297674904065524,44.4850332506907],[11.29767284021387,44.485200958569564],[11.297666303481797,44.485334439644554],[11.297664578749659,44.485390743334484],[11.297661148390617,44.48552359293528],[11.297654430426945,44.48561262871828],[11.297655188970849,44.48569194635572],[11.29765074166718,44.4857989347625],[11.297649692862407,44.48587209698275],[11.297651109358274,44.485928335642576],[11.297636712490162,44.485982074859386],[11.29762178079193,44.48604201663083],[11.297612206426237,44.48609847650461],[11.297601874864238,44.486155508860534],[11.297599657509101,44.4862590828094],[11.29762830697748,44.48636821738525],[11.297651962109734,44.48643020022754],[11.2976639890747,44.48649634932272],[11.297659134074298,44.48662241372471],[11.297615579107193,44.486684681652186],[11.297401948742653,44.48692867233551],[11.297196920258589,44.48716032108439],[11.297118766314025,44.48721261552313],[11.29703262347986,44.48727087805354],[11.296809831375267,44.48752179289458],[11.29675706810849,44.487579122542314],[11.296681685561653,44.487661095558956],[11.296369685068086,44.488002146668926],[11.295811243410906,44.488632851557036],[11.296010975501275,44.48872532487491],[11.29599311393537,44.48882105641361],[11.295928548558573,44.489178507132294],[11.295837414774226,44.48962033064942],[11.295822332550891,44.48969422336186],[11.295805737806786,44.48977456693797],[11.295708639026879,44.49026433414765],[11.29565386652455,44.49055126255842],[11.29559819438221,44.4907487872882],[11.29492769661406,44.49061368559002],[11.294640127994956,44.49055645023664],[11.294294025737624,44.49048969854268],[11.293914262016726,44.49040971005125],[11.293682555913287,44.49036135579033],[11.293532400763509,44.490330019901705],[11.293255708047537,44.490269187573944],[11.293133748366865,44.49023998543124],[11.292951029707426,44.49019653312714],[11.292540168292463,44.49010182745048],[11.292187380044977,44.490025078728124],[11.291825338383935,44.48995244779792],[11.291450897890957,44.48988457385825],[11.2912623713413,44.489847282278625],[11.291191040361907,44.48983919583175],[11.291054812235785,44.489805873910804],[11.290744517849804,44.48972995040484],[11.290455945545501,44.48966709998247],[11.290232452351901,44.489612739515955],[11.290098484782833,44.4895636989748],[11.28993221609769,44.48949981595776],[11.289810369800104,44.489439243927634],[11.289709653534327,44.48937599826771],[11.289614942650411,44.489305881234664],[11.289502780534962,44.48921134696623],[11.289345972721803,44.48904064365855],[11.28921272084732,44.48891304704647],[11.2891381401672,44.48895196883789],[11.2892219179953,44.48910445521602],[11.289140632305582,44.48909596125627],[11.288854585068993,44.4891174465096],[11.288518355063378,44.489161887428146],[11.28841787333436,44.489185275971494],[11.288183615322776,44.489204605949425],[11.287886288735443,44.48921900678546],[11.287730460492917,44.489233946202816],[11.287523776513897,44.489254962899984],[11.28714778931174,44.48928781287283],[11.287063275219776,44.48929739033935],[11.286986335110278,44.489272216521066],[11.286829155115434,44.4891424750241],[11.285655868878383,44.49053244909221],[11.285476942193219,44.49055966434493],[11.285355449664449,44.49056827943904],[11.285253273652335,44.49056864239346],[11.284589338158579,44.490572591750926],[11.28445727395036,44.4905946994672],[11.284293094403289,44.49063736728675],[11.283973852453421,44.490730178070194],[11.28376390682003,44.49041052295941],[11.283451381591837,44.490136576097626],[11.28334127989303,44.490074637840294],[11.283219901280043,44.490005606146404],[11.282747354462483,44.489739924308154],[11.282488633644316,44.489595440472115],[11.282421691911885,44.48964791475417],[11.282123311848355,44.48988180969314],[11.282026453632065,44.489955818484106],[11.281926421537701,44.49003316207681],[11.281225935175463,44.49057323583668],[11.280042081875798,44.4915179333693],[11.279568021393686,44.49190887460798],[11.279410943879755,44.4921503635101],[11.279288900246474,44.492132260692195],[11.278631053086855,44.49204018551771],[11.278195645993572,44.49198015390405],[11.277765831891065,44.49192346411538],[11.277581603076353,44.49190576572789],[11.27748055029795,44.49188872035068],[11.277119525170832,44.49181764198016],[11.276862782560645,44.49176424714556],[11.276616976092228,44.491709507443446],[11.275968628322149,44.49154255148678],[11.27575788191252,44.491488080467256],[11.274577144777693,44.4911813389113],[11.274160472628598,44.49107824132034],[11.274052731337925,44.49105675477313],[11.27398364499383,44.49107429284105],[11.273826719097038,44.49118728919685],[11.273641629857982,44.49133951659322],[11.27331021080329,44.49162968255641],[11.273227238093487,44.491669034725874],[11.273136781312777,44.491677585919305],[11.27293765539205,44.49167085880664],[11.272755849303328,44.49166463814193],[11.272647705094515,44.491673256615805],[11.272487793398193,44.49168432429116],[11.272285309066088,44.49171254594713],[11.272071586724902,44.49175505792673],[11.27181004281539,44.491821029685234],[11.271722170092803,44.4918452868756],[11.271616007199798,44.49188453311288],[11.271383317944872,44.49192460350436],[11.27121364950452,44.491947680857024],[11.271079721553306,44.49196248678308],[11.270943646364675,44.49197780158723],[11.270829841479232,44.49200257396376],[11.27053927448174,44.49209050332721],[11.27016267418022,44.49208785930117],[11.26986575804936,44.492093205386674],[11.269715034850426,44.49209845282531],[11.269580685719532,44.49187327187513],[11.269357262943002,44.49134543487547],[11.269307373397796,44.49123550015974],[11.269207710362508,44.49101588401567],[11.26917157605811,44.49096446450262],[11.269070875925406,44.49097358698108],[11.26851383584771,44.491121949399435],[11.267753515746584,44.49127771346793],[11.266912276137953,44.49145533819332],[11.265742094312035,44.49170419454739],[11.265032129012043,44.4918539447476],[11.26469267336713,44.491925317038685],[11.26458656699712,44.49194896541153],[11.263994411498652,44.4920809501694],[11.263746628468372,44.492136138333514],[11.262865612687,44.49234357962322],[11.262789386214536,44.49234397070871],[11.262688065429161,44.492366233324724],[11.262310470205843,44.49248061582571],[11.261314005142337,44.49277099189638],[11.26035257466016,44.49305334758132],[11.258872425286262,44.49347987793374],[11.257933544468814,44.49375614326541],[11.257016942693511,44.49401957590412],[11.25669903986496,44.494112510711915],[11.256275433615874,44.49423679228412],[11.256127598335363,44.494276977367754],[11.256167081350961,44.49436243375748],[11.25625912555502,44.49454769695461],[11.256323359756887,44.49464375943193],[11.256373947499391,44.49475304322333],[11.256418717621417,44.494853990614764],[11.256482782076434,44.494965815792725],[11.256532439749844,44.49503451658449],[11.256612530649019,44.49515061696779],[11.2566878270846,44.49526840277899],[11.256725167611291,44.4953396902729],[11.256763764182985,44.49542331759187],[11.25680635854586,44.495508558296585],[11.25691010188472,44.49566095718644],[11.256962508244358,44.49572547138183],[11.257032886442586,44.49579722097081],[11.257116738124914,44.49587207908175],[11.257149684808633,44.495932573117464],[11.25715205640764,44.495992913696476],[11.257173454483029,44.496058323568406],[11.257200087491283,44.49611715546767],[11.257215769615478,44.49617732828035],[11.257215936535554,44.49624259079844],[11.257214559067355,44.49629860157543],[11.25725464891001,44.49641061676757],[11.257316075839798,44.49657650923547],[11.257352316965608,44.49670070049093],[11.25738982208901,44.49679673363349],[11.257444563292411,44.49691155941939],[11.257458923348766,44.497018732362314],[11.257487621748616,44.49709019048518],[11.257525496390771,44.497195783019],[11.25756180053727,44.49726033088138],[11.257648008424175,44.497538816421994],[11.257779233936661,44.497903627657536],[11.257804174203093,44.49797965937012],[11.25790499189922,44.49833100574359],[11.257929697870889,44.49844135343531],[11.257756061646676,44.49844366691341],[11.257195222505535,44.49835348355736],[11.256879388568192,44.49831752795211],[11.25661129321049,44.4982963773292],[11.256378098018354,44.4982835457616],[11.255678344305206,44.49826024110593],[11.255257485126892,44.49825280767567],[11.254863739877635,44.49823470233733],[11.254529872861692,44.498220479589264],[11.25441450137281,44.498204749846124],[11.254033211890201,44.49816332905399],[11.252993852469643,44.49805838055725],[11.252582818270097,44.49802034976908],[11.252091760057263,44.49796589793911],[11.251934870862211,44.49793355178009],[11.251833483031183,44.4979136005626],[11.251567622806505,44.497868770140926],[11.25142644061265,44.49783611348385],[11.250942457374832,44.49774100859622],[11.250199812670585,44.49760373304191],[11.249755023803884,44.497525849731794],[11.249529027359833,44.497495420316994],[11.249068598761218,44.49741953494945],[11.24860802904871,44.49734027553643],[11.248603129757644,44.49739662924754],[11.248639992674862,44.49754370568498],[11.248847864189253,44.497996088959454],[11.249169352928172,44.49869025248864],[11.24934765415422,44.49909521259089],[11.249501297366793,44.49945171636791],[11.249593295394465,44.49963613590681],[11.24974179324613,44.499879092064155],[11.250003034922027,44.500314491686105],[11.250296322338302,44.500785833533286],[11.250897369974966,44.50173666193988],[11.251089149232326,44.50209886701416],[11.250716985576622,44.50217683275505],[11.25024836378637,44.50227722123974],[11.249971528905355,44.5023355600608],[11.249751272355294,44.50237310147593],[11.249538523635445,44.50240148501825],[11.24932314336203,44.50242261284964],[11.249074138734997,44.50242807706601],[11.248762761364809,44.50238582843467],[11.248542511891008,44.502321526170945],[11.248293016688297,44.5022324733057],[11.248005120772191,44.5021261768998],[11.247814339409656,44.50207141691369],[11.247480845432754,44.50202622620305],[11.247128800626049,44.502010090011574],[11.246220786000624,44.50200995118984],[11.24595687596739,44.5020162690307],[11.245490020781084,44.50204007736484],[11.244936068739522,44.502068423334244],[11.24416251285781,44.50211007452006],[11.243778029756141,44.502129448681195],[11.243208746953998,44.50216764533041],[11.24304803464953,44.502200051719846],[11.242806200846193,44.50226951173811],[11.242560113046604,44.50237168814653],[11.242424649610937,44.50242667324619],[11.24229663832861,44.502471378819976],[11.241909764861695,44.502571818829935],[11.241724011806324,44.502627791614785],[11.241560821561,44.50269795429818],[11.24147623397671,44.50274155511998],[11.24118612773273,44.50293149294556],[11.240988649454126,44.50305071081665],[11.240727413654797,44.50318862177779],[11.24056135935009,44.50326614730997],[11.240342322101055,44.50336445174674],[11.240061648878159,44.50348492799008],[11.23995936132898,44.50351820907889],[11.239821224519671,44.5035445532123],[11.239685719504914,44.503557903840566],[11.23927424285546,44.503611551030986],[11.23901404343889,44.503653220269385],[11.238386238715222,44.50378593949238],[11.237974459014806,44.50387278841004],[11.237671902580109,44.50393779340453],[11.237319822373799,44.50402346072959],[11.236702618127667,44.504182921207764],[11.237180269049626,44.50489660800493],[11.238020713690503,44.50622654203918],[11.236884829723715,44.50659422045794],[11.23735408240263,44.507301879937785],[11.237718415832257,44.50786469378352],[11.237992102407807,44.50827349437575],[11.237661790170199,44.50839806788011],[11.237549397223422,44.50844022128072],[11.237163002098653,44.5085546928347],[11.236962182780474,44.50862839412636],[11.236358557840871,44.508839394761345],[11.236216368771215,44.50889586445073],[11.235867987454792,44.50901832007826],[11.234931189070336,44.5093455959019],[11.233903219649028,44.509707239147694],[11.233492640028928,44.50984749855479],[11.233613076345335,44.510068542077136],[11.233711643411658,44.51024944366331],[11.233975595687747,44.510696075601075],[11.234337306472543,44.51127246012811],[11.234385009109612,44.5113480414071],[11.23479259036695,44.512136766478065],[11.234924393490235,44.51235531113188],[11.234992847609144,44.51250025269696],[11.235053179915191,44.51255646285621],[11.23514026148268,44.51260292370416],[11.235833392447404,44.512972731656994],[11.235999573498106,44.513041493259195],[11.236679093379017,44.513106955910786],[11.236788180145078,44.51310144355817],[11.237000760517642,44.51306745258425],[11.237211948497055,44.51302006609391],[11.237619955190114,44.512933226440026],[11.237727213127195,44.51292100002312],[11.237944310283408,44.51292292699373],[11.238254996286289,44.51293533643185],[11.238497498327764,44.512954279983106],[11.23863472658433,44.51298534756198],[11.23877480465491,44.51305011675683],[11.238891594879568,44.51314291741329],[11.23898885376456,44.51325277325673],[11.239029670208113,44.513298875509314],[11.23913850877277,44.51346536793418],[11.239238724826922,44.51368637167668],[11.239334291322697,44.514066527888815],[11.239378192367427,44.51463787975617],[11.239425878694092,44.51483555986738],[11.239720301341304,44.51537779680172],[11.240148003016541,44.51613515758197],[11.240245015492125,44.51632736910061],[11.2402992036007,44.51648947111918],[11.240372493392059,44.51680142198198],[11.24044407866364,44.517396979843255],[11.240472629123394,44.51765895477445],[11.24049153436201,44.51783491136898],[11.240498135797022,44.51792967932683],[11.240514277066795,44.518161362947914],[11.240627392830229,44.51842470730386],[11.240704974461735,44.51860209939727],[11.240833687664965,44.51873911449367],[11.240995780717812,44.518905847851464],[11.241141732531668,44.51906164771831],[11.241290588643434,44.51923134390163],[11.24145177180654,44.51941509165985],[11.241517333023475,44.519504953298316],[11.241589663721903,44.519596649868774],[11.241729987639145,44.51988224986344],[11.241825658896696,44.520059853060395],[11.241873242024024,44.52017256782894],[11.241933862335259,44.52039980824677],[11.242153238831136,44.521218652342554],[11.242225431461586,44.52158351529014],[11.24227239748532,44.52188528972482],[11.24227585839569,44.52230326929234],[11.242230822335971,44.52260515837241],[11.242186229688173,44.522795650001505],[11.24213754948399,44.522920946419525],[11.241905517491233,44.523391375577255],[11.241657036301948,44.52377153559366],[11.241534543232296,44.52390307577197],[11.241445664740144,44.523991742354376],[11.241394926020027,44.524042812824426],[11.24121592737683,44.524194301152235],[11.241069618763213,44.52429619759821],[11.240741794877472,44.524484364378964],[11.24036144940031,44.524626631253966],[11.24010740624324,44.524721653783715],[11.239940086498509,44.52478423856504],[11.239445375965282,44.52492728439927],[11.239206732405206,44.52497979027781],[11.238767997267658,44.52504466225388],[11.237999969081539,44.52513623753056],[11.237815684504305,44.52514809991485],[11.23748452588353,44.525169416118956],[11.237254592435367,44.52518235596229],[11.237066609811992,44.52518210684024],[11.23677787595688,44.52518036930345],[11.236209934993262,44.52517695027879],[11.235937800579677,44.52516864507315],[11.235401284978371,44.525152270688594],[11.234667303009871,44.52512670076699],[11.233905316257179,44.525108981287765],[11.23381596121446,44.52511691258678],[11.23315712796307,44.52528734339404],[11.233075391038476,44.52533001698119],[11.232919745262619,44.525548218489504],[11.232552887003502,44.52606379776035],[11.232451764171657,44.526195741124496],[11.232304080936451,44.5263241054552],[11.232195713327497,44.526418786734205],[11.232036382841645,44.52658562909942],[11.231748357269916,44.526888607051504],[11.231677283315499,44.52696313544378],[11.231594290310053,44.52705534048589],[11.231326410188831,44.52735203335363],[11.23108297223063,44.52769156408877],[11.231027915791977,44.52775339640174],[11.230999629077903,44.52781584070535],[11.230896188206236,44.52807274430708],[11.230927675562416,44.52829999251476],[11.230961463982092,44.52852629460923],[11.231059770392344,44.529184703896405],[11.231107894150853,44.52941500272265],[11.231133661034628,44.52958498580011],[11.231134298821866,44.52965305115521],[11.231049069254007,44.5299754225431],[11.230932775462977,44.530414462614296],[11.230917087782645,44.530473689005056],[11.230769003329769,44.53104485339316],[11.230638354248713,44.53147501021626],[11.230760066968545,44.53189208231012],[11.230791661406043,44.531987962842855],[11.230925521756872,44.532177200395566],[11.231036443582461,44.532321881092784],[11.23125922654265,44.532635424568674],[11.231365262168836,44.532754875282265],[11.231483822618834,44.532914040293484],[11.231512837099679,44.53297367213265],[11.231546643514946,44.5330349018146],[11.231611245196667,44.533181612682036],[11.231795380477571,44.53353361023361],[11.231896956483775,44.53372150987182],[11.231915594727207,44.53379766556344],[11.23193408525795,44.533848744748276],[11.231957794917736,44.53391414710449],[11.232004155976593,44.53397457393453],[11.232122543740763,44.534149491075944],[11.232173638741251,44.534210382510196],[11.232283451533615,44.53432582629472],[11.232798622522667,44.534921152895464],[11.232923969482561,44.53507229943679],[11.233047212228897,44.53523024589177],[11.233183277122086,44.535394124124835],[11.23323080475654,44.53546465245695],[11.233266877431523,44.5355349655562],[11.233317517768647,44.535633996212354],[11.233383631044576,44.53576072924356],[11.233597149309308,44.53617029443748],[11.233873033538686,44.53671802430439],[11.234036720155636,44.536997267672305],[11.23418579707326,44.537234039623755],[11.23435468349038,44.53745409895791],[11.234606757698444,44.537812627209846],[11.234711155689446,44.537950682012735],[11.234772737543892,44.53801811774111],[11.234870956778904,44.53815911015625],[11.234942355173228,44.538277553014815],[11.235055140623214,44.53851109220443],[11.235185199162954,44.538723477159216],[11.235221770605165,44.53878345425478],[11.235279200121315,44.538877484434714],[11.235314414153706,44.53893418605288],[11.23541406158394,44.539092024731914],[11.235515315649769,44.539250389996425],[11.235661738174736,44.53956147777398],[11.235734707944237,44.53974122256302],[11.235835325527843,44.54004757266689],[11.235969045142092,44.54041686708615],[11.236173546958245,44.54092936441493],[11.236346478375369,44.54129563065377],[11.236406559205642,44.54136477738808],[11.236475230111346,44.54145289817639],[11.23653414827355,44.54153275958916],[11.236788859341795,44.54183610045628],[11.23705205477304,44.54211451379587],[11.23718496418965,44.54221600032101],[11.237303195537368,44.542406663440644],[11.237474090393036,44.54273353435856],[11.237266763490537,44.54283160648828],[11.237541280170353,44.54292494737141],[11.237703867562455,44.54321351865994],[11.237807984775209,44.54346691636711],[11.23789483669816,44.54381752828846],[11.237914088967596,44.543895247132454],[11.238390980358488,44.54454090841347],[11.238463423550954,44.544638986089105],[11.23859421295982,44.54509553213539],[11.239310052795934,44.54630298739576],[11.23944544284202,44.54653044491447],[11.239510391326574,44.546640559079684],[11.239605377129966,44.546755041440605],[11.239983433121072,44.54718268215958],[11.240825940442276,44.5481382349096],[11.240875033031525,44.54820184607713],[11.240849818247247,44.54826304583479],[11.240728494297295,44.54855552625847],[11.241702795121638,44.54999644695763],[11.243605538778377,44.5529911379157],[11.24437710554308,44.55412825628782],[11.246047904616601,44.556589012554745],[11.249870678731813,44.5554245528364],[11.249997399822734,44.55538594907313],[11.250098529656269,44.555352887250216],[11.251205933878033,44.555005415237176],[11.252168779599756,44.55663945689322],[11.252859478677856,44.555809205300626],[11.253143378934347,44.55546793786277],[11.253627360372604,44.55481575561399],[11.254723041253452,44.55333922510545],[11.256740042604495,44.55075018570418],[11.257037958371242,44.55036775662593],[11.257075770585576,44.55031152193436],[11.25728795265606,44.54999596706985],[11.257442673173081,44.549838201415916],[11.257542280409883,44.549736633577076],[11.25758419656278,44.54965307769105],[11.257729290848292,44.549363838936124],[11.258543199820284,44.548295045988525],[11.258675711313156,44.54812081543396],[11.258949169855706,44.547868545961734],[11.2589974074058,44.54782331659591],[11.259064661604112,44.54776203078226],[11.259436651596033,44.54723742619325],[11.259652565320065,44.54693292510664],[11.259704456734266,44.5468571127248],[11.259840149980093,44.54665741168464],[11.260429156186973,44.54595698506757],[11.260887120027162,44.54541237791672],[11.261160070149229,44.545016334750656],[11.261340014428665,44.544755238682974],[11.26137900160618,44.54470551757425],[11.261927758997425,44.544005411340656],[11.262028042354647,44.543994422866334],[11.262066211162454,44.54391376262708],[11.262102678350711,44.54383561261054],[11.262202421488462,44.54362187269853],[11.26288450099979,44.542708130454535],[11.263689888104468,44.541753255332594],[11.263811139319543,44.54160949579591],[11.26387311544614,44.54151302747138],[11.264262216058425,44.54090737394743],[11.264555158045944,44.54061596767719],[11.264650038307078,44.54052158465189],[11.264874710124277,44.54014803967807],[11.265148806901285,44.53979485784295],[11.266691846376782,44.53780499143421],[11.26672747352615,44.53775924394639],[11.266858929782266,44.53761951401273],[11.266950326793134,44.53752319160585],[11.267072570085348,44.53734141032483],[11.26734301258252,44.536939248699454],[11.268408327480138,44.53555912424627],[11.268552661619482,44.535372186071],[11.270039144744226,44.53344680091173],[11.270069362601332,44.53349314495908],[11.27136806251659,44.53546513387069],[11.271621601471935,44.53584978637249],[11.271545011061896,44.53590259539629],[11.271214166508193,44.53605265177216],[11.271113894322314,44.536100363785856],[11.271863282798602,44.53712305322105],[11.273149623587344,44.53887428219152],[11.273184726144269,44.53892235735908],[11.273235326762059,44.53899125756494],[11.273384776611229,44.5391948468956],[11.27343531026916,44.53924953559641],[11.273461765728804,44.53929973097377],[11.273682152364707,44.539599849751944],[11.274115069528493,44.54018938758479],[11.274199562362542,44.540157320844635],[11.274511930573274,44.54003744036849],[11.274553622046447,44.54009793295011],[11.275335642106771,44.541227304932974],[11.27563601548989,44.54162943500556],[11.275719742541618,44.5415983258459],[11.276600461678715,44.541275813729726],[11.27665832079024,44.541362136407095],[11.277329247674198,44.54236421639655],[11.27779764710632,44.54306313670534],[11.278893057315976,44.544697573305555],[11.278938225207357,44.544765364067494],[11.278610867321815,44.54486145951482],[11.27848785803997,44.5448975697114],[11.27841396652552,44.54491929329493],[11.278337307523426,44.54494180754876],[11.278017273624865,44.545035800727725],[11.279050429815209,44.54687247594193],[11.278180699220895,44.54717474578283],[11.277937831329874,44.547254194035666],[11.277828298595658,44.54729013720949],[11.278739039402724,44.548697977368384],[11.279808958337686,44.54836687635983],[11.279527941256658,44.547940375744325],[11.279694619057558,44.54788336419007],[11.280301985980897,44.54767561544969],[11.281218962326395,44.54738800418451],[11.28207615576275,44.54869923146732],[11.282610853382819,44.549517175595916],[11.282681577044828,44.54946558653261],[11.283143447732233,44.54912809047852],[11.28333295325667,44.54898960775223],[11.283485314646393,44.54885491769631],[11.28386758094986,44.54851698554733],[11.283779096376596,44.5478698577541],[11.284863829753132,44.5472707755938],[11.286250440047782,44.546500423042495],[11.286474378364085,44.546271068230304],[11.287620895922311,44.545653955518674],[11.287698770863171,44.54559331229476],[11.290505886901197,44.54340735715404],[11.291482123025807,44.54236270642579],[11.29234632355174,44.54148627952633],[11.292668444998247,44.54115959165968],[11.293920690416769,44.53993171310179],[11.293739292543044,44.53964866644668],[11.293668695307064,44.53953851477368],[11.29362180624232,44.53946536393975],[11.291730942197468,44.536515260262824],[11.297666806384075,44.5353944298141],[11.297823716297678,44.535364933530644],[11.300296549805122,44.534897548893426],[11.301501317647862,44.534670148230944],[11.301578622973832,44.53465543461044],[11.302687003040756,44.534297964795634],[11.30276626920963,44.534272163254236],[11.305717557004929,44.53341590280267],[11.305772343544636,44.5333674731424],[11.30668041212777,44.53257192515334],[11.307053402289416,44.532238226000615],[11.307308670818092,44.53200843794178],[11.307447373080548,44.53188548845998],[11.30752571533536,44.531816717424014],[11.308636958267387,44.530833776772404],[11.308974275100415,44.5305357970922],[11.309574473172237,44.53001323815479],[11.31014434791016,44.53078776020535],[11.310525740936617,44.5321573858267],[11.310433314391474,44.53236631287117],[11.310311842869552,44.53247679481006],[11.310027589213743,44.53260857987185],[11.309503097340999,44.5333483766502],[11.30917989734729,44.53412962445711],[11.309112516758434,44.5342925085402],[11.309003827927464,44.53472682134668],[11.30855249032997,44.53572619717005],[11.308463976150223,44.53603405820996],[11.30848722808401,44.53630366079465],[11.308912775306279,44.53688019746953],[11.309520568401874,44.537291005926775],[11.310089690905821,44.538314754405064],[11.310572335094122,44.53906116821743],[11.311578000136876,44.540301127976825],[11.312336065565132,44.5406908690655],[11.312851504695695,44.541310586260046],[11.31333466783365,44.541750907679976],[11.31359946937385,44.54208031177376],[11.313637285052017,44.54212757226592],[11.313718649024672,44.542229244524584],[11.314117255240529,44.54307637978236],[11.314300280746792,44.54388286694511],[11.314226821427772,44.54552276207472],[11.314140093785603,44.54587560741245],[11.313438735740924,44.54660100723329],[11.312629390493598,44.54777869213909],[11.312353159131398,44.548432445983096],[11.312143743309653,44.549183870279315],[11.312852397926493,44.548939400980416],[11.314638391913473,44.548442397775005],[11.314967460082183,44.5482883096584],[11.315938355410964,44.547970977813065],[11.316542944338364,44.547781478639045],[11.317102683033577,44.5476114537649],[11.317749649178262,44.54737945536289],[11.318971047771667,44.54701275523298],[11.319669658240162,44.54679906235922],[11.320722392078116,44.54647678405762],[11.321504547772541,44.54622232521378],[11.321521327940888,44.54609032720606],[11.321550116872757,44.54598662294095],[11.321725134633256,44.546091239584285],[11.322569646468802,44.546732352483104],[11.32307653266962,44.547113075063926],[11.32337720571376,44.54733369394183],[11.323436607002257,44.54736343456028],[11.32353246264506,44.547399741134576],[11.3237968202927,44.54747875932978],[11.324215927229252,44.54757149994174],[11.324433529817611,44.54764190195917],[11.324639168481381,44.54776767865793],[11.324761133626621,44.54786703522719],[11.324889964478203,44.54800001019101],[11.324962361892645,44.54813862474427],[11.325005333984773,44.54824971472242],[11.325151643575012,44.54824898425891],[11.325267001288536,44.54824619244279],[11.325476058428807,44.548235626744116],[11.325671026938895,44.54821196318788],[11.326013997576995,44.54817065946411],[11.326267969388365,44.5481272164742],[11.326524201845032,44.54807136318244],[11.326726185542602,44.548016604279674],[11.32695132638403,44.54796025758636],[11.327112643745723,44.5479215191372],[11.327331191907312,44.54785798998285],[11.327543419088249,44.54779345501472],[11.327679596566169,44.54775579460795],[11.327761634590848,44.54774118010333],[11.327849660208487,44.547738827802405],[11.32791943965609,44.54775259603828],[11.32798134117666,44.54778564923033],[11.328059953626234,44.54786282088399],[11.328134943930355,44.54794793070484],[11.32819012574336,44.547990130264],[11.328288732464518,44.548035943391625],[11.328388494273252,44.548071608065754],[11.328493972206253,44.54809252292898],[11.328628334765082,44.54810779100766],[11.328997061105891,44.54814021768609],[11.329286063927366,44.54816638674566],[11.329630331916416,44.548202896045126],[11.329850308882644,44.54823245465876],[11.330080087401235,44.548249205153496],[11.330426489332298,44.54825450817572],[11.330727648478334,44.54825005188371],[11.331048540913075,44.54824687434194],[11.331367413937283,44.54826301451266],[11.331790662058824,44.54829079062912],[11.332206979030273,44.54831323523112],[11.33238266536429,44.54831921319674],[11.33247365603941,44.548312286625446],[11.332560116975515,44.54829026128338],[11.332662400588577,44.54825103876236],[11.332826438798904,44.54818186311423],[11.332983530669027,44.54811619423155],[11.333104847306183,44.54808052349156],[11.333314474383963,44.548030097813175],[11.333443351344373,44.54800664663651],[11.33365347123476,44.54796859372605],[11.333810997059965,44.54793330725408],[11.33392485675462,44.54790790390364],[11.33404073159338,44.54787402684805],[11.334161231953438,44.54783780453378],[11.334331891063794,44.54777693362159],[11.33457291881551,44.54768535706071],[11.334701708739727,44.54763996330896],[11.334784965724563,44.54761687743082],[11.334879928501312,44.547591301498606],[11.335175779801768,44.54753292505585],[11.335476269929421,44.547472203279064],[11.335959581839116,44.54737004005498],[11.335704516868553,44.547061304879755],[11.335253748633574,44.54652467730357],[11.334936920017745,44.546144154399215],[11.334734083876363,44.54591199827983],[11.33441354393611,44.5455494579299],[11.334083726708878,44.54517135694982],[11.334717939248591,44.54489844854371],[11.335533904524864,44.54454698608088],[11.336126080653427,44.54428562184663],[11.336868772731858,44.543961869261054],[11.336931852714468,44.54393443178624],[11.337014387046487,44.54403224915778],[11.337173254990576,44.54422761097527],[11.337372876188518,44.54443845463989],[11.337417472491149,44.5445106818997],[11.33745484476649,44.54461906509825],[11.337469929664328,44.544740288139536],[11.337502129005365,44.54507271676883],[11.337549804999812,44.545536476173794],[11.337590944702622,44.54595480368848],[11.337606794373446,44.546154208900795],[11.337626891095152,44.54638111266498],[11.33764879767525,44.54667266757661],[11.337669747135289,44.5468224614603],[11.337688486238969,44.54693685972646],[11.337730765323386,44.54701025956889],[11.33781347372589,44.54713066474291],[11.337974663286692,44.547383359805956],[11.338163196010434,44.54769063590383],[11.338283404725324,44.54788284584764],[11.338311634518995,44.547939100439486],[11.338341574691787,44.54801894453343],[11.338351758263432,44.548116068010046],[11.338377411511017,44.54834397222402],[11.338395427147377,44.548538275432655],[11.338418901020145,44.548613752650354],[11.338478775000203,44.548713799333505],[11.338525502254424,44.54878036686718],[11.338615790307253,44.54885390809085],[11.338724364178,44.54891300681917],[11.338814102507794,44.54895336793775],[11.339066487557684,44.54902752864607],[11.339168296612492,44.549054700539095],[11.339246817638951,44.54909022472927],[11.33933624989173,44.54914240802995],[11.339395261063554,44.549201397447526],[11.339503274578579,44.549324657676976],[11.339679960674419,44.54955171657502],[11.339750209507036,44.549635800530645],[11.339838371023548,44.549734700421425],[11.339922495842579,44.54981174996826],[11.340059625992525,44.54997435297045],[11.340140163611615,44.550079600642164],[11.340192024179123,44.550175878509506],[11.340229410504516,44.5502645689478],[11.3402575444193,44.550357948375286],[11.340265152176226,44.550469199431525],[11.340252810051272,44.550573543385916],[11.340247178580782,44.550649048867164],[11.34026403968901,44.55073591043081],[11.340329085987998,44.550847109146794],[11.340510166737849,44.55108532577964],[11.3405713871373,44.5511403371003],[11.340642525976858,44.55118782710181],[11.3407100142553,44.551222451219914],[11.340831244449632,44.551243598781056],[11.340971995269578,44.55126097095221],[11.341081842226794,44.55129247109272],[11.341244477146414,44.55152206982311],[11.341313952081117,44.55160616956086],[11.341379185687641,44.55166333788066],[11.341490097148123,44.55174096208389],[11.341807608950642,44.55188861352266],[11.34195045807585,44.55195826505197],[11.342100105831248,44.55204015226262],[11.34232600219125,44.552179548168546],[11.342676113623575,44.55243342601101],[11.342821111557772,44.552536790672534],[11.342988073402042,44.55263857904752],[11.343221351111698,44.55276544720358],[11.343616924143006,44.55297563194937],[11.343938469617003,44.55316482717164],[11.344100064411151,44.553250407589175],[11.344293495330385,44.55334489161435],[11.344373835056754,44.553386008483514],[11.34441732824305,44.55343068985732],[11.344456916965413,44.553495700099745],[11.344583498576998,44.5537867958392],[11.344659591091755,44.55393771518915],[11.344836771436176,44.55425448538347],[11.345479492304168,44.554079789139415],[11.34608328646753,44.55390508813471],[11.346584101415354,44.55375750281033],[11.346974473090865,44.553642579419524],[11.3477490862228,44.553416219738565],[11.348334656787928,44.55324382699516],[11.348872180889138,44.55310954327436],[11.34895897514511,44.553090242529684],[11.349049356636947,44.5530835601277],[11.349251881046882,44.553061789284314],[11.349910415747873,44.553099433541455],[11.350681369226066,44.55315389230748],[11.351018467199529,44.55316214113579],[11.35134770644713,44.553150850392285],[11.351606848191757,44.55311851347398],[11.351684655117324,44.55309665192877],[11.35250181677161,44.55297698239876],[11.352668186084916,44.552939661991275],[11.352780891851664,44.552905273094865],[11.352919042433143,44.55283828469147],[11.353379905430982,44.55255927651919],[11.353589425440726,44.55297468698992],[11.35383121599199,44.553473819309374],[11.35398854707293,44.55379859505202],[11.354125862354227,44.554081584558894],[11.354154027272177,44.55413614588574],[11.354215552821586,44.55425696506799],[11.354253898487704,44.554316029959786],[11.355176400638923,44.55382980115001],[11.355386645509608,44.55375568776165],[11.355519041380665,44.5537087215678],[11.355684536574037,44.553649959813484],[11.3558646341375,44.553618671891634],[11.356127378911353,44.55354854544734],[11.356081954705276,44.553436950802215],[11.356577188373452,44.55330801377289],[11.357670716417948,44.55303056103967],[11.357913629844708,44.55296584621477],[11.358324546685067,44.5528567215175],[11.35851700175314,44.55300182014188],[11.358646914980108,44.5530818428007],[11.358863302964052,44.5531792116634],[11.359309214694184,44.55332922729652],[11.359545962173009,44.55342391539287],[11.359754587325705,44.553543385028625],[11.359948819599376,44.55367665067188],[11.36007319841265,44.553775361292544],[11.360167145087162,44.55388031748997],[11.360244674362136,44.55399487815526],[11.360290622743204,44.55404793687263],[11.360261085444652,44.554121429577826],[11.36034865141356,44.55426309176295],[11.360468488794577,44.55442434512985],[11.360601681184137,44.554585322183094],[11.360682031249565,44.55466524218817],[11.360854898194997,44.55481469749184],[11.361009603282483,44.5549240299166],[11.361147351013669,44.55500276327419],[11.361340772156886,44.55505631786487],[11.361594916528594,44.55517355152939],[11.361771692528931,44.555244726808255],[11.362084789008655,44.55537890428513],[11.362202877474274,44.55547717648084],[11.362263379076886,44.555552996896346],[11.362424107550378,44.55575222668524],[11.362537714724679,44.55593442349882],[11.362662535982945,44.556141136069925],[11.36271433108341,44.55621545483356],[11.362786507917953,44.55628766827136],[11.362866230824798,44.55633271701552],[11.362976433834625,44.55637263543114],[11.363081250289913,44.55639578159974],[11.363175610074396,44.55641052183392],[11.363275269957896,44.55642608938908],[11.363529017251421,44.556454593910814],[11.36371689085839,44.556469269832114],[11.363929591991434,44.556494680449696],[11.36401599631461,44.556508923977965],[11.364105459145572,44.556523671235624],[11.364225335939167,44.55656901267168],[11.36441079517553,44.556679395877836],[11.364710627169606,44.55685491525985],[11.364835308051717,44.556921530483635],[11.364940641553282,44.556977306252904],[11.365004406716206,44.55701746102739],[11.365220040522479,44.557153247620626],[11.365308154855441,44.55712357344805],[11.365624437333118,44.557015461597274],[11.366500243756455,44.556723861058515],[11.366908684965207,44.55658908698948],[11.3669825199601,44.5565664556696],[11.36695505148703,44.55650704260863],[11.36691442146535,44.556419142181426],[11.36686607059885,44.556314557789484],[11.366366170278695,44.55526097027119],[11.36610023455212,44.55471847403444],[11.365591603409902,44.55368194838916],[11.365529344630502,44.55356283126041],[11.365840729729335,44.55351147571386],[11.366028660389722,44.55348048290694],[11.36632818906443,44.55343149180814],[11.367313617173055,44.55328334475639],[11.368674307360882,44.55307563639333],[11.36959722169877,44.5529383244648],[11.371615030483849,44.55260696774072]]]},\"geomComplex\":{\"provenance\":0,\"accuracy\":100},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/e099b06896aa93a3ee43d44870ce1441143486de\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/ffcd4ddeecbdb84946122d08728f51cded1db3b0\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"SK\",\"acheneID\":\"http://dandelion.eu/resource/f5882e6af5c6391d36d7e5dece6688cb4ac203c5\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"SLOVENSKO\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"NL\",\"acheneID\":\"http://dandelion.eu/resource/0fe4f6bea944679a92aae439c564c0ddcc866bb6\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"NEDERLAND\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"IE\",\"acheneID\":\"http://dandelion.eu/resource/23184225e583b78d38f4cfa46894bb3b42c29bee\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"IRELAND\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"RO\",\"acheneID\":\"http://dandelion.eu/resource/0d33fdb63fd80f69fa00984bd829583ec71e08b2\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"ROM\u00c2NIA\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_offset_1": "{\"items\":[{\"licensePlate\":null,\"tel\":\"0512193111\",\"isMountainMunicipality\":\"P\",\"isProvinceCheflieu\":true,\"localCode\":\"037006\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/c59b12fe31ac36662552c95d51cbf15b792094c0\",\"provenance\":[\"Geonames\",\"ISTAT\",\"SpazioDati\",\"SpazioDati Partner\",\"Wikipedia in Italiano\"],\"wikipedia\":{\"de\":\"http://de.wikipedia.org/wiki/Bologna\",\"en\":\"http://en.wikipedia.org/wiki/Bologna\",\"it\":\"http://it.wikipedia.org/wiki/Bologna\"},\"alternateNames\":[\"Bologne\",\"Bolon'ja\",\"Bolona\",\"Bolonha\",\"Bolonia\",\"Bolonija\",\"Bolonja\",\"Bolonjo\",\"Bolonya\",\"Bolo\u00f1a\",\"Bolo\u0146a\",\"Bol\u00f2gna\",\"Bononia\",\"Bulogna\",\"Bu\u0142ogna\",\"Comune di Bologna\",\"Gorad Balonnja\",\"blwnya\",\"bo luo ni ya\",\"bollonya\",\"bolon'ya\",\"bolonia\",\"boloyya\",\"boronya\",\"bwlwna\",\"bwlwnya\",\"bwlwnyh\",\"\u039c\u03c0\u03bf\u03bb\u03cc\u03bd\u03b9\u03b1\",\"\u0411\u043e\u043b\u043e\u043d\u044c\u044f\",\"\u0411\u043e\u043b\u043e\u043d\u044f\",\"\u0411\u043e\u043b\u043e\u045a\u0430\",\"\u0413\u043e\u0440\u0430\u0434 \u0411\u0430\u043b\u043e\u043d\u043d\u044f\",\"\u0532\u0578\u056c\u0578\u0576\u056b\u0561\",\"\u05d1\u05d5\u05dc\u05d5\u05e0\u05d9\u05d4\",\"\u0628\u0644\u0648\u0646\u06cc\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u064a\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u06cc\u0627\",\"\u092c\u094b\u0932\u094b\u0928\u094d\u092f\u093e\",\"\u0e42\u0e1a\u0e42\u0e25\u0e0d\u0e0d\u0e32\",\"\u10d1\u10dd\u10da\u10dd\u10dc\u10d8\u10d0\",\"\u30dc\u30ed\u30fc\u30cb\u30e3\",\"\u535a\u6d1b\u5c3c\u4e9a\",\"\ubcfc\ub85c\ub0d0\"],\"parentNames\":{\"province\":\"Bologna\",\"country\":\"ITALIA\",\"region\":\"Emilia-Romagna\",\"macroregion\":\"NORD-EST\",\"municipality\":null},\"email\":\"protocollogenerale@pec.comune.bologna.it\",\"website\":\"http://www.comune.bologna.it/\",\"isCoastal\":false,\"fax\":\"0512193718\",\"elevation\":54,\"dialingCodes\":[\"051\"],\"postCodes\":[\"40121\",\"40141\"],\"cadastralCode\":\"A944\",\"population\":{\"2001\":null,\"2011\":371151},\"name\":\"Bologna\",\"level\":60,\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[11.371615030483849,44.55260696774072],[11.371683399764958,44.55263449295944],[11.371850909981305,44.552767736301284],[11.371966605561001,44.55288461340939],[11.372042074975841,44.55299894329224],[11.372112552714023,44.55316515220926],[11.372200479295843,44.55343810683848],[11.372288417909607,44.553697119405406],[11.372318616888847,44.55377259652481],[11.372976733159817,44.55359617495196],[11.374371655839564,44.55324364698487],[11.375023140518103,44.553068621750455],[11.375237441191524,44.55300789610728],[11.375312336948463,44.55307892248818],[11.37549258826638,44.5529356298896],[11.376182020855437,44.552755865326645],[11.376859419095307,44.55258000658355],[11.377223047198097,44.55248606878287],[11.37772140100687,44.552357532188424],[11.377914405158439,44.55228599595104],[11.377795904501502,44.55202345900086],[11.377233293402513,44.55109557434928],[11.3770659409483,44.550811546619215],[11.377689909170236,44.55063820350091],[11.379243779211953,44.55020247225941],[11.381112046044146,44.54966102317204],[11.381368698452416,44.54958758620495],[11.38185410863312,44.54945142730544],[11.381937695127242,44.54939806527645],[11.382025431168511,44.54925769024259],[11.38210173234158,44.54911823883935],[11.382462053093981,44.54902126196006],[11.383652503314401,44.54871340506481],[11.384830398061993,44.54840691252731],[11.385519540460272,44.5482315986127],[11.386102599656807,44.54807875582393],[11.386747150510965,44.547909990298535],[11.387467223210058,44.54772164251097],[11.388057246920857,44.54756638539569],[11.38843945079304,44.547466115004035],[11.38900217699357,44.5473164996277],[11.389504838427717,44.54717994617846],[11.390244292555087,44.54698497438703],[11.391168287175649,44.54674338419237],[11.391893776792447,44.54655377238333],[11.392033112076243,44.54651709244543],[11.39197833010627,44.54644734071617],[11.391883961973194,44.54635254428176],[11.391621403798544,44.545954634466476],[11.39147408294175,44.545719166605025],[11.391144616869987,44.54520505773529],[11.391032633262022,44.545044806207834],[11.390845899684066,44.54474995528144],[11.390558564640752,44.5442653545989],[11.390452924325112,44.544067827340925],[11.390121452060317,44.54350425143768],[11.3899419188228,44.54319293074979],[11.389832784707092,44.543006167981744],[11.389648537814987,44.542579605330666],[11.389605531830993,44.542499490982244],[11.389844500238809,44.54244666370952],[11.38993748113705,44.542450341563686],[11.390072152634893,44.542453713548745],[11.390161576567555,44.5424473417905],[11.390275685445443,44.54242919306462],[11.390381020317166,44.542407863830555],[11.39050734622138,44.542380459503114],[11.390734357432903,44.542314372030965],[11.390858832955274,44.54228251845755],[11.391391890168434,44.543040472832175],[11.391422997717692,44.54308933787872],[11.391762207229004,44.54365044783415],[11.39179346978779,44.54370215873189],[11.39224112796103,44.54354874662596],[11.393042866835481,44.54328156951995],[11.393859852738155,44.54300280882741],[11.394637458394486,44.542741347904155],[11.394791818999858,44.54268899696984],[11.395359151732027,44.542499860658666],[11.395651603657038,44.54289770270896],[11.396072489494518,44.543645050324365],[11.396299589051631,44.54396437128258],[11.396424615019377,44.54392460423094],[11.396475383513815,44.543982621786334],[11.397012678772636,44.54379973339415],[11.397737936422617,44.543548198913406],[11.398112609543729,44.54341879341483],[11.398738821136456,44.54320758835112],[11.398832216725031,44.54317631258953],[11.398926542810589,44.543144923572676],[11.399677130133664,44.54289528581079],[11.400288670302244,44.542691130530564],[11.399730872249805,44.5419252938404],[11.400188416950556,44.54172606798039],[11.401045333333593,44.54136765112833],[11.401560220452486,44.54114751307236],[11.401876721760868,44.54157263030605],[11.40228727688513,44.54211683551545],[11.402348918147611,44.542196376427555],[11.403051797011843,44.54200790130606],[11.404725019768152,44.54154731105244],[11.405352644011401,44.54137148975357],[11.407034447637578,44.54372457504679],[11.407341911119996,44.54363524895624],[11.407673377164693,44.543526974693194],[11.408265526863785,44.54334541845832],[11.408446673636234,44.543296864390165],[11.40901248442909,44.54312906808067],[11.409526555873725,44.542965744186375],[11.409962200208204,44.542827708279184],[11.41038936839721,44.54269378186789],[11.4111683707367,44.542450023859864],[11.411799001470655,44.54225215256389],[11.412122029862672,44.542149679931185],[11.412423339712774,44.54205441166669],[11.41309816558239,44.541840975004895],[11.413625310036403,44.54167116541149],[11.414134570346272,44.54150623093636],[11.414735738396239,44.541319101212245],[11.41523494389894,44.541158873839414],[11.415778665033256,44.540990386046516],[11.415880424396676,44.54095898322238],[11.41581242106911,44.54081750760427],[11.415562913725045,44.540415434415166],[11.41531523362604,44.54001895648533],[11.414905233357763,44.53936878149522],[11.414630240151814,44.53892054538019],[11.414417014790526,44.53857678819788],[11.414366472441696,44.53849627273348],[11.414063006449718,44.53800588042468],[11.413811130850505,44.53760272892693],[11.41369137324568,44.537426904596956],[11.41226059140029,44.5351491583288],[11.411115306183035,44.533277865486866],[11.410471133889073,44.532173508465824],[11.410251102307903,44.531816375384054],[11.410087902928023,44.53157844869783],[11.409836170585859,44.531277156147816],[11.409584810275074,44.53095666059203],[11.409398449644694,44.53067195553174],[11.40925435747843,44.53047751652879],[11.409126787062391,44.5302450191401],[11.408887784745678,44.530037948706806],[11.408456358476954,44.529504143345875],[11.409285965282965,44.52916532956536],[11.410230965808742,44.52877404325182],[11.411091750380166,44.52841996804047],[11.411531141261953,44.52824188672151],[11.411790324905624,44.52815707845399],[11.412410659606413,44.5279037223242],[11.413491770341224,44.52745776483934],[11.414032965687205,44.52723138926808],[11.414983039900768,44.52683123482317],[11.415395283138608,44.526662999663614],[11.416661766544872,44.527295613160895],[11.417023845836885,44.52748564780502],[11.417408092456887,44.527703943398365],[11.417474349444195,44.52774539266649],[11.417985688747256,44.52806145872235],[11.41814140365194,44.528156154907336],[11.41840442909683,44.52831590153624],[11.4186142300048,44.52844423761554],[11.419511573635278,44.528992931702085],[11.419637963876887,44.52907814058832],[11.419908851875721,44.529260765494094],[11.420114932581884,44.52937511255284],[11.420267910631534,44.529460199928636],[11.420465006389335,44.52965518180388],[11.420522909818807,44.529805880296706],[11.420568976573966,44.52986523734807],[11.420649211584008,44.529968616338195],[11.420746800574287,44.53014097060914],[11.420853396987646,44.5302647422067],[11.420950424271776,44.53027765779786],[11.421015667597981,44.530175775684526],[11.421056972405493,44.530109634252106],[11.421110103652577,44.53004408726846],[11.421167249654806,44.52998070476225],[11.421206366052717,44.529937675238486],[11.421237069680085,44.529881320787574],[11.421245783878168,44.52980686564162],[11.421251652202317,44.52967817833455],[11.421325500299169,44.529604877478434],[11.421436340665638,44.52958452263009],[11.421541923835052,44.52957004333887],[11.42163263295503,44.52955728655829],[11.421680618964526,44.52951463673969],[11.42176571399457,44.52943771484262],[11.421833559850812,44.52935722667893],[11.42189451533528,44.529271817308434],[11.421897128722312,44.52919271316013],[11.421869512670836,44.52914322412359],[11.42182807507968,44.529092336810486],[11.42177464931791,44.52903664636912],[11.421716824767879,44.528988923489464],[11.421669591502905,44.52894997632362],[11.421607960916361,44.528905150937305],[11.421543245500915,44.52886207437998],[11.421468114561904,44.52880459009267],[11.421411429671439,44.52873686870063],[11.421402103327905,44.52868277040809],[11.421407506973088,44.52862329858229],[11.421431393614593,44.5285448630385],[11.42148067857378,44.52845323964028],[11.421579949254205,44.528352808462465],[11.421669845620157,44.52821628713048],[11.421818346996819,44.52800383970144],[11.421882891049787,44.527910195448406],[11.421974587415665,44.52776491610225],[11.421969953764833,44.52758201857715],[11.421961767346096,44.527498360666954],[11.421951054641521,44.52739168000135],[11.421937834302073,44.52720572925004],[11.421927913048819,44.52711816515856],[11.421931006524183,44.52705986759246],[11.42195703787829,44.52700502451369],[11.42199210347269,44.526949701664996],[11.422037222820844,44.526890232395715],[11.42209521387052,44.526828235817945],[11.422250312233317,44.526680346050114],[11.422321767537754,44.5266017470623],[11.422370751634785,44.526550066307856],[11.42241548408159,44.52645290998834],[11.422509544997936,44.52625567394653],[11.422531073987999,44.526205710078344],[11.42258589842535,44.52614321330943],[11.42263122588227,44.525719147454666],[11.422499425425448,44.525594220815755],[11.422426121422177,44.52547650302473],[11.42236455942958,44.5253765359957],[11.4223020392141,44.52526280142262],[11.42226343623161,44.52518540817821],[11.422269743429368,44.52508147210622],[11.423930594212962,44.52458428211943],[11.425207215411493,44.5241717611519],[11.425435824749007,44.52410894547679],[11.425666948498428,44.52405002699769],[11.425968560213514,44.52396484298466],[11.426220769395444,44.5238847304623],[11.426317113281144,44.523835911399914],[11.4263616948967,44.5237162393784],[11.42566807243238,44.52288364904361],[11.4254602376246,44.52260393100752],[11.425425020440601,44.52253610287168],[11.425397054643973,44.52247417826064],[11.425296940088451,44.52220342561042],[11.425255394427543,44.521979252030675],[11.425270058819924,44.521764008975616],[11.425299020812746,44.52162836162266],[11.425381717353178,44.5214229321379],[11.425670393030067,44.52096949400596],[11.425710902049385,44.52086566718014],[11.425719087261484,44.52079741909291],[11.425707349634088,44.520590647293666],[11.42621868849449,44.52040532954464],[11.42695576011139,44.520164037808826],[11.427341538813058,44.52004218581967],[11.427451482338274,44.519999607712286],[11.427780111840239,44.52052854614357],[11.428267497288024,44.52129968698271],[11.428309393178958,44.52136817607097],[11.428546776297713,44.52175623256027],[11.429045911450023,44.52156106307746],[11.429699981230232,44.521290579160926],[11.430174634258924,44.521093118048775],[11.43095083268026,44.52079076762535],[11.431290727424829,44.5206465483238],[11.43136071005841,44.5205676734088],[11.430492207327335,44.519482830847394],[11.429658259195456,44.51843381133167],[11.427966374890671,44.51630533193266],[11.433586317497346,44.51447016199065],[11.434694903101136,44.514108374155676],[11.434662251143866,44.51406069065253],[11.434492978534841,44.51380998441208],[11.434193800173247,44.51336680989287],[11.433865307174724,44.51284268651015],[11.433575110932178,44.51235036986699],[11.433445066087735,44.512135402764784],[11.433184200156981,44.51176229973365],[11.43299564006417,44.51151417006002],[11.432732016197878,44.511167549091304],[11.432210509178178,44.510490104352094],[11.431433551943687,44.50950939752574],[11.431323014462993,44.50936957921462],[11.430004872339754,44.50768786237529],[11.429937668044255,44.50760272809906],[11.429863782149964,44.507509134345284],[11.429817623354156,44.50742951689793],[11.429822858492901,44.507347398371024],[11.429871401314069,44.507295165519345],[11.429930023070773,44.50722069313206],[11.429343539410903,44.50651013662671],[11.429275606200056,44.506674877319455],[11.429217527649621,44.506753196189806],[11.428848596952763,44.5068134087291],[11.428749749649926,44.50682954113199],[11.428447400704753,44.50697044808376],[11.427412906781651,44.5044374880305],[11.426955999929266,44.50327916276976],[11.42679040624326,44.50285078391124],[11.426714785161792,44.50265568374576],[11.426534488069784,44.50221572325125],[11.426397348567962,44.50198008260547],[11.426107064901574,44.50155786129413],[11.425023719552284,44.50191812338644],[11.424104200444868,44.50214258968477],[11.42397498839464,44.50163499625888],[11.423935785440104,44.501465801798794],[11.42384193141728,44.50106329983692],[11.423703511907078,44.50045235100038],[11.423460757231917,44.49939411068821],[11.423412883417125,44.49933807602368],[11.422911454312722,44.49937988824999],[11.422837026618385,44.499385968281885],[11.422600814833565,44.499396050940966],[11.422234352651047,44.4994117004401],[11.421834976065202,44.49941116512226],[11.421494731212059,44.499368316405416],[11.420541724699676,44.498061247906584],[11.42042753413087,44.497904586335615],[11.420374446507482,44.49783169883066],[11.420228346456636,44.497631287379846],[11.422581824491088,44.49713518203347],[11.42265466755574,44.4970994525654],[11.422529595383153,44.49695958913597],[11.419405786709167,44.493457969081504],[11.419549744160827,44.493392912684115],[11.419462862276578,44.4932724851435],[11.4188726557605,44.49245107170478],[11.418256111557852,44.49156953041661],[11.419025487713695,44.49131917326672],[11.420998518959143,44.490676438815484],[11.425048587520564,44.4899125635022],[11.425230290099572,44.49034627222377],[11.42544551604915,44.490859982876174],[11.425503440909063,44.491067872619645],[11.4255323249174,44.49117152972053],[11.42561366191599,44.49114411421355],[11.425803620264222,44.49107968019844],[11.427419886612528,44.49049786519043],[11.428257849402748,44.49021560264073],[11.427104290861742,44.48842336259593],[11.427057384270144,44.4883273629136],[11.426970792438675,44.48831988665631],[11.426819304710449,44.48827978388614],[11.426680114415156,44.48824515574565],[11.42648416044711,44.48825312305453],[11.42625794483981,44.48818084852127],[11.426086290135354,44.48809728903589],[11.425961879791032,44.48803522466515],[11.425888811935188,44.487997961436086],[11.425833991787353,44.48794566813101],[11.42563660060027,44.4877726301349],[11.425517173035155,44.48760300256988],[11.425393175595273,44.487436846936326],[11.425359840415242,44.48737697246922],[11.425304014270584,44.48727670092743],[11.425193743810146,44.48717945047303],[11.425118032135675,44.48710525247238],[11.425039290276803,44.486995934213915],[11.425001168280943,44.486891527937196],[11.4249244231578,44.48682669434463],[11.424955609013537,44.48674576554408],[11.425019120321316,44.486661031603546],[11.425308258635491,44.486412390108434],[11.425734523696145,44.48622947463321],[11.426096083032117,44.486021482277444],[11.42632265831195,44.48593227617431],[11.426712251225412,44.48574644378828],[11.426662840544427,44.48564484549563],[11.426484588251963,44.48547815195607],[11.426361214107873,44.48534574269872],[11.426318421726926,44.485299394722915],[11.426065451571997,44.48518829619041],[11.42568814595068,44.4850730984148],[11.425448092738305,44.48500786620903],[11.424915909781891,44.48491058178117],[11.424602205628885,44.48486998797718],[11.424155511057739,44.484844025113624],[11.42379502046395,44.48481229699118],[11.423198553991508,44.48479457789644],[11.422588284450987,44.48482328992217],[11.42249620815415,44.4848304194604],[11.422060984054948,44.48486261278924],[11.421745992566452,44.484885612691635],[11.420947323286644,44.484938562606615],[11.419966621617448,44.48494911146956],[11.419654250703939,44.48495247093121],[11.41916466466285,44.48495384825636],[11.418979486763332,44.485017971901286],[11.418523952036132,44.48504450828812],[11.418425733493608,44.485044677166314],[11.417888172096944,44.4850456025648],[11.417598935447138,44.48489306232997],[11.416983795767688,44.484794401015876],[11.416845904177155,44.484681134241015],[11.416689578432058,44.484549969399],[11.416484641570394,44.48426905206182],[11.416405477325103,44.484083928327244],[11.416381929718215,44.484027602465396],[11.416290320091056,44.483862216779045],[11.416180594884217,44.48366276535294],[11.416074285661267,44.483657698475305],[11.416003620044679,44.48354497833636],[11.415983297477313,44.48345257581252],[11.41597604100779,44.483250150549054],[11.415972958780177,44.48316415375629],[11.415998539394062,44.48310170528953],[11.416043634929188,44.482991616780396],[11.416000046600965,44.482907391054454],[11.415650797195116,44.48265165774869],[11.415224196789552,44.48248401006225],[11.414909098558818,44.48238996966514],[11.414658561438918,44.482355877416126],[11.414264605505283,44.482255060970004],[11.413949528583883,44.48218070010628],[11.413634350481297,44.48210353179029],[11.41333799935442,44.481949448561146],[11.413166650519198,44.48181161425276],[11.4130933253373,44.481752630152],[11.412872547477061,44.481630140473435],[11.412787259837993,44.481592045922916],[11.412713597936119,44.48155866585207],[11.412223321593526,44.481218504712466],[11.411982776090863,44.48106435400878],[11.411677102193057,44.48087445599135],[11.411371660213165,44.48069016698787],[11.41121005559346,44.48056361530876],[11.411024524761459,44.48046681726299],[11.41093456570474,44.48040832352989],[11.410857227841294,44.48035335223486],[11.410777565390179,44.4802848355947],[11.410617857974666,44.4801333156052],[11.410541881010195,44.48006347414718],[11.41038256462805,44.479916044315964],[11.410160591009937,44.47963997448628],[11.410040654480065,44.479532790228276],[11.409906355555803,44.479439408924335],[11.409763183060731,44.47928320761913],[11.409680333775817,44.47917973938862],[11.409528628725397,44.47895000968475],[11.409436106753096,44.4787831630262],[11.409279424656072,44.478623304140854],[11.409206254900118,44.47856408196619],[11.409029139247128,44.47843765826837],[11.408840147463204,44.47835631732111],[11.40874867192958,44.47831042376996],[11.408567389575715,44.478219669810564],[11.408479071579846,44.47817545406535],[11.408149823297716,44.47806142565132],[11.407948900448792,44.47800037136898],[11.407607894949892,44.477896749409446],[11.407121253247638,44.47773878896958],[11.406667553749116,44.477541296838375],[11.40655887576695,44.477482346260935],[11.406218255724147,44.47729757775872],[11.405973158923489,44.47714689507041],[11.405676973654717,44.47697646258773],[11.405580273168228,44.47690792504835],[11.40544466223896,44.476811726761575],[11.405181640937794,44.476643839455136],[11.404959591374501,44.476467219408796],[11.40486793897086,44.47639261267035],[11.404802717685529,44.47633546986679],[11.404429019156689,44.47601869331607],[11.404285640283055,44.475895121875524],[11.404068937524116,44.47563186169671],[11.403869641077828,44.47547709954479],[11.40377266600138,44.47540179379376],[11.403697644926016,44.475320433428486],[11.40358843958452,44.47520199839225],[11.40341310702347,44.47500819911859],[11.403334505290205,44.47483542875547],[11.403132043810073,44.47461238363766],[11.402906510260127,44.4744016411736],[11.402682217361056,44.47420212143802],[11.402665720100947,44.47414309119153],[11.402483831678829,44.473905848221506],[11.40233019150812,44.47364689102102],[11.40218432386334,44.47348172723822],[11.402072341925239,44.47331866793414],[11.401881133215028,44.47306330847982],[11.401768377570002,44.472919955919274],[11.401637502031596,44.4727561684111],[11.40156973861709,44.47267488617258],[11.401186009761998,44.47236195935473],[11.401039039247785,44.47224605996291],[11.400989212851698,44.47218071588856],[11.400939403593503,44.47213506400772],[11.400708925660414,44.47187997034157],[11.400560349941234,44.4717259225371],[11.400520147784038,44.47168364325506],[11.400457594540056,44.47162317396858],[11.400361658800822,44.47151567901433],[11.400319718530767,44.47147123064049],[11.400211415098621,44.47132103384052],[11.40008463950332,44.47116110041326],[11.400012462002213,44.47101070108305],[11.399917785439854,44.47086696742802],[11.399846126439044,44.47067154907189],[11.399828564161224,44.47060330978995],[11.399796582963397,44.47047904160052],[11.39973853426012,44.47027038629096],[11.39965363600766,44.47009719738426],[11.399507869438764,44.4699885220357],[11.39938131810597,44.46989417130796],[11.399254816709636,44.46976011463872],[11.399032338988157,44.46964213207376],[11.398656006356752,44.46937721977314],[11.398356601745835,44.469239406989885],[11.398079032528114,44.469195731130036],[11.397977085756155,44.4691867639182],[11.397542014695576,44.46914849464893],[11.397355893231248,44.46913158759273],[11.397261939758316,44.46911206318484],[11.39701011066754,44.46911071592551],[11.396776603928878,44.46915420838464],[11.396540636701342,44.469197089451306],[11.396413107660416,44.4692295914984],[11.396307812266791,44.46924037577637],[11.396225135998254,44.46924422957617],[11.39610411087725,44.469186003451014],[11.39583135891952,44.46910677074265],[11.395532136146185,44.46899489141564],[11.395406966383602,44.468928714249245],[11.39595128820011,44.46850447091584],[11.39635630300173,44.46820676945817],[11.396959304968687,44.46781263459783],[11.397141787795341,44.46770355643514],[11.397405656786498,44.467545570425166],[11.397720556171333,44.46740729829972],[11.398239603923464,44.467016603489036],[11.398339150117893,44.46693405373224],[11.3998276836293,44.46596709628034],[11.400228065956986,44.46571054520498],[11.40081777926875,44.46539600228434],[11.401021641008906,44.465289881925145],[11.401209179054494,44.46519614519394],[11.401322219335318,44.46514795892907],[11.401455256248665,44.46505851010221],[11.401629050172142,44.46494738754664],[11.401751075985429,44.46485761189177],[11.401882057597646,44.464756398351845],[11.402004813573797,44.46466547276632],[11.402128223732078,44.46457116821035],[11.402303808850787,44.464446507032655],[11.402467576585238,44.46434009355788],[11.402582022637914,44.46427636003636],[11.402879874234253,44.46412549158111],[11.403267218971815,44.463953603782855],[11.403379896576157,44.46389469142919],[11.403460094635673,44.46384827388981],[11.403403050745244,44.46381751486878],[11.40325119671978,44.46373563367337],[11.40295171493769,44.46338747156642],[11.402867228681233,44.46328122474885],[11.402718617030095,44.46308686156117],[11.402573123338138,44.46289187440398],[11.402475631788452,44.46273694272765],[11.402016812552246,44.462162016548675],[11.401724362312542,44.46227225233951],[11.40154420403176,44.46215113443808],[11.401415505797953,44.461886593280695],[11.401333851158617,44.4618508874358],[11.401277611103362,44.46173195237152],[11.401179221004544,44.461757083344615],[11.400596787099719,44.46207597995106],[11.400112767769068,44.46224651644742],[11.39965870089213,44.46245804442513],[11.398587379598636,44.46291548845346],[11.39843952807158,44.46284489477757],[11.396049492777493,44.464665166168345],[11.3958192434462,44.46458729089731],[11.39547193090933,44.46435545449684],[11.395313757749872,44.464195607309414],[11.395191060810296,44.464077215749846],[11.39508756330607,44.46408219518329],[11.39492940261713,44.46399943056243],[11.39471690691629,44.46385591366619],[11.394650725294673,44.463793718564624],[11.39430756573766,44.46314487811477],[11.394108323854221,44.46276813857821],[11.39387713318771,44.46266665427283],[11.392392361673197,44.462880072891764],[11.391706427954276,44.46249384822501],[11.390477606356646,44.46151019662806],[11.388965815945172,44.46127290425593],[11.388958722191148,44.46142609423259],[11.387591968111854,44.46150869714662],[11.388059110738121,44.462811015828684],[11.387259375537102,44.463043244145],[11.386364563947037,44.4616564633952],[11.38623395434006,44.46157422699184],[11.385688442024792,44.46152880366828],[11.385055687325448,44.46130852612609],[11.384522534293055,44.46118013181567],[11.383751158147188,44.46066172603445],[11.383633481846344,44.46041493378849],[11.383579585466883,44.46032603401588],[11.382967768709229,44.45992469910388],[11.380339669886778,44.460891106470775],[11.38018900999557,44.460946489455196],[11.380061785012847,44.46088950076885],[11.37995216812109,44.460840586323116],[11.379731894417464,44.460794536837156],[11.37938588872424,44.460774600254766],[11.379186714251771,44.460679309143465],[11.378843939976743,44.4604799616746],[11.378449009889614,44.460369474492886],[11.3779951440282,44.46029734654243],[11.377360312259043,44.460218294587314],[11.377061153829155,44.46012549970471],[11.37644766117399,44.46006906499905],[11.376106297907203,44.46000077917173],[11.375747525633505,44.45985182997933],[11.375570931576808,44.45973959640304],[11.375388830115014,44.45954983646918],[11.375298746246424,44.45940148622496],[11.375229457689684,44.45924256927357],[11.375159386542311,44.45913946326892],[11.375113328594162,44.45907169411072],[11.375092325656686,44.458979856209105],[11.375160592067664,44.45872636845487],[11.375286838464636,44.458352401287094],[11.375306920595245,44.458169682385545],[11.375268321779574,44.45807033629247],[11.375337014220332,44.45780783989353],[11.375311255856015,44.45765701679096],[11.375179800270589,44.45743751122861],[11.375137609215974,44.45738493948035],[11.374978153445921,44.457307798674066],[11.37489236173316,44.457148666673],[11.374930969777523,44.45689973904119],[11.37494948626059,44.45669792005403],[11.375057121476425,44.45646556451917],[11.37512612336993,44.45630771130614],[11.375224762822084,44.456144175750055],[11.375332769385894,44.45586342010387],[11.375391587718854,44.45564783142237],[11.375517170412127,44.45521929102268],[11.375616738334028,44.454788485821155],[11.37559916916903,44.4546459337924],[11.375516092141112,44.45437927928215],[11.375303484850683,44.45428917879295],[11.375150079218091,44.45412864597915],[11.37506985145702,44.45389344005509],[11.374947212445953,44.453736201747304],[11.374854571768038,44.45365991849745],[11.37444672705512,44.453656019013884],[11.374369729243623,44.453655370902204],[11.374225598360802,44.45362548854621],[11.374037844157417,44.453587439784094],[11.373916271152158,44.45356242899103],[11.373831744185747,44.453543835169086],[11.373633514504586,44.45349569769079],[11.37362355427473,44.45321120461469],[11.373632907293038,44.45272488506719],[11.373966980224303,44.45240117146079],[11.374157509793752,44.45231505892959],[11.374415965972613,44.451618191095314],[11.374142859851693,44.45019024509923],[11.373548881876218,44.45006981323938],[11.372259836246979,44.44946645021882],[11.371259677318061,44.44914908047322],[11.37050494805198,44.44882153818098],[11.370392831542139,44.44872934160413],[11.370214108272439,44.44868016021292],[11.369939758993402,44.44886871485795],[11.369705736266747,44.449024932468],[11.369531233642263,44.44907975482419],[11.369327658657275,44.44909579683007],[11.368956538903731,44.449261041173656],[11.368807434523035,44.449439109619554],[11.368502542109786,44.44980497029704],[11.36807970187035,44.450147960579834],[11.36772187671784,44.450253840846436],[11.367007377611893,44.450474591796215],[11.366856534518362,44.450483673633684],[11.366765254874108,44.45048916983166],[11.365871549123632,44.45074569633174],[11.365478128156907,44.4509428997653],[11.365240587059995,44.451051356087454],[11.36517888307743,44.451079633524074],[11.365022827738146,44.45112345478265],[11.36466706529187,44.45122358783352],[11.36327386983136,44.45192520381132],[11.363106904087038,44.45184161296966],[11.362937265656427,44.451725561609166],[11.3627921804279,44.45160362467992],[11.362636861899817,44.4514248586546],[11.36240653948639,44.45114773292457],[11.362196367723724,44.450922524020214],[11.3620620975804,44.450767760321874],[11.361917369452808,44.450645846377896],[11.361728449534558,44.45049953012091],[11.361493125288824,44.45031254033245],[11.36134207565136,44.450189631126456],[11.361258713339726,44.45010920541076],[11.36119444360373,44.45003457563671],[11.361138308084772,44.44996709559321],[11.36101940365843,44.449823263061205],[11.360937859308704,44.449729298672985],[11.36084831199071,44.44965125926042],[11.360751267376598,44.449562683626695],[11.360582968697855,44.44942099650823],[11.360395003947051,44.44927016248092],[11.359944654968125,44.448920502844814],[11.359842882563745,44.44883145611678],[11.359738354865833,44.44873234220227],[11.35967698419798,44.44861263444056],[11.35957045755125,44.448405537003595],[11.359519452464083,44.44830924878178],[11.359436132681454,44.448151746243596],[11.359345719807584,44.44797413133541],[11.35922936848981,44.44776666586573],[11.359187120326803,44.44771625707078],[11.359120014726873,44.4477495059493],[11.359050759586971,44.44776866820799],[11.358883242613699,44.44769003740469],[11.358815395654734,44.447658190066875],[11.358748885378445,44.44763297771423],[11.35869292731478,44.44760107909485],[11.358714882255214,44.44724897531806],[11.358746614492798,44.44702269352004],[11.358644600502194,44.446243320030746],[11.358574868659623,44.44605399088572],[11.358425736380156,44.445988106774415],[11.358221719240381,44.44598307886483],[11.357821792904307,44.4460127673496],[11.357633641420824,44.44602673425323],[11.35742741795831,44.445996109966075],[11.35713204238402,44.4458969916677],[11.357077541825518,44.445849407044044],[11.356990392677789,44.44577331625472],[11.35689480079591,44.445603124284126],[11.356706101869268,44.4452660511712],[11.356432213907958,44.44474045604263],[11.356307987212656,44.44461398136111],[11.35622486175213,44.44452935009614],[11.35612601985478,44.444484524817874],[11.355905663081884,44.444384588605125],[11.355355684307263,44.444197856883086],[11.355211340470369,44.44414909846528],[11.35487309503115,44.444077309496116],[11.354647531158452,44.444053829106],[11.354447594408128,44.44408158690229],[11.354082783094599,44.44402015338338],[11.353761647717812,44.44395675676784],[11.353666769434332,44.44390188831011],[11.353571596132445,44.443761500695594],[11.35347836493687,44.443503089770836],[11.35344366361085,44.44320655520778],[11.353413936496963,44.443101949324834],[11.353415142984158,44.44299502676736],[11.353290229472076,44.443052732404574],[11.353003779018557,44.443042351924994],[11.352745962873783,44.44303300909928],[11.352640702154009,44.44303236165155],[11.352332795491561,44.44303139973921],[11.35205955658072,44.44303308778537],[11.351910494674486,44.44306759164007],[11.351812084876757,44.44308995366164],[11.351499085330536,44.44317741752744],[11.350766807162705,44.4432418721167],[11.350631171359094,44.443253809761174],[11.350477514829622,44.44331458433098],[11.350324751033446,44.44337500452479],[11.350222055518259,44.443415138558464],[11.349530607975526,44.4434823923386],[11.349130645952128,44.443477123697996],[11.348807671469723,44.443414003029936],[11.348614369491145,44.44345061375053],[11.347348799842305,44.44208100493246],[11.346565740737754,44.44197078112976],[11.346204623227493,44.441950753653884],[11.345948208477187,44.441807922752275],[11.345752678622924,44.441631898871584],[11.346966001243443,44.44039557253041],[11.347395160747158,44.44048296666537],[11.346815389666864,44.43922329965182],[11.346994798604568,44.438604634001166],[11.347119103033597,44.43841416186164],[11.347119393781231,44.43820597152454],[11.347088114961808,44.437895471934866],[11.347157944280859,44.437717360119336],[11.347231063023816,44.43758251534445],[11.347224209959707,44.43748981387963],[11.347192591003525,44.43735825605852],[11.346201644817869,44.43713385785064],[11.345435913468288,44.43695548483939],[11.344322723319415,44.43696428478652],[11.343817055685758,44.43696566759566],[11.343542175045943,44.43694542742885],[11.343283968672365,44.43698842899739],[11.342986878007109,44.43708061043016],[11.342801930409268,44.43708489686861],[11.342593274211543,44.43697784563979],[11.342368440460664,44.43683448451066],[11.342014011580755,44.43669039688523],[11.341812446598121,44.43653924913949],[11.341598416387447,44.43645203502757],[11.341467724600312,44.43663802841328],[11.341326492755517,44.436739392237214],[11.34088346859878,44.43685425298434],[11.340312055062668,44.43695936953485],[11.340220615139266,44.437226253320205],[11.340125286831821,44.43737561601572],[11.33988871238081,44.43756726647626],[11.339650836311122,44.43776569219867],[11.339524098285722,44.43783693185819],[11.339311715709828,44.43804440121923],[11.339165134480634,44.43811042242575],[11.339049912155867,44.438174674706985],[11.338905435441829,44.438214768833305],[11.338650986203618,44.43831281436602],[11.338325783529408,44.4384286353449],[11.337744971638909,44.43865321568007],[11.336679404600336,44.43904974944846],[11.336559980062537,44.439146718825015],[11.336397711544725,44.43942967444019],[11.335430515055497,44.43957999020402],[11.335333929188,44.43914254864366],[11.335298490759188,44.43898235710356],[11.335185029536978,44.43883501998595],[11.335154528889914,44.438621266791216],[11.335092373669319,44.43852878569385],[11.334926617544674,44.43828215323873],[11.334821305051051,44.43822073247018],[11.334511269701293,44.43824451437455],[11.334375875840848,44.43821690011282],[11.334342021867096,44.43815570016591],[11.334367992745454,44.43801901088277],[11.334298462948041,44.4378111229649],[11.334153076208395,44.4377296949241],[11.334040944256946,44.437713988288365],[11.333862534256655,44.43755277724062],[11.333641035494876,44.43720527657511],[11.333535709311116,44.43711313698048],[11.333446947362154,44.437035762887234],[11.33339187009882,44.4369137352985],[11.333363406762942,44.43685066939772],[11.333282765225988,44.43669927549728],[11.333243425468936,44.436651211972794],[11.333120154282195,44.43650060643239],[11.33309804794344,44.43635927440892],[11.333009614854467,44.43622885664118],[11.332978977257733,44.43611020758496],[11.332879885773195,44.4359720404297],[11.332731351745384,44.4357884609726],[11.332650920742507,44.43568823631253],[11.332597116569561,44.435572232797135],[11.332494502034873,44.43546426103933],[11.332388339452311,44.43533794011296],[11.332399827009946,44.4352251729757],[11.33249806426549,44.43505662178491],[11.332467655766097,44.4349629107788],[11.332331803337054,44.43481526842134],[11.332645172661946,44.43458447853293],[11.332683923318022,44.43452204921427],[11.33270365243533,44.43446708444543],[11.332663608273434,44.43434262020069],[11.332702799027247,44.434239767498255],[11.332729728908353,44.43416909316633],[11.33268431775484,44.433947818073214],[11.33264526770941,44.43386192580141],[11.3326303636768,44.43378346402148],[11.332570319554641,44.433655839857714],[11.332767752247312,44.433526339345185],[11.332814540527789,44.43343928985811],[11.33279089514243,44.43337789069081],[11.333018098151808,44.43325029484364],[11.333189467586896,44.43324824001318],[11.33330699806958,44.43321701577812],[11.333412778395173,44.433258838356274],[11.333491237394867,44.43333600091757],[11.333610545577427,44.43332626292334],[11.3336948691722,44.43328625290439],[11.333777021625732,44.43329527546408],[11.333851379414643,44.43328650117326],[11.333906270162617,44.43324452074941],[11.33448384793072,44.43325888162703],[11.334536469631233,44.433318005325575],[11.334638872253374,44.433315094593254],[11.334781044293344,44.433208920600215],[11.334890586635279,44.43318494028353],[11.335033103754558,44.4330906636651],[11.335236656542373,44.433005026523155],[11.335405499553174,44.43303635496047],[11.335513304218434,44.43304202382657],[11.33557756749854,44.43301748110813],[11.335920406097562,44.43301525105664],[11.336095773027909,44.4329703397492],[11.336401817334375,44.432946937706205],[11.336576732819857,44.43285709051239],[11.336814289640575,44.43283137747912],[11.337407638305809,44.432687570972526],[11.33764163707307,44.432676626356],[11.337784862809455,44.432704076384724],[11.33802649177288,44.43267241418286],[11.33835019655972,44.432580852776745],[11.338538488159825,44.432600865507666],[11.338620357153541,44.43260593834054],[11.338700466139603,44.432607520038836],[11.338660015370019,44.43247796635696],[11.338562006964684,44.432343815850444],[11.3384516363846,44.43217559241191],[11.33841231886966,44.43207568096715],[11.3383937125199,44.43188476059123],[11.33831768794487,44.43171133406538],[11.33825417667527,44.43155622669122],[11.338152830534707,44.43141707673807],[11.3381845784416,44.43128757536861],[11.338241344664834,44.43111649537474],[11.33830126677924,44.43096504251835],[11.338331185655036,44.43082938672536],[11.33830681485247,44.43067121891685],[11.338316432343289,44.430577630289996],[11.338253033360598,44.430385936700496],[11.33812932167796,44.43015834356559],[11.338294255038003,44.42992315661237],[11.338275445060226,44.42982564096831],[11.338216492288074,44.429725573461326],[11.338332758511921,44.42962866692778],[11.338278300782415,44.42942498174661],[11.338247775476564,44.42928943871699],[11.33811926523546,44.4292566294106],[11.338045987320006,44.429171479584504],[11.338001552889315,44.42909168415455],[11.337976338413588,44.42898048005448],[11.337982700283714,44.42886444134108],[11.337972113438287,44.42877372416325],[11.337963826568767,44.42866677718936],[11.337872348567588,44.42857806684371],[11.33779725992247,44.42853521203344],[11.33763682496398,44.42848048967434],[11.337527152846135,44.428447284933405],[11.337420178288895,44.42840334172039],[11.337323605993626,44.4283512408171],[11.337152528964682,44.42826759674168],[11.33693146914336,44.42815846270186],[11.336722398532933,44.4280744092348],[11.336547788886273,44.42800764851623],[11.336361694672703,44.427928748794955],[11.336222393034186,44.427880957668826],[11.336080774383847,44.42783403210398],[11.335960286771439,44.42778617073143],[11.33586321620607,44.42773414899916],[11.335752226961816,44.427658084821296],[11.335598676369516,44.4275583859303],[11.335512549184203,44.42751606063106],[11.335374439197407,44.42744818946465],[11.33514065010517,44.42735451377732],[11.334892678039006,44.427259435250775],[11.334690923903938,44.42718141033559],[11.334589464212476,44.42713735256688],[11.334455285302722,44.427060762996284],[11.334396318579604,44.42699950935106],[11.33429517061867,44.426893732667125],[11.33420429829638,44.42680317407683],[11.334129571397067,44.426728703850635],[11.33403337900851,44.42665921236208],[11.333922825960833,44.42660408963062],[11.333794622085383,44.42655888547926],[11.33368851225266,44.4265248299997],[11.333623253716226,44.42649786323861],[11.33355620010113,44.42646698378607],[11.333413610563666,44.42641531427683],[11.33316768288239,44.42633200762905],[11.332893621426186,44.42625208233608],[11.33275886679084,44.426219952722874],[11.332612835763792,44.42620043705381],[11.33244206427199,44.42619041738231],[11.332231815922372,44.42615533020654],[11.33210426157676,44.42612642771233],[11.331905470710215,44.42608322967784],[11.331720707741617,44.426037486969605],[11.331541297866403,44.42598770148546],[11.331379040395369,44.42593531482563],[11.331197580008855,44.42587375323767],[11.33104005112208,44.42582182858001],[11.330877873929094,44.425771122112586],[11.330722659413725,44.42571802446101],[11.330483128361037,44.425598014596645],[11.330307282803943,44.425499762045796],[11.330100571781443,44.42537569740756],[11.32984137227327,44.425234695261175],[11.329581450392043,44.42509539881237],[11.329307228470569,44.424991276921716],[11.328834310173443,44.42482650870404],[11.328610979137405,44.424738221019254],[11.328314632526872,44.42463061579158],[11.328068142944092,44.42455236711528],[11.327942083649615,44.424521746916795],[11.327660611290735,44.42449203594952],[11.327329279022297,44.42445209050363],[11.327040747625011,44.424343197328795],[11.326364060373912,44.42389055363533],[11.325942215906025,44.42366677244153],[11.325793264853077,44.42363267682744],[11.325650657510149,44.423600128928655],[11.325217557781688,44.42362695974256],[11.324757682229885,44.423691459166044],[11.324339484516377,44.423759254650584],[11.324123173212227,44.423758032225],[11.323813851776185,44.42374780896334],[11.323569417014223,44.42371105116613],[11.323240440397043,44.423661579862994],[11.321785933907798,44.423272561035205],[11.320396232626447,44.4228546392497],[11.320222759331486,44.422776014708255],[11.319958187845089,44.422498381595865],[11.31980456566284,44.42236076088798],[11.3196985190122,44.42231707561067],[11.319479530040628,44.42226673218932],[11.319329129755722,44.42223157097429],[11.319167316281941,44.42219374175296],[11.318843122835691,44.42211536820135],[11.318755730059797,44.422109264444344],[11.318292333244461,44.422143996986996],[11.31789281337407,44.42216617589246],[11.316867699988748,44.422251127547376],[11.316684827112322,44.422264887333505],[11.31596673195059,44.42231891807431],[11.315887971008847,44.42232504770737],[11.315731929240057,44.422337190362676],[11.315639022297512,44.422348493280545],[11.315369974923858,44.422380526434864],[11.315182468601169,44.42239953526174],[11.315029310257021,44.422377881993214],[11.314884929268413,44.42234030173825],[11.31469833245033,44.42224730959973],[11.314564196304206,44.42217069566795],[11.314381238019967,44.42207110789845],[11.310433610633126,44.42467545001488],[11.309835078802399,44.42506664571544],[11.30973987686956,44.42510870013231],[11.309419753741953,44.425246801586006],[11.309169894933001,44.42550110705256],[11.308863520791764,44.425576512527286],[11.308782551751218,44.4256338506215],[11.30862088075655,44.425814912090296],[11.308402495970954,44.425971813525706],[11.308076019702293,44.42613483225546],[11.307871778276185,44.42627174497672],[11.30774276925555,44.42638519587561],[11.307581900645417,44.426427263390245],[11.30740022962285,44.42651927871098],[11.307204652538077,44.42669709122405],[11.307003374335256,44.4268896429981],[11.306599912440445,44.42715154621848],[11.306045823873156,44.427364266151606],[11.305827215511405,44.42732864108714],[11.305515332319034,44.42733698828503],[11.305398185164341,44.427340122908376],[11.30533413729341,44.427407526289954],[11.305236835275908,44.427509923672766],[11.304974202065216,44.42766647060188],[11.304827939561951,44.42775365368095],[11.304572454447598,44.42790593946889],[11.303937488092497,44.428054999197464],[11.303598981528522,44.42818946362759],[11.303396489711448,44.428291449635154],[11.303151650164484,44.428334656918665],[11.30290566328773,44.4284088199381],[11.302771624691973,44.42851449135862],[11.302633507560998,44.4286765116306],[11.302568607873754,44.42875247389999],[11.302329353145838,44.428889129518545],[11.302218303393158,44.42890608620956],[11.301861958602343,44.42902346398274],[11.301701966023513,44.42913663701968],[11.301555180174931,44.42922939261907],[11.3014749615455,44.4292536743032],[11.301375939667667,44.42928364820748],[11.301381852436586,44.42940817340262],[11.301358523709258,44.429540000270755],[11.30131012347485,44.429598789326285],[11.301239352326352,44.42968475381734],[11.301238416644042,44.42976073124249],[11.301339745037378,44.42984196429277],[11.301546429067331,44.43002628144726],[11.301634808648352,44.43021749280884],[11.301716377746596,44.43027492277687],[11.301740197978132,44.430341959514934],[11.301787600121635,44.430469287788256],[11.301837933546054,44.43065113211356],[11.301831593611547,44.43078967797088],[11.301540641403587,44.431018911475114],[11.301493430937676,44.431096379970555],[11.301486381842162,44.431256881616726],[11.301464730629137,44.43132540227107],[11.301272250932497,44.43142267332774],[11.301164028324964,44.43152613985577],[11.300964415061319,44.43162187164069],[11.300920765824742,44.43169026842681],[11.30087745135451,44.43177007617584],[11.300757243689832,44.43186517309078],[11.300650165388674,44.43189771506512],[11.300564826849959,44.43190922407146],[11.300439267809194,44.43192615634064],[11.300165614264841,44.43193617078813],[11.300027699127352,44.431983399732545],[11.299806232826157,44.43211639493642],[11.299640336302005,44.432181165616335],[11.299573880626998,44.432204660075485],[11.299408660148394,44.43225638044387],[11.299254287474504,44.43230449809115],[11.299164505102613,44.43231756474194],[11.299090829196789,44.432401189937366],[11.299020798218194,44.432437484552715],[11.298936229693211,44.43252358771059],[11.298856193726886,44.432625350105575],[11.298743051717087,44.432743537763244],[11.298593115570092,44.43288496583133],[11.298334439478229,44.433056715455635],[11.298184871071395,44.4331671943793],[11.297999454804222,44.433264884846956],[11.297910331592721,44.43335502196601],[11.297942732244076,44.4334459573298],[11.298027532218684,44.43352033037785],[11.298046108724503,44.4335936652553],[11.2979957794407,44.43363181142826],[11.297880850097826,44.433662331161365],[11.29776885294311,44.43369207877084],[11.297636497582422,44.43364360828722],[11.297506346048266,44.43362590395875],[11.297397787887045,44.433701239387716],[11.297365649457142,44.43380259403738],[11.29729745191719,44.43394352591985],[11.297065418809266,44.43403835215267],[11.296696031421256,44.43412834514951],[11.296403182512472,44.43416967795003],[11.29611514998579,44.434213729970786],[11.295837425241851,44.43430417750787],[11.295662587991444,44.43431170048738],[11.295574161496045,44.434175101211736],[11.295410317788381,44.4341018701064],[11.295335626169573,44.4340994396837],[11.295235466184655,44.43415254835072],[11.295050471150633,44.434148164612914],[11.294654494653743,44.43415139122234],[11.294504965698888,44.43425022353318],[11.294483038721921,44.434365271804474],[11.294400541194378,44.43442431290119],[11.293871888618607,44.43441974522471],[11.293694005564548,44.43446946114777],[11.293554547899577,44.434557789326774],[11.293347734840001,44.43453043497223],[11.293392492374878,44.43436974349823],[11.293391351613792,44.43422461646717],[11.293390715386707,44.43414359518239],[11.293333065254068,44.434074977647995],[11.292994816678151,44.434040138905026],[11.29306299759129,44.4339560608854],[11.293201421992945,44.433861571218166],[11.293358865410926,44.43371099074439],[11.293470977172326,44.43356583007843],[11.293571060178314,44.433414709227804],[11.293692890542117,44.43327722836746],[11.29379472277884,44.433050122637795],[11.293783598196848,44.43294625337193],[11.293813015061794,44.43287533835379],[11.293945627692658,44.43273257221906],[11.293974273777483,44.43264197092228],[11.294165965218744,44.432403493181134],[11.294630963391285,44.43146465095759],[11.294631427112975,44.43131609862798],[11.294646724725158,44.4310648576586],[11.294615308901738,44.43092426325303],[11.294630001459842,44.430757983678696],[11.29467220799925,44.430512383743505],[11.294540160585338,44.430188135939495],[11.294697806099588,44.429796001848736],[11.29469355402741,44.42969360860671],[11.294630142464694,44.429540795599536],[11.294577558138434,44.42939873614143],[11.294553668336473,44.429189159027466],[11.29454698029367,44.4291184023237],[11.294516104799504,44.428991863225505],[11.294461390113666,44.42893783049553],[11.294424214891139,44.428770342772786],[11.294395653167529,44.42862237465],[11.294320869124993,44.428517256025124],[11.29418023376154,44.42855524482052],[11.294035254221399,44.428562100443216],[11.293736669545739,44.42849664096134],[11.293627480244673,44.42835480101871],[11.293438966876437,44.42811214518802],[11.293358785191408,44.42798941404969],[11.292880716434311,44.42783134028766],[11.292513496304021,44.42785729175113],[11.292121406906277,44.427910172395414],[11.291656164232393,44.4280601715418],[11.291398313298204,44.428092356397975],[11.29098358817579,44.428088305317964],[11.290818466823008,44.42810231105665],[11.290644799330407,44.42811873773632],[11.290517227546967,44.42814942181996],[11.290360856400403,44.42806591745303],[11.289979715878257,44.4279165789642],[11.289508588802416,44.42779549388417],[11.288032619225465,44.42753757157087],[11.285856865723183,44.427193493588646],[11.285296500330496,44.42709893808866],[11.28370583977673,44.42683875079769],[11.283257800571063,44.42676557127067],[11.283566459213814,44.427402783400616],[11.283567554971045,44.42747503180929],[11.283568412766511,44.42754368671995],[11.28357486835769,44.42793122680825],[11.283579436184404,44.42818938711988],[11.283582938097402,44.428944396430985],[11.284354264024692,44.43203422143133],[11.284918383167497,44.433090279288834],[11.284933477192395,44.43363856373424],[11.285055251108668,44.43794995335826],[11.2850712329301,44.438641695047515],[11.284118485098148,44.439967233947925],[11.28351496806555,44.43999787420663],[11.282062645119204,44.444266469337826],[11.283148583111318,44.44694039973129],[11.283501397137403,44.44789153793161],[11.284768093134293,44.45139827479629],[11.284645675199762,44.45175488496605],[11.284593024761051,44.451875747489154],[11.284726263224556,44.45265347409373],[11.285376681241344,44.45384454131697],[11.28579389030649,44.45460924781078],[11.286021267652924,44.455161712074045],[11.286119459713303,44.45554403835266],[11.286151583603182,44.45560246940189],[11.286576174542525,44.45595462524306],[11.286858288466298,44.45668154176383],[11.28689223750703,44.45682658640226],[11.287255916584359,44.45823379343244],[11.287313131224101,44.45947722320517],[11.287554733997007,44.459930373993856],[11.287534561359859,44.460097887065245],[11.289077924216697,44.46027006731088],[11.289165440988468,44.46055919543016],[11.289333410140564,44.460394910048265],[11.289598984378056,44.46045597527706],[11.289791415764585,44.46057534156539],[11.289916075706206,44.46064935740673],[11.290162496548142,44.46070293116755],[11.290333385573414,44.46069331092779],[11.290628452458202,44.46076559852271],[11.290787819726559,44.46080290848079],[11.290895393161417,44.46090202528309],[11.291006105785096,44.46096057021088],[11.291156812479159,44.46097723732761],[11.291280822587346,44.46097419020014],[11.291910383183351,44.46114216016382],[11.29210422761209,44.46117709354103],[11.292328270102455,44.461321128222025],[11.292598297465508,44.46141586483918],[11.293145267177168,44.46156072834384],[11.293180356113558,44.46163429015407],[11.293084847058452,44.46170316726527],[11.292824329566141,44.46197171690155],[11.292761498373318,44.46225317870862],[11.292805606106393,44.462296175667525],[11.292936048814502,44.46303906432792],[11.29259848222964,44.463346860997454],[11.292301555817472,44.463521058699044],[11.292227536554488,44.46355515690296],[11.291953653210737,44.463672643440475],[11.29190126485496,44.46371926961778],[11.291828060145107,44.463936231152545],[11.291714603660399,44.46405686720062],[11.291634635150459,44.46411829853875],[11.29157111343409,44.464154575703795],[11.29149536347864,44.46418800508885],[11.291420831414191,44.464220757307274],[11.291329681951636,44.46426525619203],[11.291086674732842,44.46452557235602],[11.290950221337066,44.46471286341114],[11.290926381826846,44.46480617130418],[11.290767888053221,44.46497196033093],[11.29062034562425,44.46513696224168],[11.290541255620678,44.46528427464],[11.290386901235998,44.46565647221848],[11.290227527654567,44.466020886013375],[11.290175124435606,44.46622786140594],[11.290157793979875,44.46660855983648],[11.290048421249368,44.46714639508948],[11.290135705252286,44.46718852689841],[11.290180013050746,44.467236588244106],[11.290199806364464,44.46740105012193],[11.290290942363328,44.467421163126495],[11.291328332592057,44.467227054069376],[11.291447779267866,44.467247721391445],[11.291640613855781,44.46856100984423],[11.29262504438915,44.46880006080719],[11.292621178681172,44.46888172123573],[11.291597951197527,44.469237598909864],[11.291734391745992,44.46943122699023],[11.29219821537286,44.46971843089341],[11.293336811117584,44.46980207665243],[11.293698735214344,44.469732741303446],[11.293724466302205,44.46978793975986],[11.29369437056108,44.46997135132248],[11.293670700936639,44.47010014621333],[11.293626487369783,44.470307347410674],[11.293430126341796,44.47075821260885],[11.2932849707915,44.4710041953998],[11.293122346787063,44.4712068630713],[11.2930001857287,44.47135910498371],[11.292817608594522,44.471554954026594],[11.292774050983583,44.47160128976071],[11.292615348103775,44.47178227773818],[11.292086533869645,44.4717822047],[11.292120810458254,44.47173228090263],[11.292486452769676,44.47119971721589],[11.291241134637477,44.47069580918559],[11.291099629901579,44.47093948424918],[11.290831442855247,44.47131452391945],[11.290649056859934,44.47153310826087],[11.290519154009793,44.47156666483465],[11.290472639869476,44.471723448345834],[11.290520049907828,44.47235266320072],[11.290570188652014,44.473031330655495],[11.291087921991327,44.47300912457487],[11.291310554706577,44.472995656535865],[11.29167656874498,44.473091834442855],[11.291344060013934,44.47379112421066],[11.291433812479358,44.473815773312964],[11.291414673164908,44.47388873159114],[11.291363772581525,44.473973595607326],[11.291227185180356,44.4741980204544],[11.291090492012344,44.47435942103225],[11.291039142469748,44.474472985238634],[11.291534954856772,44.474452341451844],[11.29170963965587,44.47445840152271],[11.292005293657077,44.47471409515541],[11.291694300877158,44.47490172315469],[11.291469963483335,44.474919521174954],[11.291415064257928,44.474882365057525],[11.291217099765001,44.47490909645278],[11.290821966464124,44.47544903447325],[11.2906329739831,44.47557941768035],[11.290343415699635,44.4757308429195],[11.28964731548123,44.47585637361806],[11.289366076167058,44.47601668946121],[11.28896800008094,44.47630655479908],[11.288941614772849,44.47647588472227],[11.288965045941223,44.47669315512445],[11.289178416294822,44.47708554347975],[11.289384842409646,44.477480877602524],[11.289860537687455,44.477411921233106],[11.290245377045133,44.4773324282117],[11.290763005041617,44.47731538943891],[11.291284408788453,44.477404779966285],[11.291482033234688,44.47733527442355],[11.292283408652533,44.47696978614049],[11.292414698837012,44.47686580061192],[11.292536079027828,44.47690000343102],[11.292787900155197,44.47708962128537],[11.292796978042812,44.477160896732634],[11.29270952910013,44.477275744831495],[11.292412743774012,44.47762322907675],[11.29210628914082,44.47776441581764],[11.291962841363658,44.47785394607517],[11.292061561370524,44.47808715606028],[11.291444577827862,44.478285207290185],[11.291359998299384,44.478352739030576],[11.291124317815632,44.47841486104605],[11.291139660207195,44.47858616175697],[11.291586584960209,44.47890127288671],[11.29179387359978,44.47915761092093],[11.292032243087544,44.479364940632905],[11.292196549076811,44.47950680854079],[11.292236168905767,44.47963542139582],[11.292314179834184,44.479741321060054],[11.292699125568612,44.47995864856366],[11.293089256644091,44.4802681453123],[11.292630178309723,44.48036501179881],[11.292631705073221,44.480203627095385],[11.291901961261466,44.48014792553275],[11.291283584288998,44.480656051034046],[11.29163871010654,44.480974696798725],[11.291169090043681,44.48150513000223],[11.290905921121652,44.481668520327375],[11.290544299859615,44.481926718379235],[11.290396201406182,44.482078221892245],[11.290752270140416,44.48222017638277],[11.291189588280327,44.482289608473444],[11.29146521345909,44.48228407613176],[11.291503628899536,44.482341821889875],[11.291276538067653,44.48259337954403],[11.29158364949773,44.48271943921217],[11.29188378387264,44.482897964111615],[11.291913039940686,44.482982618803575],[11.291867485927883,44.483163857051245],[11.291844252223493,44.483272914883585],[11.29183577472374,44.48337773434274],[11.291851761658876,44.483464621547014],[11.291869293091027,44.48353122792311],[11.291955346643919,44.48362120773894],[11.292024460713376,44.4836400788989],[11.292143597288975,44.48363206215159],[11.292322622190463,44.48360765038184],[11.292419418310027,44.483593723618775],[11.292498866171735,44.48357260302438],[11.29256926963712,44.483544181285],[11.29268108906762,44.483489610495724],[11.292813889347201,44.48340873472993],[11.292913733339493,44.483329646060035],[11.293067916778659,44.48319264134538],[11.29316704823631,44.48311525019829],[11.293262922079517,44.483054816358724],[11.293330008379671,44.48302196052708],[11.293452575427393,44.48298123108531],[11.293888034928788,44.48288246560942],[11.294348652834612,44.48276553927856],[11.294597058523587,44.48280575698221],[11.294874099218864,44.482976295821764],[11.295453386858904,44.482877998857354],[11.295496294384211,44.48299022769465],[11.295553890054313,44.483196128256736],[11.295599074234474,44.48332630960439],[11.29569670875835,44.483551096588776],[11.295752650078676,44.483594979569524],[11.295887158525128,44.48363784865527],[11.296166121128575,44.48371720530599],[11.296311839518117,44.48374521513928],[11.296450026105772,44.48378181867692],[11.296586839724299,44.483823516172905],[11.296811346370433,44.48387694902312],[11.296898966643715,44.483906694175026],[11.296997174984522,44.48394579297301],[11.297113898468881,44.48395638596893],[11.29750433709345,44.48401211197708],[11.297685367058822,44.48403884761628],[11.297733384042077,44.484180792923],[11.29775737102565,44.48431140995344],[11.29778624812392,44.484456265635124],[11.297763619705758,44.48453070845485],[11.297730574646314,44.48460958122363],[11.297703688015151,44.48468552310348],[11.29768325585421,44.48480577499847],[11.297678600479141,44.48490714386123],[11.297674904065524,44.4850332506907],[11.29767284021387,44.485200958569564],[11.297666303481797,44.485334439644554],[11.297664578749659,44.485390743334484],[11.297661148390617,44.48552359293528],[11.297654430426945,44.48561262871828],[11.297655188970849,44.48569194635572],[11.29765074166718,44.4857989347625],[11.297649692862407,44.48587209698275],[11.297651109358274,44.485928335642576],[11.297636712490162,44.485982074859386],[11.29762178079193,44.48604201663083],[11.297612206426237,44.48609847650461],[11.297601874864238,44.486155508860534],[11.297599657509101,44.4862590828094],[11.29762830697748,44.48636821738525],[11.297651962109734,44.48643020022754],[11.2976639890747,44.48649634932272],[11.297659134074298,44.48662241372471],[11.297615579107193,44.486684681652186],[11.297401948742653,44.48692867233551],[11.297196920258589,44.48716032108439],[11.297118766314025,44.48721261552313],[11.29703262347986,44.48727087805354],[11.296809831375267,44.48752179289458],[11.29675706810849,44.487579122542314],[11.296681685561653,44.487661095558956],[11.296369685068086,44.488002146668926],[11.295811243410906,44.488632851557036],[11.296010975501275,44.48872532487491],[11.29599311393537,44.48882105641361],[11.295928548558573,44.489178507132294],[11.295837414774226,44.48962033064942],[11.295822332550891,44.48969422336186],[11.295805737806786,44.48977456693797],[11.295708639026879,44.49026433414765],[11.29565386652455,44.49055126255842],[11.29559819438221,44.4907487872882],[11.29492769661406,44.49061368559002],[11.294640127994956,44.49055645023664],[11.294294025737624,44.49048969854268],[11.293914262016726,44.49040971005125],[11.293682555913287,44.49036135579033],[11.293532400763509,44.490330019901705],[11.293255708047537,44.490269187573944],[11.293133748366865,44.49023998543124],[11.292951029707426,44.49019653312714],[11.292540168292463,44.49010182745048],[11.292187380044977,44.490025078728124],[11.291825338383935,44.48995244779792],[11.291450897890957,44.48988457385825],[11.2912623713413,44.489847282278625],[11.291191040361907,44.48983919583175],[11.291054812235785,44.489805873910804],[11.290744517849804,44.48972995040484],[11.290455945545501,44.48966709998247],[11.290232452351901,44.489612739515955],[11.290098484782833,44.4895636989748],[11.28993221609769,44.48949981595776],[11.289810369800104,44.489439243927634],[11.289709653534327,44.48937599826771],[11.289614942650411,44.489305881234664],[11.289502780534962,44.48921134696623],[11.289345972721803,44.48904064365855],[11.28921272084732,44.48891304704647],[11.2891381401672,44.48895196883789],[11.2892219179953,44.48910445521602],[11.289140632305582,44.48909596125627],[11.288854585068993,44.4891174465096],[11.288518355063378,44.489161887428146],[11.28841787333436,44.489185275971494],[11.288183615322776,44.489204605949425],[11.287886288735443,44.48921900678546],[11.287730460492917,44.489233946202816],[11.287523776513897,44.489254962899984],[11.28714778931174,44.48928781287283],[11.287063275219776,44.48929739033935],[11.286986335110278,44.489272216521066],[11.286829155115434,44.4891424750241],[11.285655868878383,44.49053244909221],[11.285476942193219,44.49055966434493],[11.285355449664449,44.49056827943904],[11.285253273652335,44.49056864239346],[11.284589338158579,44.490572591750926],[11.28445727395036,44.4905946994672],[11.284293094403289,44.49063736728675],[11.283973852453421,44.490730178070194],[11.28376390682003,44.49041052295941],[11.283451381591837,44.490136576097626],[11.28334127989303,44.490074637840294],[11.283219901280043,44.490005606146404],[11.282747354462483,44.489739924308154],[11.282488633644316,44.489595440472115],[11.282421691911885,44.48964791475417],[11.282123311848355,44.48988180969314],[11.282026453632065,44.489955818484106],[11.281926421537701,44.49003316207681],[11.281225935175463,44.49057323583668],[11.280042081875798,44.4915179333693],[11.279568021393686,44.49190887460798],[11.279410943879755,44.4921503635101],[11.279288900246474,44.492132260692195],[11.278631053086855,44.49204018551771],[11.278195645993572,44.49198015390405],[11.277765831891065,44.49192346411538],[11.277581603076353,44.49190576572789],[11.27748055029795,44.49188872035068],[11.277119525170832,44.49181764198016],[11.276862782560645,44.49176424714556],[11.276616976092228,44.491709507443446],[11.275968628322149,44.49154255148678],[11.27575788191252,44.491488080467256],[11.274577144777693,44.4911813389113],[11.274160472628598,44.49107824132034],[11.274052731337925,44.49105675477313],[11.27398364499383,44.49107429284105],[11.273826719097038,44.49118728919685],[11.273641629857982,44.49133951659322],[11.27331021080329,44.49162968255641],[11.273227238093487,44.491669034725874],[11.273136781312777,44.491677585919305],[11.27293765539205,44.49167085880664],[11.272755849303328,44.49166463814193],[11.272647705094515,44.491673256615805],[11.272487793398193,44.49168432429116],[11.272285309066088,44.49171254594713],[11.272071586724902,44.49175505792673],[11.27181004281539,44.491821029685234],[11.271722170092803,44.4918452868756],[11.271616007199798,44.49188453311288],[11.271383317944872,44.49192460350436],[11.27121364950452,44.491947680857024],[11.271079721553306,44.49196248678308],[11.270943646364675,44.49197780158723],[11.270829841479232,44.49200257396376],[11.27053927448174,44.49209050332721],[11.27016267418022,44.49208785930117],[11.26986575804936,44.492093205386674],[11.269715034850426,44.49209845282531],[11.269580685719532,44.49187327187513],[11.269357262943002,44.49134543487547],[11.269307373397796,44.49123550015974],[11.269207710362508,44.49101588401567],[11.26917157605811,44.49096446450262],[11.269070875925406,44.49097358698108],[11.26851383584771,44.491121949399435],[11.267753515746584,44.49127771346793],[11.266912276137953,44.49145533819332],[11.265742094312035,44.49170419454739],[11.265032129012043,44.4918539447476],[11.26469267336713,44.491925317038685],[11.26458656699712,44.49194896541153],[11.263994411498652,44.4920809501694],[11.263746628468372,44.492136138333514],[11.262865612687,44.49234357962322],[11.262789386214536,44.49234397070871],[11.262688065429161,44.492366233324724],[11.262310470205843,44.49248061582571],[11.261314005142337,44.49277099189638],[11.26035257466016,44.49305334758132],[11.258872425286262,44.49347987793374],[11.257933544468814,44.49375614326541],[11.257016942693511,44.49401957590412],[11.25669903986496,44.494112510711915],[11.256275433615874,44.49423679228412],[11.256127598335363,44.494276977367754],[11.256167081350961,44.49436243375748],[11.25625912555502,44.49454769695461],[11.256323359756887,44.49464375943193],[11.256373947499391,44.49475304322333],[11.256418717621417,44.494853990614764],[11.256482782076434,44.494965815792725],[11.256532439749844,44.49503451658449],[11.256612530649019,44.49515061696779],[11.2566878270846,44.49526840277899],[11.256725167611291,44.4953396902729],[11.256763764182985,44.49542331759187],[11.25680635854586,44.495508558296585],[11.25691010188472,44.49566095718644],[11.256962508244358,44.49572547138183],[11.257032886442586,44.49579722097081],[11.257116738124914,44.49587207908175],[11.257149684808633,44.495932573117464],[11.25715205640764,44.495992913696476],[11.257173454483029,44.496058323568406],[11.257200087491283,44.49611715546767],[11.257215769615478,44.49617732828035],[11.257215936535554,44.49624259079844],[11.257214559067355,44.49629860157543],[11.25725464891001,44.49641061676757],[11.257316075839798,44.49657650923547],[11.257352316965608,44.49670070049093],[11.25738982208901,44.49679673363349],[11.257444563292411,44.49691155941939],[11.257458923348766,44.497018732362314],[11.257487621748616,44.49709019048518],[11.257525496390771,44.497195783019],[11.25756180053727,44.49726033088138],[11.257648008424175,44.497538816421994],[11.257779233936661,44.497903627657536],[11.257804174203093,44.49797965937012],[11.25790499189922,44.49833100574359],[11.257929697870889,44.49844135343531],[11.257756061646676,44.49844366691341],[11.257195222505535,44.49835348355736],[11.256879388568192,44.49831752795211],[11.25661129321049,44.4982963773292],[11.256378098018354,44.4982835457616],[11.255678344305206,44.49826024110593],[11.255257485126892,44.49825280767567],[11.254863739877635,44.49823470233733],[11.254529872861692,44.498220479589264],[11.25441450137281,44.498204749846124],[11.254033211890201,44.49816332905399],[11.252993852469643,44.49805838055725],[11.252582818270097,44.49802034976908],[11.252091760057263,44.49796589793911],[11.251934870862211,44.49793355178009],[11.251833483031183,44.4979136005626],[11.251567622806505,44.497868770140926],[11.25142644061265,44.49783611348385],[11.250942457374832,44.49774100859622],[11.250199812670585,44.49760373304191],[11.249755023803884,44.497525849731794],[11.249529027359833,44.497495420316994],[11.249068598761218,44.49741953494945],[11.24860802904871,44.49734027553643],[11.248603129757644,44.49739662924754],[11.248639992674862,44.49754370568498],[11.248847864189253,44.497996088959454],[11.249169352928172,44.49869025248864],[11.24934765415422,44.49909521259089],[11.249501297366793,44.49945171636791],[11.249593295394465,44.49963613590681],[11.24974179324613,44.499879092064155],[11.250003034922027,44.500314491686105],[11.250296322338302,44.500785833533286],[11.250897369974966,44.50173666193988],[11.251089149232326,44.50209886701416],[11.250716985576622,44.50217683275505],[11.25024836378637,44.50227722123974],[11.249971528905355,44.5023355600608],[11.249751272355294,44.50237310147593],[11.249538523635445,44.50240148501825],[11.24932314336203,44.50242261284964],[11.249074138734997,44.50242807706601],[11.248762761364809,44.50238582843467],[11.248542511891008,44.502321526170945],[11.248293016688297,44.5022324733057],[11.248005120772191,44.5021261768998],[11.247814339409656,44.50207141691369],[11.247480845432754,44.50202622620305],[11.247128800626049,44.502010090011574],[11.246220786000624,44.50200995118984],[11.24595687596739,44.5020162690307],[11.245490020781084,44.50204007736484],[11.244936068739522,44.502068423334244],[11.24416251285781,44.50211007452006],[11.243778029756141,44.502129448681195],[11.243208746953998,44.50216764533041],[11.24304803464953,44.502200051719846],[11.242806200846193,44.50226951173811],[11.242560113046604,44.50237168814653],[11.242424649610937,44.50242667324619],[11.24229663832861,44.502471378819976],[11.241909764861695,44.502571818829935],[11.241724011806324,44.502627791614785],[11.241560821561,44.50269795429818],[11.24147623397671,44.50274155511998],[11.24118612773273,44.50293149294556],[11.240988649454126,44.50305071081665],[11.240727413654797,44.50318862177779],[11.24056135935009,44.50326614730997],[11.240342322101055,44.50336445174674],[11.240061648878159,44.50348492799008],[11.23995936132898,44.50351820907889],[11.239821224519671,44.5035445532123],[11.239685719504914,44.503557903840566],[11.23927424285546,44.503611551030986],[11.23901404343889,44.503653220269385],[11.238386238715222,44.50378593949238],[11.237974459014806,44.50387278841004],[11.237671902580109,44.50393779340453],[11.237319822373799,44.50402346072959],[11.236702618127667,44.504182921207764],[11.237180269049626,44.50489660800493],[11.238020713690503,44.50622654203918],[11.236884829723715,44.50659422045794],[11.23735408240263,44.507301879937785],[11.237718415832257,44.50786469378352],[11.237992102407807,44.50827349437575],[11.237661790170199,44.50839806788011],[11.237549397223422,44.50844022128072],[11.237163002098653,44.5085546928347],[11.236962182780474,44.50862839412636],[11.236358557840871,44.508839394761345],[11.236216368771215,44.50889586445073],[11.235867987454792,44.50901832007826],[11.234931189070336,44.5093455959019],[11.233903219649028,44.509707239147694],[11.233492640028928,44.50984749855479],[11.233613076345335,44.510068542077136],[11.233711643411658,44.51024944366331],[11.233975595687747,44.510696075601075],[11.234337306472543,44.51127246012811],[11.234385009109612,44.5113480414071],[11.23479259036695,44.512136766478065],[11.234924393490235,44.51235531113188],[11.234992847609144,44.51250025269696],[11.235053179915191,44.51255646285621],[11.23514026148268,44.51260292370416],[11.235833392447404,44.512972731656994],[11.235999573498106,44.513041493259195],[11.236679093379017,44.513106955910786],[11.236788180145078,44.51310144355817],[11.237000760517642,44.51306745258425],[11.237211948497055,44.51302006609391],[11.237619955190114,44.512933226440026],[11.237727213127195,44.51292100002312],[11.237944310283408,44.51292292699373],[11.238254996286289,44.51293533643185],[11.238497498327764,44.512954279983106],[11.23863472658433,44.51298534756198],[11.23877480465491,44.51305011675683],[11.238891594879568,44.51314291741329],[11.23898885376456,44.51325277325673],[11.239029670208113,44.513298875509314],[11.23913850877277,44.51346536793418],[11.239238724826922,44.51368637167668],[11.239334291322697,44.514066527888815],[11.239378192367427,44.51463787975617],[11.239425878694092,44.51483555986738],[11.239720301341304,44.51537779680172],[11.240148003016541,44.51613515758197],[11.240245015492125,44.51632736910061],[11.2402992036007,44.51648947111918],[11.240372493392059,44.51680142198198],[11.24044407866364,44.517396979843255],[11.240472629123394,44.51765895477445],[11.24049153436201,44.51783491136898],[11.240498135797022,44.51792967932683],[11.240514277066795,44.518161362947914],[11.240627392830229,44.51842470730386],[11.240704974461735,44.51860209939727],[11.240833687664965,44.51873911449367],[11.240995780717812,44.518905847851464],[11.241141732531668,44.51906164771831],[11.241290588643434,44.51923134390163],[11.24145177180654,44.51941509165985],[11.241517333023475,44.519504953298316],[11.241589663721903,44.519596649868774],[11.241729987639145,44.51988224986344],[11.241825658896696,44.520059853060395],[11.241873242024024,44.52017256782894],[11.241933862335259,44.52039980824677],[11.242153238831136,44.521218652342554],[11.242225431461586,44.52158351529014],[11.24227239748532,44.52188528972482],[11.24227585839569,44.52230326929234],[11.242230822335971,44.52260515837241],[11.242186229688173,44.522795650001505],[11.24213754948399,44.522920946419525],[11.241905517491233,44.523391375577255],[11.241657036301948,44.52377153559366],[11.241534543232296,44.52390307577197],[11.241445664740144,44.523991742354376],[11.241394926020027,44.524042812824426],[11.24121592737683,44.524194301152235],[11.241069618763213,44.52429619759821],[11.240741794877472,44.524484364378964],[11.24036144940031,44.524626631253966],[11.24010740624324,44.524721653783715],[11.239940086498509,44.52478423856504],[11.239445375965282,44.52492728439927],[11.239206732405206,44.52497979027781],[11.238767997267658,44.52504466225388],[11.237999969081539,44.52513623753056],[11.237815684504305,44.52514809991485],[11.23748452588353,44.525169416118956],[11.237254592435367,44.52518235596229],[11.237066609811992,44.52518210684024],[11.23677787595688,44.52518036930345],[11.236209934993262,44.52517695027879],[11.235937800579677,44.52516864507315],[11.235401284978371,44.525152270688594],[11.234667303009871,44.52512670076699],[11.233905316257179,44.525108981287765],[11.23381596121446,44.52511691258678],[11.23315712796307,44.52528734339404],[11.233075391038476,44.52533001698119],[11.232919745262619,44.525548218489504],[11.232552887003502,44.52606379776035],[11.232451764171657,44.526195741124496],[11.232304080936451,44.5263241054552],[11.232195713327497,44.526418786734205],[11.232036382841645,44.52658562909942],[11.231748357269916,44.526888607051504],[11.231677283315499,44.52696313544378],[11.231594290310053,44.52705534048589],[11.231326410188831,44.52735203335363],[11.23108297223063,44.52769156408877],[11.231027915791977,44.52775339640174],[11.230999629077903,44.52781584070535],[11.230896188206236,44.52807274430708],[11.230927675562416,44.52829999251476],[11.230961463982092,44.52852629460923],[11.231059770392344,44.529184703896405],[11.231107894150853,44.52941500272265],[11.231133661034628,44.52958498580011],[11.231134298821866,44.52965305115521],[11.231049069254007,44.5299754225431],[11.230932775462977,44.530414462614296],[11.230917087782645,44.530473689005056],[11.230769003329769,44.53104485339316],[11.230638354248713,44.53147501021626],[11.230760066968545,44.53189208231012],[11.230791661406043,44.531987962842855],[11.230925521756872,44.532177200395566],[11.231036443582461,44.532321881092784],[11.23125922654265,44.532635424568674],[11.231365262168836,44.532754875282265],[11.231483822618834,44.532914040293484],[11.231512837099679,44.53297367213265],[11.231546643514946,44.5330349018146],[11.231611245196667,44.533181612682036],[11.231795380477571,44.53353361023361],[11.231896956483775,44.53372150987182],[11.231915594727207,44.53379766556344],[11.23193408525795,44.533848744748276],[11.231957794917736,44.53391414710449],[11.232004155976593,44.53397457393453],[11.232122543740763,44.534149491075944],[11.232173638741251,44.534210382510196],[11.232283451533615,44.53432582629472],[11.232798622522667,44.534921152895464],[11.232923969482561,44.53507229943679],[11.233047212228897,44.53523024589177],[11.233183277122086,44.535394124124835],[11.23323080475654,44.53546465245695],[11.233266877431523,44.5355349655562],[11.233317517768647,44.535633996212354],[11.233383631044576,44.53576072924356],[11.233597149309308,44.53617029443748],[11.233873033538686,44.53671802430439],[11.234036720155636,44.536997267672305],[11.23418579707326,44.537234039623755],[11.23435468349038,44.53745409895791],[11.234606757698444,44.537812627209846],[11.234711155689446,44.537950682012735],[11.234772737543892,44.53801811774111],[11.234870956778904,44.53815911015625],[11.234942355173228,44.538277553014815],[11.235055140623214,44.53851109220443],[11.235185199162954,44.538723477159216],[11.235221770605165,44.53878345425478],[11.235279200121315,44.538877484434714],[11.235314414153706,44.53893418605288],[11.23541406158394,44.539092024731914],[11.235515315649769,44.539250389996425],[11.235661738174736,44.53956147777398],[11.235734707944237,44.53974122256302],[11.235835325527843,44.54004757266689],[11.235969045142092,44.54041686708615],[11.236173546958245,44.54092936441493],[11.236346478375369,44.54129563065377],[11.236406559205642,44.54136477738808],[11.236475230111346,44.54145289817639],[11.23653414827355,44.54153275958916],[11.236788859341795,44.54183610045628],[11.23705205477304,44.54211451379587],[11.23718496418965,44.54221600032101],[11.237303195537368,44.542406663440644],[11.237474090393036,44.54273353435856],[11.237266763490537,44.54283160648828],[11.237541280170353,44.54292494737141],[11.237703867562455,44.54321351865994],[11.237807984775209,44.54346691636711],[11.23789483669816,44.54381752828846],[11.237914088967596,44.543895247132454],[11.238390980358488,44.54454090841347],[11.238463423550954,44.544638986089105],[11.23859421295982,44.54509553213539],[11.239310052795934,44.54630298739576],[11.23944544284202,44.54653044491447],[11.239510391326574,44.546640559079684],[11.239605377129966,44.546755041440605],[11.239983433121072,44.54718268215958],[11.240825940442276,44.5481382349096],[11.240875033031525,44.54820184607713],[11.240849818247247,44.54826304583479],[11.240728494297295,44.54855552625847],[11.241702795121638,44.54999644695763],[11.243605538778377,44.5529911379157],[11.24437710554308,44.55412825628782],[11.246047904616601,44.556589012554745],[11.249870678731813,44.5554245528364],[11.249997399822734,44.55538594907313],[11.250098529656269,44.555352887250216],[11.251205933878033,44.555005415237176],[11.252168779599756,44.55663945689322],[11.252859478677856,44.555809205300626],[11.253143378934347,44.55546793786277],[11.253627360372604,44.55481575561399],[11.254723041253452,44.55333922510545],[11.256740042604495,44.55075018570418],[11.257037958371242,44.55036775662593],[11.257075770585576,44.55031152193436],[11.25728795265606,44.54999596706985],[11.257442673173081,44.549838201415916],[11.257542280409883,44.549736633577076],[11.25758419656278,44.54965307769105],[11.257729290848292,44.549363838936124],[11.258543199820284,44.548295045988525],[11.258675711313156,44.54812081543396],[11.258949169855706,44.547868545961734],[11.2589974074058,44.54782331659591],[11.259064661604112,44.54776203078226],[11.259436651596033,44.54723742619325],[11.259652565320065,44.54693292510664],[11.259704456734266,44.5468571127248],[11.259840149980093,44.54665741168464],[11.260429156186973,44.54595698506757],[11.260887120027162,44.54541237791672],[11.261160070149229,44.545016334750656],[11.261340014428665,44.544755238682974],[11.26137900160618,44.54470551757425],[11.261927758997425,44.544005411340656],[11.262028042354647,44.543994422866334],[11.262066211162454,44.54391376262708],[11.262102678350711,44.54383561261054],[11.262202421488462,44.54362187269853],[11.26288450099979,44.542708130454535],[11.263689888104468,44.541753255332594],[11.263811139319543,44.54160949579591],[11.26387311544614,44.54151302747138],[11.264262216058425,44.54090737394743],[11.264555158045944,44.54061596767719],[11.264650038307078,44.54052158465189],[11.264874710124277,44.54014803967807],[11.265148806901285,44.53979485784295],[11.266691846376782,44.53780499143421],[11.26672747352615,44.53775924394639],[11.266858929782266,44.53761951401273],[11.266950326793134,44.53752319160585],[11.267072570085348,44.53734141032483],[11.26734301258252,44.536939248699454],[11.268408327480138,44.53555912424627],[11.268552661619482,44.535372186071],[11.270039144744226,44.53344680091173],[11.270069362601332,44.53349314495908],[11.27136806251659,44.53546513387069],[11.271621601471935,44.53584978637249],[11.271545011061896,44.53590259539629],[11.271214166508193,44.53605265177216],[11.271113894322314,44.536100363785856],[11.271863282798602,44.53712305322105],[11.273149623587344,44.53887428219152],[11.273184726144269,44.53892235735908],[11.273235326762059,44.53899125756494],[11.273384776611229,44.5391948468956],[11.27343531026916,44.53924953559641],[11.273461765728804,44.53929973097377],[11.273682152364707,44.539599849751944],[11.274115069528493,44.54018938758479],[11.274199562362542,44.540157320844635],[11.274511930573274,44.54003744036849],[11.274553622046447,44.54009793295011],[11.275335642106771,44.541227304932974],[11.27563601548989,44.54162943500556],[11.275719742541618,44.5415983258459],[11.276600461678715,44.541275813729726],[11.27665832079024,44.541362136407095],[11.277329247674198,44.54236421639655],[11.27779764710632,44.54306313670534],[11.278893057315976,44.544697573305555],[11.278938225207357,44.544765364067494],[11.278610867321815,44.54486145951482],[11.27848785803997,44.5448975697114],[11.27841396652552,44.54491929329493],[11.278337307523426,44.54494180754876],[11.278017273624865,44.545035800727725],[11.279050429815209,44.54687247594193],[11.278180699220895,44.54717474578283],[11.277937831329874,44.547254194035666],[11.277828298595658,44.54729013720949],[11.278739039402724,44.548697977368384],[11.279808958337686,44.54836687635983],[11.279527941256658,44.547940375744325],[11.279694619057558,44.54788336419007],[11.280301985980897,44.54767561544969],[11.281218962326395,44.54738800418451],[11.28207615576275,44.54869923146732],[11.282610853382819,44.549517175595916],[11.282681577044828,44.54946558653261],[11.283143447732233,44.54912809047852],[11.28333295325667,44.54898960775223],[11.283485314646393,44.54885491769631],[11.28386758094986,44.54851698554733],[11.283779096376596,44.5478698577541],[11.284863829753132,44.5472707755938],[11.286250440047782,44.546500423042495],[11.286474378364085,44.546271068230304],[11.287620895922311,44.545653955518674],[11.287698770863171,44.54559331229476],[11.290505886901197,44.54340735715404],[11.291482123025807,44.54236270642579],[11.29234632355174,44.54148627952633],[11.292668444998247,44.54115959165968],[11.293920690416769,44.53993171310179],[11.293739292543044,44.53964866644668],[11.293668695307064,44.53953851477368],[11.29362180624232,44.53946536393975],[11.291730942197468,44.536515260262824],[11.297666806384075,44.5353944298141],[11.297823716297678,44.535364933530644],[11.300296549805122,44.534897548893426],[11.301501317647862,44.534670148230944],[11.301578622973832,44.53465543461044],[11.302687003040756,44.534297964795634],[11.30276626920963,44.534272163254236],[11.305717557004929,44.53341590280267],[11.305772343544636,44.5333674731424],[11.30668041212777,44.53257192515334],[11.307053402289416,44.532238226000615],[11.307308670818092,44.53200843794178],[11.307447373080548,44.53188548845998],[11.30752571533536,44.531816717424014],[11.308636958267387,44.530833776772404],[11.308974275100415,44.5305357970922],[11.309574473172237,44.53001323815479],[11.31014434791016,44.53078776020535],[11.310525740936617,44.5321573858267],[11.310433314391474,44.53236631287117],[11.310311842869552,44.53247679481006],[11.310027589213743,44.53260857987185],[11.309503097340999,44.5333483766502],[11.30917989734729,44.53412962445711],[11.309112516758434,44.5342925085402],[11.309003827927464,44.53472682134668],[11.30855249032997,44.53572619717005],[11.308463976150223,44.53603405820996],[11.30848722808401,44.53630366079465],[11.308912775306279,44.53688019746953],[11.309520568401874,44.537291005926775],[11.310089690905821,44.538314754405064],[11.310572335094122,44.53906116821743],[11.311578000136876,44.540301127976825],[11.312336065565132,44.5406908690655],[11.312851504695695,44.541310586260046],[11.31333466783365,44.541750907679976],[11.31359946937385,44.54208031177376],[11.313637285052017,44.54212757226592],[11.313718649024672,44.542229244524584],[11.314117255240529,44.54307637978236],[11.314300280746792,44.54388286694511],[11.314226821427772,44.54552276207472],[11.314140093785603,44.54587560741245],[11.313438735740924,44.54660100723329],[11.312629390493598,44.54777869213909],[11.312353159131398,44.548432445983096],[11.312143743309653,44.549183870279315],[11.312852397926493,44.548939400980416],[11.314638391913473,44.548442397775005],[11.314967460082183,44.5482883096584],[11.315938355410964,44.547970977813065],[11.316542944338364,44.547781478639045],[11.317102683033577,44.5476114537649],[11.317749649178262,44.54737945536289],[11.318971047771667,44.54701275523298],[11.319669658240162,44.54679906235922],[11.320722392078116,44.54647678405762],[11.321504547772541,44.54622232521378],[11.321521327940888,44.54609032720606],[11.321550116872757,44.54598662294095],[11.321725134633256,44.546091239584285],[11.322569646468802,44.546732352483104],[11.32307653266962,44.547113075063926],[11.32337720571376,44.54733369394183],[11.323436607002257,44.54736343456028],[11.32353246264506,44.547399741134576],[11.3237968202927,44.54747875932978],[11.324215927229252,44.54757149994174],[11.324433529817611,44.54764190195917],[11.324639168481381,44.54776767865793],[11.324761133626621,44.54786703522719],[11.324889964478203,44.54800001019101],[11.324962361892645,44.54813862474427],[11.325005333984773,44.54824971472242],[11.325151643575012,44.54824898425891],[11.325267001288536,44.54824619244279],[11.325476058428807,44.548235626744116],[11.325671026938895,44.54821196318788],[11.326013997576995,44.54817065946411],[11.326267969388365,44.5481272164742],[11.326524201845032,44.54807136318244],[11.326726185542602,44.548016604279674],[11.32695132638403,44.54796025758636],[11.327112643745723,44.5479215191372],[11.327331191907312,44.54785798998285],[11.327543419088249,44.54779345501472],[11.327679596566169,44.54775579460795],[11.327761634590848,44.54774118010333],[11.327849660208487,44.547738827802405],[11.32791943965609,44.54775259603828],[11.32798134117666,44.54778564923033],[11.328059953626234,44.54786282088399],[11.328134943930355,44.54794793070484],[11.32819012574336,44.547990130264],[11.328288732464518,44.548035943391625],[11.328388494273252,44.548071608065754],[11.328493972206253,44.54809252292898],[11.328628334765082,44.54810779100766],[11.328997061105891,44.54814021768609],[11.329286063927366,44.54816638674566],[11.329630331916416,44.548202896045126],[11.329850308882644,44.54823245465876],[11.330080087401235,44.548249205153496],[11.330426489332298,44.54825450817572],[11.330727648478334,44.54825005188371],[11.331048540913075,44.54824687434194],[11.331367413937283,44.54826301451266],[11.331790662058824,44.54829079062912],[11.332206979030273,44.54831323523112],[11.33238266536429,44.54831921319674],[11.33247365603941,44.548312286625446],[11.332560116975515,44.54829026128338],[11.332662400588577,44.54825103876236],[11.332826438798904,44.54818186311423],[11.332983530669027,44.54811619423155],[11.333104847306183,44.54808052349156],[11.333314474383963,44.548030097813175],[11.333443351344373,44.54800664663651],[11.33365347123476,44.54796859372605],[11.333810997059965,44.54793330725408],[11.33392485675462,44.54790790390364],[11.33404073159338,44.54787402684805],[11.334161231953438,44.54783780453378],[11.334331891063794,44.54777693362159],[11.33457291881551,44.54768535706071],[11.334701708739727,44.54763996330896],[11.334784965724563,44.54761687743082],[11.334879928501312,44.547591301498606],[11.335175779801768,44.54753292505585],[11.335476269929421,44.547472203279064],[11.335959581839116,44.54737004005498],[11.335704516868553,44.547061304879755],[11.335253748633574,44.54652467730357],[11.334936920017745,44.546144154399215],[11.334734083876363,44.54591199827983],[11.33441354393611,44.5455494579299],[11.334083726708878,44.54517135694982],[11.334717939248591,44.54489844854371],[11.335533904524864,44.54454698608088],[11.336126080653427,44.54428562184663],[11.336868772731858,44.543961869261054],[11.336931852714468,44.54393443178624],[11.337014387046487,44.54403224915778],[11.337173254990576,44.54422761097527],[11.337372876188518,44.54443845463989],[11.337417472491149,44.5445106818997],[11.33745484476649,44.54461906509825],[11.337469929664328,44.544740288139536],[11.337502129005365,44.54507271676883],[11.337549804999812,44.545536476173794],[11.337590944702622,44.54595480368848],[11.337606794373446,44.546154208900795],[11.337626891095152,44.54638111266498],[11.33764879767525,44.54667266757661],[11.337669747135289,44.5468224614603],[11.337688486238969,44.54693685972646],[11.337730765323386,44.54701025956889],[11.33781347372589,44.54713066474291],[11.337974663286692,44.547383359805956],[11.338163196010434,44.54769063590383],[11.338283404725324,44.54788284584764],[11.338311634518995,44.547939100439486],[11.338341574691787,44.54801894453343],[11.338351758263432,44.548116068010046],[11.338377411511017,44.54834397222402],[11.338395427147377,44.548538275432655],[11.338418901020145,44.548613752650354],[11.338478775000203,44.548713799333505],[11.338525502254424,44.54878036686718],[11.338615790307253,44.54885390809085],[11.338724364178,44.54891300681917],[11.338814102507794,44.54895336793775],[11.339066487557684,44.54902752864607],[11.339168296612492,44.549054700539095],[11.339246817638951,44.54909022472927],[11.33933624989173,44.54914240802995],[11.339395261063554,44.549201397447526],[11.339503274578579,44.549324657676976],[11.339679960674419,44.54955171657502],[11.339750209507036,44.549635800530645],[11.339838371023548,44.549734700421425],[11.339922495842579,44.54981174996826],[11.340059625992525,44.54997435297045],[11.340140163611615,44.550079600642164],[11.340192024179123,44.550175878509506],[11.340229410504516,44.5502645689478],[11.3402575444193,44.550357948375286],[11.340265152176226,44.550469199431525],[11.340252810051272,44.550573543385916],[11.340247178580782,44.550649048867164],[11.34026403968901,44.55073591043081],[11.340329085987998,44.550847109146794],[11.340510166737849,44.55108532577964],[11.3405713871373,44.5511403371003],[11.340642525976858,44.55118782710181],[11.3407100142553,44.551222451219914],[11.340831244449632,44.551243598781056],[11.340971995269578,44.55126097095221],[11.341081842226794,44.55129247109272],[11.341244477146414,44.55152206982311],[11.341313952081117,44.55160616956086],[11.341379185687641,44.55166333788066],[11.341490097148123,44.55174096208389],[11.341807608950642,44.55188861352266],[11.34195045807585,44.55195826505197],[11.342100105831248,44.55204015226262],[11.34232600219125,44.552179548168546],[11.342676113623575,44.55243342601101],[11.342821111557772,44.552536790672534],[11.342988073402042,44.55263857904752],[11.343221351111698,44.55276544720358],[11.343616924143006,44.55297563194937],[11.343938469617003,44.55316482717164],[11.344100064411151,44.553250407589175],[11.344293495330385,44.55334489161435],[11.344373835056754,44.553386008483514],[11.34441732824305,44.55343068985732],[11.344456916965413,44.553495700099745],[11.344583498576998,44.5537867958392],[11.344659591091755,44.55393771518915],[11.344836771436176,44.55425448538347],[11.345479492304168,44.554079789139415],[11.34608328646753,44.55390508813471],[11.346584101415354,44.55375750281033],[11.346974473090865,44.553642579419524],[11.3477490862228,44.553416219738565],[11.348334656787928,44.55324382699516],[11.348872180889138,44.55310954327436],[11.34895897514511,44.553090242529684],[11.349049356636947,44.5530835601277],[11.349251881046882,44.553061789284314],[11.349910415747873,44.553099433541455],[11.350681369226066,44.55315389230748],[11.351018467199529,44.55316214113579],[11.35134770644713,44.553150850392285],[11.351606848191757,44.55311851347398],[11.351684655117324,44.55309665192877],[11.35250181677161,44.55297698239876],[11.352668186084916,44.552939661991275],[11.352780891851664,44.552905273094865],[11.352919042433143,44.55283828469147],[11.353379905430982,44.55255927651919],[11.353589425440726,44.55297468698992],[11.35383121599199,44.553473819309374],[11.35398854707293,44.55379859505202],[11.354125862354227,44.554081584558894],[11.354154027272177,44.55413614588574],[11.354215552821586,44.55425696506799],[11.354253898487704,44.554316029959786],[11.355176400638923,44.55382980115001],[11.355386645509608,44.55375568776165],[11.355519041380665,44.5537087215678],[11.355684536574037,44.553649959813484],[11.3558646341375,44.553618671891634],[11.356127378911353,44.55354854544734],[11.356081954705276,44.553436950802215],[11.356577188373452,44.55330801377289],[11.357670716417948,44.55303056103967],[11.357913629844708,44.55296584621477],[11.358324546685067,44.5528567215175],[11.35851700175314,44.55300182014188],[11.358646914980108,44.5530818428007],[11.358863302964052,44.5531792116634],[11.359309214694184,44.55332922729652],[11.359545962173009,44.55342391539287],[11.359754587325705,44.553543385028625],[11.359948819599376,44.55367665067188],[11.36007319841265,44.553775361292544],[11.360167145087162,44.55388031748997],[11.360244674362136,44.55399487815526],[11.360290622743204,44.55404793687263],[11.360261085444652,44.554121429577826],[11.36034865141356,44.55426309176295],[11.360468488794577,44.55442434512985],[11.360601681184137,44.554585322183094],[11.360682031249565,44.55466524218817],[11.360854898194997,44.55481469749184],[11.361009603282483,44.5549240299166],[11.361147351013669,44.55500276327419],[11.361340772156886,44.55505631786487],[11.361594916528594,44.55517355152939],[11.361771692528931,44.555244726808255],[11.362084789008655,44.55537890428513],[11.362202877474274,44.55547717648084],[11.362263379076886,44.555552996896346],[11.362424107550378,44.55575222668524],[11.362537714724679,44.55593442349882],[11.362662535982945,44.556141136069925],[11.36271433108341,44.55621545483356],[11.362786507917953,44.55628766827136],[11.362866230824798,44.55633271701552],[11.362976433834625,44.55637263543114],[11.363081250289913,44.55639578159974],[11.363175610074396,44.55641052183392],[11.363275269957896,44.55642608938908],[11.363529017251421,44.556454593910814],[11.36371689085839,44.556469269832114],[11.363929591991434,44.556494680449696],[11.36401599631461,44.556508923977965],[11.364105459145572,44.556523671235624],[11.364225335939167,44.55656901267168],[11.36441079517553,44.556679395877836],[11.364710627169606,44.55685491525985],[11.364835308051717,44.556921530483635],[11.364940641553282,44.556977306252904],[11.365004406716206,44.55701746102739],[11.365220040522479,44.557153247620626],[11.365308154855441,44.55712357344805],[11.365624437333118,44.557015461597274],[11.366500243756455,44.556723861058515],[11.366908684965207,44.55658908698948],[11.3669825199601,44.5565664556696],[11.36695505148703,44.55650704260863],[11.36691442146535,44.556419142181426],[11.36686607059885,44.556314557789484],[11.366366170278695,44.55526097027119],[11.36610023455212,44.55471847403444],[11.365591603409902,44.55368194838916],[11.365529344630502,44.55356283126041],[11.365840729729335,44.55351147571386],[11.366028660389722,44.55348048290694],[11.36632818906443,44.55343149180814],[11.367313617173055,44.55328334475639],[11.368674307360882,44.55307563639333],[11.36959722169877,44.5529383244648],[11.371615030483849,44.55260696774072]]]},\"geomComplex\":{\"provenance\":0,\"accuracy\":100},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/e099b06896aa93a3ee43d44870ce1441143486de\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/ffcd4ddeecbdb84946122d08728f51cded1db3b0\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"SK\",\"acheneID\":\"http://dandelion.eu/resource/f5882e6af5c6391d36d7e5dece6688cb4ac203c5\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"SLOVENSKO\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"NL\",\"acheneID\":\"http://dandelion.eu/resource/0fe4f6bea944679a92aae439c564c0ddcc866bb6\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"NEDERLAND\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"IE\",\"acheneID\":\"http://dandelion.eu/resource/23184225e583b78d38f4cfa46894bb3b42c29bee\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"IRELAND\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"RO\",\"acheneID\":\"http://dandelion.eu/resource/0d33fdb63fd80f69fa00984bd829583ec71e08b2\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"ROM\u00c2NIA\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_offset_2": "{\"items\":[{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"BE\",\"acheneID\":\"http://dandelion.eu/resource/b50c4805046efe75601aa584f5e39c8b1d1d3f93\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"BELGIQUE-BELGI\u00cb\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"EE\",\"acheneID\":\"http://dandelion.eu/resource/40b70d14ef12aaef8a90faaa0968ba627043c6ac\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"EESTI\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"LU\",\"acheneID\":\"http://dandelion.eu/resource/953163459ca4d352dfdaab46a2da3ec677d851f1\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"LUXEMBOURG\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"DK\",\"acheneID\":\"http://dandelion.eu/resource/bb0895560e800e8bac4f7fcaf64eeca91bf36173\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"DANMARK\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"CZ\",\"acheneID\":\"http://dandelion.eu/resource/987194aa59701753672c032fa1ad8f19cabee786\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"\u010cESK\u00c1 REPUBLIKA\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_offset_3": "{\"items\":[{\"licensePlate\":null,\"tel\":\"0512193111\",\"isMountainMunicipality\":\"P\",\"isProvinceCheflieu\":true,\"localCode\":\"037006\",\"euroCode\":null,\"acheneID\":\"http://dandelion.eu/resource/c59b12fe31ac36662552c95d51cbf15b792094c0\",\"provenance\":[\"Geonames\",\"ISTAT\",\"SpazioDati\",\"SpazioDati Partner\",\"Wikipedia in Italiano\"],\"wikipedia\":{\"de\":\"http://de.wikipedia.org/wiki/Bologna\",\"en\":\"http://en.wikipedia.org/wiki/Bologna\",\"it\":\"http://it.wikipedia.org/wiki/Bologna\"},\"alternateNames\":[\"Bologne\",\"Bolon'ja\",\"Bolona\",\"Bolonha\",\"Bolonia\",\"Bolonija\",\"Bolonja\",\"Bolonjo\",\"Bolonya\",\"Bolo\u00f1a\",\"Bolo\u0146a\",\"Bol\u00f2gna\",\"Bononia\",\"Bulogna\",\"Bu\u0142ogna\",\"Comune di Bologna\",\"Gorad Balonnja\",\"blwnya\",\"bo luo ni ya\",\"bollonya\",\"bolon'ya\",\"bolonia\",\"boloyya\",\"boronya\",\"bwlwna\",\"bwlwnya\",\"bwlwnyh\",\"\u039c\u03c0\u03bf\u03bb\u03cc\u03bd\u03b9\u03b1\",\"\u0411\u043e\u043b\u043e\u043d\u044c\u044f\",\"\u0411\u043e\u043b\u043e\u043d\u044f\",\"\u0411\u043e\u043b\u043e\u045a\u0430\",\"\u0413\u043e\u0440\u0430\u0434 \u0411\u0430\u043b\u043e\u043d\u043d\u044f\",\"\u0532\u0578\u056c\u0578\u0576\u056b\u0561\",\"\u05d1\u05d5\u05dc\u05d5\u05e0\u05d9\u05d4\",\"\u0628\u0644\u0648\u0646\u06cc\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u064a\u0627\",\"\u0628\u0648\u0644\u0648\u0646\u06cc\u0627\",\"\u092c\u094b\u0932\u094b\u0928\u094d\u092f\u093e\",\"\u0e42\u0e1a\u0e42\u0e25\u0e0d\u0e0d\u0e32\",\"\u10d1\u10dd\u10da\u10dd\u10dc\u10d8\u10d0\",\"\u30dc\u30ed\u30fc\u30cb\u30e3\",\"\u535a\u6d1b\u5c3c\u4e9a\",\"\ubcfc\ub85c\ub0d0\"],\"parentNames\":{\"province\":\"Bologna\",\"country\":\"ITALIA\",\"region\":\"Emilia-Romagna\",\"macroregion\":\"NORD-EST\",\"municipality\":null},\"email\":\"protocollogenerale@pec.comune.bologna.it\",\"website\":\"http://www.comune.bologna.it/\",\"isCoastal\":false,\"fax\":\"0512193718\",\"elevation\":54,\"dialingCodes\":[\"051\"],\"postCodes\":[\"40121\",\"40141\"],\"cadastralCode\":\"A944\",\"population\":{\"2001\":null,\"2011\":371151},\"name\":\"Bologna\",\"level\":60,\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[11.371615030483849,44.55260696774072],[11.371683399764958,44.55263449295944],[11.371850909981305,44.552767736301284],[11.371966605561001,44.55288461340939],[11.372042074975841,44.55299894329224],[11.372112552714023,44.55316515220926],[11.372200479295843,44.55343810683848],[11.372288417909607,44.553697119405406],[11.372318616888847,44.55377259652481],[11.372976733159817,44.55359617495196],[11.374371655839564,44.55324364698487],[11.375023140518103,44.553068621750455],[11.375237441191524,44.55300789610728],[11.375312336948463,44.55307892248818],[11.37549258826638,44.5529356298896],[11.376182020855437,44.552755865326645],[11.376859419095307,44.55258000658355],[11.377223047198097,44.55248606878287],[11.37772140100687,44.552357532188424],[11.377914405158439,44.55228599595104],[11.377795904501502,44.55202345900086],[11.377233293402513,44.55109557434928],[11.3770659409483,44.550811546619215],[11.377689909170236,44.55063820350091],[11.379243779211953,44.55020247225941],[11.381112046044146,44.54966102317204],[11.381368698452416,44.54958758620495],[11.38185410863312,44.54945142730544],[11.381937695127242,44.54939806527645],[11.382025431168511,44.54925769024259],[11.38210173234158,44.54911823883935],[11.382462053093981,44.54902126196006],[11.383652503314401,44.54871340506481],[11.384830398061993,44.54840691252731],[11.385519540460272,44.5482315986127],[11.386102599656807,44.54807875582393],[11.386747150510965,44.547909990298535],[11.387467223210058,44.54772164251097],[11.388057246920857,44.54756638539569],[11.38843945079304,44.547466115004035],[11.38900217699357,44.5473164996277],[11.389504838427717,44.54717994617846],[11.390244292555087,44.54698497438703],[11.391168287175649,44.54674338419237],[11.391893776792447,44.54655377238333],[11.392033112076243,44.54651709244543],[11.39197833010627,44.54644734071617],[11.391883961973194,44.54635254428176],[11.391621403798544,44.545954634466476],[11.39147408294175,44.545719166605025],[11.391144616869987,44.54520505773529],[11.391032633262022,44.545044806207834],[11.390845899684066,44.54474995528144],[11.390558564640752,44.5442653545989],[11.390452924325112,44.544067827340925],[11.390121452060317,44.54350425143768],[11.3899419188228,44.54319293074979],[11.389832784707092,44.543006167981744],[11.389648537814987,44.542579605330666],[11.389605531830993,44.542499490982244],[11.389844500238809,44.54244666370952],[11.38993748113705,44.542450341563686],[11.390072152634893,44.542453713548745],[11.390161576567555,44.5424473417905],[11.390275685445443,44.54242919306462],[11.390381020317166,44.542407863830555],[11.39050734622138,44.542380459503114],[11.390734357432903,44.542314372030965],[11.390858832955274,44.54228251845755],[11.391391890168434,44.543040472832175],[11.391422997717692,44.54308933787872],[11.391762207229004,44.54365044783415],[11.39179346978779,44.54370215873189],[11.39224112796103,44.54354874662596],[11.393042866835481,44.54328156951995],[11.393859852738155,44.54300280882741],[11.394637458394486,44.542741347904155],[11.394791818999858,44.54268899696984],[11.395359151732027,44.542499860658666],[11.395651603657038,44.54289770270896],[11.396072489494518,44.543645050324365],[11.396299589051631,44.54396437128258],[11.396424615019377,44.54392460423094],[11.396475383513815,44.543982621786334],[11.397012678772636,44.54379973339415],[11.397737936422617,44.543548198913406],[11.398112609543729,44.54341879341483],[11.398738821136456,44.54320758835112],[11.398832216725031,44.54317631258953],[11.398926542810589,44.543144923572676],[11.399677130133664,44.54289528581079],[11.400288670302244,44.542691130530564],[11.399730872249805,44.5419252938404],[11.400188416950556,44.54172606798039],[11.401045333333593,44.54136765112833],[11.401560220452486,44.54114751307236],[11.401876721760868,44.54157263030605],[11.40228727688513,44.54211683551545],[11.402348918147611,44.542196376427555],[11.403051797011843,44.54200790130606],[11.404725019768152,44.54154731105244],[11.405352644011401,44.54137148975357],[11.407034447637578,44.54372457504679],[11.407341911119996,44.54363524895624],[11.407673377164693,44.543526974693194],[11.408265526863785,44.54334541845832],[11.408446673636234,44.543296864390165],[11.40901248442909,44.54312906808067],[11.409526555873725,44.542965744186375],[11.409962200208204,44.542827708279184],[11.41038936839721,44.54269378186789],[11.4111683707367,44.542450023859864],[11.411799001470655,44.54225215256389],[11.412122029862672,44.542149679931185],[11.412423339712774,44.54205441166669],[11.41309816558239,44.541840975004895],[11.413625310036403,44.54167116541149],[11.414134570346272,44.54150623093636],[11.414735738396239,44.541319101212245],[11.41523494389894,44.541158873839414],[11.415778665033256,44.540990386046516],[11.415880424396676,44.54095898322238],[11.41581242106911,44.54081750760427],[11.415562913725045,44.540415434415166],[11.41531523362604,44.54001895648533],[11.414905233357763,44.53936878149522],[11.414630240151814,44.53892054538019],[11.414417014790526,44.53857678819788],[11.414366472441696,44.53849627273348],[11.414063006449718,44.53800588042468],[11.413811130850505,44.53760272892693],[11.41369137324568,44.537426904596956],[11.41226059140029,44.5351491583288],[11.411115306183035,44.533277865486866],[11.410471133889073,44.532173508465824],[11.410251102307903,44.531816375384054],[11.410087902928023,44.53157844869783],[11.409836170585859,44.531277156147816],[11.409584810275074,44.53095666059203],[11.409398449644694,44.53067195553174],[11.40925435747843,44.53047751652879],[11.409126787062391,44.5302450191401],[11.408887784745678,44.530037948706806],[11.408456358476954,44.529504143345875],[11.409285965282965,44.52916532956536],[11.410230965808742,44.52877404325182],[11.411091750380166,44.52841996804047],[11.411531141261953,44.52824188672151],[11.411790324905624,44.52815707845399],[11.412410659606413,44.5279037223242],[11.413491770341224,44.52745776483934],[11.414032965687205,44.52723138926808],[11.414983039900768,44.52683123482317],[11.415395283138608,44.526662999663614],[11.416661766544872,44.527295613160895],[11.417023845836885,44.52748564780502],[11.417408092456887,44.527703943398365],[11.417474349444195,44.52774539266649],[11.417985688747256,44.52806145872235],[11.41814140365194,44.528156154907336],[11.41840442909683,44.52831590153624],[11.4186142300048,44.52844423761554],[11.419511573635278,44.528992931702085],[11.419637963876887,44.52907814058832],[11.419908851875721,44.529260765494094],[11.420114932581884,44.52937511255284],[11.420267910631534,44.529460199928636],[11.420465006389335,44.52965518180388],[11.420522909818807,44.529805880296706],[11.420568976573966,44.52986523734807],[11.420649211584008,44.529968616338195],[11.420746800574287,44.53014097060914],[11.420853396987646,44.5302647422067],[11.420950424271776,44.53027765779786],[11.421015667597981,44.530175775684526],[11.421056972405493,44.530109634252106],[11.421110103652577,44.53004408726846],[11.421167249654806,44.52998070476225],[11.421206366052717,44.529937675238486],[11.421237069680085,44.529881320787574],[11.421245783878168,44.52980686564162],[11.421251652202317,44.52967817833455],[11.421325500299169,44.529604877478434],[11.421436340665638,44.52958452263009],[11.421541923835052,44.52957004333887],[11.42163263295503,44.52955728655829],[11.421680618964526,44.52951463673969],[11.42176571399457,44.52943771484262],[11.421833559850812,44.52935722667893],[11.42189451533528,44.529271817308434],[11.421897128722312,44.52919271316013],[11.421869512670836,44.52914322412359],[11.42182807507968,44.529092336810486],[11.42177464931791,44.52903664636912],[11.421716824767879,44.528988923489464],[11.421669591502905,44.52894997632362],[11.421607960916361,44.528905150937305],[11.421543245500915,44.52886207437998],[11.421468114561904,44.52880459009267],[11.421411429671439,44.52873686870063],[11.421402103327905,44.52868277040809],[11.421407506973088,44.52862329858229],[11.421431393614593,44.5285448630385],[11.42148067857378,44.52845323964028],[11.421579949254205,44.528352808462465],[11.421669845620157,44.52821628713048],[11.421818346996819,44.52800383970144],[11.421882891049787,44.527910195448406],[11.421974587415665,44.52776491610225],[11.421969953764833,44.52758201857715],[11.421961767346096,44.527498360666954],[11.421951054641521,44.52739168000135],[11.421937834302073,44.52720572925004],[11.421927913048819,44.52711816515856],[11.421931006524183,44.52705986759246],[11.42195703787829,44.52700502451369],[11.42199210347269,44.526949701664996],[11.422037222820844,44.526890232395715],[11.42209521387052,44.526828235817945],[11.422250312233317,44.526680346050114],[11.422321767537754,44.5266017470623],[11.422370751634785,44.526550066307856],[11.42241548408159,44.52645290998834],[11.422509544997936,44.52625567394653],[11.422531073987999,44.526205710078344],[11.42258589842535,44.52614321330943],[11.42263122588227,44.525719147454666],[11.422499425425448,44.525594220815755],[11.422426121422177,44.52547650302473],[11.42236455942958,44.5253765359957],[11.4223020392141,44.52526280142262],[11.42226343623161,44.52518540817821],[11.422269743429368,44.52508147210622],[11.423930594212962,44.52458428211943],[11.425207215411493,44.5241717611519],[11.425435824749007,44.52410894547679],[11.425666948498428,44.52405002699769],[11.425968560213514,44.52396484298466],[11.426220769395444,44.5238847304623],[11.426317113281144,44.523835911399914],[11.4263616948967,44.5237162393784],[11.42566807243238,44.52288364904361],[11.4254602376246,44.52260393100752],[11.425425020440601,44.52253610287168],[11.425397054643973,44.52247417826064],[11.425296940088451,44.52220342561042],[11.425255394427543,44.521979252030675],[11.425270058819924,44.521764008975616],[11.425299020812746,44.52162836162266],[11.425381717353178,44.5214229321379],[11.425670393030067,44.52096949400596],[11.425710902049385,44.52086566718014],[11.425719087261484,44.52079741909291],[11.425707349634088,44.520590647293666],[11.42621868849449,44.52040532954464],[11.42695576011139,44.520164037808826],[11.427341538813058,44.52004218581967],[11.427451482338274,44.519999607712286],[11.427780111840239,44.52052854614357],[11.428267497288024,44.52129968698271],[11.428309393178958,44.52136817607097],[11.428546776297713,44.52175623256027],[11.429045911450023,44.52156106307746],[11.429699981230232,44.521290579160926],[11.430174634258924,44.521093118048775],[11.43095083268026,44.52079076762535],[11.431290727424829,44.5206465483238],[11.43136071005841,44.5205676734088],[11.430492207327335,44.519482830847394],[11.429658259195456,44.51843381133167],[11.427966374890671,44.51630533193266],[11.433586317497346,44.51447016199065],[11.434694903101136,44.514108374155676],[11.434662251143866,44.51406069065253],[11.434492978534841,44.51380998441208],[11.434193800173247,44.51336680989287],[11.433865307174724,44.51284268651015],[11.433575110932178,44.51235036986699],[11.433445066087735,44.512135402764784],[11.433184200156981,44.51176229973365],[11.43299564006417,44.51151417006002],[11.432732016197878,44.511167549091304],[11.432210509178178,44.510490104352094],[11.431433551943687,44.50950939752574],[11.431323014462993,44.50936957921462],[11.430004872339754,44.50768786237529],[11.429937668044255,44.50760272809906],[11.429863782149964,44.507509134345284],[11.429817623354156,44.50742951689793],[11.429822858492901,44.507347398371024],[11.429871401314069,44.507295165519345],[11.429930023070773,44.50722069313206],[11.429343539410903,44.50651013662671],[11.429275606200056,44.506674877319455],[11.429217527649621,44.506753196189806],[11.428848596952763,44.5068134087291],[11.428749749649926,44.50682954113199],[11.428447400704753,44.50697044808376],[11.427412906781651,44.5044374880305],[11.426955999929266,44.50327916276976],[11.42679040624326,44.50285078391124],[11.426714785161792,44.50265568374576],[11.426534488069784,44.50221572325125],[11.426397348567962,44.50198008260547],[11.426107064901574,44.50155786129413],[11.425023719552284,44.50191812338644],[11.424104200444868,44.50214258968477],[11.42397498839464,44.50163499625888],[11.423935785440104,44.501465801798794],[11.42384193141728,44.50106329983692],[11.423703511907078,44.50045235100038],[11.423460757231917,44.49939411068821],[11.423412883417125,44.49933807602368],[11.422911454312722,44.49937988824999],[11.422837026618385,44.499385968281885],[11.422600814833565,44.499396050940966],[11.422234352651047,44.4994117004401],[11.421834976065202,44.49941116512226],[11.421494731212059,44.499368316405416],[11.420541724699676,44.498061247906584],[11.42042753413087,44.497904586335615],[11.420374446507482,44.49783169883066],[11.420228346456636,44.497631287379846],[11.422581824491088,44.49713518203347],[11.42265466755574,44.4970994525654],[11.422529595383153,44.49695958913597],[11.419405786709167,44.493457969081504],[11.419549744160827,44.493392912684115],[11.419462862276578,44.4932724851435],[11.4188726557605,44.49245107170478],[11.418256111557852,44.49156953041661],[11.419025487713695,44.49131917326672],[11.420998518959143,44.490676438815484],[11.425048587520564,44.4899125635022],[11.425230290099572,44.49034627222377],[11.42544551604915,44.490859982876174],[11.425503440909063,44.491067872619645],[11.4255323249174,44.49117152972053],[11.42561366191599,44.49114411421355],[11.425803620264222,44.49107968019844],[11.427419886612528,44.49049786519043],[11.428257849402748,44.49021560264073],[11.427104290861742,44.48842336259593],[11.427057384270144,44.4883273629136],[11.426970792438675,44.48831988665631],[11.426819304710449,44.48827978388614],[11.426680114415156,44.48824515574565],[11.42648416044711,44.48825312305453],[11.42625794483981,44.48818084852127],[11.426086290135354,44.48809728903589],[11.425961879791032,44.48803522466515],[11.425888811935188,44.487997961436086],[11.425833991787353,44.48794566813101],[11.42563660060027,44.4877726301349],[11.425517173035155,44.48760300256988],[11.425393175595273,44.487436846936326],[11.425359840415242,44.48737697246922],[11.425304014270584,44.48727670092743],[11.425193743810146,44.48717945047303],[11.425118032135675,44.48710525247238],[11.425039290276803,44.486995934213915],[11.425001168280943,44.486891527937196],[11.4249244231578,44.48682669434463],[11.424955609013537,44.48674576554408],[11.425019120321316,44.486661031603546],[11.425308258635491,44.486412390108434],[11.425734523696145,44.48622947463321],[11.426096083032117,44.486021482277444],[11.42632265831195,44.48593227617431],[11.426712251225412,44.48574644378828],[11.426662840544427,44.48564484549563],[11.426484588251963,44.48547815195607],[11.426361214107873,44.48534574269872],[11.426318421726926,44.485299394722915],[11.426065451571997,44.48518829619041],[11.42568814595068,44.4850730984148],[11.425448092738305,44.48500786620903],[11.424915909781891,44.48491058178117],[11.424602205628885,44.48486998797718],[11.424155511057739,44.484844025113624],[11.42379502046395,44.48481229699118],[11.423198553991508,44.48479457789644],[11.422588284450987,44.48482328992217],[11.42249620815415,44.4848304194604],[11.422060984054948,44.48486261278924],[11.421745992566452,44.484885612691635],[11.420947323286644,44.484938562606615],[11.419966621617448,44.48494911146956],[11.419654250703939,44.48495247093121],[11.41916466466285,44.48495384825636],[11.418979486763332,44.485017971901286],[11.418523952036132,44.48504450828812],[11.418425733493608,44.485044677166314],[11.417888172096944,44.4850456025648],[11.417598935447138,44.48489306232997],[11.416983795767688,44.484794401015876],[11.416845904177155,44.484681134241015],[11.416689578432058,44.484549969399],[11.416484641570394,44.48426905206182],[11.416405477325103,44.484083928327244],[11.416381929718215,44.484027602465396],[11.416290320091056,44.483862216779045],[11.416180594884217,44.48366276535294],[11.416074285661267,44.483657698475305],[11.416003620044679,44.48354497833636],[11.415983297477313,44.48345257581252],[11.41597604100779,44.483250150549054],[11.415972958780177,44.48316415375629],[11.415998539394062,44.48310170528953],[11.416043634929188,44.482991616780396],[11.416000046600965,44.482907391054454],[11.415650797195116,44.48265165774869],[11.415224196789552,44.48248401006225],[11.414909098558818,44.48238996966514],[11.414658561438918,44.482355877416126],[11.414264605505283,44.482255060970004],[11.413949528583883,44.48218070010628],[11.413634350481297,44.48210353179029],[11.41333799935442,44.481949448561146],[11.413166650519198,44.48181161425276],[11.4130933253373,44.481752630152],[11.412872547477061,44.481630140473435],[11.412787259837993,44.481592045922916],[11.412713597936119,44.48155866585207],[11.412223321593526,44.481218504712466],[11.411982776090863,44.48106435400878],[11.411677102193057,44.48087445599135],[11.411371660213165,44.48069016698787],[11.41121005559346,44.48056361530876],[11.411024524761459,44.48046681726299],[11.41093456570474,44.48040832352989],[11.410857227841294,44.48035335223486],[11.410777565390179,44.4802848355947],[11.410617857974666,44.4801333156052],[11.410541881010195,44.48006347414718],[11.41038256462805,44.479916044315964],[11.410160591009937,44.47963997448628],[11.410040654480065,44.479532790228276],[11.409906355555803,44.479439408924335],[11.409763183060731,44.47928320761913],[11.409680333775817,44.47917973938862],[11.409528628725397,44.47895000968475],[11.409436106753096,44.4787831630262],[11.409279424656072,44.478623304140854],[11.409206254900118,44.47856408196619],[11.409029139247128,44.47843765826837],[11.408840147463204,44.47835631732111],[11.40874867192958,44.47831042376996],[11.408567389575715,44.478219669810564],[11.408479071579846,44.47817545406535],[11.408149823297716,44.47806142565132],[11.407948900448792,44.47800037136898],[11.407607894949892,44.477896749409446],[11.407121253247638,44.47773878896958],[11.406667553749116,44.477541296838375],[11.40655887576695,44.477482346260935],[11.406218255724147,44.47729757775872],[11.405973158923489,44.47714689507041],[11.405676973654717,44.47697646258773],[11.405580273168228,44.47690792504835],[11.40544466223896,44.476811726761575],[11.405181640937794,44.476643839455136],[11.404959591374501,44.476467219408796],[11.40486793897086,44.47639261267035],[11.404802717685529,44.47633546986679],[11.404429019156689,44.47601869331607],[11.404285640283055,44.475895121875524],[11.404068937524116,44.47563186169671],[11.403869641077828,44.47547709954479],[11.40377266600138,44.47540179379376],[11.403697644926016,44.475320433428486],[11.40358843958452,44.47520199839225],[11.40341310702347,44.47500819911859],[11.403334505290205,44.47483542875547],[11.403132043810073,44.47461238363766],[11.402906510260127,44.4744016411736],[11.402682217361056,44.47420212143802],[11.402665720100947,44.47414309119153],[11.402483831678829,44.473905848221506],[11.40233019150812,44.47364689102102],[11.40218432386334,44.47348172723822],[11.402072341925239,44.47331866793414],[11.401881133215028,44.47306330847982],[11.401768377570002,44.472919955919274],[11.401637502031596,44.4727561684111],[11.40156973861709,44.47267488617258],[11.401186009761998,44.47236195935473],[11.401039039247785,44.47224605996291],[11.400989212851698,44.47218071588856],[11.400939403593503,44.47213506400772],[11.400708925660414,44.47187997034157],[11.400560349941234,44.4717259225371],[11.400520147784038,44.47168364325506],[11.400457594540056,44.47162317396858],[11.400361658800822,44.47151567901433],[11.400319718530767,44.47147123064049],[11.400211415098621,44.47132103384052],[11.40008463950332,44.47116110041326],[11.400012462002213,44.47101070108305],[11.399917785439854,44.47086696742802],[11.399846126439044,44.47067154907189],[11.399828564161224,44.47060330978995],[11.399796582963397,44.47047904160052],[11.39973853426012,44.47027038629096],[11.39965363600766,44.47009719738426],[11.399507869438764,44.4699885220357],[11.39938131810597,44.46989417130796],[11.399254816709636,44.46976011463872],[11.399032338988157,44.46964213207376],[11.398656006356752,44.46937721977314],[11.398356601745835,44.469239406989885],[11.398079032528114,44.469195731130036],[11.397977085756155,44.4691867639182],[11.397542014695576,44.46914849464893],[11.397355893231248,44.46913158759273],[11.397261939758316,44.46911206318484],[11.39701011066754,44.46911071592551],[11.396776603928878,44.46915420838464],[11.396540636701342,44.469197089451306],[11.396413107660416,44.4692295914984],[11.396307812266791,44.46924037577637],[11.396225135998254,44.46924422957617],[11.39610411087725,44.469186003451014],[11.39583135891952,44.46910677074265],[11.395532136146185,44.46899489141564],[11.395406966383602,44.468928714249245],[11.39595128820011,44.46850447091584],[11.39635630300173,44.46820676945817],[11.396959304968687,44.46781263459783],[11.397141787795341,44.46770355643514],[11.397405656786498,44.467545570425166],[11.397720556171333,44.46740729829972],[11.398239603923464,44.467016603489036],[11.398339150117893,44.46693405373224],[11.3998276836293,44.46596709628034],[11.400228065956986,44.46571054520498],[11.40081777926875,44.46539600228434],[11.401021641008906,44.465289881925145],[11.401209179054494,44.46519614519394],[11.401322219335318,44.46514795892907],[11.401455256248665,44.46505851010221],[11.401629050172142,44.46494738754664],[11.401751075985429,44.46485761189177],[11.401882057597646,44.464756398351845],[11.402004813573797,44.46466547276632],[11.402128223732078,44.46457116821035],[11.402303808850787,44.464446507032655],[11.402467576585238,44.46434009355788],[11.402582022637914,44.46427636003636],[11.402879874234253,44.46412549158111],[11.403267218971815,44.463953603782855],[11.403379896576157,44.46389469142919],[11.403460094635673,44.46384827388981],[11.403403050745244,44.46381751486878],[11.40325119671978,44.46373563367337],[11.40295171493769,44.46338747156642],[11.402867228681233,44.46328122474885],[11.402718617030095,44.46308686156117],[11.402573123338138,44.46289187440398],[11.402475631788452,44.46273694272765],[11.402016812552246,44.462162016548675],[11.401724362312542,44.46227225233951],[11.40154420403176,44.46215113443808],[11.401415505797953,44.461886593280695],[11.401333851158617,44.4618508874358],[11.401277611103362,44.46173195237152],[11.401179221004544,44.461757083344615],[11.400596787099719,44.46207597995106],[11.400112767769068,44.46224651644742],[11.39965870089213,44.46245804442513],[11.398587379598636,44.46291548845346],[11.39843952807158,44.46284489477757],[11.396049492777493,44.464665166168345],[11.3958192434462,44.46458729089731],[11.39547193090933,44.46435545449684],[11.395313757749872,44.464195607309414],[11.395191060810296,44.464077215749846],[11.39508756330607,44.46408219518329],[11.39492940261713,44.46399943056243],[11.39471690691629,44.46385591366619],[11.394650725294673,44.463793718564624],[11.39430756573766,44.46314487811477],[11.394108323854221,44.46276813857821],[11.39387713318771,44.46266665427283],[11.392392361673197,44.462880072891764],[11.391706427954276,44.46249384822501],[11.390477606356646,44.46151019662806],[11.388965815945172,44.46127290425593],[11.388958722191148,44.46142609423259],[11.387591968111854,44.46150869714662],[11.388059110738121,44.462811015828684],[11.387259375537102,44.463043244145],[11.386364563947037,44.4616564633952],[11.38623395434006,44.46157422699184],[11.385688442024792,44.46152880366828],[11.385055687325448,44.46130852612609],[11.384522534293055,44.46118013181567],[11.383751158147188,44.46066172603445],[11.383633481846344,44.46041493378849],[11.383579585466883,44.46032603401588],[11.382967768709229,44.45992469910388],[11.380339669886778,44.460891106470775],[11.38018900999557,44.460946489455196],[11.380061785012847,44.46088950076885],[11.37995216812109,44.460840586323116],[11.379731894417464,44.460794536837156],[11.37938588872424,44.460774600254766],[11.379186714251771,44.460679309143465],[11.378843939976743,44.4604799616746],[11.378449009889614,44.460369474492886],[11.3779951440282,44.46029734654243],[11.377360312259043,44.460218294587314],[11.377061153829155,44.46012549970471],[11.37644766117399,44.46006906499905],[11.376106297907203,44.46000077917173],[11.375747525633505,44.45985182997933],[11.375570931576808,44.45973959640304],[11.375388830115014,44.45954983646918],[11.375298746246424,44.45940148622496],[11.375229457689684,44.45924256927357],[11.375159386542311,44.45913946326892],[11.375113328594162,44.45907169411072],[11.375092325656686,44.458979856209105],[11.375160592067664,44.45872636845487],[11.375286838464636,44.458352401287094],[11.375306920595245,44.458169682385545],[11.375268321779574,44.45807033629247],[11.375337014220332,44.45780783989353],[11.375311255856015,44.45765701679096],[11.375179800270589,44.45743751122861],[11.375137609215974,44.45738493948035],[11.374978153445921,44.457307798674066],[11.37489236173316,44.457148666673],[11.374930969777523,44.45689973904119],[11.37494948626059,44.45669792005403],[11.375057121476425,44.45646556451917],[11.37512612336993,44.45630771130614],[11.375224762822084,44.456144175750055],[11.375332769385894,44.45586342010387],[11.375391587718854,44.45564783142237],[11.375517170412127,44.45521929102268],[11.375616738334028,44.454788485821155],[11.37559916916903,44.4546459337924],[11.375516092141112,44.45437927928215],[11.375303484850683,44.45428917879295],[11.375150079218091,44.45412864597915],[11.37506985145702,44.45389344005509],[11.374947212445953,44.453736201747304],[11.374854571768038,44.45365991849745],[11.37444672705512,44.453656019013884],[11.374369729243623,44.453655370902204],[11.374225598360802,44.45362548854621],[11.374037844157417,44.453587439784094],[11.373916271152158,44.45356242899103],[11.373831744185747,44.453543835169086],[11.373633514504586,44.45349569769079],[11.37362355427473,44.45321120461469],[11.373632907293038,44.45272488506719],[11.373966980224303,44.45240117146079],[11.374157509793752,44.45231505892959],[11.374415965972613,44.451618191095314],[11.374142859851693,44.45019024509923],[11.373548881876218,44.45006981323938],[11.372259836246979,44.44946645021882],[11.371259677318061,44.44914908047322],[11.37050494805198,44.44882153818098],[11.370392831542139,44.44872934160413],[11.370214108272439,44.44868016021292],[11.369939758993402,44.44886871485795],[11.369705736266747,44.449024932468],[11.369531233642263,44.44907975482419],[11.369327658657275,44.44909579683007],[11.368956538903731,44.449261041173656],[11.368807434523035,44.449439109619554],[11.368502542109786,44.44980497029704],[11.36807970187035,44.450147960579834],[11.36772187671784,44.450253840846436],[11.367007377611893,44.450474591796215],[11.366856534518362,44.450483673633684],[11.366765254874108,44.45048916983166],[11.365871549123632,44.45074569633174],[11.365478128156907,44.4509428997653],[11.365240587059995,44.451051356087454],[11.36517888307743,44.451079633524074],[11.365022827738146,44.45112345478265],[11.36466706529187,44.45122358783352],[11.36327386983136,44.45192520381132],[11.363106904087038,44.45184161296966],[11.362937265656427,44.451725561609166],[11.3627921804279,44.45160362467992],[11.362636861899817,44.4514248586546],[11.36240653948639,44.45114773292457],[11.362196367723724,44.450922524020214],[11.3620620975804,44.450767760321874],[11.361917369452808,44.450645846377896],[11.361728449534558,44.45049953012091],[11.361493125288824,44.45031254033245],[11.36134207565136,44.450189631126456],[11.361258713339726,44.45010920541076],[11.36119444360373,44.45003457563671],[11.361138308084772,44.44996709559321],[11.36101940365843,44.449823263061205],[11.360937859308704,44.449729298672985],[11.36084831199071,44.44965125926042],[11.360751267376598,44.449562683626695],[11.360582968697855,44.44942099650823],[11.360395003947051,44.44927016248092],[11.359944654968125,44.448920502844814],[11.359842882563745,44.44883145611678],[11.359738354865833,44.44873234220227],[11.35967698419798,44.44861263444056],[11.35957045755125,44.448405537003595],[11.359519452464083,44.44830924878178],[11.359436132681454,44.448151746243596],[11.359345719807584,44.44797413133541],[11.35922936848981,44.44776666586573],[11.359187120326803,44.44771625707078],[11.359120014726873,44.4477495059493],[11.359050759586971,44.44776866820799],[11.358883242613699,44.44769003740469],[11.358815395654734,44.447658190066875],[11.358748885378445,44.44763297771423],[11.35869292731478,44.44760107909485],[11.358714882255214,44.44724897531806],[11.358746614492798,44.44702269352004],[11.358644600502194,44.446243320030746],[11.358574868659623,44.44605399088572],[11.358425736380156,44.445988106774415],[11.358221719240381,44.44598307886483],[11.357821792904307,44.4460127673496],[11.357633641420824,44.44602673425323],[11.35742741795831,44.445996109966075],[11.35713204238402,44.4458969916677],[11.357077541825518,44.445849407044044],[11.356990392677789,44.44577331625472],[11.35689480079591,44.445603124284126],[11.356706101869268,44.4452660511712],[11.356432213907958,44.44474045604263],[11.356307987212656,44.44461398136111],[11.35622486175213,44.44452935009614],[11.35612601985478,44.444484524817874],[11.355905663081884,44.444384588605125],[11.355355684307263,44.444197856883086],[11.355211340470369,44.44414909846528],[11.35487309503115,44.444077309496116],[11.354647531158452,44.444053829106],[11.354447594408128,44.44408158690229],[11.354082783094599,44.44402015338338],[11.353761647717812,44.44395675676784],[11.353666769434332,44.44390188831011],[11.353571596132445,44.443761500695594],[11.35347836493687,44.443503089770836],[11.35344366361085,44.44320655520778],[11.353413936496963,44.443101949324834],[11.353415142984158,44.44299502676736],[11.353290229472076,44.443052732404574],[11.353003779018557,44.443042351924994],[11.352745962873783,44.44303300909928],[11.352640702154009,44.44303236165155],[11.352332795491561,44.44303139973921],[11.35205955658072,44.44303308778537],[11.351910494674486,44.44306759164007],[11.351812084876757,44.44308995366164],[11.351499085330536,44.44317741752744],[11.350766807162705,44.4432418721167],[11.350631171359094,44.443253809761174],[11.350477514829622,44.44331458433098],[11.350324751033446,44.44337500452479],[11.350222055518259,44.443415138558464],[11.349530607975526,44.4434823923386],[11.349130645952128,44.443477123697996],[11.348807671469723,44.443414003029936],[11.348614369491145,44.44345061375053],[11.347348799842305,44.44208100493246],[11.346565740737754,44.44197078112976],[11.346204623227493,44.441950753653884],[11.345948208477187,44.441807922752275],[11.345752678622924,44.441631898871584],[11.346966001243443,44.44039557253041],[11.347395160747158,44.44048296666537],[11.346815389666864,44.43922329965182],[11.346994798604568,44.438604634001166],[11.347119103033597,44.43841416186164],[11.347119393781231,44.43820597152454],[11.347088114961808,44.437895471934866],[11.347157944280859,44.437717360119336],[11.347231063023816,44.43758251534445],[11.347224209959707,44.43748981387963],[11.347192591003525,44.43735825605852],[11.346201644817869,44.43713385785064],[11.345435913468288,44.43695548483939],[11.344322723319415,44.43696428478652],[11.343817055685758,44.43696566759566],[11.343542175045943,44.43694542742885],[11.343283968672365,44.43698842899739],[11.342986878007109,44.43708061043016],[11.342801930409268,44.43708489686861],[11.342593274211543,44.43697784563979],[11.342368440460664,44.43683448451066],[11.342014011580755,44.43669039688523],[11.341812446598121,44.43653924913949],[11.341598416387447,44.43645203502757],[11.341467724600312,44.43663802841328],[11.341326492755517,44.436739392237214],[11.34088346859878,44.43685425298434],[11.340312055062668,44.43695936953485],[11.340220615139266,44.437226253320205],[11.340125286831821,44.43737561601572],[11.33988871238081,44.43756726647626],[11.339650836311122,44.43776569219867],[11.339524098285722,44.43783693185819],[11.339311715709828,44.43804440121923],[11.339165134480634,44.43811042242575],[11.339049912155867,44.438174674706985],[11.338905435441829,44.438214768833305],[11.338650986203618,44.43831281436602],[11.338325783529408,44.4384286353449],[11.337744971638909,44.43865321568007],[11.336679404600336,44.43904974944846],[11.336559980062537,44.439146718825015],[11.336397711544725,44.43942967444019],[11.335430515055497,44.43957999020402],[11.335333929188,44.43914254864366],[11.335298490759188,44.43898235710356],[11.335185029536978,44.43883501998595],[11.335154528889914,44.438621266791216],[11.335092373669319,44.43852878569385],[11.334926617544674,44.43828215323873],[11.334821305051051,44.43822073247018],[11.334511269701293,44.43824451437455],[11.334375875840848,44.43821690011282],[11.334342021867096,44.43815570016591],[11.334367992745454,44.43801901088277],[11.334298462948041,44.4378111229649],[11.334153076208395,44.4377296949241],[11.334040944256946,44.437713988288365],[11.333862534256655,44.43755277724062],[11.333641035494876,44.43720527657511],[11.333535709311116,44.43711313698048],[11.333446947362154,44.437035762887234],[11.33339187009882,44.4369137352985],[11.333363406762942,44.43685066939772],[11.333282765225988,44.43669927549728],[11.333243425468936,44.436651211972794],[11.333120154282195,44.43650060643239],[11.33309804794344,44.43635927440892],[11.333009614854467,44.43622885664118],[11.332978977257733,44.43611020758496],[11.332879885773195,44.4359720404297],[11.332731351745384,44.4357884609726],[11.332650920742507,44.43568823631253],[11.332597116569561,44.435572232797135],[11.332494502034873,44.43546426103933],[11.332388339452311,44.43533794011296],[11.332399827009946,44.4352251729757],[11.33249806426549,44.43505662178491],[11.332467655766097,44.4349629107788],[11.332331803337054,44.43481526842134],[11.332645172661946,44.43458447853293],[11.332683923318022,44.43452204921427],[11.33270365243533,44.43446708444543],[11.332663608273434,44.43434262020069],[11.332702799027247,44.434239767498255],[11.332729728908353,44.43416909316633],[11.33268431775484,44.433947818073214],[11.33264526770941,44.43386192580141],[11.3326303636768,44.43378346402148],[11.332570319554641,44.433655839857714],[11.332767752247312,44.433526339345185],[11.332814540527789,44.43343928985811],[11.33279089514243,44.43337789069081],[11.333018098151808,44.43325029484364],[11.333189467586896,44.43324824001318],[11.33330699806958,44.43321701577812],[11.333412778395173,44.433258838356274],[11.333491237394867,44.43333600091757],[11.333610545577427,44.43332626292334],[11.3336948691722,44.43328625290439],[11.333777021625732,44.43329527546408],[11.333851379414643,44.43328650117326],[11.333906270162617,44.43324452074941],[11.33448384793072,44.43325888162703],[11.334536469631233,44.433318005325575],[11.334638872253374,44.433315094593254],[11.334781044293344,44.433208920600215],[11.334890586635279,44.43318494028353],[11.335033103754558,44.4330906636651],[11.335236656542373,44.433005026523155],[11.335405499553174,44.43303635496047],[11.335513304218434,44.43304202382657],[11.33557756749854,44.43301748110813],[11.335920406097562,44.43301525105664],[11.336095773027909,44.4329703397492],[11.336401817334375,44.432946937706205],[11.336576732819857,44.43285709051239],[11.336814289640575,44.43283137747912],[11.337407638305809,44.432687570972526],[11.33764163707307,44.432676626356],[11.337784862809455,44.432704076384724],[11.33802649177288,44.43267241418286],[11.33835019655972,44.432580852776745],[11.338538488159825,44.432600865507666],[11.338620357153541,44.43260593834054],[11.338700466139603,44.432607520038836],[11.338660015370019,44.43247796635696],[11.338562006964684,44.432343815850444],[11.3384516363846,44.43217559241191],[11.33841231886966,44.43207568096715],[11.3383937125199,44.43188476059123],[11.33831768794487,44.43171133406538],[11.33825417667527,44.43155622669122],[11.338152830534707,44.43141707673807],[11.3381845784416,44.43128757536861],[11.338241344664834,44.43111649537474],[11.33830126677924,44.43096504251835],[11.338331185655036,44.43082938672536],[11.33830681485247,44.43067121891685],[11.338316432343289,44.430577630289996],[11.338253033360598,44.430385936700496],[11.33812932167796,44.43015834356559],[11.338294255038003,44.42992315661237],[11.338275445060226,44.42982564096831],[11.338216492288074,44.429725573461326],[11.338332758511921,44.42962866692778],[11.338278300782415,44.42942498174661],[11.338247775476564,44.42928943871699],[11.33811926523546,44.4292566294106],[11.338045987320006,44.429171479584504],[11.338001552889315,44.42909168415455],[11.337976338413588,44.42898048005448],[11.337982700283714,44.42886444134108],[11.337972113438287,44.42877372416325],[11.337963826568767,44.42866677718936],[11.337872348567588,44.42857806684371],[11.33779725992247,44.42853521203344],[11.33763682496398,44.42848048967434],[11.337527152846135,44.428447284933405],[11.337420178288895,44.42840334172039],[11.337323605993626,44.4283512408171],[11.337152528964682,44.42826759674168],[11.33693146914336,44.42815846270186],[11.336722398532933,44.4280744092348],[11.336547788886273,44.42800764851623],[11.336361694672703,44.427928748794955],[11.336222393034186,44.427880957668826],[11.336080774383847,44.42783403210398],[11.335960286771439,44.42778617073143],[11.33586321620607,44.42773414899916],[11.335752226961816,44.427658084821296],[11.335598676369516,44.4275583859303],[11.335512549184203,44.42751606063106],[11.335374439197407,44.42744818946465],[11.33514065010517,44.42735451377732],[11.334892678039006,44.427259435250775],[11.334690923903938,44.42718141033559],[11.334589464212476,44.42713735256688],[11.334455285302722,44.427060762996284],[11.334396318579604,44.42699950935106],[11.33429517061867,44.426893732667125],[11.33420429829638,44.42680317407683],[11.334129571397067,44.426728703850635],[11.33403337900851,44.42665921236208],[11.333922825960833,44.42660408963062],[11.333794622085383,44.42655888547926],[11.33368851225266,44.4265248299997],[11.333623253716226,44.42649786323861],[11.33355620010113,44.42646698378607],[11.333413610563666,44.42641531427683],[11.33316768288239,44.42633200762905],[11.332893621426186,44.42625208233608],[11.33275886679084,44.426219952722874],[11.332612835763792,44.42620043705381],[11.33244206427199,44.42619041738231],[11.332231815922372,44.42615533020654],[11.33210426157676,44.42612642771233],[11.331905470710215,44.42608322967784],[11.331720707741617,44.426037486969605],[11.331541297866403,44.42598770148546],[11.331379040395369,44.42593531482563],[11.331197580008855,44.42587375323767],[11.33104005112208,44.42582182858001],[11.330877873929094,44.425771122112586],[11.330722659413725,44.42571802446101],[11.330483128361037,44.425598014596645],[11.330307282803943,44.425499762045796],[11.330100571781443,44.42537569740756],[11.32984137227327,44.425234695261175],[11.329581450392043,44.42509539881237],[11.329307228470569,44.424991276921716],[11.328834310173443,44.42482650870404],[11.328610979137405,44.424738221019254],[11.328314632526872,44.42463061579158],[11.328068142944092,44.42455236711528],[11.327942083649615,44.424521746916795],[11.327660611290735,44.42449203594952],[11.327329279022297,44.42445209050363],[11.327040747625011,44.424343197328795],[11.326364060373912,44.42389055363533],[11.325942215906025,44.42366677244153],[11.325793264853077,44.42363267682744],[11.325650657510149,44.423600128928655],[11.325217557781688,44.42362695974256],[11.324757682229885,44.423691459166044],[11.324339484516377,44.423759254650584],[11.324123173212227,44.423758032225],[11.323813851776185,44.42374780896334],[11.323569417014223,44.42371105116613],[11.323240440397043,44.423661579862994],[11.321785933907798,44.423272561035205],[11.320396232626447,44.4228546392497],[11.320222759331486,44.422776014708255],[11.319958187845089,44.422498381595865],[11.31980456566284,44.42236076088798],[11.3196985190122,44.42231707561067],[11.319479530040628,44.42226673218932],[11.319329129755722,44.42223157097429],[11.319167316281941,44.42219374175296],[11.318843122835691,44.42211536820135],[11.318755730059797,44.422109264444344],[11.318292333244461,44.422143996986996],[11.31789281337407,44.42216617589246],[11.316867699988748,44.422251127547376],[11.316684827112322,44.422264887333505],[11.31596673195059,44.42231891807431],[11.315887971008847,44.42232504770737],[11.315731929240057,44.422337190362676],[11.315639022297512,44.422348493280545],[11.315369974923858,44.422380526434864],[11.315182468601169,44.42239953526174],[11.315029310257021,44.422377881993214],[11.314884929268413,44.42234030173825],[11.31469833245033,44.42224730959973],[11.314564196304206,44.42217069566795],[11.314381238019967,44.42207110789845],[11.310433610633126,44.42467545001488],[11.309835078802399,44.42506664571544],[11.30973987686956,44.42510870013231],[11.309419753741953,44.425246801586006],[11.309169894933001,44.42550110705256],[11.308863520791764,44.425576512527286],[11.308782551751218,44.4256338506215],[11.30862088075655,44.425814912090296],[11.308402495970954,44.425971813525706],[11.308076019702293,44.42613483225546],[11.307871778276185,44.42627174497672],[11.30774276925555,44.42638519587561],[11.307581900645417,44.426427263390245],[11.30740022962285,44.42651927871098],[11.307204652538077,44.42669709122405],[11.307003374335256,44.4268896429981],[11.306599912440445,44.42715154621848],[11.306045823873156,44.427364266151606],[11.305827215511405,44.42732864108714],[11.305515332319034,44.42733698828503],[11.305398185164341,44.427340122908376],[11.30533413729341,44.427407526289954],[11.305236835275908,44.427509923672766],[11.304974202065216,44.42766647060188],[11.304827939561951,44.42775365368095],[11.304572454447598,44.42790593946889],[11.303937488092497,44.428054999197464],[11.303598981528522,44.42818946362759],[11.303396489711448,44.428291449635154],[11.303151650164484,44.428334656918665],[11.30290566328773,44.4284088199381],[11.302771624691973,44.42851449135862],[11.302633507560998,44.4286765116306],[11.302568607873754,44.42875247389999],[11.302329353145838,44.428889129518545],[11.302218303393158,44.42890608620956],[11.301861958602343,44.42902346398274],[11.301701966023513,44.42913663701968],[11.301555180174931,44.42922939261907],[11.3014749615455,44.4292536743032],[11.301375939667667,44.42928364820748],[11.301381852436586,44.42940817340262],[11.301358523709258,44.429540000270755],[11.30131012347485,44.429598789326285],[11.301239352326352,44.42968475381734],[11.301238416644042,44.42976073124249],[11.301339745037378,44.42984196429277],[11.301546429067331,44.43002628144726],[11.301634808648352,44.43021749280884],[11.301716377746596,44.43027492277687],[11.301740197978132,44.430341959514934],[11.301787600121635,44.430469287788256],[11.301837933546054,44.43065113211356],[11.301831593611547,44.43078967797088],[11.301540641403587,44.431018911475114],[11.301493430937676,44.431096379970555],[11.301486381842162,44.431256881616726],[11.301464730629137,44.43132540227107],[11.301272250932497,44.43142267332774],[11.301164028324964,44.43152613985577],[11.300964415061319,44.43162187164069],[11.300920765824742,44.43169026842681],[11.30087745135451,44.43177007617584],[11.300757243689832,44.43186517309078],[11.300650165388674,44.43189771506512],[11.300564826849959,44.43190922407146],[11.300439267809194,44.43192615634064],[11.300165614264841,44.43193617078813],[11.300027699127352,44.431983399732545],[11.299806232826157,44.43211639493642],[11.299640336302005,44.432181165616335],[11.299573880626998,44.432204660075485],[11.299408660148394,44.43225638044387],[11.299254287474504,44.43230449809115],[11.299164505102613,44.43231756474194],[11.299090829196789,44.432401189937366],[11.299020798218194,44.432437484552715],[11.298936229693211,44.43252358771059],[11.298856193726886,44.432625350105575],[11.298743051717087,44.432743537763244],[11.298593115570092,44.43288496583133],[11.298334439478229,44.433056715455635],[11.298184871071395,44.4331671943793],[11.297999454804222,44.433264884846956],[11.297910331592721,44.43335502196601],[11.297942732244076,44.4334459573298],[11.298027532218684,44.43352033037785],[11.298046108724503,44.4335936652553],[11.2979957794407,44.43363181142826],[11.297880850097826,44.433662331161365],[11.29776885294311,44.43369207877084],[11.297636497582422,44.43364360828722],[11.297506346048266,44.43362590395875],[11.297397787887045,44.433701239387716],[11.297365649457142,44.43380259403738],[11.29729745191719,44.43394352591985],[11.297065418809266,44.43403835215267],[11.296696031421256,44.43412834514951],[11.296403182512472,44.43416967795003],[11.29611514998579,44.434213729970786],[11.295837425241851,44.43430417750787],[11.295662587991444,44.43431170048738],[11.295574161496045,44.434175101211736],[11.295410317788381,44.4341018701064],[11.295335626169573,44.4340994396837],[11.295235466184655,44.43415254835072],[11.295050471150633,44.434148164612914],[11.294654494653743,44.43415139122234],[11.294504965698888,44.43425022353318],[11.294483038721921,44.434365271804474],[11.294400541194378,44.43442431290119],[11.293871888618607,44.43441974522471],[11.293694005564548,44.43446946114777],[11.293554547899577,44.434557789326774],[11.293347734840001,44.43453043497223],[11.293392492374878,44.43436974349823],[11.293391351613792,44.43422461646717],[11.293390715386707,44.43414359518239],[11.293333065254068,44.434074977647995],[11.292994816678151,44.434040138905026],[11.29306299759129,44.4339560608854],[11.293201421992945,44.433861571218166],[11.293358865410926,44.43371099074439],[11.293470977172326,44.43356583007843],[11.293571060178314,44.433414709227804],[11.293692890542117,44.43327722836746],[11.29379472277884,44.433050122637795],[11.293783598196848,44.43294625337193],[11.293813015061794,44.43287533835379],[11.293945627692658,44.43273257221906],[11.293974273777483,44.43264197092228],[11.294165965218744,44.432403493181134],[11.294630963391285,44.43146465095759],[11.294631427112975,44.43131609862798],[11.294646724725158,44.4310648576586],[11.294615308901738,44.43092426325303],[11.294630001459842,44.430757983678696],[11.29467220799925,44.430512383743505],[11.294540160585338,44.430188135939495],[11.294697806099588,44.429796001848736],[11.29469355402741,44.42969360860671],[11.294630142464694,44.429540795599536],[11.294577558138434,44.42939873614143],[11.294553668336473,44.429189159027466],[11.29454698029367,44.4291184023237],[11.294516104799504,44.428991863225505],[11.294461390113666,44.42893783049553],[11.294424214891139,44.428770342772786],[11.294395653167529,44.42862237465],[11.294320869124993,44.428517256025124],[11.29418023376154,44.42855524482052],[11.294035254221399,44.428562100443216],[11.293736669545739,44.42849664096134],[11.293627480244673,44.42835480101871],[11.293438966876437,44.42811214518802],[11.293358785191408,44.42798941404969],[11.292880716434311,44.42783134028766],[11.292513496304021,44.42785729175113],[11.292121406906277,44.427910172395414],[11.291656164232393,44.4280601715418],[11.291398313298204,44.428092356397975],[11.29098358817579,44.428088305317964],[11.290818466823008,44.42810231105665],[11.290644799330407,44.42811873773632],[11.290517227546967,44.42814942181996],[11.290360856400403,44.42806591745303],[11.289979715878257,44.4279165789642],[11.289508588802416,44.42779549388417],[11.288032619225465,44.42753757157087],[11.285856865723183,44.427193493588646],[11.285296500330496,44.42709893808866],[11.28370583977673,44.42683875079769],[11.283257800571063,44.42676557127067],[11.283566459213814,44.427402783400616],[11.283567554971045,44.42747503180929],[11.283568412766511,44.42754368671995],[11.28357486835769,44.42793122680825],[11.283579436184404,44.42818938711988],[11.283582938097402,44.428944396430985],[11.284354264024692,44.43203422143133],[11.284918383167497,44.433090279288834],[11.284933477192395,44.43363856373424],[11.285055251108668,44.43794995335826],[11.2850712329301,44.438641695047515],[11.284118485098148,44.439967233947925],[11.28351496806555,44.43999787420663],[11.282062645119204,44.444266469337826],[11.283148583111318,44.44694039973129],[11.283501397137403,44.44789153793161],[11.284768093134293,44.45139827479629],[11.284645675199762,44.45175488496605],[11.284593024761051,44.451875747489154],[11.284726263224556,44.45265347409373],[11.285376681241344,44.45384454131697],[11.28579389030649,44.45460924781078],[11.286021267652924,44.455161712074045],[11.286119459713303,44.45554403835266],[11.286151583603182,44.45560246940189],[11.286576174542525,44.45595462524306],[11.286858288466298,44.45668154176383],[11.28689223750703,44.45682658640226],[11.287255916584359,44.45823379343244],[11.287313131224101,44.45947722320517],[11.287554733997007,44.459930373993856],[11.287534561359859,44.460097887065245],[11.289077924216697,44.46027006731088],[11.289165440988468,44.46055919543016],[11.289333410140564,44.460394910048265],[11.289598984378056,44.46045597527706],[11.289791415764585,44.46057534156539],[11.289916075706206,44.46064935740673],[11.290162496548142,44.46070293116755],[11.290333385573414,44.46069331092779],[11.290628452458202,44.46076559852271],[11.290787819726559,44.46080290848079],[11.290895393161417,44.46090202528309],[11.291006105785096,44.46096057021088],[11.291156812479159,44.46097723732761],[11.291280822587346,44.46097419020014],[11.291910383183351,44.46114216016382],[11.29210422761209,44.46117709354103],[11.292328270102455,44.461321128222025],[11.292598297465508,44.46141586483918],[11.293145267177168,44.46156072834384],[11.293180356113558,44.46163429015407],[11.293084847058452,44.46170316726527],[11.292824329566141,44.46197171690155],[11.292761498373318,44.46225317870862],[11.292805606106393,44.462296175667525],[11.292936048814502,44.46303906432792],[11.29259848222964,44.463346860997454],[11.292301555817472,44.463521058699044],[11.292227536554488,44.46355515690296],[11.291953653210737,44.463672643440475],[11.29190126485496,44.46371926961778],[11.291828060145107,44.463936231152545],[11.291714603660399,44.46405686720062],[11.291634635150459,44.46411829853875],[11.29157111343409,44.464154575703795],[11.29149536347864,44.46418800508885],[11.291420831414191,44.464220757307274],[11.291329681951636,44.46426525619203],[11.291086674732842,44.46452557235602],[11.290950221337066,44.46471286341114],[11.290926381826846,44.46480617130418],[11.290767888053221,44.46497196033093],[11.29062034562425,44.46513696224168],[11.290541255620678,44.46528427464],[11.290386901235998,44.46565647221848],[11.290227527654567,44.466020886013375],[11.290175124435606,44.46622786140594],[11.290157793979875,44.46660855983648],[11.290048421249368,44.46714639508948],[11.290135705252286,44.46718852689841],[11.290180013050746,44.467236588244106],[11.290199806364464,44.46740105012193],[11.290290942363328,44.467421163126495],[11.291328332592057,44.467227054069376],[11.291447779267866,44.467247721391445],[11.291640613855781,44.46856100984423],[11.29262504438915,44.46880006080719],[11.292621178681172,44.46888172123573],[11.291597951197527,44.469237598909864],[11.291734391745992,44.46943122699023],[11.29219821537286,44.46971843089341],[11.293336811117584,44.46980207665243],[11.293698735214344,44.469732741303446],[11.293724466302205,44.46978793975986],[11.29369437056108,44.46997135132248],[11.293670700936639,44.47010014621333],[11.293626487369783,44.470307347410674],[11.293430126341796,44.47075821260885],[11.2932849707915,44.4710041953998],[11.293122346787063,44.4712068630713],[11.2930001857287,44.47135910498371],[11.292817608594522,44.471554954026594],[11.292774050983583,44.47160128976071],[11.292615348103775,44.47178227773818],[11.292086533869645,44.4717822047],[11.292120810458254,44.47173228090263],[11.292486452769676,44.47119971721589],[11.291241134637477,44.47069580918559],[11.291099629901579,44.47093948424918],[11.290831442855247,44.47131452391945],[11.290649056859934,44.47153310826087],[11.290519154009793,44.47156666483465],[11.290472639869476,44.471723448345834],[11.290520049907828,44.47235266320072],[11.290570188652014,44.473031330655495],[11.291087921991327,44.47300912457487],[11.291310554706577,44.472995656535865],[11.29167656874498,44.473091834442855],[11.291344060013934,44.47379112421066],[11.291433812479358,44.473815773312964],[11.291414673164908,44.47388873159114],[11.291363772581525,44.473973595607326],[11.291227185180356,44.4741980204544],[11.291090492012344,44.47435942103225],[11.291039142469748,44.474472985238634],[11.291534954856772,44.474452341451844],[11.29170963965587,44.47445840152271],[11.292005293657077,44.47471409515541],[11.291694300877158,44.47490172315469],[11.291469963483335,44.474919521174954],[11.291415064257928,44.474882365057525],[11.291217099765001,44.47490909645278],[11.290821966464124,44.47544903447325],[11.2906329739831,44.47557941768035],[11.290343415699635,44.4757308429195],[11.28964731548123,44.47585637361806],[11.289366076167058,44.47601668946121],[11.28896800008094,44.47630655479908],[11.288941614772849,44.47647588472227],[11.288965045941223,44.47669315512445],[11.289178416294822,44.47708554347975],[11.289384842409646,44.477480877602524],[11.289860537687455,44.477411921233106],[11.290245377045133,44.4773324282117],[11.290763005041617,44.47731538943891],[11.291284408788453,44.477404779966285],[11.291482033234688,44.47733527442355],[11.292283408652533,44.47696978614049],[11.292414698837012,44.47686580061192],[11.292536079027828,44.47690000343102],[11.292787900155197,44.47708962128537],[11.292796978042812,44.477160896732634],[11.29270952910013,44.477275744831495],[11.292412743774012,44.47762322907675],[11.29210628914082,44.47776441581764],[11.291962841363658,44.47785394607517],[11.292061561370524,44.47808715606028],[11.291444577827862,44.478285207290185],[11.291359998299384,44.478352739030576],[11.291124317815632,44.47841486104605],[11.291139660207195,44.47858616175697],[11.291586584960209,44.47890127288671],[11.29179387359978,44.47915761092093],[11.292032243087544,44.479364940632905],[11.292196549076811,44.47950680854079],[11.292236168905767,44.47963542139582],[11.292314179834184,44.479741321060054],[11.292699125568612,44.47995864856366],[11.293089256644091,44.4802681453123],[11.292630178309723,44.48036501179881],[11.292631705073221,44.480203627095385],[11.291901961261466,44.48014792553275],[11.291283584288998,44.480656051034046],[11.29163871010654,44.480974696798725],[11.291169090043681,44.48150513000223],[11.290905921121652,44.481668520327375],[11.290544299859615,44.481926718379235],[11.290396201406182,44.482078221892245],[11.290752270140416,44.48222017638277],[11.291189588280327,44.482289608473444],[11.29146521345909,44.48228407613176],[11.291503628899536,44.482341821889875],[11.291276538067653,44.48259337954403],[11.29158364949773,44.48271943921217],[11.29188378387264,44.482897964111615],[11.291913039940686,44.482982618803575],[11.291867485927883,44.483163857051245],[11.291844252223493,44.483272914883585],[11.29183577472374,44.48337773434274],[11.291851761658876,44.483464621547014],[11.291869293091027,44.48353122792311],[11.291955346643919,44.48362120773894],[11.292024460713376,44.4836400788989],[11.292143597288975,44.48363206215159],[11.292322622190463,44.48360765038184],[11.292419418310027,44.483593723618775],[11.292498866171735,44.48357260302438],[11.29256926963712,44.483544181285],[11.29268108906762,44.483489610495724],[11.292813889347201,44.48340873472993],[11.292913733339493,44.483329646060035],[11.293067916778659,44.48319264134538],[11.29316704823631,44.48311525019829],[11.293262922079517,44.483054816358724],[11.293330008379671,44.48302196052708],[11.293452575427393,44.48298123108531],[11.293888034928788,44.48288246560942],[11.294348652834612,44.48276553927856],[11.294597058523587,44.48280575698221],[11.294874099218864,44.482976295821764],[11.295453386858904,44.482877998857354],[11.295496294384211,44.48299022769465],[11.295553890054313,44.483196128256736],[11.295599074234474,44.48332630960439],[11.29569670875835,44.483551096588776],[11.295752650078676,44.483594979569524],[11.295887158525128,44.48363784865527],[11.296166121128575,44.48371720530599],[11.296311839518117,44.48374521513928],[11.296450026105772,44.48378181867692],[11.296586839724299,44.483823516172905],[11.296811346370433,44.48387694902312],[11.296898966643715,44.483906694175026],[11.296997174984522,44.48394579297301],[11.297113898468881,44.48395638596893],[11.29750433709345,44.48401211197708],[11.297685367058822,44.48403884761628],[11.297733384042077,44.484180792923],[11.29775737102565,44.48431140995344],[11.29778624812392,44.484456265635124],[11.297763619705758,44.48453070845485],[11.297730574646314,44.48460958122363],[11.297703688015151,44.48468552310348],[11.29768325585421,44.48480577499847],[11.297678600479141,44.48490714386123],[11.297674904065524,44.4850332506907],[11.29767284021387,44.485200958569564],[11.297666303481797,44.485334439644554],[11.297664578749659,44.485390743334484],[11.297661148390617,44.48552359293528],[11.297654430426945,44.48561262871828],[11.297655188970849,44.48569194635572],[11.29765074166718,44.4857989347625],[11.297649692862407,44.48587209698275],[11.297651109358274,44.485928335642576],[11.297636712490162,44.485982074859386],[11.29762178079193,44.48604201663083],[11.297612206426237,44.48609847650461],[11.297601874864238,44.486155508860534],[11.297599657509101,44.4862590828094],[11.29762830697748,44.48636821738525],[11.297651962109734,44.48643020022754],[11.2976639890747,44.48649634932272],[11.297659134074298,44.48662241372471],[11.297615579107193,44.486684681652186],[11.297401948742653,44.48692867233551],[11.297196920258589,44.48716032108439],[11.297118766314025,44.48721261552313],[11.29703262347986,44.48727087805354],[11.296809831375267,44.48752179289458],[11.29675706810849,44.487579122542314],[11.296681685561653,44.487661095558956],[11.296369685068086,44.488002146668926],[11.295811243410906,44.488632851557036],[11.296010975501275,44.48872532487491],[11.29599311393537,44.48882105641361],[11.295928548558573,44.489178507132294],[11.295837414774226,44.48962033064942],[11.295822332550891,44.48969422336186],[11.295805737806786,44.48977456693797],[11.295708639026879,44.49026433414765],[11.29565386652455,44.49055126255842],[11.29559819438221,44.4907487872882],[11.29492769661406,44.49061368559002],[11.294640127994956,44.49055645023664],[11.294294025737624,44.49048969854268],[11.293914262016726,44.49040971005125],[11.293682555913287,44.49036135579033],[11.293532400763509,44.490330019901705],[11.293255708047537,44.490269187573944],[11.293133748366865,44.49023998543124],[11.292951029707426,44.49019653312714],[11.292540168292463,44.49010182745048],[11.292187380044977,44.490025078728124],[11.291825338383935,44.48995244779792],[11.291450897890957,44.48988457385825],[11.2912623713413,44.489847282278625],[11.291191040361907,44.48983919583175],[11.291054812235785,44.489805873910804],[11.290744517849804,44.48972995040484],[11.290455945545501,44.48966709998247],[11.290232452351901,44.489612739515955],[11.290098484782833,44.4895636989748],[11.28993221609769,44.48949981595776],[11.289810369800104,44.489439243927634],[11.289709653534327,44.48937599826771],[11.289614942650411,44.489305881234664],[11.289502780534962,44.48921134696623],[11.289345972721803,44.48904064365855],[11.28921272084732,44.48891304704647],[11.2891381401672,44.48895196883789],[11.2892219179953,44.48910445521602],[11.289140632305582,44.48909596125627],[11.288854585068993,44.4891174465096],[11.288518355063378,44.489161887428146],[11.28841787333436,44.489185275971494],[11.288183615322776,44.489204605949425],[11.287886288735443,44.48921900678546],[11.287730460492917,44.489233946202816],[11.287523776513897,44.489254962899984],[11.28714778931174,44.48928781287283],[11.287063275219776,44.48929739033935],[11.286986335110278,44.489272216521066],[11.286829155115434,44.4891424750241],[11.285655868878383,44.49053244909221],[11.285476942193219,44.49055966434493],[11.285355449664449,44.49056827943904],[11.285253273652335,44.49056864239346],[11.284589338158579,44.490572591750926],[11.28445727395036,44.4905946994672],[11.284293094403289,44.49063736728675],[11.283973852453421,44.490730178070194],[11.28376390682003,44.49041052295941],[11.283451381591837,44.490136576097626],[11.28334127989303,44.490074637840294],[11.283219901280043,44.490005606146404],[11.282747354462483,44.489739924308154],[11.282488633644316,44.489595440472115],[11.282421691911885,44.48964791475417],[11.282123311848355,44.48988180969314],[11.282026453632065,44.489955818484106],[11.281926421537701,44.49003316207681],[11.281225935175463,44.49057323583668],[11.280042081875798,44.4915179333693],[11.279568021393686,44.49190887460798],[11.279410943879755,44.4921503635101],[11.279288900246474,44.492132260692195],[11.278631053086855,44.49204018551771],[11.278195645993572,44.49198015390405],[11.277765831891065,44.49192346411538],[11.277581603076353,44.49190576572789],[11.27748055029795,44.49188872035068],[11.277119525170832,44.49181764198016],[11.276862782560645,44.49176424714556],[11.276616976092228,44.491709507443446],[11.275968628322149,44.49154255148678],[11.27575788191252,44.491488080467256],[11.274577144777693,44.4911813389113],[11.274160472628598,44.49107824132034],[11.274052731337925,44.49105675477313],[11.27398364499383,44.49107429284105],[11.273826719097038,44.49118728919685],[11.273641629857982,44.49133951659322],[11.27331021080329,44.49162968255641],[11.273227238093487,44.491669034725874],[11.273136781312777,44.491677585919305],[11.27293765539205,44.49167085880664],[11.272755849303328,44.49166463814193],[11.272647705094515,44.491673256615805],[11.272487793398193,44.49168432429116],[11.272285309066088,44.49171254594713],[11.272071586724902,44.49175505792673],[11.27181004281539,44.491821029685234],[11.271722170092803,44.4918452868756],[11.271616007199798,44.49188453311288],[11.271383317944872,44.49192460350436],[11.27121364950452,44.491947680857024],[11.271079721553306,44.49196248678308],[11.270943646364675,44.49197780158723],[11.270829841479232,44.49200257396376],[11.27053927448174,44.49209050332721],[11.27016267418022,44.49208785930117],[11.26986575804936,44.492093205386674],[11.269715034850426,44.49209845282531],[11.269580685719532,44.49187327187513],[11.269357262943002,44.49134543487547],[11.269307373397796,44.49123550015974],[11.269207710362508,44.49101588401567],[11.26917157605811,44.49096446450262],[11.269070875925406,44.49097358698108],[11.26851383584771,44.491121949399435],[11.267753515746584,44.49127771346793],[11.266912276137953,44.49145533819332],[11.265742094312035,44.49170419454739],[11.265032129012043,44.4918539447476],[11.26469267336713,44.491925317038685],[11.26458656699712,44.49194896541153],[11.263994411498652,44.4920809501694],[11.263746628468372,44.492136138333514],[11.262865612687,44.49234357962322],[11.262789386214536,44.49234397070871],[11.262688065429161,44.492366233324724],[11.262310470205843,44.49248061582571],[11.261314005142337,44.49277099189638],[11.26035257466016,44.49305334758132],[11.258872425286262,44.49347987793374],[11.257933544468814,44.49375614326541],[11.257016942693511,44.49401957590412],[11.25669903986496,44.494112510711915],[11.256275433615874,44.49423679228412],[11.256127598335363,44.494276977367754],[11.256167081350961,44.49436243375748],[11.25625912555502,44.49454769695461],[11.256323359756887,44.49464375943193],[11.256373947499391,44.49475304322333],[11.256418717621417,44.494853990614764],[11.256482782076434,44.494965815792725],[11.256532439749844,44.49503451658449],[11.256612530649019,44.49515061696779],[11.2566878270846,44.49526840277899],[11.256725167611291,44.4953396902729],[11.256763764182985,44.49542331759187],[11.25680635854586,44.495508558296585],[11.25691010188472,44.49566095718644],[11.256962508244358,44.49572547138183],[11.257032886442586,44.49579722097081],[11.257116738124914,44.49587207908175],[11.257149684808633,44.495932573117464],[11.25715205640764,44.495992913696476],[11.257173454483029,44.496058323568406],[11.257200087491283,44.49611715546767],[11.257215769615478,44.49617732828035],[11.257215936535554,44.49624259079844],[11.257214559067355,44.49629860157543],[11.25725464891001,44.49641061676757],[11.257316075839798,44.49657650923547],[11.257352316965608,44.49670070049093],[11.25738982208901,44.49679673363349],[11.257444563292411,44.49691155941939],[11.257458923348766,44.497018732362314],[11.257487621748616,44.49709019048518],[11.257525496390771,44.497195783019],[11.25756180053727,44.49726033088138],[11.257648008424175,44.497538816421994],[11.257779233936661,44.497903627657536],[11.257804174203093,44.49797965937012],[11.25790499189922,44.49833100574359],[11.257929697870889,44.49844135343531],[11.257756061646676,44.49844366691341],[11.257195222505535,44.49835348355736],[11.256879388568192,44.49831752795211],[11.25661129321049,44.4982963773292],[11.256378098018354,44.4982835457616],[11.255678344305206,44.49826024110593],[11.255257485126892,44.49825280767567],[11.254863739877635,44.49823470233733],[11.254529872861692,44.498220479589264],[11.25441450137281,44.498204749846124],[11.254033211890201,44.49816332905399],[11.252993852469643,44.49805838055725],[11.252582818270097,44.49802034976908],[11.252091760057263,44.49796589793911],[11.251934870862211,44.49793355178009],[11.251833483031183,44.4979136005626],[11.251567622806505,44.497868770140926],[11.25142644061265,44.49783611348385],[11.250942457374832,44.49774100859622],[11.250199812670585,44.49760373304191],[11.249755023803884,44.497525849731794],[11.249529027359833,44.497495420316994],[11.249068598761218,44.49741953494945],[11.24860802904871,44.49734027553643],[11.248603129757644,44.49739662924754],[11.248639992674862,44.49754370568498],[11.248847864189253,44.497996088959454],[11.249169352928172,44.49869025248864],[11.24934765415422,44.49909521259089],[11.249501297366793,44.49945171636791],[11.249593295394465,44.49963613590681],[11.24974179324613,44.499879092064155],[11.250003034922027,44.500314491686105],[11.250296322338302,44.500785833533286],[11.250897369974966,44.50173666193988],[11.251089149232326,44.50209886701416],[11.250716985576622,44.50217683275505],[11.25024836378637,44.50227722123974],[11.249971528905355,44.5023355600608],[11.249751272355294,44.50237310147593],[11.249538523635445,44.50240148501825],[11.24932314336203,44.50242261284964],[11.249074138734997,44.50242807706601],[11.248762761364809,44.50238582843467],[11.248542511891008,44.502321526170945],[11.248293016688297,44.5022324733057],[11.248005120772191,44.5021261768998],[11.247814339409656,44.50207141691369],[11.247480845432754,44.50202622620305],[11.247128800626049,44.502010090011574],[11.246220786000624,44.50200995118984],[11.24595687596739,44.5020162690307],[11.245490020781084,44.50204007736484],[11.244936068739522,44.502068423334244],[11.24416251285781,44.50211007452006],[11.243778029756141,44.502129448681195],[11.243208746953998,44.50216764533041],[11.24304803464953,44.502200051719846],[11.242806200846193,44.50226951173811],[11.242560113046604,44.50237168814653],[11.242424649610937,44.50242667324619],[11.24229663832861,44.502471378819976],[11.241909764861695,44.502571818829935],[11.241724011806324,44.502627791614785],[11.241560821561,44.50269795429818],[11.24147623397671,44.50274155511998],[11.24118612773273,44.50293149294556],[11.240988649454126,44.50305071081665],[11.240727413654797,44.50318862177779],[11.24056135935009,44.50326614730997],[11.240342322101055,44.50336445174674],[11.240061648878159,44.50348492799008],[11.23995936132898,44.50351820907889],[11.239821224519671,44.5035445532123],[11.239685719504914,44.503557903840566],[11.23927424285546,44.503611551030986],[11.23901404343889,44.503653220269385],[11.238386238715222,44.50378593949238],[11.237974459014806,44.50387278841004],[11.237671902580109,44.50393779340453],[11.237319822373799,44.50402346072959],[11.236702618127667,44.504182921207764],[11.237180269049626,44.50489660800493],[11.238020713690503,44.50622654203918],[11.236884829723715,44.50659422045794],[11.23735408240263,44.507301879937785],[11.237718415832257,44.50786469378352],[11.237992102407807,44.50827349437575],[11.237661790170199,44.50839806788011],[11.237549397223422,44.50844022128072],[11.237163002098653,44.5085546928347],[11.236962182780474,44.50862839412636],[11.236358557840871,44.508839394761345],[11.236216368771215,44.50889586445073],[11.235867987454792,44.50901832007826],[11.234931189070336,44.5093455959019],[11.233903219649028,44.509707239147694],[11.233492640028928,44.50984749855479],[11.233613076345335,44.510068542077136],[11.233711643411658,44.51024944366331],[11.233975595687747,44.510696075601075],[11.234337306472543,44.51127246012811],[11.234385009109612,44.5113480414071],[11.23479259036695,44.512136766478065],[11.234924393490235,44.51235531113188],[11.234992847609144,44.51250025269696],[11.235053179915191,44.51255646285621],[11.23514026148268,44.51260292370416],[11.235833392447404,44.512972731656994],[11.235999573498106,44.513041493259195],[11.236679093379017,44.513106955910786],[11.236788180145078,44.51310144355817],[11.237000760517642,44.51306745258425],[11.237211948497055,44.51302006609391],[11.237619955190114,44.512933226440026],[11.237727213127195,44.51292100002312],[11.237944310283408,44.51292292699373],[11.238254996286289,44.51293533643185],[11.238497498327764,44.512954279983106],[11.23863472658433,44.51298534756198],[11.23877480465491,44.51305011675683],[11.238891594879568,44.51314291741329],[11.23898885376456,44.51325277325673],[11.239029670208113,44.513298875509314],[11.23913850877277,44.51346536793418],[11.239238724826922,44.51368637167668],[11.239334291322697,44.514066527888815],[11.239378192367427,44.51463787975617],[11.239425878694092,44.51483555986738],[11.239720301341304,44.51537779680172],[11.240148003016541,44.51613515758197],[11.240245015492125,44.51632736910061],[11.2402992036007,44.51648947111918],[11.240372493392059,44.51680142198198],[11.24044407866364,44.517396979843255],[11.240472629123394,44.51765895477445],[11.24049153436201,44.51783491136898],[11.240498135797022,44.51792967932683],[11.240514277066795,44.518161362947914],[11.240627392830229,44.51842470730386],[11.240704974461735,44.51860209939727],[11.240833687664965,44.51873911449367],[11.240995780717812,44.518905847851464],[11.241141732531668,44.51906164771831],[11.241290588643434,44.51923134390163],[11.24145177180654,44.51941509165985],[11.241517333023475,44.519504953298316],[11.241589663721903,44.519596649868774],[11.241729987639145,44.51988224986344],[11.241825658896696,44.520059853060395],[11.241873242024024,44.52017256782894],[11.241933862335259,44.52039980824677],[11.242153238831136,44.521218652342554],[11.242225431461586,44.52158351529014],[11.24227239748532,44.52188528972482],[11.24227585839569,44.52230326929234],[11.242230822335971,44.52260515837241],[11.242186229688173,44.522795650001505],[11.24213754948399,44.522920946419525],[11.241905517491233,44.523391375577255],[11.241657036301948,44.52377153559366],[11.241534543232296,44.52390307577197],[11.241445664740144,44.523991742354376],[11.241394926020027,44.524042812824426],[11.24121592737683,44.524194301152235],[11.241069618763213,44.52429619759821],[11.240741794877472,44.524484364378964],[11.24036144940031,44.524626631253966],[11.24010740624324,44.524721653783715],[11.239940086498509,44.52478423856504],[11.239445375965282,44.52492728439927],[11.239206732405206,44.52497979027781],[11.238767997267658,44.52504466225388],[11.237999969081539,44.52513623753056],[11.237815684504305,44.52514809991485],[11.23748452588353,44.525169416118956],[11.237254592435367,44.52518235596229],[11.237066609811992,44.52518210684024],[11.23677787595688,44.52518036930345],[11.236209934993262,44.52517695027879],[11.235937800579677,44.52516864507315],[11.235401284978371,44.525152270688594],[11.234667303009871,44.52512670076699],[11.233905316257179,44.525108981287765],[11.23381596121446,44.52511691258678],[11.23315712796307,44.52528734339404],[11.233075391038476,44.52533001698119],[11.232919745262619,44.525548218489504],[11.232552887003502,44.52606379776035],[11.232451764171657,44.526195741124496],[11.232304080936451,44.5263241054552],[11.232195713327497,44.526418786734205],[11.232036382841645,44.52658562909942],[11.231748357269916,44.526888607051504],[11.231677283315499,44.52696313544378],[11.231594290310053,44.52705534048589],[11.231326410188831,44.52735203335363],[11.23108297223063,44.52769156408877],[11.231027915791977,44.52775339640174],[11.230999629077903,44.52781584070535],[11.230896188206236,44.52807274430708],[11.230927675562416,44.52829999251476],[11.230961463982092,44.52852629460923],[11.231059770392344,44.529184703896405],[11.231107894150853,44.52941500272265],[11.231133661034628,44.52958498580011],[11.231134298821866,44.52965305115521],[11.231049069254007,44.5299754225431],[11.230932775462977,44.530414462614296],[11.230917087782645,44.530473689005056],[11.230769003329769,44.53104485339316],[11.230638354248713,44.53147501021626],[11.230760066968545,44.53189208231012],[11.230791661406043,44.531987962842855],[11.230925521756872,44.532177200395566],[11.231036443582461,44.532321881092784],[11.23125922654265,44.532635424568674],[11.231365262168836,44.532754875282265],[11.231483822618834,44.532914040293484],[11.231512837099679,44.53297367213265],[11.231546643514946,44.5330349018146],[11.231611245196667,44.533181612682036],[11.231795380477571,44.53353361023361],[11.231896956483775,44.53372150987182],[11.231915594727207,44.53379766556344],[11.23193408525795,44.533848744748276],[11.231957794917736,44.53391414710449],[11.232004155976593,44.53397457393453],[11.232122543740763,44.534149491075944],[11.232173638741251,44.534210382510196],[11.232283451533615,44.53432582629472],[11.232798622522667,44.534921152895464],[11.232923969482561,44.53507229943679],[11.233047212228897,44.53523024589177],[11.233183277122086,44.535394124124835],[11.23323080475654,44.53546465245695],[11.233266877431523,44.5355349655562],[11.233317517768647,44.535633996212354],[11.233383631044576,44.53576072924356],[11.233597149309308,44.53617029443748],[11.233873033538686,44.53671802430439],[11.234036720155636,44.536997267672305],[11.23418579707326,44.537234039623755],[11.23435468349038,44.53745409895791],[11.234606757698444,44.537812627209846],[11.234711155689446,44.537950682012735],[11.234772737543892,44.53801811774111],[11.234870956778904,44.53815911015625],[11.234942355173228,44.538277553014815],[11.235055140623214,44.53851109220443],[11.235185199162954,44.538723477159216],[11.235221770605165,44.53878345425478],[11.235279200121315,44.538877484434714],[11.235314414153706,44.53893418605288],[11.23541406158394,44.539092024731914],[11.235515315649769,44.539250389996425],[11.235661738174736,44.53956147777398],[11.235734707944237,44.53974122256302],[11.235835325527843,44.54004757266689],[11.235969045142092,44.54041686708615],[11.236173546958245,44.54092936441493],[11.236346478375369,44.54129563065377],[11.236406559205642,44.54136477738808],[11.236475230111346,44.54145289817639],[11.23653414827355,44.54153275958916],[11.236788859341795,44.54183610045628],[11.23705205477304,44.54211451379587],[11.23718496418965,44.54221600032101],[11.237303195537368,44.542406663440644],[11.237474090393036,44.54273353435856],[11.237266763490537,44.54283160648828],[11.237541280170353,44.54292494737141],[11.237703867562455,44.54321351865994],[11.237807984775209,44.54346691636711],[11.23789483669816,44.54381752828846],[11.237914088967596,44.543895247132454],[11.238390980358488,44.54454090841347],[11.238463423550954,44.544638986089105],[11.23859421295982,44.54509553213539],[11.239310052795934,44.54630298739576],[11.23944544284202,44.54653044491447],[11.239510391326574,44.546640559079684],[11.239605377129966,44.546755041440605],[11.239983433121072,44.54718268215958],[11.240825940442276,44.5481382349096],[11.240875033031525,44.54820184607713],[11.240849818247247,44.54826304583479],[11.240728494297295,44.54855552625847],[11.241702795121638,44.54999644695763],[11.243605538778377,44.5529911379157],[11.24437710554308,44.55412825628782],[11.246047904616601,44.556589012554745],[11.249870678731813,44.5554245528364],[11.249997399822734,44.55538594907313],[11.250098529656269,44.555352887250216],[11.251205933878033,44.555005415237176],[11.252168779599756,44.55663945689322],[11.252859478677856,44.555809205300626],[11.253143378934347,44.55546793786277],[11.253627360372604,44.55481575561399],[11.254723041253452,44.55333922510545],[11.256740042604495,44.55075018570418],[11.257037958371242,44.55036775662593],[11.257075770585576,44.55031152193436],[11.25728795265606,44.54999596706985],[11.257442673173081,44.549838201415916],[11.257542280409883,44.549736633577076],[11.25758419656278,44.54965307769105],[11.257729290848292,44.549363838936124],[11.258543199820284,44.548295045988525],[11.258675711313156,44.54812081543396],[11.258949169855706,44.547868545961734],[11.2589974074058,44.54782331659591],[11.259064661604112,44.54776203078226],[11.259436651596033,44.54723742619325],[11.259652565320065,44.54693292510664],[11.259704456734266,44.5468571127248],[11.259840149980093,44.54665741168464],[11.260429156186973,44.54595698506757],[11.260887120027162,44.54541237791672],[11.261160070149229,44.545016334750656],[11.261340014428665,44.544755238682974],[11.26137900160618,44.54470551757425],[11.261927758997425,44.544005411340656],[11.262028042354647,44.543994422866334],[11.262066211162454,44.54391376262708],[11.262102678350711,44.54383561261054],[11.262202421488462,44.54362187269853],[11.26288450099979,44.542708130454535],[11.263689888104468,44.541753255332594],[11.263811139319543,44.54160949579591],[11.26387311544614,44.54151302747138],[11.264262216058425,44.54090737394743],[11.264555158045944,44.54061596767719],[11.264650038307078,44.54052158465189],[11.264874710124277,44.54014803967807],[11.265148806901285,44.53979485784295],[11.266691846376782,44.53780499143421],[11.26672747352615,44.53775924394639],[11.266858929782266,44.53761951401273],[11.266950326793134,44.53752319160585],[11.267072570085348,44.53734141032483],[11.26734301258252,44.536939248699454],[11.268408327480138,44.53555912424627],[11.268552661619482,44.535372186071],[11.270039144744226,44.53344680091173],[11.270069362601332,44.53349314495908],[11.27136806251659,44.53546513387069],[11.271621601471935,44.53584978637249],[11.271545011061896,44.53590259539629],[11.271214166508193,44.53605265177216],[11.271113894322314,44.536100363785856],[11.271863282798602,44.53712305322105],[11.273149623587344,44.53887428219152],[11.273184726144269,44.53892235735908],[11.273235326762059,44.53899125756494],[11.273384776611229,44.5391948468956],[11.27343531026916,44.53924953559641],[11.273461765728804,44.53929973097377],[11.273682152364707,44.539599849751944],[11.274115069528493,44.54018938758479],[11.274199562362542,44.540157320844635],[11.274511930573274,44.54003744036849],[11.274553622046447,44.54009793295011],[11.275335642106771,44.541227304932974],[11.27563601548989,44.54162943500556],[11.275719742541618,44.5415983258459],[11.276600461678715,44.541275813729726],[11.27665832079024,44.541362136407095],[11.277329247674198,44.54236421639655],[11.27779764710632,44.54306313670534],[11.278893057315976,44.544697573305555],[11.278938225207357,44.544765364067494],[11.278610867321815,44.54486145951482],[11.27848785803997,44.5448975697114],[11.27841396652552,44.54491929329493],[11.278337307523426,44.54494180754876],[11.278017273624865,44.545035800727725],[11.279050429815209,44.54687247594193],[11.278180699220895,44.54717474578283],[11.277937831329874,44.547254194035666],[11.277828298595658,44.54729013720949],[11.278739039402724,44.548697977368384],[11.279808958337686,44.54836687635983],[11.279527941256658,44.547940375744325],[11.279694619057558,44.54788336419007],[11.280301985980897,44.54767561544969],[11.281218962326395,44.54738800418451],[11.28207615576275,44.54869923146732],[11.282610853382819,44.549517175595916],[11.282681577044828,44.54946558653261],[11.283143447732233,44.54912809047852],[11.28333295325667,44.54898960775223],[11.283485314646393,44.54885491769631],[11.28386758094986,44.54851698554733],[11.283779096376596,44.5478698577541],[11.284863829753132,44.5472707755938],[11.286250440047782,44.546500423042495],[11.286474378364085,44.546271068230304],[11.287620895922311,44.545653955518674],[11.287698770863171,44.54559331229476],[11.290505886901197,44.54340735715404],[11.291482123025807,44.54236270642579],[11.29234632355174,44.54148627952633],[11.292668444998247,44.54115959165968],[11.293920690416769,44.53993171310179],[11.293739292543044,44.53964866644668],[11.293668695307064,44.53953851477368],[11.29362180624232,44.53946536393975],[11.291730942197468,44.536515260262824],[11.297666806384075,44.5353944298141],[11.297823716297678,44.535364933530644],[11.300296549805122,44.534897548893426],[11.301501317647862,44.534670148230944],[11.301578622973832,44.53465543461044],[11.302687003040756,44.534297964795634],[11.30276626920963,44.534272163254236],[11.305717557004929,44.53341590280267],[11.305772343544636,44.5333674731424],[11.30668041212777,44.53257192515334],[11.307053402289416,44.532238226000615],[11.307308670818092,44.53200843794178],[11.307447373080548,44.53188548845998],[11.30752571533536,44.531816717424014],[11.308636958267387,44.530833776772404],[11.308974275100415,44.5305357970922],[11.309574473172237,44.53001323815479],[11.31014434791016,44.53078776020535],[11.310525740936617,44.5321573858267],[11.310433314391474,44.53236631287117],[11.310311842869552,44.53247679481006],[11.310027589213743,44.53260857987185],[11.309503097340999,44.5333483766502],[11.30917989734729,44.53412962445711],[11.309112516758434,44.5342925085402],[11.309003827927464,44.53472682134668],[11.30855249032997,44.53572619717005],[11.308463976150223,44.53603405820996],[11.30848722808401,44.53630366079465],[11.308912775306279,44.53688019746953],[11.309520568401874,44.537291005926775],[11.310089690905821,44.538314754405064],[11.310572335094122,44.53906116821743],[11.311578000136876,44.540301127976825],[11.312336065565132,44.5406908690655],[11.312851504695695,44.541310586260046],[11.31333466783365,44.541750907679976],[11.31359946937385,44.54208031177376],[11.313637285052017,44.54212757226592],[11.313718649024672,44.542229244524584],[11.314117255240529,44.54307637978236],[11.314300280746792,44.54388286694511],[11.314226821427772,44.54552276207472],[11.314140093785603,44.54587560741245],[11.313438735740924,44.54660100723329],[11.312629390493598,44.54777869213909],[11.312353159131398,44.548432445983096],[11.312143743309653,44.549183870279315],[11.312852397926493,44.548939400980416],[11.314638391913473,44.548442397775005],[11.314967460082183,44.5482883096584],[11.315938355410964,44.547970977813065],[11.316542944338364,44.547781478639045],[11.317102683033577,44.5476114537649],[11.317749649178262,44.54737945536289],[11.318971047771667,44.54701275523298],[11.319669658240162,44.54679906235922],[11.320722392078116,44.54647678405762],[11.321504547772541,44.54622232521378],[11.321521327940888,44.54609032720606],[11.321550116872757,44.54598662294095],[11.321725134633256,44.546091239584285],[11.322569646468802,44.546732352483104],[11.32307653266962,44.547113075063926],[11.32337720571376,44.54733369394183],[11.323436607002257,44.54736343456028],[11.32353246264506,44.547399741134576],[11.3237968202927,44.54747875932978],[11.324215927229252,44.54757149994174],[11.324433529817611,44.54764190195917],[11.324639168481381,44.54776767865793],[11.324761133626621,44.54786703522719],[11.324889964478203,44.54800001019101],[11.324962361892645,44.54813862474427],[11.325005333984773,44.54824971472242],[11.325151643575012,44.54824898425891],[11.325267001288536,44.54824619244279],[11.325476058428807,44.548235626744116],[11.325671026938895,44.54821196318788],[11.326013997576995,44.54817065946411],[11.326267969388365,44.5481272164742],[11.326524201845032,44.54807136318244],[11.326726185542602,44.548016604279674],[11.32695132638403,44.54796025758636],[11.327112643745723,44.5479215191372],[11.327331191907312,44.54785798998285],[11.327543419088249,44.54779345501472],[11.327679596566169,44.54775579460795],[11.327761634590848,44.54774118010333],[11.327849660208487,44.547738827802405],[11.32791943965609,44.54775259603828],[11.32798134117666,44.54778564923033],[11.328059953626234,44.54786282088399],[11.328134943930355,44.54794793070484],[11.32819012574336,44.547990130264],[11.328288732464518,44.548035943391625],[11.328388494273252,44.548071608065754],[11.328493972206253,44.54809252292898],[11.328628334765082,44.54810779100766],[11.328997061105891,44.54814021768609],[11.329286063927366,44.54816638674566],[11.329630331916416,44.548202896045126],[11.329850308882644,44.54823245465876],[11.330080087401235,44.548249205153496],[11.330426489332298,44.54825450817572],[11.330727648478334,44.54825005188371],[11.331048540913075,44.54824687434194],[11.331367413937283,44.54826301451266],[11.331790662058824,44.54829079062912],[11.332206979030273,44.54831323523112],[11.33238266536429,44.54831921319674],[11.33247365603941,44.548312286625446],[11.332560116975515,44.54829026128338],[11.332662400588577,44.54825103876236],[11.332826438798904,44.54818186311423],[11.332983530669027,44.54811619423155],[11.333104847306183,44.54808052349156],[11.333314474383963,44.548030097813175],[11.333443351344373,44.54800664663651],[11.33365347123476,44.54796859372605],[11.333810997059965,44.54793330725408],[11.33392485675462,44.54790790390364],[11.33404073159338,44.54787402684805],[11.334161231953438,44.54783780453378],[11.334331891063794,44.54777693362159],[11.33457291881551,44.54768535706071],[11.334701708739727,44.54763996330896],[11.334784965724563,44.54761687743082],[11.334879928501312,44.547591301498606],[11.335175779801768,44.54753292505585],[11.335476269929421,44.547472203279064],[11.335959581839116,44.54737004005498],[11.335704516868553,44.547061304879755],[11.335253748633574,44.54652467730357],[11.334936920017745,44.546144154399215],[11.334734083876363,44.54591199827983],[11.33441354393611,44.5455494579299],[11.334083726708878,44.54517135694982],[11.334717939248591,44.54489844854371],[11.335533904524864,44.54454698608088],[11.336126080653427,44.54428562184663],[11.336868772731858,44.543961869261054],[11.336931852714468,44.54393443178624],[11.337014387046487,44.54403224915778],[11.337173254990576,44.54422761097527],[11.337372876188518,44.54443845463989],[11.337417472491149,44.5445106818997],[11.33745484476649,44.54461906509825],[11.337469929664328,44.544740288139536],[11.337502129005365,44.54507271676883],[11.337549804999812,44.545536476173794],[11.337590944702622,44.54595480368848],[11.337606794373446,44.546154208900795],[11.337626891095152,44.54638111266498],[11.33764879767525,44.54667266757661],[11.337669747135289,44.5468224614603],[11.337688486238969,44.54693685972646],[11.337730765323386,44.54701025956889],[11.33781347372589,44.54713066474291],[11.337974663286692,44.547383359805956],[11.338163196010434,44.54769063590383],[11.338283404725324,44.54788284584764],[11.338311634518995,44.547939100439486],[11.338341574691787,44.54801894453343],[11.338351758263432,44.548116068010046],[11.338377411511017,44.54834397222402],[11.338395427147377,44.548538275432655],[11.338418901020145,44.548613752650354],[11.338478775000203,44.548713799333505],[11.338525502254424,44.54878036686718],[11.338615790307253,44.54885390809085],[11.338724364178,44.54891300681917],[11.338814102507794,44.54895336793775],[11.339066487557684,44.54902752864607],[11.339168296612492,44.549054700539095],[11.339246817638951,44.54909022472927],[11.33933624989173,44.54914240802995],[11.339395261063554,44.549201397447526],[11.339503274578579,44.549324657676976],[11.339679960674419,44.54955171657502],[11.339750209507036,44.549635800530645],[11.339838371023548,44.549734700421425],[11.339922495842579,44.54981174996826],[11.340059625992525,44.54997435297045],[11.340140163611615,44.550079600642164],[11.340192024179123,44.550175878509506],[11.340229410504516,44.5502645689478],[11.3402575444193,44.550357948375286],[11.340265152176226,44.550469199431525],[11.340252810051272,44.550573543385916],[11.340247178580782,44.550649048867164],[11.34026403968901,44.55073591043081],[11.340329085987998,44.550847109146794],[11.340510166737849,44.55108532577964],[11.3405713871373,44.5511403371003],[11.340642525976858,44.55118782710181],[11.3407100142553,44.551222451219914],[11.340831244449632,44.551243598781056],[11.340971995269578,44.55126097095221],[11.341081842226794,44.55129247109272],[11.341244477146414,44.55152206982311],[11.341313952081117,44.55160616956086],[11.341379185687641,44.55166333788066],[11.341490097148123,44.55174096208389],[11.341807608950642,44.55188861352266],[11.34195045807585,44.55195826505197],[11.342100105831248,44.55204015226262],[11.34232600219125,44.552179548168546],[11.342676113623575,44.55243342601101],[11.342821111557772,44.552536790672534],[11.342988073402042,44.55263857904752],[11.343221351111698,44.55276544720358],[11.343616924143006,44.55297563194937],[11.343938469617003,44.55316482717164],[11.344100064411151,44.553250407589175],[11.344293495330385,44.55334489161435],[11.344373835056754,44.553386008483514],[11.34441732824305,44.55343068985732],[11.344456916965413,44.553495700099745],[11.344583498576998,44.5537867958392],[11.344659591091755,44.55393771518915],[11.344836771436176,44.55425448538347],[11.345479492304168,44.554079789139415],[11.34608328646753,44.55390508813471],[11.346584101415354,44.55375750281033],[11.346974473090865,44.553642579419524],[11.3477490862228,44.553416219738565],[11.348334656787928,44.55324382699516],[11.348872180889138,44.55310954327436],[11.34895897514511,44.553090242529684],[11.349049356636947,44.5530835601277],[11.349251881046882,44.553061789284314],[11.349910415747873,44.553099433541455],[11.350681369226066,44.55315389230748],[11.351018467199529,44.55316214113579],[11.35134770644713,44.553150850392285],[11.351606848191757,44.55311851347398],[11.351684655117324,44.55309665192877],[11.35250181677161,44.55297698239876],[11.352668186084916,44.552939661991275],[11.352780891851664,44.552905273094865],[11.352919042433143,44.55283828469147],[11.353379905430982,44.55255927651919],[11.353589425440726,44.55297468698992],[11.35383121599199,44.553473819309374],[11.35398854707293,44.55379859505202],[11.354125862354227,44.554081584558894],[11.354154027272177,44.55413614588574],[11.354215552821586,44.55425696506799],[11.354253898487704,44.554316029959786],[11.355176400638923,44.55382980115001],[11.355386645509608,44.55375568776165],[11.355519041380665,44.5537087215678],[11.355684536574037,44.553649959813484],[11.3558646341375,44.553618671891634],[11.356127378911353,44.55354854544734],[11.356081954705276,44.553436950802215],[11.356577188373452,44.55330801377289],[11.357670716417948,44.55303056103967],[11.357913629844708,44.55296584621477],[11.358324546685067,44.5528567215175],[11.35851700175314,44.55300182014188],[11.358646914980108,44.5530818428007],[11.358863302964052,44.5531792116634],[11.359309214694184,44.55332922729652],[11.359545962173009,44.55342391539287],[11.359754587325705,44.553543385028625],[11.359948819599376,44.55367665067188],[11.36007319841265,44.553775361292544],[11.360167145087162,44.55388031748997],[11.360244674362136,44.55399487815526],[11.360290622743204,44.55404793687263],[11.360261085444652,44.554121429577826],[11.36034865141356,44.55426309176295],[11.360468488794577,44.55442434512985],[11.360601681184137,44.554585322183094],[11.360682031249565,44.55466524218817],[11.360854898194997,44.55481469749184],[11.361009603282483,44.5549240299166],[11.361147351013669,44.55500276327419],[11.361340772156886,44.55505631786487],[11.361594916528594,44.55517355152939],[11.361771692528931,44.555244726808255],[11.362084789008655,44.55537890428513],[11.362202877474274,44.55547717648084],[11.362263379076886,44.555552996896346],[11.362424107550378,44.55575222668524],[11.362537714724679,44.55593442349882],[11.362662535982945,44.556141136069925],[11.36271433108341,44.55621545483356],[11.362786507917953,44.55628766827136],[11.362866230824798,44.55633271701552],[11.362976433834625,44.55637263543114],[11.363081250289913,44.55639578159974],[11.363175610074396,44.55641052183392],[11.363275269957896,44.55642608938908],[11.363529017251421,44.556454593910814],[11.36371689085839,44.556469269832114],[11.363929591991434,44.556494680449696],[11.36401599631461,44.556508923977965],[11.364105459145572,44.556523671235624],[11.364225335939167,44.55656901267168],[11.36441079517553,44.556679395877836],[11.364710627169606,44.55685491525985],[11.364835308051717,44.556921530483635],[11.364940641553282,44.556977306252904],[11.365004406716206,44.55701746102739],[11.365220040522479,44.557153247620626],[11.365308154855441,44.55712357344805],[11.365624437333118,44.557015461597274],[11.366500243756455,44.556723861058515],[11.366908684965207,44.55658908698948],[11.3669825199601,44.5565664556696],[11.36695505148703,44.55650704260863],[11.36691442146535,44.556419142181426],[11.36686607059885,44.556314557789484],[11.366366170278695,44.55526097027119],[11.36610023455212,44.55471847403444],[11.365591603409902,44.55368194838916],[11.365529344630502,44.55356283126041],[11.365840729729335,44.55351147571386],[11.366028660389722,44.55348048290694],[11.36632818906443,44.55343149180814],[11.367313617173055,44.55328334475639],[11.368674307360882,44.55307563639333],[11.36959722169877,44.5529383244648],[11.371615030483849,44.55260696774072]]]},\"geomComplex\":{\"provenance\":0,\"accuracy\":100},\"parentAchenes\":{\"province\":\"http://dandelion.eu/resource/e099b06896aa93a3ee43d44870ce1441143486de\",\"country\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\",\"region\":\"http://dandelion.eu/resource/ffcd4ddeecbdb84946122d08728f51cded1db3b0\",\"macroregion\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\",\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"SK\",\"acheneID\":\"http://dandelion.eu/resource/f5882e6af5c6391d36d7e5dece6688cb4ac203c5\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"SLOVENSKO\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"NL\",\"acheneID\":\"http://dandelion.eu/resource/0fe4f6bea944679a92aae439c564c0ddcc866bb6\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"NEDERLAND\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"IE\",\"acheneID\":\"http://dandelion.eu/resource/23184225e583b78d38f4cfa46894bb3b42c29bee\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"IRELAND\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"RO\",\"acheneID\":\"http://dandelion.eu/resource/0d33fdb63fd80f69fa00984bd829583ec71e08b2\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"ROM\u00c2NIA\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"BE\",\"acheneID\":\"http://dandelion.eu/resource/b50c4805046efe75601aa584f5e39c8b1d1d3f93\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"BELGIQUE-BELGI\u00cb\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"EE\",\"acheneID\":\"http://dandelion.eu/resource/40b70d14ef12aaef8a90faaa0968ba627043c6ac\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"EESTI\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"LU\",\"acheneID\":\"http://dandelion.eu/resource/953163459ca4d352dfdaab46a2da3ec677d851f1\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"LUXEMBOURG\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"DK\",\"acheneID\":\"http://dandelion.eu/resource/bb0895560e800e8bac4f7fcaf64eeca91bf36173\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"DANMARK\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}},{\"licensePlate\":null,\"tel\":null,\"isMountainMunicipality\":null,\"isProvinceCheflieu\":null,\"localCode\":null,\"euroCode\":\"CZ\",\"acheneID\":\"http://dandelion.eu/resource/987194aa59701753672c032fa1ad8f19cabee786\",\"provenance\":[\"Eurostat\"],\"wikipedia\":{\"de\":null,\"en\":null,\"it\":null},\"alternateNames\":[],\"parentNames\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null},\"email\":null,\"website\":null,\"isCoastal\":null,\"fax\":null,\"elevation\":null,\"dialingCodes\":[],\"postCodes\":[],\"cadastralCode\":null,\"population\":{\"2001\":null,\"2011\":null},\"name\":\"\u010cESK\u00c1 REPUBLIKA\",\"level\":20,\"geometry\":null,\"geomComplex\":{\"provenance\":null,\"accuracy\":null},\"parentAchenes\":{\"province\":null,\"country\":null,\"region\":null,\"macroregion\":null,\"municipality\":null}}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_pagination_1": "{\"items\":[{\"acheneID\":\"http://dandelion.eu/resource/c59b12fe31ac36662552c95d51cbf15b792094c0\"},{\"acheneID\":\"http://dandelion.eu/resource/f5882e6af5c6391d36d7e5dece6688cb4ac203c5\"},{\"acheneID\":\"http://dandelion.eu/resource/0fe4f6bea944679a92aae439c564c0ddcc866bb6\"},{\"acheneID\":\"http://dandelion.eu/resource/23184225e583b78d38f4cfa46894bb3b42c29bee\"},{\"acheneID\":\"http://dandelion.eu/resource/0d33fdb63fd80f69fa00984bd829583ec71e08b2\"},{\"acheneID\":\"http://dandelion.eu/resource/b50c4805046efe75601aa584f5e39c8b1d1d3f93\"},{\"acheneID\":\"http://dandelion.eu/resource/40b70d14ef12aaef8a90faaa0968ba627043c6ac\"},{\"acheneID\":\"http://dandelion.eu/resource/953163459ca4d352dfdaab46a2da3ec677d851f1\"},{\"acheneID\":\"http://dandelion.eu/resource/bb0895560e800e8bac4f7fcaf64eeca91bf36173\"},{\"acheneID\":\"http://dandelion.eu/resource/987194aa59701753672c032fa1ad8f19cabee786\"},{\"acheneID\":\"http://dandelion.eu/resource/b2889388bcd0207fc72437a1fd277de465bcf9d8\"},{\"acheneID\":\"http://dandelion.eu/resource/3058697c2d534d13b48f20e1d530dea1794d58b2\"},{\"acheneID\":\"http://dandelion.eu/resource/158240a9eb7b38eb78dbfe2a23becb875916a41f\"},{\"acheneID\":\"http://dandelion.eu/resource/98b1f074364119a55ac504424c6f2aac1caf2bec\"},{\"acheneID\":\"http://dandelion.eu/resource/dbf4ee5bd5858878c543c6b6148b568de42a8d30\"},{\"acheneID\":\"http://dandelion.eu/resource/523acd3b480c4aaa282d192923812994dafaa82e\"},{\"acheneID\":\"http://dandelion.eu/resource/b186379b8be70eabf5a03c41ebfeb85a6dedd5ed\"},{\"acheneID\":\"http://dandelion.eu/resource/ba58d9e420f50e0f8c0973cab82e6f5886fb3c26\"},{\"acheneID\":\"http://dandelion.eu/resource/00167ef9677650a7ac7c230e298eed31442a83d2\"},{\"acheneID\":\"http://dandelion.eu/resource/94b06ea96c1f9c9fc8e92ff3df24930de87184d0\"},{\"acheneID\":\"http://dandelion.eu/resource/8da3743bafd534381af2c38af8e1e6aab12990e4\"},{\"acheneID\":\"http://dandelion.eu/resource/feeb0bfa1df35d5a4ee36a870b1e38b07f09a8fb\"},{\"acheneID\":\"http://dandelion.eu/resource/f96621f3eb48c77627377ccefb566e229350db12\"},{\"acheneID\":\"http://dandelion.eu/resource/725732d9517df4b5171e627c4dbd3285efb5f8cf\"},{\"acheneID\":\"http://dandelion.eu/resource/76c67c60d38452e16c430486a3ea96a0e4a35905\"},{\"acheneID\":\"http://dandelion.eu/resource/d54382ff8d24d1179c6a259962ec84115c4569ee\"},{\"acheneID\":\"http://dandelion.eu/resource/6eda4113cff5f6fb37b5d41896fa985c5118cbcd\"},{\"acheneID\":\"http://dandelion.eu/resource/1fcc9bf8b68407cb0deae5e8caedcd04fab859f0\"},{\"acheneID\":\"http://dandelion.eu/resource/85211860dfbd2adfeece66dc417d65bad084f535\"},{\"acheneID\":\"http://dandelion.eu/resource/d637bc5caaf36533bf45f83ef0380764cab23b0c\"},{\"acheneID\":\"http://dandelion.eu/resource/76dddcbd545852ab045dca5651250d867c476b1e\"},{\"acheneID\":\"http://dandelion.eu/resource/51414c5c0ce99892c73ba46a0767e3fd6692f473\"},{\"acheneID\":\"http://dandelion.eu/resource/93b62f8f08e68544884ebc9212073a5feef4a3f7\"},{\"acheneID\":\"http://dandelion.eu/resource/20c5de5b725f6996f6727ae9a1d301e4b0650d20\"},{\"acheneID\":\"http://dandelion.eu/resource/8f78f1879fc3984632e43ab39cc881bd90c411c0\"},{\"acheneID\":\"http://dandelion.eu/resource/dfafabc5d8e572cb6517f46906ce72f194ec4db9\"},{\"acheneID\":\"http://dandelion.eu/resource/3d6b694f7ee3da015e0109f6f1c40e5d58b69a78\"},{\"acheneID\":\"http://dandelion.eu/resource/6956bd12e3cd5dccce67a96cefb30dfbaaad16cc\"},{\"acheneID\":\"http://dandelion.eu/resource/112878d6464f41a269b0a0b07fb99a13ead85f36\"},{\"acheneID\":\"http://dandelion.eu/resource/b60b4d76350fa5758bdbf3b95e6e4d48692d1faf\"},{\"acheneID\":\"http://dandelion.eu/resource/d664166cd0d413f07f3bffbbee5ec75660ece17e\"},{\"acheneID\":\"http://dandelion.eu/resource/7ed7562e57be146a50fa7c41c309aa3094269c29\"},{\"acheneID\":\"http://dandelion.eu/resource/626807fcd0e57532358f550738c13b9f5a01772c\"},{\"acheneID\":\"http://dandelion.eu/resource/9392ac6de3f1d99fbe6d9fb042fd26e58f643685\"},{\"acheneID\":\"http://dandelion.eu/resource/d28dfbad4e82c16841f1964720d0c624abc2ccdd\"},{\"acheneID\":\"http://dandelion.eu/resource/49660f73309d657328b1ecf70a7f88b614a66ae7\"},{\"acheneID\":\"http://dandelion.eu/resource/6da6f927e3fb9052541444df8cd8e14b645dfb24\"},{\"acheneID\":\"http://dandelion.eu/resource/36e047dcdd9f3028d21c96d248b15166c39345e4\"},{\"acheneID\":\"http://dandelion.eu/resource/cf0ae5d4feb08b739f9024c601b95da027f1a015\"},{\"acheneID\":\"http://dandelion.eu/resource/5ba4a83ff0894a593f7d4aaf9f02765d1d530bbc\"},{\"acheneID\":\"http://dandelion.eu/resource/ca46ff9110e5627b32c0b661b56207fa5ede210e\"},{\"acheneID\":\"http://dandelion.eu/resource/75231328f4d216a06475870a7ddbe6adb6bef997\"},{\"acheneID\":\"http://dandelion.eu/resource/a10cab83f6a8ae5f8f808ff7090242f2acd6e090\"},{\"acheneID\":\"http://dandelion.eu/resource/e8315a4e6c8bb0b852ad481a16ed200d35fa0078\"},{\"acheneID\":\"http://dandelion.eu/resource/40b40c3880ffbc490bb2a8c627441aa5fb287146\"},{\"acheneID\":\"http://dandelion.eu/resource/18874fd937b845846f45ed84fc75baa1b9d62f0b\"},{\"acheneID\":\"http://dandelion.eu/resource/e18d0056208b67d039c83253c219167b09a672ea\"},{\"acheneID\":\"http://dandelion.eu/resource/219f2b0b4555d05cd44dce2550f3d9816411958f\"},{\"acheneID\":\"http://dandelion.eu/resource/9aee675c98b8cc2b49e0844c267b3f492d59c557\"},{\"acheneID\":\"http://dandelion.eu/resource/a646f14278ff81daf1ad8a385084ce1d0ac913a0\"},{\"acheneID\":\"http://dandelion.eu/resource/66de5423cc3dfe7d845201508276bd5504d94297\"},{\"acheneID\":\"http://dandelion.eu/resource/3620927c0f3a12f1846affdda9a5c365b2012f93\"},{\"acheneID\":\"http://dandelion.eu/resource/5be4b21a4ba8027f1f4479398018cf8307346327\"},{\"acheneID\":\"http://dandelion.eu/resource/f7687aa648180f72da16f97fc19f57c58423e7b7\"},{\"acheneID\":\"http://dandelion.eu/resource/ae1ecaf2030f763c79093d3bb78970eba159db96\"},{\"acheneID\":\"http://dandelion.eu/resource/2f20757b9f93143d62780ad258248a80f1d30a67\"},{\"acheneID\":\"http://dandelion.eu/resource/8df3175573741af5e1e6e3037067e1968daeac8a\"},{\"acheneID\":\"http://dandelion.eu/resource/b3d416f510c58bef9a419716b50433fb963e36bb\"},{\"acheneID\":\"http://dandelion.eu/resource/f83968712b65c57cb83338f9a2ef4000b52d8a3c\"},{\"acheneID\":\"http://dandelion.eu/resource/766d114cccff5c335e15b61b017f6ccfb22fcf02\"},{\"acheneID\":\"http://dandelion.eu/resource/fdff1487d79e539ed9d7f4e708e0258b016597c1\"},{\"acheneID\":\"http://dandelion.eu/resource/ee004f9613b57e2bd647b13884bc07092383b353\"},{\"acheneID\":\"http://dandelion.eu/resource/356fb8d05884eeb15134247b06610e6fef9e431d\"},{\"acheneID\":\"http://dandelion.eu/resource/895819159c57fb86512c4d6dcfd059a16e447e84\"},{\"acheneID\":\"http://dandelion.eu/resource/131a94f04888fd2a049268dc0e8fd3b72c4b9324\"},{\"acheneID\":\"http://dandelion.eu/resource/b7410cd7d1b43618e5958b20789b689546c33709\"},{\"acheneID\":\"http://dandelion.eu/resource/15dac7b7ad4f760232c29540147833b3941783af\"},{\"acheneID\":\"http://dandelion.eu/resource/236de5ba7434ab4f203c32bd290aea488104cdf1\"},{\"acheneID\":\"http://dandelion.eu/resource/854b31df89fc669a8c0fd53c1b95953d48ef8be5\"},{\"acheneID\":\"http://dandelion.eu/resource/29fce337918c10496cd7b96ac3d21808a4363b62\"},{\"acheneID\":\"http://dandelion.eu/resource/10e0a9a427c935e3b4228482504896184999fffd\"},{\"acheneID\":\"http://dandelion.eu/resource/042b693cc5fecdc90aa73239f68b4e7016427f79\"},{\"acheneID\":\"http://dandelion.eu/resource/f4d9ab7e49c06362947cfcc406e2a902a4572e12\"},{\"acheneID\":\"http://dandelion.eu/resource/2921dc722517fb100df54ee5734d8a01262d18c8\"},{\"acheneID\":\"http://dandelion.eu/resource/8614512a305f490c33a29600ebd86100a4fff14b\"},{\"acheneID\":\"http://dandelion.eu/resource/ea03cde031cffe2a272172971e27a854110b0cb2\"},{\"acheneID\":\"http://dandelion.eu/resource/0d221509527aece9ac6e8855ff05f3313953e06a\"},{\"acheneID\":\"http://dandelion.eu/resource/67a851a8e904ccfb784ef1890fa6a1a4795976eb\"},{\"acheneID\":\"http://dandelion.eu/resource/a169ff6bfeec1aa108bfae9ee48003b1d8d69c75\"},{\"acheneID\":\"http://dandelion.eu/resource/2263fad7f9db31272bb8c01fefd9fe674763f32b\"},{\"acheneID\":\"http://dandelion.eu/resource/764da178375ae7d0a1d259d2e10c94db450633fe\"},{\"acheneID\":\"http://dandelion.eu/resource/d4b68d7680bb7fc5eafb707c561fdf5e31925e4b\"},{\"acheneID\":\"http://dandelion.eu/resource/1725ea14afe482314481447d0ae79e5aa6fca07c\"},{\"acheneID\":\"http://dandelion.eu/resource/d75e90a681525e412f5a41102d1c0f519d8dba86\"},{\"acheneID\":\"http://dandelion.eu/resource/5e94e9bdca9ff11c991831af25366fcb9bf85ac6\"},{\"acheneID\":\"http://dandelion.eu/resource/d2bd7f2cfc3e691ce8d4d706d0830ddfa7f32fd3\"},{\"acheneID\":\"http://dandelion.eu/resource/2decb0c79af8047067f0cea1202e80a975de53fe\"},{\"acheneID\":\"http://dandelion.eu/resource/791ee1d26da71c7e6c17c4cd1beda228eedfdff0\"},{\"acheneID\":\"http://dandelion.eu/resource/6178e6e63a5f11399dc6d914d2deef34da219d74\"},{\"acheneID\":\"http://dandelion.eu/resource/563bbed6c0ea4211c8133f26576e50b879b6ff07\"},{\"acheneID\":\"http://dandelion.eu/resource/1e420a3cdba71ea36ab20493631c48afd21c9c32\"},{\"acheneID\":\"http://dandelion.eu/resource/9563b2d64817966fad3a6da13d9e5c77f8f089bf\"},{\"acheneID\":\"http://dandelion.eu/resource/47f2ccc77c329035fc00b566405928999de93ab9\"},{\"acheneID\":\"http://dandelion.eu/resource/8794b5f351a4e2d781852116b54932653f980130\"},{\"acheneID\":\"http://dandelion.eu/resource/d302789ffce3435ed63e92c5536c19d0f1722db5\"},{\"acheneID\":\"http://dandelion.eu/resource/f93b4406f90bf5e47b1714e3d97b31be8a233991\"},{\"acheneID\":\"http://dandelion.eu/resource/cfb2b9c2f2293ca7042420a0ae65256ce2cd8947\"},{\"acheneID\":\"http://dandelion.eu/resource/a914143da592f5aaf84ca8e5926a222d5a7b6468\"},{\"acheneID\":\"http://dandelion.eu/resource/5aa7b7d8cbd43373a88ad0ca3397f158f491a2a9\"},{\"acheneID\":\"http://dandelion.eu/resource/fbc42ff285e5b03ed811db41f41c7bc5d6fdcadc\"},{\"acheneID\":\"http://dandelion.eu/resource/d767b94dc13ed174d7c86731b8c4728f12f25efa\"},{\"acheneID\":\"http://dandelion.eu/resource/91ee958df55d4235c31c577d87f0d564d9b4540b\"},{\"acheneID\":\"http://dandelion.eu/resource/e2c596a2383c3b21b703345d57cb706db68f97a9\"},{\"acheneID\":\"http://dandelion.eu/resource/4bc067680e0dc0e7a18c0122c76a4c185b8ebb4f\"},{\"acheneID\":\"http://dandelion.eu/resource/f27b27ba8f67afd0fcbeeb2a866389aaa1796a8c\"},{\"acheneID\":\"http://dandelion.eu/resource/a19b5570244c9a66fca7b975bac64051f343f5fa\"},{\"acheneID\":\"http://dandelion.eu/resource/45b9f99239f094cb14cbda388b06c95a5fdb1ef9\"},{\"acheneID\":\"http://dandelion.eu/resource/006fb28da45099aebe13b0c3fc508fcf266036dc\"},{\"acheneID\":\"http://dandelion.eu/resource/0e73a48b735a91ac8d3196e1a322468a89567111\"},{\"acheneID\":\"http://dandelion.eu/resource/a2197cfa810d36e11e6e44fc691a8ea99532336e\"},{\"acheneID\":\"http://dandelion.eu/resource/e8c49366dd6ec20614cca49f1392a71a1092ea41\"},{\"acheneID\":\"http://dandelion.eu/resource/70d3d7a77180213bb3c3f1828e9d370b4ea71eff\"},{\"acheneID\":\"http://dandelion.eu/resource/1bc38003915c5a8b34d89bb92cb160602f44dc7b\"},{\"acheneID\":\"http://dandelion.eu/resource/9cd739c847a5fbf6de8b61d9b3cd44369d3c22e8\"},{\"acheneID\":\"http://dandelion.eu/resource/e74b9482c88dc085ae084551fbdd62d255d5a78f\"},{\"acheneID\":\"http://dandelion.eu/resource/04c6428d9fa8a3a05f6a35cf5309dca2731b94a6\"},{\"acheneID\":\"http://dandelion.eu/resource/8b1ade44551b736085c07419d206b026bae663e9\"},{\"acheneID\":\"http://dandelion.eu/resource/71ee872148d8ef96c490406da8cf0c2e9e335b4c\"},{\"acheneID\":\"http://dandelion.eu/resource/e10d67084a882178f0a7c880f63721ba9dcba09a\"},{\"acheneID\":\"http://dandelion.eu/resource/ff87daab3e8284471456c48de09104e13da15054\"},{\"acheneID\":\"http://dandelion.eu/resource/bd6b64d4dc01791ac648d37ea494d98fee89eaea\"},{\"acheneID\":\"http://dandelion.eu/resource/cc8b7d48b0a2e52eaaebd83194a87e01e18b5204\"},{\"acheneID\":\"http://dandelion.eu/resource/649692f6c1a3b6c947414768d20f3cc3473563e9\"},{\"acheneID\":\"http://dandelion.eu/resource/014598e376e368ef4d3b2700e3aa7eb3720ddb40\"},{\"acheneID\":\"http://dandelion.eu/resource/e5e22eac6e0d2a2706760eef4ea8112811271197\"},{\"acheneID\":\"http://dandelion.eu/resource/863331447859b0c17b4c3b4656c83a3c094b6bdf\"},{\"acheneID\":\"http://dandelion.eu/resource/3da92644d3daeaa55418fd5f4265b1819c50d076\"},{\"acheneID\":\"http://dandelion.eu/resource/1aeb96856f0ec9c889c58d38c1d55d5ba32653bc\"},{\"acheneID\":\"http://dandelion.eu/resource/49adaf3df0894c2d0c7f0c5147d61d19f5d27125\"},{\"acheneID\":\"http://dandelion.eu/resource/0ebca4efb6ca11c55d405e026eb9a6fa01e9264f\"},{\"acheneID\":\"http://dandelion.eu/resource/24f3d2ab3ecaf7d7d120a6d517a9554753e241de\"},{\"acheneID\":\"http://dandelion.eu/resource/ba354060ade06c424553ae5f6c60e1e5385ffdce\"},{\"acheneID\":\"http://dandelion.eu/resource/51596dbf077262a214badd010d6eb5f684f17845\"},{\"acheneID\":\"http://dandelion.eu/resource/aa0f69e852de145ef29332bf804b1d29a7013111\"},{\"acheneID\":\"http://dandelion.eu/resource/36c74dad8b1e00dd2ea9437bb3de43abe6190666\"},{\"acheneID\":\"http://dandelion.eu/resource/dff20987e12c96f2146409753c54833eb99f06e2\"},{\"acheneID\":\"http://dandelion.eu/resource/52c29b1bdee2bf8aafadc3d17b6048175a616fef\"},{\"acheneID\":\"http://dandelion.eu/resource/d3efebe891258545ae84994cc6305435b8ced77c\"},{\"acheneID\":\"http://dandelion.eu/resource/685abeb3eef8274787ec3b1f858c26bbb04d4a3a\"},{\"acheneID\":\"http://dandelion.eu/resource/97e12d73df8876ad68bb3f98b932424833079365\"},{\"acheneID\":\"http://dandelion.eu/resource/f87b9d68477a213183d9b4e1b0075b99d9dcb70b\"},{\"acheneID\":\"http://dandelion.eu/resource/70fd4ce9a689a1002c8f0c6348f2aff0fdb367d5\"},{\"acheneID\":\"http://dandelion.eu/resource/5160399d77eef43ccf5a394691c06c481d02638e\"},{\"acheneID\":\"http://dandelion.eu/resource/6137739300a0ac36dfd72b16e397fb373cce0077\"},{\"acheneID\":\"http://dandelion.eu/resource/4a1d036465ae216aa321b27078618f4cd8b2b952\"},{\"acheneID\":\"http://dandelion.eu/resource/2b5a8d8bcd4e45b5a2fb4f651ea70775e1171f53\"},{\"acheneID\":\"http://dandelion.eu/resource/7577b3e62d4b055d2a275652dd47f5a15fa94585\"},{\"acheneID\":\"http://dandelion.eu/resource/3526828c201ba77d7b339b65fbe80f17a3017cd5\"},{\"acheneID\":\"http://dandelion.eu/resource/50cce5492850d50d483c4fa6dad2e8463dc8c6da\"},{\"acheneID\":\"http://dandelion.eu/resource/0024ee87b7eef188db17d17654d507ed301f4476\"},{\"acheneID\":\"http://dandelion.eu/resource/0e7d565b7bca1b1a20d86d7dece9c3a0fe0c2c61\"},{\"acheneID\":\"http://dandelion.eu/resource/8649811e790dec0c803c65bd1de0be54000fc4fe\"},{\"acheneID\":\"http://dandelion.eu/resource/ffbe3a67c84001e3a9235f036b395caf3e08bede\"},{\"acheneID\":\"http://dandelion.eu/resource/d3b0fae8b9ad1974fb5bd1b24b4bc9424d025e0d\"},{\"acheneID\":\"http://dandelion.eu/resource/0d3afbd9ac63facc4bc696f0e76dd2d2c17fb374\"},{\"acheneID\":\"http://dandelion.eu/resource/e8f6a0cc48c3e316b783c9b189f722baa074a23c\"},{\"acheneID\":\"http://dandelion.eu/resource/abc3a3c14df52081ae649844379928626c0b85f9\"},{\"acheneID\":\"http://dandelion.eu/resource/24b98b9cc129c657621c52c734c41a39e1dc89dd\"},{\"acheneID\":\"http://dandelion.eu/resource/fc77223b863907282f1d058936ea895113e4b419\"},{\"acheneID\":\"http://dandelion.eu/resource/a6859edcd75657d50744fff0323526301955118a\"},{\"acheneID\":\"http://dandelion.eu/resource/05092d56b739f59339071e165da2d21f28a14315\"},{\"acheneID\":\"http://dandelion.eu/resource/b084cfc6abfd517bcf742f23903002ddfa635a9e\"},{\"acheneID\":\"http://dandelion.eu/resource/3bd4a5ad0c9a82864186aa6080a50b20e3259ea5\"},{\"acheneID\":\"http://dandelion.eu/resource/3f69a4458cb7ca740a4a94b8eb41bd249d7a9133\"},{\"acheneID\":\"http://dandelion.eu/resource/fa02fb5c07cea9fb83de41c6e073c26878aa47a0\"},{\"acheneID\":\"http://dandelion.eu/resource/6db464510a4d1653ae7c665f3ed5cce7885787f6\"},{\"acheneID\":\"http://dandelion.eu/resource/92045f324597e23643b39ae3543110bed06533dc\"},{\"acheneID\":\"http://dandelion.eu/resource/f35e258a7d4267fe2238a61ddfe2d2bc70d6a572\"},{\"acheneID\":\"http://dandelion.eu/resource/1f3172f0d0dc8cfa89a9e20579e13d174d2dc2f8\"},{\"acheneID\":\"http://dandelion.eu/resource/1eb20497bf33b72ac1db3a9fe5f60491d1696c6d\"},{\"acheneID\":\"http://dandelion.eu/resource/bfce8c7f429ae76242ed28c114114182dc2b4672\"},{\"acheneID\":\"http://dandelion.eu/resource/098d2757a098d09746b40d2ae7792e0b6c1cd632\"},{\"acheneID\":\"http://dandelion.eu/resource/c16a30b893b01583399dcebb57c7f7775015a11c\"},{\"acheneID\":\"http://dandelion.eu/resource/705031bfc199280a53a6d0d12dc439b47478467f\"},{\"acheneID\":\"http://dandelion.eu/resource/56d19298298058fd57fbad654e40352349501725\"},{\"acheneID\":\"http://dandelion.eu/resource/33522a58d05cc072d9e57859db6319aadeb1e7e4\"},{\"acheneID\":\"http://dandelion.eu/resource/d50ddffb48113c8f41c3dca1a559d11778b4eac1\"},{\"acheneID\":\"http://dandelion.eu/resource/cf3cecf897d295c661bbaedb6fa6d2b08de870e5\"},{\"acheneID\":\"http://dandelion.eu/resource/d6a1bd7f4e141921962306f6d958ef61ce30094e\"},{\"acheneID\":\"http://dandelion.eu/resource/812c4be084e9679e5205be8f8da9731b868cad67\"},{\"acheneID\":\"http://dandelion.eu/resource/94c7ce5cbdff96f3a803e5df9104a965ee45b9c6\"},{\"acheneID\":\"http://dandelion.eu/resource/078cd2b86259994980193224f302d44740c1022e\"},{\"acheneID\":\"http://dandelion.eu/resource/caa1020a326d15a59e0f0393bb7edd479ef0300c\"},{\"acheneID\":\"http://dandelion.eu/resource/8d2a2b626d2bd6fe13e4b8901f27184e22ad7b9f\"},{\"acheneID\":\"http://dandelion.eu/resource/5c398b3460787f8821d423c96e56ec2fc6e1ad21\"},{\"acheneID\":\"http://dandelion.eu/resource/0861ee22313ddefc1ef105718e9933d1d7e08242\"},{\"acheneID\":\"http://dandelion.eu/resource/3e27dfde55452cf4f9fdfb48c7465c8ce515d94e\"},{\"acheneID\":\"http://dandelion.eu/resource/09dc756eac2e5ad1b588c26543e155e3179743c7\"},{\"acheneID\":\"http://dandelion.eu/resource/04c6346e454b72ca23d967ba6b13074ae10427af\"},{\"acheneID\":\"http://dandelion.eu/resource/d84cf6b84aea86351f5b92c23568c8ee41beabba\"},{\"acheneID\":\"http://dandelion.eu/resource/6d8702b4d30052fee64aa25a460a97efbcc1ce00\"},{\"acheneID\":\"http://dandelion.eu/resource/ffcd4ddeecbdb84946122d08728f51cded1db3b0\"},{\"acheneID\":\"http://dandelion.eu/resource/f8aef49fc860b8e4090a7b64e3feadad55973e27\"},{\"acheneID\":\"http://dandelion.eu/resource/777325ecd57efa2069c306f2fb560e37adf3ec52\"},{\"acheneID\":\"http://dandelion.eu/resource/5be49e1f3e582b239defd73d0c74b323fb411fa7\"},{\"acheneID\":\"http://dandelion.eu/resource/55ec6c8ae791994aef2d422084430fb95a3607b6\"},{\"acheneID\":\"http://dandelion.eu/resource/591641b4da57b8b243b22f60e0f1cdf77d441825\"},{\"acheneID\":\"http://dandelion.eu/resource/460fc1c76cae79b7a397f9fc4ab6eb10e639a7ea\"},{\"acheneID\":\"http://dandelion.eu/resource/b945b0473448620fddc7757e60d206d130551a7b\"},{\"acheneID\":\"http://dandelion.eu/resource/3365034f35936a7e09302d35f93b230fed94e1c8\"},{\"acheneID\":\"http://dandelion.eu/resource/9bc499cadb3cdbcab9d784cdebf632a199fac293\"},{\"acheneID\":\"http://dandelion.eu/resource/0a076e4910e5dc1a2ea5ecf0d76cf6a84036cc30\"},{\"acheneID\":\"http://dandelion.eu/resource/a83dde330949180ffa0157490e6d80acb4264d32\"},{\"acheneID\":\"http://dandelion.eu/resource/5bbccfd748d942f082c95c314c3cea29f2dd0542\"},{\"acheneID\":\"http://dandelion.eu/resource/a6e53b2e9e718f08540984d4ae9300ce8162b6a5\"},{\"acheneID\":\"http://dandelion.eu/resource/a5f0a67acacd7523fca839b65b400f4722c36753\"},{\"acheneID\":\"http://dandelion.eu/resource/491eb34239df1c0c4ea38ec40ceb06fd4b78b39a\"},{\"acheneID\":\"http://dandelion.eu/resource/9e2213df46b4d101e6107141d6d57a6a48a0363d\"},{\"acheneID\":\"http://dandelion.eu/resource/4c80f0790e409f34d3dc259aa03e0c6b746f8e12\"},{\"acheneID\":\"http://dandelion.eu/resource/730b31dbdc56e2dc88e01c2642b56800dec9e871\"},{\"acheneID\":\"http://dandelion.eu/resource/0ea45f6019394e3f553a72d58d17344fe23e480f\"},{\"acheneID\":\"http://dandelion.eu/resource/1799980b2ed3cc07e350ae6661c0436faadabaf4\"},{\"acheneID\":\"http://dandelion.eu/resource/8671ab261196c6da9ad54a58db977cd69bcfd3a1\"},{\"acheneID\":\"http://dandelion.eu/resource/5cedd62a383788ba33a25d50c55841f21fda283f\"},{\"acheneID\":\"http://dandelion.eu/resource/87679cc072dc9773c5b70db489d18444ab2f7b20\"},{\"acheneID\":\"http://dandelion.eu/resource/403bb3db740b867714bf483323bddae6c088c733\"},{\"acheneID\":\"http://dandelion.eu/resource/c11cb54ea26cb4267fe9a9679fee1caf9850c98a\"},{\"acheneID\":\"http://dandelion.eu/resource/871155e100d89ea9d99567afa287266a427b6bb0\"},{\"acheneID\":\"http://dandelion.eu/resource/eb9653ba6e2ba6818ee4483ceb22e2bf25f0b417\"},{\"acheneID\":\"http://dandelion.eu/resource/d0bc343c28f8eab581a9976a618116ce3c205be0\"},{\"acheneID\":\"http://dandelion.eu/resource/291071013ed9341737a9a050af3754bb4fd65f04\"},{\"acheneID\":\"http://dandelion.eu/resource/d7de878ec430a2d3b9abbaac8729397f1425a444\"},{\"acheneID\":\"http://dandelion.eu/resource/b8a7ae1a44d326e19f2c018f9125be436996dedc\"},{\"acheneID\":\"http://dandelion.eu/resource/4ec26ee3e3512913da3453b6d6614d24c09780d0\"},{\"acheneID\":\"http://dandelion.eu/resource/118b0d642bdba8c6a2b31e6192b9643b5a1a16ed\"},{\"acheneID\":\"http://dandelion.eu/resource/789c4f442b49aa8a9ffba479d5d65bbc062b651c\"},{\"acheneID\":\"http://dandelion.eu/resource/e90349e257a0423c4b2419f23c2b39cecacfc6a3\"},{\"acheneID\":\"http://dandelion.eu/resource/3ed565ed4f911f68c974c11988e80b80815746e9\"},{\"acheneID\":\"http://dandelion.eu/resource/31365997631fb32a8fd2bb3e21fa7003181da51c\"},{\"acheneID\":\"http://dandelion.eu/resource/03ee676e1e06ef4b7775ef24a3865f5bd469a149\"},{\"acheneID\":\"http://dandelion.eu/resource/a33ca25fb75e72add0c248d2cde8272c0f482029\"},{\"acheneID\":\"http://dandelion.eu/resource/bee1bdc24591dea40032929d29b8788a65f97188\"},{\"acheneID\":\"http://dandelion.eu/resource/2f52e6b8ffcab498538e31c11aef2935f038ceff\"},{\"acheneID\":\"http://dandelion.eu/resource/421812654e63f749a04bdbe28cca9e4ee6a40294\"},{\"acheneID\":\"http://dandelion.eu/resource/7d35a2e43015a26954fc4b3a6d34847ba5607760\"},{\"acheneID\":\"http://dandelion.eu/resource/f826c57cd21e39b9ba258d74bb388baecade5d30\"},{\"acheneID\":\"http://dandelion.eu/resource/0308293a4bd945c5dd85d2c33ecee56860d9d039\"},{\"acheneID\":\"http://dandelion.eu/resource/da4805336a6ae9c028cdbf66a1f47ef9ca7c45a7\"},{\"acheneID\":\"http://dandelion.eu/resource/c6a5c8914ef4e8dd0620c0df92f756ebaa89c876\"},{\"acheneID\":\"http://dandelion.eu/resource/0d68d094af97fc777d913cb761da6095620878f9\"},{\"acheneID\":\"http://dandelion.eu/resource/f630856eeacf0b771781d62a726fc21af3aa20a0\"},{\"acheneID\":\"http://dandelion.eu/resource/e47300fc9a7147910ce993a0fd920223a3168e06\"},{\"acheneID\":\"http://dandelion.eu/resource/1c2f9cb59d6ae896ffb8f62e6df0e76be826a1cc\"},{\"acheneID\":\"http://dandelion.eu/resource/bbf51c5730f43675bbc28cf6cb135bb8851ce302\"},{\"acheneID\":\"http://dandelion.eu/resource/d45e45ec101a9caf1cde26ab27952c71481c9718\"},{\"acheneID\":\"http://dandelion.eu/resource/f460cbecef7355f21b40b5484d883c37d96b00d2\"},{\"acheneID\":\"http://dandelion.eu/resource/8130a60ae5d65846687b8d8199b8ec4bbe5ba709\"},{\"acheneID\":\"http://dandelion.eu/resource/605ae574473639213e9f0212d3d5a4af9fc62003\"},{\"acheneID\":\"http://dandelion.eu/resource/ea3e68a75f6a34f20b9c4cac6b07cdef617a497b\"},{\"acheneID\":\"http://dandelion.eu/resource/f65ce5d20395ff4abe6b082c19b50f349deea636\"},{\"acheneID\":\"http://dandelion.eu/resource/f6e205e6c4e04218f4e73ce50fe0acdfd8f77002\"},{\"acheneID\":\"http://dandelion.eu/resource/08ac3a5d986a11de93d2a187806de4d38a4e52c7\"},{\"acheneID\":\"http://dandelion.eu/resource/78d53b5ef7172b2dc418c5099f9ff1c9ce18561e\"},{\"acheneID\":\"http://dandelion.eu/resource/1bea909d4358430fe88fb9cf74b63f9ed13e28a7\"},{\"acheneID\":\"http://dandelion.eu/resource/674ff62b55e12ecb53f514ad763dfa5f3700d83b\"},{\"acheneID\":\"http://dandelion.eu/resource/ecd1c001e8b40e8d2971412ba7c82435ce27631d\"},{\"acheneID\":\"http://dandelion.eu/resource/9be1b4b4b853c14d0f47a5d8158b7f77c8d56a1a\"},{\"acheneID\":\"http://dandelion.eu/resource/e5c57a9e810e2689bac2838e2253fc17ab7dfde2\"},{\"acheneID\":\"http://dandelion.eu/resource/bc2d261c516d8614f30719f991e13e9c69af6832\"},{\"acheneID\":\"http://dandelion.eu/resource/6775c730c64ea7dad9d909734c61db7db85e2cc5\"},{\"acheneID\":\"http://dandelion.eu/resource/1be5f3b06cd027f4126fa8ca80473fc56f78aac0\"},{\"acheneID\":\"http://dandelion.eu/resource/190cd13058f36b9a4fdbe53368e56562151eb72d\"},{\"acheneID\":\"http://dandelion.eu/resource/b147d1ad96a185e979caaca5894d0afdeaba6f61\"},{\"acheneID\":\"http://dandelion.eu/resource/9bea466bd51bdc886cd2157d866b44a8286f82fa\"},{\"acheneID\":\"http://dandelion.eu/resource/3f7831a751379c234cb38b86a6ad0d8c3e3e2ac1\"},{\"acheneID\":\"http://dandelion.eu/resource/6423b7052122bac9e39f03cbbdef61eea7820e11\"},{\"acheneID\":\"http://dandelion.eu/resource/2bfa9605c1788320fa7390ead579b42b9ff06c0c\"},{\"acheneID\":\"http://dandelion.eu/resource/51d3ace68fa17588394fbb2ef028fc5eca8ac9b8\"},{\"acheneID\":\"http://dandelion.eu/resource/91c2500e08f4764098308006ed2dda677deee2f8\"},{\"acheneID\":\"http://dandelion.eu/resource/2c56f325d2e2c7c4682f8c458e34ecb983115743\"},{\"acheneID\":\"http://dandelion.eu/resource/994dccebeb348964b36e6010c00b17bea15d14ca\"},{\"acheneID\":\"http://dandelion.eu/resource/06564ee8afadb685421042791f9de3cbed831829\"},{\"acheneID\":\"http://dandelion.eu/resource/bb1dcff345b34a7ed1b539f51bcb9af2f007df1d\"},{\"acheneID\":\"http://dandelion.eu/resource/d00d0b319d37354a66020d795ccdae95da32ccde\"},{\"acheneID\":\"http://dandelion.eu/resource/0b37d5e2488a3d9d37f422a65f14bd5aeb8ea9e2\"},{\"acheneID\":\"http://dandelion.eu/resource/572753f8495d249fb71fb6ac6265d90017997dcd\"},{\"acheneID\":\"http://dandelion.eu/resource/7d26563518a314e779996071423272a966ce0ff1\"},{\"acheneID\":\"http://dandelion.eu/resource/75d61a472cfdcbb1ca34f9ea14ad6d5625c46c45\"},{\"acheneID\":\"http://dandelion.eu/resource/00d7d7861bc2977bbd8cc44b5d64ce08ecd8d346\"},{\"acheneID\":\"http://dandelion.eu/resource/59f58da2ac5a894a8b126cafd83582285bc3ea10\"},{\"acheneID\":\"http://dandelion.eu/resource/45725c4ba43ff365a27c82e3317c72b8db517121\"},{\"acheneID\":\"http://dandelion.eu/resource/ee1d1f8c7710176d5f221cf28ad3b039a62f27c5\"},{\"acheneID\":\"http://dandelion.eu/resource/fe01b70ec5fc6dcbcce3f65da5386d6e984ca9a0\"},{\"acheneID\":\"http://dandelion.eu/resource/89ad19f12c6821feca8874f8755729d718dd1b86\"},{\"acheneID\":\"http://dandelion.eu/resource/b744227a1a32c262f57c23731d77d0d440fc32ec\"},{\"acheneID\":\"http://dandelion.eu/resource/a889a021a7a7fcdf1244b9b507474e0cc1ac1959\"},{\"acheneID\":\"http://dandelion.eu/resource/f083e156b729b5f5abaa3a798355103c31167abf\"},{\"acheneID\":\"http://dandelion.eu/resource/9c2f085fb7a0e07b0f44749e792505c8d1f03c8c\"},{\"acheneID\":\"http://dandelion.eu/resource/2f5a9f47db0c621aac39ee982b6ce28a65f46ef0\"},{\"acheneID\":\"http://dandelion.eu/resource/f7b2cfb75ed52dc047ad39c2994c151f712dc705\"},{\"acheneID\":\"http://dandelion.eu/resource/00470ec206baff262bebbd42dfcad3ac4cfb0165\"},{\"acheneID\":\"http://dandelion.eu/resource/d7d4273953acaeb41be4416a0bc791805a9998e7\"},{\"acheneID\":\"http://dandelion.eu/resource/98f88a3013fad31b368ff2fc194ccb7e6c4b4a35\"},{\"acheneID\":\"http://dandelion.eu/resource/7b55602a4f399e2c79defa10d9105c4fec112348\"},{\"acheneID\":\"http://dandelion.eu/resource/3b98f12628b90e56ae13014366aba4414901a837\"},{\"acheneID\":\"http://dandelion.eu/resource/31be78437a5bddf79f95e1b394ec0c575a043db8\"},{\"acheneID\":\"http://dandelion.eu/resource/8c1fc2c2574ff6ebdc3cbd3880d956becfa653b6\"},{\"acheneID\":\"http://dandelion.eu/resource/7a88d6bbc1a7026781cafd3f3f714d64e38df9ff\"},{\"acheneID\":\"http://dandelion.eu/resource/c07d08eb18f29e9d7c354fe3194150bb2edc792d\"},{\"acheneID\":\"http://dandelion.eu/resource/b83241e2622edfb45c64d226baa682718441ea64\"},{\"acheneID\":\"http://dandelion.eu/resource/31b8bca40d30362e8601c984850abb12ee436db8\"},{\"acheneID\":\"http://dandelion.eu/resource/a29eeb2576bf34c32e90d99b42ad68fcaaee0d4d\"},{\"acheneID\":\"http://dandelion.eu/resource/99a92c9e0f32660cd5522d967b779345e9184032\"},{\"acheneID\":\"http://dandelion.eu/resource/47814da91cd02c4d916754c6803021169962a808\"},{\"acheneID\":\"http://dandelion.eu/resource/21cf0206eb512b0348398731c14b23799ebc77c9\"},{\"acheneID\":\"http://dandelion.eu/resource/9309ef867e3d1a48310754c996b2fac37e283b81\"},{\"acheneID\":\"http://dandelion.eu/resource/dfb804b1fa14f6f839fa2b355977ea0114d23497\"},{\"acheneID\":\"http://dandelion.eu/resource/070effafe12552d91a106b862a76847670ac15bd\"},{\"acheneID\":\"http://dandelion.eu/resource/78da0e355958a79768fcbe728206f2229efbd5db\"},{\"acheneID\":\"http://dandelion.eu/resource/6c6463e14fc5ab09c8172482203b234925cad2c0\"},{\"acheneID\":\"http://dandelion.eu/resource/de9fbd973a473dadf3e7c0cf5b77de3bfe6cf2a5\"},{\"acheneID\":\"http://dandelion.eu/resource/07aa9225ead76a4f5d8f9332baee1988d7c20500\"},{\"acheneID\":\"http://dandelion.eu/resource/2fc0d7fa2b05c31728e0c4d6486df4258fcdbb52\"},{\"acheneID\":\"http://dandelion.eu/resource/79ffcfbb18c66cb603be5810c32704c5e9956b1d\"},{\"acheneID\":\"http://dandelion.eu/resource/046a6482b864b60f652fd66f96e9ec7582e0646d\"},{\"acheneID\":\"http://dandelion.eu/resource/299227b1ceba4dd17e59f92e0ec51255c19cd526\"},{\"acheneID\":\"http://dandelion.eu/resource/1c8eff75db7fab3eea287b01d65c8caab1729c88\"},{\"acheneID\":\"http://dandelion.eu/resource/b3cf6d80c092d80c6929682682ab175a35ade388\"},{\"acheneID\":\"http://dandelion.eu/resource/3d70bc73a7ef78fc56e09d3f2ccaf0b32b326188\"},{\"acheneID\":\"http://dandelion.eu/resource/9bace6cad296dcb160ef343062103bcde7267d5f\"},{\"acheneID\":\"http://dandelion.eu/resource/d1b45aa2718cdaad8d394e7f74cd85da68bd2035\"},{\"acheneID\":\"http://dandelion.eu/resource/12cc565b664b0f0abf7124505c07bd950fc55c63\"},{\"acheneID\":\"http://dandelion.eu/resource/e4ce38cf6410f1534840f94646577d8fd932b1ce\"},{\"acheneID\":\"http://dandelion.eu/resource/0f53aab2a45e66de7138def865fb23bf25c1320b\"},{\"acheneID\":\"http://dandelion.eu/resource/c5df98685f92008c8c8e6537cf7f4e1301dd1460\"},{\"acheneID\":\"http://dandelion.eu/resource/0c403d03dadbccf1a3bea0a9c80be8669ced2e83\"},{\"acheneID\":\"http://dandelion.eu/resource/227155a0c5ec13138f7bc82c1be49cb5427aa47a\"},{\"acheneID\":\"http://dandelion.eu/resource/fc917be5028312a211672be03fef426bed7ca6ff\"},{\"acheneID\":\"http://dandelion.eu/resource/62085d5539d6e9c55f744a90796238dced1c0fff\"},{\"acheneID\":\"http://dandelion.eu/resource/4a82e0a0c15ec5d29ad9366339c754a301feeb9b\"},{\"acheneID\":\"http://dandelion.eu/resource/71953527e8919d63ba018ce51c4d4b8a37ede92e\"},{\"acheneID\":\"http://dandelion.eu/resource/bd4a4f5aa982938630bc875298c62f1c8dd5bd5f\"},{\"acheneID\":\"http://dandelion.eu/resource/839aed9305c2935f094022f2d946dffa01c408df\"},{\"acheneID\":\"http://dandelion.eu/resource/9b33caac12f0bd7f57c3bb7552ab1acd504b59d1\"},{\"acheneID\":\"http://dandelion.eu/resource/28cc4b7a647d96edd491bb5898a5b674884e33be\"},{\"acheneID\":\"http://dandelion.eu/resource/2b5268afe946ebfe59e8a9d74e16fd7c8c73764a\"},{\"acheneID\":\"http://dandelion.eu/resource/bb758c975d7e034b73f0968cad62766b76c841a1\"},{\"acheneID\":\"http://dandelion.eu/resource/f8de7d7ee15f5819e99dcf0d1d36d049512d32a3\"},{\"acheneID\":\"http://dandelion.eu/resource/2538394cca622909c20c30051858b6d66caad858\"},{\"acheneID\":\"http://dandelion.eu/resource/945a202c6681d859821faa39393b4157bf54fd99\"},{\"acheneID\":\"http://dandelion.eu/resource/817904bfaf9828fbaed2198ee4c26cfdb304cd0a\"},{\"acheneID\":\"http://dandelion.eu/resource/d78d32063097319d9462ca9f2912c1f4af374cc5\"},{\"acheneID\":\"http://dandelion.eu/resource/ffe87baac79cd254bce64f1230f63f8b8fb96669\"},{\"acheneID\":\"http://dandelion.eu/resource/4523d99e61a6c55e4af82b318e79a8ff16c9a24f\"},{\"acheneID\":\"http://dandelion.eu/resource/0f26166893273a54635bc7022a88f7a91fb6b3a0\"},{\"acheneID\":\"http://dandelion.eu/resource/88aace232fcf8fc6e86693a80937d65c5c7f0697\"},{\"acheneID\":\"http://dandelion.eu/resource/363378beb51d15023a970d248e55f7811ad1d852\"},{\"acheneID\":\"http://dandelion.eu/resource/2f9431cd15d4b0012d3e657743003ca3f15844ae\"},{\"acheneID\":\"http://dandelion.eu/resource/2da178a9866c83f395bafcde144761fd1ed9c11b\"},{\"acheneID\":\"http://dandelion.eu/resource/f0880f40f77ecc0650da840a426c1ab95adca86c\"},{\"acheneID\":\"http://dandelion.eu/resource/4ae70a374309948bf019a5f9c0600032e1a8d208\"},{\"acheneID\":\"http://dandelion.eu/resource/647a36e49be3976a6e7319da5fe0bd005d65367c\"},{\"acheneID\":\"http://dandelion.eu/resource/692a2ac2575c42ac3a9986c591aaead9d68d8f22\"},{\"acheneID\":\"http://dandelion.eu/resource/09b3bb4b3ca7391ae87218374f2638f2a6a7003e\"},{\"acheneID\":\"http://dandelion.eu/resource/e068a3a01a929f7b834290edcd44132ce4f0ebf4\"},{\"acheneID\":\"http://dandelion.eu/resource/de9a4760c28aa7cfb366045df2f9cde12421072e\"},{\"acheneID\":\"http://dandelion.eu/resource/499e8357cfb8be2187fd797dc2b63def11e57aa9\"},{\"acheneID\":\"http://dandelion.eu/resource/5729a55b85fb37bef92410c76a9441ddceabd9d1\"},{\"acheneID\":\"http://dandelion.eu/resource/a21654d53916fbf1c21071a0d33e9fbe42e28fff\"},{\"acheneID\":\"http://dandelion.eu/resource/3d5e118199d4bdf3d1a28d4a9ec363ba90182554\"},{\"acheneID\":\"http://dandelion.eu/resource/433b64a69c50152547d1cb4e4ce474c73ffea62b\"},{\"acheneID\":\"http://dandelion.eu/resource/a47ae8573f1b6b1b4a216d5ea3763715fcfecb4b\"},{\"acheneID\":\"http://dandelion.eu/resource/a0b5689c9800bdf2e32422e4095787c396650a9f\"},{\"acheneID\":\"http://dandelion.eu/resource/e8ae50e9a21b5cd484793006a663babf727c5ccf\"},{\"acheneID\":\"http://dandelion.eu/resource/001850a9a881d9386238848766de7e379dbd3f8c\"},{\"acheneID\":\"http://dandelion.eu/resource/bff524a26d0204d2adb312b1571a1dc3f78aef7e\"},{\"acheneID\":\"http://dandelion.eu/resource/5d59f8f61afd29d4664cbaeb9b34fab120b9253a\"},{\"acheneID\":\"http://dandelion.eu/resource/dccfe25150d7055f4120a7c0e7f37c9595837981\"},{\"acheneID\":\"http://dandelion.eu/resource/8d44e66c3b7b80fb464cdd01426b2388c8528279\"},{\"acheneID\":\"http://dandelion.eu/resource/f6dcba331214c1f4f04071063905867de29cf38c\"},{\"acheneID\":\"http://dandelion.eu/resource/0837d458d859759f56cb0b6d4c9434ac3bc27fcc\"},{\"acheneID\":\"http://dandelion.eu/resource/d5ddec46cc5d9de60b0f79d4a760d5e4884fa3be\"},{\"acheneID\":\"http://dandelion.eu/resource/5e5f3dff146f088be00e7bed66058c6736ffec54\"},{\"acheneID\":\"http://dandelion.eu/resource/31106bf5b057c7ade51e7aa1d804defc3cf99545\"},{\"acheneID\":\"http://dandelion.eu/resource/d6074597c7f1c3244970232727bfc15aec5907aa\"},{\"acheneID\":\"http://dandelion.eu/resource/e78c6b598887a4cf60bed8b7e2b27a01f903e5bb\"},{\"acheneID\":\"http://dandelion.eu/resource/2e097add5ee43cb10fce51397314d3bd04d4a91a\"},{\"acheneID\":\"http://dandelion.eu/resource/54b0de51857f6bd9413fa7d697413920b1adcb4c\"},{\"acheneID\":\"http://dandelion.eu/resource/682df887e96392cf7c610fad0d5ad9498fe0c213\"},{\"acheneID\":\"http://dandelion.eu/resource/a5ff27f1fb7600b5b600818e9ebd53a9fc387072\"},{\"acheneID\":\"http://dandelion.eu/resource/149588acb01a2b262843f78e6be0161d50291d64\"},{\"acheneID\":\"http://dandelion.eu/resource/86b47291b3ae716045fce86a4f4ec7e639b46d8b\"},{\"acheneID\":\"http://dandelion.eu/resource/d04db27c005fe83714a2e703158ef679c4ae34b7\"},{\"acheneID\":\"http://dandelion.eu/resource/9d1a0eeaf9200d730f72873be31b83e10f0346b0\"},{\"acheneID\":\"http://dandelion.eu/resource/3457a469f47bb768728195423d12321de744be16\"},{\"acheneID\":\"http://dandelion.eu/resource/065688e5fb4aca9177095c5fca1f37b5e02e353a\"},{\"acheneID\":\"http://dandelion.eu/resource/d07b0d2561cf34185c31bf317e2d541c711b2734\"},{\"acheneID\":\"http://dandelion.eu/resource/1038b08ab63a79db6c037c477e3485751bc0d1db\"},{\"acheneID\":\"http://dandelion.eu/resource/7e15d15623f2801bd7a332178e1dd1d6d185c5b4\"},{\"acheneID\":\"http://dandelion.eu/resource/f4ecae1be2cdcc41647e29bde7d0ba118a06cdf0\"},{\"acheneID\":\"http://dandelion.eu/resource/cf0aa6e0e128979781f1d5e3dda2cce7d2e7e082\"},{\"acheneID\":\"http://dandelion.eu/resource/f685bdaad8e8313ffb0441c40454bfe2c6a323fc\"},{\"acheneID\":\"http://dandelion.eu/resource/62f368c7f69aac844aa89595f854c6c141868a83\"},{\"acheneID\":\"http://dandelion.eu/resource/e55c97acb94fbc2715e9fb7bed5cb193b3081be6\"},{\"acheneID\":\"http://dandelion.eu/resource/cf7f569cf07efc9177edaff659973de91aa6799f\"},{\"acheneID\":\"http://dandelion.eu/resource/c18045f86ce8e826e6d3117bd993294597101c69\"},{\"acheneID\":\"http://dandelion.eu/resource/e2786b72ddab8a841394287075a455e4e6c288b0\"},{\"acheneID\":\"http://dandelion.eu/resource/912ea576b4a6ddac3371ec13ed949214c835d46a\"},{\"acheneID\":\"http://dandelion.eu/resource/10bdddfe81243db804afa2685bd609400968322a\"},{\"acheneID\":\"http://dandelion.eu/resource/d6bbbaf63694af22026de5015d5424faae3747cb\"},{\"acheneID\":\"http://dandelion.eu/resource/42f308238442f89858911f557400186e287662bf\"},{\"acheneID\":\"http://dandelion.eu/resource/e270719c54b8a610bfa1d3bcc37da16a6d8ce3b8\"},{\"acheneID\":\"http://dandelion.eu/resource/8a82666c5892c7a5b066a4c92a6e6cca9956c542\"},{\"acheneID\":\"http://dandelion.eu/resource/4abc01d6f81561eeb99802ae95d7f046d0270a15\"},{\"acheneID\":\"http://dandelion.eu/resource/da5eaa4a7315eaed0b43a61fc41c5c5f2e29e707\"},{\"acheneID\":\"http://dandelion.eu/resource/a9019a9e06c95e654dc14a75fe129fd5016d4686\"},{\"acheneID\":\"http://dandelion.eu/resource/5d400ef1e105ac2bd6800be5d436f7717b7a2713\"},{\"acheneID\":\"http://dandelion.eu/resource/dafe50d9c8e34c3129f9954a22d93ff0463f4c5e\"},{\"acheneID\":\"http://dandelion.eu/resource/e6df9043cd213cb8597c88322ee05b37a5663109\"},{\"acheneID\":\"http://dandelion.eu/resource/58bd42e8bcaf332ebd5e71bd0a64030116e903c8\"},{\"acheneID\":\"http://dandelion.eu/resource/4a127e113d3a043767774c3c2cbeb8bf46014f70\"},{\"acheneID\":\"http://dandelion.eu/resource/85078f12637c4c97db00d9dd62c19c86c1a06f85\"},{\"acheneID\":\"http://dandelion.eu/resource/757a25f03d0d11024f48ff52ff1c135368b48998\"},{\"acheneID\":\"http://dandelion.eu/resource/62820fae4e6f980ff807a6f35cfe1e20bfa36fc2\"},{\"acheneID\":\"http://dandelion.eu/resource/55c7abb9f29839055b9d57346a4ae51bde5c9322\"},{\"acheneID\":\"http://dandelion.eu/resource/ccef31d219ccb2eb9d5f24f200ce07b280fd4496\"},{\"acheneID\":\"http://dandelion.eu/resource/3c37479d9013c6287ac71a9e245042c52ffe9912\"},{\"acheneID\":\"http://dandelion.eu/resource/b9ccb898e9d866f50a8c84f7256aa2382f5706b3\"},{\"acheneID\":\"http://dandelion.eu/resource/64b04ef5ad162a3698d675ce06e2295993939e29\"},{\"acheneID\":\"http://dandelion.eu/resource/10a8c7c8e84791f9c3264684580062532f2c7631\"},{\"acheneID\":\"http://dandelion.eu/resource/81e23cd3a11d3183d59ca670fceef753373c1546\"},{\"acheneID\":\"http://dandelion.eu/resource/c7399774f8ebed0307e1fd2c3da92caea24f35fa\"},{\"acheneID\":\"http://dandelion.eu/resource/f79885ccbce19ebb91e5135fea46a1e943b36eb9\"},{\"acheneID\":\"http://dandelion.eu/resource/a4c7fc5218a1fdfd24977aabc79fcce16f40c4a2\"},{\"acheneID\":\"http://dandelion.eu/resource/9a9cf47e3d397021cee34f0d598743f8491d0ca7\"},{\"acheneID\":\"http://dandelion.eu/resource/a41560d554067ff668599436162e1f4d62fb287a\"},{\"acheneID\":\"http://dandelion.eu/resource/d3a86975fef77dba3ae0a8fdc1eac9b98fa59861\"},{\"acheneID\":\"http://dandelion.eu/resource/08a9f07a85d78e80607959660ad5c61f112bce31\"},{\"acheneID\":\"http://dandelion.eu/resource/bd290560153ce5b2ef66eefb449cf573d106288f\"},{\"acheneID\":\"http://dandelion.eu/resource/2e669da2a2c335fa4cc911306df382056ee961d4\"},{\"acheneID\":\"http://dandelion.eu/resource/e49ec95aec6bee67a8e6d22239de0fc6c2970239\"},{\"acheneID\":\"http://dandelion.eu/resource/368dd09e0cf94b60ab3c6774f124a6c82aae990d\"},{\"acheneID\":\"http://dandelion.eu/resource/e136fcb84148d67e872dd2e5f0ebdf56667bf11e\"},{\"acheneID\":\"http://dandelion.eu/resource/f82fba68cb99b5006707e1b846bc4ac41ddedcd1\"},{\"acheneID\":\"http://dandelion.eu/resource/7643883b557f548ff29e6e6d9699ca5ff34e4aa7\"},{\"acheneID\":\"http://dandelion.eu/resource/39ba0dc2f7822e91690f3b48246db28c3cc71917\"},{\"acheneID\":\"http://dandelion.eu/resource/2a7fa83022bb54ee26c6d079e6756b735d759a96\"},{\"acheneID\":\"http://dandelion.eu/resource/3d677ad904f2a21b6890fcb6cdd71e0e7c5bd3f3\"},{\"acheneID\":\"http://dandelion.eu/resource/bb5639dce81c1ba03dc2d91dee48fcf27d957b0d\"},{\"acheneID\":\"http://dandelion.eu/resource/54a816ec3feb61a248aafced467b4a0c93525fd2\"},{\"acheneID\":\"http://dandelion.eu/resource/a6af690fa57270328d9fb408729b78146fe36980\"},{\"acheneID\":\"http://dandelion.eu/resource/658a1e613bc710b41a731a4ceef57debd95dc017\"},{\"acheneID\":\"http://dandelion.eu/resource/a97988a63d59dc8ca32e04b5fcbeeced78b36cf7\"},{\"acheneID\":\"http://dandelion.eu/resource/d856e0303f3e7ac4970b809ee00d1d699702234d\"},{\"acheneID\":\"http://dandelion.eu/resource/6e4f87ccea7f16bef46d22b3064dcb3664115175\"},{\"acheneID\":\"http://dandelion.eu/resource/8ce01d5b914f712bf1a0c8ef586390e13790d9e9\"},{\"acheneID\":\"http://dandelion.eu/resource/5c463680561d053fee0e653a0410b29b3f5b36b3\"},{\"acheneID\":\"http://dandelion.eu/resource/6a501da777b9ec1540b953c92b6949d8886adfb6\"},{\"acheneID\":\"http://dandelion.eu/resource/951b6e45b8977096c6eeb92501fa850e2afec0b6\"},{\"acheneID\":\"http://dandelion.eu/resource/64b713be4f83cb7ace40cb511050113999993dce\"},{\"acheneID\":\"http://dandelion.eu/resource/406528877683acc3fdf162f7e0212917d1582da7\"},{\"acheneID\":\"http://dandelion.eu/resource/4f9b08cef6239ed13efe489d8930156785d02c59\"},{\"acheneID\":\"http://dandelion.eu/resource/0cd1f76b49678c5d3cfe39077c0f30a7c366f4d9\"},{\"acheneID\":\"http://dandelion.eu/resource/53a53dd6f103fba20f9e509fa109b2f4bc3e9350\"},{\"acheneID\":\"http://dandelion.eu/resource/cbb7229d6a93e3584a27874a52024a97558e72d5\"},{\"acheneID\":\"http://dandelion.eu/resource/2ad2f416913a90b5f61381e721ad2a49759c0f28\"},{\"acheneID\":\"http://dandelion.eu/resource/ee15cfbfce72f7e1bc77ee41d590a8ae33ad82b2\"},{\"acheneID\":\"http://dandelion.eu/resource/cc7a6f1b598d16a01a2200563abc3cee2f2c8dcf\"},{\"acheneID\":\"http://dandelion.eu/resource/15a990151f28e01398224c7c9c0cb4d5ac1d7ab2\"},{\"acheneID\":\"http://dandelion.eu/resource/4549d45b463869292e4ffb16d7519dfd92af6d35\"},{\"acheneID\":\"http://dandelion.eu/resource/58b006674aeb2e2586386b4a9de066a957f13d24\"},{\"acheneID\":\"http://dandelion.eu/resource/a1a5f7700a7cc22f1ff2ec0c6994623846d73274\"},{\"acheneID\":\"http://dandelion.eu/resource/64184a0bd7f6ed6c148d93cd247d45c3ac951f1e\"},{\"acheneID\":\"http://dandelion.eu/resource/af94a3479663faaee54869704b9fd80da31db640\"},{\"acheneID\":\"http://dandelion.eu/resource/6fff1524ef5354a06c5f84c55ef6b591031fb909\"},{\"acheneID\":\"http://dandelion.eu/resource/4793dc8886796f97b19c93530c5b5ee8d8f88e94\"},{\"acheneID\":\"http://dandelion.eu/resource/7eb66c818de67f930255b3e8dbbd73b4f4ebacfb\"},{\"acheneID\":\"http://dandelion.eu/resource/b88975aab7f2da14a8dac54b6e08de7791198438\"},{\"acheneID\":\"http://dandelion.eu/resource/95068bdf6bdc4e5fa70a5b547b32e322c0d5ba9a\"},{\"acheneID\":\"http://dandelion.eu/resource/c7daf0bb08feb5893de0d5929f3cb408b08b8822\"},{\"acheneID\":\"http://dandelion.eu/resource/f2ca1edeffcb95a51b41c3c01db7c5bef519fd83\"},{\"acheneID\":\"http://dandelion.eu/resource/d2365f5019b946655b1cd68b91734f1c881e4920\"},{\"acheneID\":\"http://dandelion.eu/resource/9e70e87751d9bf873ae94fa3b9b0c8502efe5792\"},{\"acheneID\":\"http://dandelion.eu/resource/af65f4415b23b082c39f82a0a663c469269218ed\"},{\"acheneID\":\"http://dandelion.eu/resource/99002fcf4f71323d71e252615cc753564119d48e\"},{\"acheneID\":\"http://dandelion.eu/resource/f335b45497b28bdc1216fc389eac79f5f4ceb883\"},{\"acheneID\":\"http://dandelion.eu/resource/a994477fb0ae287ae76b415e29ee365e279f9eb4\"},{\"acheneID\":\"http://dandelion.eu/resource/fdd8f47433bb1b82deefb11158283f60d6ea8678\"},{\"acheneID\":\"http://dandelion.eu/resource/5a4cbe6957ce2648c477f53d2c41c9e0ac3187de\"},{\"acheneID\":\"http://dandelion.eu/resource/1c7ded56bba5135a6b8b58509ed696ab23328732\"},{\"acheneID\":\"http://dandelion.eu/resource/e4bbff769725ab3bfb8afb533c2ed5a4dc30e173\"},{\"acheneID\":\"http://dandelion.eu/resource/4afb20425a4ef203e06c15e5230d2990d16a5eeb\"},{\"acheneID\":\"http://dandelion.eu/resource/603743804a5dca34ad81c571e78b10be1a2c9636\"},{\"acheneID\":\"http://dandelion.eu/resource/6eb37493efa2b77696b99a56a96cb6c75acfd198\"},{\"acheneID\":\"http://dandelion.eu/resource/714e7e7c34c6616ed8a50223835229991b6288df\"},{\"acheneID\":\"http://dandelion.eu/resource/6f34374321de675980e68671726c0bb69b10cc4a\"},{\"acheneID\":\"http://dandelion.eu/resource/357b7adfa8df49c96d6e6f1f12f5b29b5782a0b6\"},{\"acheneID\":\"http://dandelion.eu/resource/d20274b8904cdf677c96111f172a159910e8357f\"},{\"acheneID\":\"http://dandelion.eu/resource/aebfdf2bb1455aeaed0e41969eb0a56a79af3877\"},{\"acheneID\":\"http://dandelion.eu/resource/79690a64168b0cb1fe09b2664c6530e4538353c9\"}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_pagination_2": "{\"items\":[{\"acheneID\":\"http://dandelion.eu/resource/33b040675f5f4a32601d012ff26d37dc2156cf33\"},{\"acheneID\":\"http://dandelion.eu/resource/add00e9b0e3619179208d2d82658cbf5f0825de5\"},{\"acheneID\":\"http://dandelion.eu/resource/e1a53cd61d5d45fb19e118e87af99b316c8f3180\"},{\"acheneID\":\"http://dandelion.eu/resource/2e2a89e4499bbd0726b0db83bc9d2c76c71441e0\"},{\"acheneID\":\"http://dandelion.eu/resource/567b02a3eb50a88aba4acad8b332df1aba572fd6\"},{\"acheneID\":\"http://dandelion.eu/resource/0ed2dcc3f5ccd8e7553a830e50f05872bcba32b2\"},{\"acheneID\":\"http://dandelion.eu/resource/9fa7346c0774b5f9226c255f793198a6aeffaa03\"},{\"acheneID\":\"http://dandelion.eu/resource/81e40d257ce1814d97025fd63c2e20aa2aab4577\"},{\"acheneID\":\"http://dandelion.eu/resource/886cbbce311ff8fc51ebbae5beacaca574b29026\"},{\"acheneID\":\"http://dandelion.eu/resource/f268050c830faab155e0ee9abea2a7be53f6258c\"},{\"acheneID\":\"http://dandelion.eu/resource/c1a3e8088ab2b62aca5c09b80e6295815a3525cf\"},{\"acheneID\":\"http://dandelion.eu/resource/39bca0fd8e6416b7ef918ec5f06b45ca5766e864\"},{\"acheneID\":\"http://dandelion.eu/resource/77590c63a57f33943ae43e3fd503db69bfa7c750\"},{\"acheneID\":\"http://dandelion.eu/resource/92d0980675454467305a4693c3bd6d50f2ee4e30\"},{\"acheneID\":\"http://dandelion.eu/resource/3e6ff75953a9e2ead57b096f8199c937ae906f53\"},{\"acheneID\":\"http://dandelion.eu/resource/2759bfc3016caa52db35618fd60809767fa56664\"},{\"acheneID\":\"http://dandelion.eu/resource/8d0cd8fbb54812a1c4aee92418a8b16ded30fafb\"},{\"acheneID\":\"http://dandelion.eu/resource/48c9bc136b9586db7f819990a78d3a65fcb36e7d\"},{\"acheneID\":\"http://dandelion.eu/resource/0cae2a646e914dc7f130a0f9260f3d792af63fc0\"},{\"acheneID\":\"http://dandelion.eu/resource/778ff1777ed446b19e73043135ffd96726fb6cf9\"},{\"acheneID\":\"http://dandelion.eu/resource/0571d52274ea21592db2f3b44da18500c9e2c210\"},{\"acheneID\":\"http://dandelion.eu/resource/18acd8940e8891a8c4463f375f8af8713a98936c\"},{\"acheneID\":\"http://dandelion.eu/resource/9ce81920cd887fd21447896881476ea26d655389\"},{\"acheneID\":\"http://dandelion.eu/resource/3000841d1fbff57d08846d61aaec568cac48ce97\"},{\"acheneID\":\"http://dandelion.eu/resource/1a9e91b18b1b4502744ad81a0fad383eb44e8622\"},{\"acheneID\":\"http://dandelion.eu/resource/82156ad8fa8670263e1bd1b77b51d089f82b6ceb\"},{\"acheneID\":\"http://dandelion.eu/resource/1fee2398c25bf46e31d50b1b64ee1d0a19826c8b\"},{\"acheneID\":\"http://dandelion.eu/resource/83118ea2011f500845816afe6517a4ebb2651191\"},{\"acheneID\":\"http://dandelion.eu/resource/01e67dc173a88d08800feb55b22770c564be1ddd\"},{\"acheneID\":\"http://dandelion.eu/resource/7e33a9387fc6bf563ad4adeb43b9d1236e3c10b3\"},{\"acheneID\":\"http://dandelion.eu/resource/378cbb90ea4bf12d848bf786d5172fc85bafad27\"},{\"acheneID\":\"http://dandelion.eu/resource/3887885227a981bfd410aaa6130caf7c5c4ea14a\"},{\"acheneID\":\"http://dandelion.eu/resource/f4fd6c605d1b32421159a77e1f974ac6f971ff53\"},{\"acheneID\":\"http://dandelion.eu/resource/e12ea740b2985a2b565a61c9380a4f52856d3b7a\"},{\"acheneID\":\"http://dandelion.eu/resource/205296e693edbb7ce13e227b3fa2ab042079bbf1\"},{\"acheneID\":\"http://dandelion.eu/resource/5c8893200e8057208153bc408fc00a72c96e734e\"},{\"acheneID\":\"http://dandelion.eu/resource/8c65359fe1fe4c7275b55f2604598278b1448356\"},{\"acheneID\":\"http://dandelion.eu/resource/1598e8c41ac78e0750ea5b1d39cd5ff246938dcc\"},{\"acheneID\":\"http://dandelion.eu/resource/0084b0fcd394c46633d53b1bc848154ae96fd728\"},{\"acheneID\":\"http://dandelion.eu/resource/45c35763b5149adab02c2ba4298f721f7721d3c5\"},{\"acheneID\":\"http://dandelion.eu/resource/fa4490c57d31c33a16cbb4917b13b89c3d8902f1\"},{\"acheneID\":\"http://dandelion.eu/resource/50f23d732c6ff92e9154e1cecdd4c15aea55157e\"},{\"acheneID\":\"http://dandelion.eu/resource/3357451f9124524458cd25b2aae823c59bf27c66\"},{\"acheneID\":\"http://dandelion.eu/resource/675332a8cf4aa39513afd44ffc49a08c62530b21\"},{\"acheneID\":\"http://dandelion.eu/resource/d4e4d26f77f62e659b1fe8ee9397aa94cf33f336\"},{\"acheneID\":\"http://dandelion.eu/resource/9460df5d195a719ffd82de4c6fccc499800f7d23\"},{\"acheneID\":\"http://dandelion.eu/resource/71812bbbc9b14d785dd931229bb10c93af42c348\"},{\"acheneID\":\"http://dandelion.eu/resource/ed7fb89b875a6f6a5727b049026e39ffc3498860\"},{\"acheneID\":\"http://dandelion.eu/resource/0336d9d81b30641e60109cc770a815d9c54ffec5\"},{\"acheneID\":\"http://dandelion.eu/resource/89ddb2a769fe8fc3b9827e0b3c5496cdb2c2a57a\"},{\"acheneID\":\"http://dandelion.eu/resource/f0b483585c16cdcacece9026eeaf3e9530a62d59\"},{\"acheneID\":\"http://dandelion.eu/resource/e6c8e1540758ceb70422088141248719d659e21f\"},{\"acheneID\":\"http://dandelion.eu/resource/2604cb78e3102629a39090051f83bc3516eef04f\"},{\"acheneID\":\"http://dandelion.eu/resource/2d9c0ef2713f59a9af98b0386a46642edeecf2a9\"},{\"acheneID\":\"http://dandelion.eu/resource/44c21ec38e0b68048c347450e5a5276df44e6049\"},{\"acheneID\":\"http://dandelion.eu/resource/2aa75e8295e2ed59f482c5c7bbb57a46a6852212\"},{\"acheneID\":\"http://dandelion.eu/resource/34941091dadfc7496139af7ddac263022ca8e0b6\"},{\"acheneID\":\"http://dandelion.eu/resource/75300e6be7f8f5e9a7bc3953e7ed7d0f4ea17a8e\"},{\"acheneID\":\"http://dandelion.eu/resource/2df2571a73c09f3ba3d38cd9462f19332bab687b\"},{\"acheneID\":\"http://dandelion.eu/resource/496c9fc3cdcedc0fe1277a4690e9372f3f69a5ac\"},{\"acheneID\":\"http://dandelion.eu/resource/8d2b4c064865ae3907c4bd3357de4c1a8b47cb02\"},{\"acheneID\":\"http://dandelion.eu/resource/168e77b7a59827343ed6af0688b7902b9c09f988\"},{\"acheneID\":\"http://dandelion.eu/resource/b273298fbcda26f65ec51aa240ef4d9375ff7b3d\"},{\"acheneID\":\"http://dandelion.eu/resource/5f37c38f6f5fb08ce904b966f6a065761e0dd366\"},{\"acheneID\":\"http://dandelion.eu/resource/13914b1bd7d09e5a75fdb8301be928661976e5ac\"},{\"acheneID\":\"http://dandelion.eu/resource/e62dd1bce9888262b0acde34dc934db338f338ec\"},{\"acheneID\":\"http://dandelion.eu/resource/ac73349e7663a62cef32c2f137d70d664078e30a\"},{\"acheneID\":\"http://dandelion.eu/resource/c8d49243eb74694f59e732732b778dfc900d9f0e\"},{\"acheneID\":\"http://dandelion.eu/resource/01aa74273ec2cd2ed4d8012d45920066dc4c951a\"},{\"acheneID\":\"http://dandelion.eu/resource/f0d1522266a10ddc91b663ae6d85962a728f086b\"},{\"acheneID\":\"http://dandelion.eu/resource/6f4b9a3c297c9b773f4de5097390a1f2b645387a\"},{\"acheneID\":\"http://dandelion.eu/resource/f821aedcf5feaf4b3db8caca375d0e26bc34484e\"},{\"acheneID\":\"http://dandelion.eu/resource/2a775c259d14b2ca7d8e4c5b9f3fcd134bf20a80\"},{\"acheneID\":\"http://dandelion.eu/resource/c449b7aed3f24afc983f4df3bd5a7016b61f25eb\"},{\"acheneID\":\"http://dandelion.eu/resource/8f55cef3010fdba068f2836e123e2d44f82d1943\"},{\"acheneID\":\"http://dandelion.eu/resource/5c762028ebf5bbbf37cf43869de096d0c9e247b6\"},{\"acheneID\":\"http://dandelion.eu/resource/c44a654834cf0b843c2944a2cbd06c6a795a527b\"},{\"acheneID\":\"http://dandelion.eu/resource/3a11b470417faa2e9d58d83d8f16331f80ce54df\"},{\"acheneID\":\"http://dandelion.eu/resource/e1fe6a8c38db5667509e5ce763f68bdfd0c6002b\"},{\"acheneID\":\"http://dandelion.eu/resource/f2549539de2571f53a17d598771de28b1026712a\"},{\"acheneID\":\"http://dandelion.eu/resource/9dcc7b0189cb6df0ddf6fe727fe260a7a4b1938f\"},{\"acheneID\":\"http://dandelion.eu/resource/d95d96177a14a75479be1467023c768ad8510076\"},{\"acheneID\":\"http://dandelion.eu/resource/ea6aeca2799d4c5f250dd14e77b370d9e5b9907e\"},{\"acheneID\":\"http://dandelion.eu/resource/4cb6613475bd0f45fcaa6217c28c97ae6fac89ed\"},{\"acheneID\":\"http://dandelion.eu/resource/5a0d919c338fd26ea538c21c19e35c46d0095be3\"},{\"acheneID\":\"http://dandelion.eu/resource/758440d6bd65090bcaa28bc49b19e649039db700\"},{\"acheneID\":\"http://dandelion.eu/resource/5a9519d55d6097985e9c09e424d69c136cec5c4e\"},{\"acheneID\":\"http://dandelion.eu/resource/8df2cedeeb6429215a3ecae1d83ac8ecff2a3f1b\"},{\"acheneID\":\"http://dandelion.eu/resource/bb8a55246da45d2e2dcc1a33c8ead4e195c6e7ce\"},{\"acheneID\":\"http://dandelion.eu/resource/e6abb63fe4bebc6c526a7ef43b2f22ee8229d6c6\"},{\"acheneID\":\"http://dandelion.eu/resource/00eea33c3aab8e7b40065a4de9c645a5b2d0acb8\"},{\"acheneID\":\"http://dandelion.eu/resource/efe5d56782907637cc8d9bcc01cbf35986e30f78\"},{\"acheneID\":\"http://dandelion.eu/resource/344df122248145797b3aaed6f702c469f96ad407\"},{\"acheneID\":\"http://dandelion.eu/resource/d10dad6976dfd8185ea631459a4324733534c310\"},{\"acheneID\":\"http://dandelion.eu/resource/a08a9f034be17adfc0112c367d4485947d8e1c82\"},{\"acheneID\":\"http://dandelion.eu/resource/a327634d50b5ed093728d8a2994e96d2fdfbd913\"},{\"acheneID\":\"http://dandelion.eu/resource/4a836b0895d01177fb389222ea6d927f81282fc4\"},{\"acheneID\":\"http://dandelion.eu/resource/05f2aef111c9628c8ca1c8c1386e0e77f088e840\"},{\"acheneID\":\"http://dandelion.eu/resource/a2b9b00e285b01750d4ae867cfeb7b4f5004492f\"},{\"acheneID\":\"http://dandelion.eu/resource/eb8a8d7ba7149fcf20dacff6db5d57ba12913af5\"},{\"acheneID\":\"http://dandelion.eu/resource/ca4baa372108999867b2dff43e077ea489821aab\"},{\"acheneID\":\"http://dandelion.eu/resource/f39d9ff75e3a510d6ab63386f5d792f509f1e472\"},{\"acheneID\":\"http://dandelion.eu/resource/1e6c6a49428e7370a358df882bc93f1c0121bcf5\"},{\"acheneID\":\"http://dandelion.eu/resource/0e55367095620850a3ecff67cef3b50a0207d61c\"},{\"acheneID\":\"http://dandelion.eu/resource/3cde9eb3ba696fe41e1fb858ba7fc1ebf0a052ff\"},{\"acheneID\":\"http://dandelion.eu/resource/c8790c6c638608615ed3eb5459a7f5e0bd301386\"},{\"acheneID\":\"http://dandelion.eu/resource/999dde5ae53596da5fc6d56e8c73da852acbfa13\"},{\"acheneID\":\"http://dandelion.eu/resource/a453fdda4bdeae72c312a3125e39595073641c2f\"},{\"acheneID\":\"http://dandelion.eu/resource/8fd907967057e1364ef6cf7d093b537a1572ea86\"},{\"acheneID\":\"http://dandelion.eu/resource/0293633b5dce4a0745ff11c9ad74fb7d6a4cb9cb\"},{\"acheneID\":\"http://dandelion.eu/resource/b8e1d4714ad6229619a0d1f98e2e8a890f97c9a2\"},{\"acheneID\":\"http://dandelion.eu/resource/ed6094ce503efe06e98e33bc876f7ed4c0b54613\"},{\"acheneID\":\"http://dandelion.eu/resource/3a2748db05ab879ab6c6f06f111a9d17675d3226\"},{\"acheneID\":\"http://dandelion.eu/resource/ccee3e6503a2caa79d6f35ed6cb7b038a0db127c\"},{\"acheneID\":\"http://dandelion.eu/resource/2ecb60beaf069b0064047e5ed875312c69667a20\"},{\"acheneID\":\"http://dandelion.eu/resource/7e9759e5f2dbae72b4b81321f41694ad154b8799\"},{\"acheneID\":\"http://dandelion.eu/resource/29efb82146e339b658485ebfddda4e01bfb7a6bc\"},{\"acheneID\":\"http://dandelion.eu/resource/c650f107b15b2cb8e6a08883f58537ca1dce872e\"},{\"acheneID\":\"http://dandelion.eu/resource/d7e4e60fe081899f9e58b61f9b237b02abee635e\"},{\"acheneID\":\"http://dandelion.eu/resource/cfa9cdc5ae3ae446180e55647b56a2d6195b5c4f\"},{\"acheneID\":\"http://dandelion.eu/resource/a5fcaf8b13c6e1e66f0a59b6ab026866a1ea0c89\"},{\"acheneID\":\"http://dandelion.eu/resource/59ec7e84e846a471fa21bf5f9f77d6bf86023537\"},{\"acheneID\":\"http://dandelion.eu/resource/4d6331273c097b204f79d280ab20568f61ba15d7\"},{\"acheneID\":\"http://dandelion.eu/resource/fc1247fbcce68d3b924cee5eec954b3daa3643da\"},{\"acheneID\":\"http://dandelion.eu/resource/289356c061427ef3497d2f5fadf2cd2c94c5e10f\"},{\"acheneID\":\"http://dandelion.eu/resource/9577df23049dea8df72f71c51fe7fa52ad4b852d\"},{\"acheneID\":\"http://dandelion.eu/resource/923280113059163903e633163b341f9b251ee11c\"},{\"acheneID\":\"http://dandelion.eu/resource/7bef179bc481e2431bce931290497c256c390ab2\"},{\"acheneID\":\"http://dandelion.eu/resource/39e5bd69b4ece468d87ef90fc0fc67acc622c0e8\"},{\"acheneID\":\"http://dandelion.eu/resource/ff81a2cbde74672cba3283923cdfe00a947074b3\"},{\"acheneID\":\"http://dandelion.eu/resource/761d669662e9da6637389639c94389e8345c4239\"},{\"acheneID\":\"http://dandelion.eu/resource/75ec257031361c6b2cf96ddbf6c512d0ceb10aaf\"},{\"acheneID\":\"http://dandelion.eu/resource/6427fe68c7ea513af242d45f9c8e8404b7afd1c7\"},{\"acheneID\":\"http://dandelion.eu/resource/6da57080e9d60d2f75bfa4bfc5879da4073b5675\"},{\"acheneID\":\"http://dandelion.eu/resource/7590a581364a0c2c9df0305d17a5b6f5d4d5214f\"},{\"acheneID\":\"http://dandelion.eu/resource/f29dc54843394346e54f462c52bfee307b7e4203\"},{\"acheneID\":\"http://dandelion.eu/resource/448188f447f66ed726bd184095f3c48b6b963190\"},{\"acheneID\":\"http://dandelion.eu/resource/374e0c6cb26fd11040416ddd72f0aab9e3fd54c9\"},{\"acheneID\":\"http://dandelion.eu/resource/1c3359d0f87832dbe4b44282dc967380bd424abb\"},{\"acheneID\":\"http://dandelion.eu/resource/efd14a01a0ec2a09c8740c30cba1009799cf6ba5\"},{\"acheneID\":\"http://dandelion.eu/resource/6e94d3075afe867b4784046621b967cb3ed26246\"},{\"acheneID\":\"http://dandelion.eu/resource/50389b1d592eb8a946e51ddccea54f60b035283b\"},{\"acheneID\":\"http://dandelion.eu/resource/93327ad32c349084574e988ea73e05e941c63b11\"},{\"acheneID\":\"http://dandelion.eu/resource/f51a8a3ba468bf6b4e827524111a7222d7bd3854\"},{\"acheneID\":\"http://dandelion.eu/resource/17d6ecba09d6495a5f2965b5071e4ec539044400\"},{\"acheneID\":\"http://dandelion.eu/resource/2425ca3953db297f8763a455f2fb0631a98b3eea\"},{\"acheneID\":\"http://dandelion.eu/resource/7f9afa9a8fe5fe93abcb70caf65f472a9823cef7\"},{\"acheneID\":\"http://dandelion.eu/resource/2dc9853b0a21b1417c79ba29ac695338d9bf7be7\"},{\"acheneID\":\"http://dandelion.eu/resource/d41d00949f83c68e80dec6fec34ff889255bb7d5\"},{\"acheneID\":\"http://dandelion.eu/resource/5a772e1e3c04de566fd48497792ba2fa063661dd\"},{\"acheneID\":\"http://dandelion.eu/resource/cb6c01c3c437c2d6c745c88ae9c182abac1f1724\"},{\"acheneID\":\"http://dandelion.eu/resource/1862c0bd9016379d733e5a85c6fc359036265291\"},{\"acheneID\":\"http://dandelion.eu/resource/1b807f1263f62165345f250965ce775e19314049\"},{\"acheneID\":\"http://dandelion.eu/resource/f0521f5c54a4b87563fabc1b223c2207a7f52938\"},{\"acheneID\":\"http://dandelion.eu/resource/c14ec911e87470b464f89ffd56ab88341fa75c68\"},{\"acheneID\":\"http://dandelion.eu/resource/cd14f54f8fb59c4a0b64ede792711f94e8236a8a\"},{\"acheneID\":\"http://dandelion.eu/resource/5bcc91dac1a7e33f19bc03cf1f5fe342ed5d45d6\"},{\"acheneID\":\"http://dandelion.eu/resource/563a7e3fd78f242b90cfb8bdd23bb188f0368977\"},{\"acheneID\":\"http://dandelion.eu/resource/c5dbdd0edbc6d6043e140336d1ea508aef93d92e\"},{\"acheneID\":\"http://dandelion.eu/resource/147f6ec9fad66a4dec2eac07b2278c800290880a\"},{\"acheneID\":\"http://dandelion.eu/resource/b2f5de461716cca1605262b389497f8bc6f61fbd\"},{\"acheneID\":\"http://dandelion.eu/resource/b937f21a3b33597ade6e54aec648b8d4cc562f4b\"},{\"acheneID\":\"http://dandelion.eu/resource/8abea025175d8d365e5d90b5b4b38263822d0dba\"},{\"acheneID\":\"http://dandelion.eu/resource/bb27ec8159c448c75187f81a27bfc80bc4851c0b\"},{\"acheneID\":\"http://dandelion.eu/resource/7735c80a349c5cff8f8666c3216fe08244f8a2d7\"},{\"acheneID\":\"http://dandelion.eu/resource/c6a4fb6ea046ff358865e3c013a65e085662a317\"},{\"acheneID\":\"http://dandelion.eu/resource/dd2f4db7fbf21c84e23bb1773a01b6493f25f637\"},{\"acheneID\":\"http://dandelion.eu/resource/649511510c2f83311881e803fb3ec7e478951eca\"},{\"acheneID\":\"http://dandelion.eu/resource/c0b46c2e9a9c95a72f01802fc894edd28f9cfc2c\"},{\"acheneID\":\"http://dandelion.eu/resource/395317fde3e64c82814b8b98e07efacc5a8af89a\"},{\"acheneID\":\"http://dandelion.eu/resource/2dda2f2add947a26c6f1795120f8debc739fdf3c\"},{\"acheneID\":\"http://dandelion.eu/resource/720df0324e30429be1febedbdaa53104ae59c6eb\"},{\"acheneID\":\"http://dandelion.eu/resource/bb89e398d70ae4bf92a365a29d69871773febf1f\"},{\"acheneID\":\"http://dandelion.eu/resource/0d0662b69e0df2a383739a6c6c69e13d596de529\"},{\"acheneID\":\"http://dandelion.eu/resource/bc0a110ea0d6797fd78c6a972d9b0f976067b31a\"},{\"acheneID\":\"http://dandelion.eu/resource/0e3dacb8c2d03c40578050974d902494237cdcdd\"},{\"acheneID\":\"http://dandelion.eu/resource/402edbd673b7152590b42400ed41763f1142253d\"},{\"acheneID\":\"http://dandelion.eu/resource/7ac2e46eafa9e5667447a42f90bb3a26079f9e50\"},{\"acheneID\":\"http://dandelion.eu/resource/d7917f3a0ba1fe67eb1a66582f811b95fd22f434\"},{\"acheneID\":\"http://dandelion.eu/resource/89764a04b3eff090346d0c1151e7ae2c1085eb75\"},{\"acheneID\":\"http://dandelion.eu/resource/a7a3732c936fba238b14737ad265699a0bcc0f84\"},{\"acheneID\":\"http://dandelion.eu/resource/a8ae43d6b2806dfff6bdb48ca8e8fd9cb4932c11\"},{\"acheneID\":\"http://dandelion.eu/resource/7ad56bcbfd3db32b6d142a3277e4d3602df917fe\"},{\"acheneID\":\"http://dandelion.eu/resource/a0c01fd2d60dabf6bdb69f71daa1f31e71e90e9d\"},{\"acheneID\":\"http://dandelion.eu/resource/fd88f479a0318824dde465f6ba7397602fdccd84\"},{\"acheneID\":\"http://dandelion.eu/resource/d0703bbf54d76dceb4e2d5c8c01ba390b4018662\"},{\"acheneID\":\"http://dandelion.eu/resource/72c0f3ff95d0de837d47a58ea3e050ebe669c9d2\"},{\"acheneID\":\"http://dandelion.eu/resource/bdb7c2c724dc4f06e870b4e89b3eebcfc1268356\"},{\"acheneID\":\"http://dandelion.eu/resource/471ed410e5eec6b3e7600dc700579f3311cba288\"},{\"acheneID\":\"http://dandelion.eu/resource/648b235607443f27a80d316ce373393d41734d89\"},{\"acheneID\":\"http://dandelion.eu/resource/986fed790d19e72f065f848cae6e70b8576e9d26\"},{\"acheneID\":\"http://dandelion.eu/resource/59444c1bb38a544d196f78ab47a67f235a1a3d7a\"},{\"acheneID\":\"http://dandelion.eu/resource/04aeec777ee2a90c02e2d9cd7b76f1bd644ce936\"},{\"acheneID\":\"http://dandelion.eu/resource/48a7dab7c6049673f3e1316721130e168eb03c84\"},{\"acheneID\":\"http://dandelion.eu/resource/2261616b77714ef87a958db038e615949678f66c\"},{\"acheneID\":\"http://dandelion.eu/resource/df18751195f7aa299e5328790defacc9f78b1607\"},{\"acheneID\":\"http://dandelion.eu/resource/283c133e05c58b72e6f2ce113dd7ab3b7fd6f7a2\"},{\"acheneID\":\"http://dandelion.eu/resource/86f02380eade38bfa5b40eb81466a2e0d7cb8d0b\"},{\"acheneID\":\"http://dandelion.eu/resource/43ab311e1a41a906b2d0641f2667aca25ea54016\"},{\"acheneID\":\"http://dandelion.eu/resource/375e9686695ff9c454757d7e793c35e45450d9fc\"},{\"acheneID\":\"http://dandelion.eu/resource/81f1bc35e329baf6a2c1e0b06f77f56e37256515\"},{\"acheneID\":\"http://dandelion.eu/resource/9fd2e35b74956cf3fde1eb727f8cf89265e7d8a4\"},{\"acheneID\":\"http://dandelion.eu/resource/da3e19d6b97c20def3283bfd39ed80894d25ed8b\"},{\"acheneID\":\"http://dandelion.eu/resource/b5e1c2e0c2d77f4c5f33c1654c2094e3cce2b174\"},{\"acheneID\":\"http://dandelion.eu/resource/3c484f85e16133e488a603a1dfbbc4b0ace2a6de\"},{\"acheneID\":\"http://dandelion.eu/resource/4668efe0aae38991f04bd9198ef06cb3cecca0fc\"},{\"acheneID\":\"http://dandelion.eu/resource/24339d47ff1065b0d6c991f5a7b8071bc9f87000\"},{\"acheneID\":\"http://dandelion.eu/resource/618b8c0dc50282ecfab34f868e57acf36a9d55eb\"},{\"acheneID\":\"http://dandelion.eu/resource/117f22b2c92234a78b8da382b4930f73fbd108a5\"},{\"acheneID\":\"http://dandelion.eu/resource/97d5f3aa8f2e26c2fed462eeffd518643b8439d2\"},{\"acheneID\":\"http://dandelion.eu/resource/3ce40d27163d8298ebfe39858a875d773ca38d86\"},{\"acheneID\":\"http://dandelion.eu/resource/5e1c3331871586899a707fee24e30421c6d4e15b\"},{\"acheneID\":\"http://dandelion.eu/resource/1aa3c57e73c4741fab5ed9bc7c1d9e37258fbf7f\"},{\"acheneID\":\"http://dandelion.eu/resource/b703a17a6056af454798c6dee17175c0aa6d3dab\"},{\"acheneID\":\"http://dandelion.eu/resource/137de43ce961fb859ed00cb2c98b05b475845697\"},{\"acheneID\":\"http://dandelion.eu/resource/514b2109d39964c5d0003180a4c04f486ef734df\"},{\"acheneID\":\"http://dandelion.eu/resource/65a1360a657df2786fcf1d3ff5deafca774f0951\"},{\"acheneID\":\"http://dandelion.eu/resource/bdbb577d50c18a6b274020a57bc0936e316338b1\"},{\"acheneID\":\"http://dandelion.eu/resource/d14068b81f88ef080dceaad40180a51f1c7ad95d\"},{\"acheneID\":\"http://dandelion.eu/resource/cf6058d4cb4b09b4ac46f6aa5dc5bfc38ec8c73b\"},{\"acheneID\":\"http://dandelion.eu/resource/0e9ae4ccb5f7f3853ed8e43c85cc7bec6c062c3c\"},{\"acheneID\":\"http://dandelion.eu/resource/b6f0e76580b538774a981e877e85a990082390ab\"},{\"acheneID\":\"http://dandelion.eu/resource/4951f91df2236cd77e93cbef20739393a9fa7f08\"},{\"acheneID\":\"http://dandelion.eu/resource/1d364950bd7359e87a2762d7bbc1afa59901e5ff\"},{\"acheneID\":\"http://dandelion.eu/resource/ba945c97217e8fbaf4a5b8f157b8539c98a32956\"},{\"acheneID\":\"http://dandelion.eu/resource/f4b1cc0cfecf06e1686c48ab7e1ad87e5194c99f\"},{\"acheneID\":\"http://dandelion.eu/resource/c15c411abd818892111d486b5c67d7dede244654\"},{\"acheneID\":\"http://dandelion.eu/resource/099a5c6a5eb580162cbbece0382710cff7c79443\"},{\"acheneID\":\"http://dandelion.eu/resource/e72f7016ca85683cacc94e6a32ac757768c09fba\"},{\"acheneID\":\"http://dandelion.eu/resource/52e7919b80975f44ed83a84a9134e5329b304cf0\"},{\"acheneID\":\"http://dandelion.eu/resource/94e11d2e81e2f09acaefc05cd4bf167bf4facb4d\"},{\"acheneID\":\"http://dandelion.eu/resource/76d229f05a12b75ae3836afe9558a12a19f56873\"},{\"acheneID\":\"http://dandelion.eu/resource/d1e24e7b73efef90328f1d7b65909f1498eadfc8\"},{\"acheneID\":\"http://dandelion.eu/resource/fbdf2a89e421a53663a9002237ad186d411ad3d2\"},{\"acheneID\":\"http://dandelion.eu/resource/06e48a1f12eeb5a5fe0b4063c38beff2f2727bff\"},{\"acheneID\":\"http://dandelion.eu/resource/fcbc49a7ecfc145de6ed7cf05a26a633ded4f8b4\"},{\"acheneID\":\"http://dandelion.eu/resource/073359121c4f0967a4acaee510208145fdb2ca1d\"},{\"acheneID\":\"http://dandelion.eu/resource/2144389644da95b967d51616efde359bc3623231\"},{\"acheneID\":\"http://dandelion.eu/resource/88abc3fc13807049dd0c501edaf16e70eb96fd81\"},{\"acheneID\":\"http://dandelion.eu/resource/5a3ed2a32c5362fbd41aae4cff46842a28531f2f\"},{\"acheneID\":\"http://dandelion.eu/resource/577b2ea5946317c87288d9b357387f2339e8815a\"},{\"acheneID\":\"http://dandelion.eu/resource/cdbf93a7e4639292f372286414fd1a344054cca7\"},{\"acheneID\":\"http://dandelion.eu/resource/fab3e7691bf3c2b14e1b480258b6abcd8bde0981\"},{\"acheneID\":\"http://dandelion.eu/resource/b8fc2d48f78a8dfe45a62e9a6a2c81076dee35ee\"},{\"acheneID\":\"http://dandelion.eu/resource/634f3300cde09bbfa467ecb57c6ec92182924fe2\"},{\"acheneID\":\"http://dandelion.eu/resource/18e5ef9b64472b5401f4637cbdafc680bbe1f46c\"},{\"acheneID\":\"http://dandelion.eu/resource/3bc4a49a17d8856816933bc6912be3178a944b50\"},{\"acheneID\":\"http://dandelion.eu/resource/8295a97fb79a242d891fa457a17717735980d131\"},{\"acheneID\":\"http://dandelion.eu/resource/adbe847139109128e5d63c75ea8ac81a95a33c20\"},{\"acheneID\":\"http://dandelion.eu/resource/b9bd7e04edc9296322f3904cc18d5417dfff070a\"},{\"acheneID\":\"http://dandelion.eu/resource/eb0583b73de89c6b09930bcd489cc05a155fac26\"},{\"acheneID\":\"http://dandelion.eu/resource/903cc954432ded5f321a075d33327418b81dc7a5\"},{\"acheneID\":\"http://dandelion.eu/resource/a6968ffb1bdf66146d0fda37eb756f89e3c657d2\"},{\"acheneID\":\"http://dandelion.eu/resource/b94c524d2c20efc01163fcd2484ea318a464401a\"},{\"acheneID\":\"http://dandelion.eu/resource/e4e4768f0b63c163949074bd27c02e4f7af0b593\"},{\"acheneID\":\"http://dandelion.eu/resource/e8479f2f815b504968ab55b7e9b99265690a736b\"},{\"acheneID\":\"http://dandelion.eu/resource/370d7af1d2bec99337e0de5067a43ecaf6f79616\"},{\"acheneID\":\"http://dandelion.eu/resource/e4ab1a1099dc4ded7c3d2b3e3bc1e2b9f24b2548\"},{\"acheneID\":\"http://dandelion.eu/resource/59736c32e3ad55ed4573038e25e3376e1539c00a\"},{\"acheneID\":\"http://dandelion.eu/resource/9c87e82a9daa23d3c6e7ce55b9cf085ed2d464f7\"},{\"acheneID\":\"http://dandelion.eu/resource/73862c2f2564c1a9c7fdf81e5b2945f28061e9bb\"},{\"acheneID\":\"http://dandelion.eu/resource/7aa7aa340f7b4851d5a5be3f305c0d2d59f10977\"},{\"acheneID\":\"http://dandelion.eu/resource/f5c75d45f8f5a077115abe0000a59ba98c4f5c18\"},{\"acheneID\":\"http://dandelion.eu/resource/fc49ffc0f49ba4dbfe77a6f5fd869fff88ae5304\"},{\"acheneID\":\"http://dandelion.eu/resource/863c2c827b004c78c0aacc84a10974cab9bac060\"},{\"acheneID\":\"http://dandelion.eu/resource/f14460fc3fcdff5be803d802c8aec2992a6b821e\"},{\"acheneID\":\"http://dandelion.eu/resource/db4a45d0e670d6a41ac0f19b56a7b94b349b7224\"},{\"acheneID\":\"http://dandelion.eu/resource/ddefa66485ce0ea5cfe5edf66c5ea81f0d4d67bd\"},{\"acheneID\":\"http://dandelion.eu/resource/8daf8491a6af93d14de5cee7fa328b541a2f60e5\"},{\"acheneID\":\"http://dandelion.eu/resource/727428986c329cfaaa8c3a4de2aa96629353a8ac\"},{\"acheneID\":\"http://dandelion.eu/resource/a36b314363d6155e3fd1eb8f7ab2c77dd6032f60\"},{\"acheneID\":\"http://dandelion.eu/resource/c24a706f41984ca71142b97182acca86ea8578b0\"},{\"acheneID\":\"http://dandelion.eu/resource/d16c12eb53ce919436ddc7af32a418e921fba904\"},{\"acheneID\":\"http://dandelion.eu/resource/a735cf2ab1c4b6a6319408e270af43f586a8446d\"},{\"acheneID\":\"http://dandelion.eu/resource/faaeef1ac68240f111db16a16913b0f4cab47a6a\"},{\"acheneID\":\"http://dandelion.eu/resource/e7c45310a71610a16b16ef47e2f4815c3592f115\"},{\"acheneID\":\"http://dandelion.eu/resource/a9a10aa8012390da3d2b698f3166c4698112c998\"},{\"acheneID\":\"http://dandelion.eu/resource/6f98d9fe101aeae05b11bee84366a0e7cf5fbaed\"},{\"acheneID\":\"http://dandelion.eu/resource/6efe6167f7450c2817487336cef9324cca04f59a\"},{\"acheneID\":\"http://dandelion.eu/resource/d84b238feb1f953d10fa2282cc98bea0979c5192\"},{\"acheneID\":\"http://dandelion.eu/resource/41ea6588eba27a856788dde1c8003d6ec590112a\"},{\"acheneID\":\"http://dandelion.eu/resource/f13151b696ee57a3f73049f16ebfce92d2c2bbe6\"},{\"acheneID\":\"http://dandelion.eu/resource/0a1047a2b717856a661731adae951ff139e1b042\"},{\"acheneID\":\"http://dandelion.eu/resource/76b0b787d85f98c3314e91dd71177831323ad4ed\"},{\"acheneID\":\"http://dandelion.eu/resource/bde1fa5ba4578e96ebb1b3f7b1c602f8f45643aa\"},{\"acheneID\":\"http://dandelion.eu/resource/f6d4ecbec4c19c9733ecbbf703ac06bf17676ae1\"},{\"acheneID\":\"http://dandelion.eu/resource/73b913071fd6b3bab103e70c74b87af1262dc475\"},{\"acheneID\":\"http://dandelion.eu/resource/86e2e07429262cd2a1a84261f038fea32ce72c7b\"},{\"acheneID\":\"http://dandelion.eu/resource/1522c95e820d6794b95865d175cd26243a654799\"},{\"acheneID\":\"http://dandelion.eu/resource/ccd22399895b5a19e1ab50e707dbf1aff4a68f18\"},{\"acheneID\":\"http://dandelion.eu/resource/ebcebb1e244a6ad5e4d94c71652c78275de1bc28\"},{\"acheneID\":\"http://dandelion.eu/resource/61a1cad0a3a058f11647eb9b17001696d3dc9166\"},{\"acheneID\":\"http://dandelion.eu/resource/d045cd584cd56561e7dd8d4b9e692b30dcdeb3d8\"},{\"acheneID\":\"http://dandelion.eu/resource/c6884b5148c36667145d46287feac5198048a0cb\"},{\"acheneID\":\"http://dandelion.eu/resource/f46bf934501ff0ae9e1dd673fbcb6062d9360a02\"},{\"acheneID\":\"http://dandelion.eu/resource/2159215216a29595ec41571e1837db717a8c0d62\"},{\"acheneID\":\"http://dandelion.eu/resource/5cba8823c186367faf7dc52349aa56dc5463d058\"},{\"acheneID\":\"http://dandelion.eu/resource/9520c9cd139425d0938d99fb52de3c8ecfb32807\"},{\"acheneID\":\"http://dandelion.eu/resource/2dd7ebcb9e46335d5eefefcb7d16144a7d83429f\"},{\"acheneID\":\"http://dandelion.eu/resource/f54779cd3fcdb6d0493dd0be34bd21a635bfb81e\"},{\"acheneID\":\"http://dandelion.eu/resource/ff919ac6dc48992c246a8e4471c590893b4ae45c\"},{\"acheneID\":\"http://dandelion.eu/resource/844d6de2bbcba5a5d0cb81a9a8e64a00a97610c6\"},{\"acheneID\":\"http://dandelion.eu/resource/face0d044dd4499e6ad1498d0f41b0a560943ae9\"},{\"acheneID\":\"http://dandelion.eu/resource/fecf9f1b5ed6be4e2f885f0f38eb7cf03146cb44\"},{\"acheneID\":\"http://dandelion.eu/resource/39855a78edd007e5d30e74abd1a7fe48b5f65371\"},{\"acheneID\":\"http://dandelion.eu/resource/430982a2bc38560d761a51a2a930b59824adf58b\"},{\"acheneID\":\"http://dandelion.eu/resource/c4f55c8b27ea7f82b8e67e977ae4720424722d19\"},{\"acheneID\":\"http://dandelion.eu/resource/a2f7f1e2d2e2af2de6250ff8adcf1bf7d145745e\"},{\"acheneID\":\"http://dandelion.eu/resource/5a49c539bb64b4d76f7d403f9ac14656d8e53036\"},{\"acheneID\":\"http://dandelion.eu/resource/066e8c852ea1a8a2e964bc9af30e771531133ba1\"},{\"acheneID\":\"http://dandelion.eu/resource/697b773e13a1508e3394e5c0095f8c768102d9c3\"},{\"acheneID\":\"http://dandelion.eu/resource/0b8eee838dd912074ea8699a98e548d5bb917ed4\"},{\"acheneID\":\"http://dandelion.eu/resource/9a2b01da2fd84b3c42a2a789d87f86bd01997edf\"},{\"acheneID\":\"http://dandelion.eu/resource/d3fc6a894ab43a1b997c3db4c4367a42838d895a\"},{\"acheneID\":\"http://dandelion.eu/resource/f3dae7c429e408dd8098674a4d13306a6e0eaa54\"},{\"acheneID\":\"http://dandelion.eu/resource/565e59fdea6cdc06b0c63ad1a54cbff27c9a1892\"},{\"acheneID\":\"http://dandelion.eu/resource/638175ead794a15d4a1fb3918b2948b9dd927181\"},{\"acheneID\":\"http://dandelion.eu/resource/6aa512d33ca7e35b4dd800ba05fef48b657336af\"},{\"acheneID\":\"http://dandelion.eu/resource/c7dd6de5e744b0346c6dafc215396967cb2642cf\"},{\"acheneID\":\"http://dandelion.eu/resource/fa6aeee369ce8c8da9167acaa1a805f22c3ad31d\"},{\"acheneID\":\"http://dandelion.eu/resource/8382fb91fb30d1404938a2cf67c34646cb946ef5\"},{\"acheneID\":\"http://dandelion.eu/resource/7e1bb0cedbaa8e6c32317eba04f2bb7c647b6322\"},{\"acheneID\":\"http://dandelion.eu/resource/a066e9fe12fb6baa1fe6b9b7f22545b0c82686b0\"},{\"acheneID\":\"http://dandelion.eu/resource/2176a91004c78a0b474d8184739fa5af31e325d5\"},{\"acheneID\":\"http://dandelion.eu/resource/a4b8ecde340759ff31ceb7bba08ea0dc843cc977\"},{\"acheneID\":\"http://dandelion.eu/resource/a0adb880806e15c83a7aab07219204d890bb89ae\"},{\"acheneID\":\"http://dandelion.eu/resource/6b132b58f73c7aa94ab5cf568dc1aec8984839fb\"},{\"acheneID\":\"http://dandelion.eu/resource/666fe824aa93a7e7e8d2caa49eb1bf06cc1905af\"},{\"acheneID\":\"http://dandelion.eu/resource/6b7dcb016f5e95bdc109414647dc1335381c2bde\"},{\"acheneID\":\"http://dandelion.eu/resource/b3bbd99e446d8753e04f3ce23aab885828a6f8d7\"},{\"acheneID\":\"http://dandelion.eu/resource/d715eb44634a221de3d7e9ef6301ab782ff0cb71\"},{\"acheneID\":\"http://dandelion.eu/resource/10394a181507d23d91a408255baf003892436cb4\"},{\"acheneID\":\"http://dandelion.eu/resource/0819246e1469da2e009e5091c8c42bf6c514c0d0\"},{\"acheneID\":\"http://dandelion.eu/resource/0b06297900999f918724a9d6508f982faa5736aa\"},{\"acheneID\":\"http://dandelion.eu/resource/960e1b5b009c30cd9d6b29bc883537f28de406ec\"},{\"acheneID\":\"http://dandelion.eu/resource/1970adb4291debac1d5de3d1616310bec21018d0\"},{\"acheneID\":\"http://dandelion.eu/resource/bc69fce13f0d24b95a8637461aea9a8d2e370c31\"},{\"acheneID\":\"http://dandelion.eu/resource/e099b06896aa93a3ee43d44870ce1441143486de\"},{\"acheneID\":\"http://dandelion.eu/resource/99706fa8b5ad1f881d39f278560243e2a3a026c5\"},{\"acheneID\":\"http://dandelion.eu/resource/bd56ad086ec34e709cdfb605fd77086abbc92036\"},{\"acheneID\":\"http://dandelion.eu/resource/0c4a88781a418159f269e4ab15c2f2e936f5a1a7\"},{\"acheneID\":\"http://dandelion.eu/resource/dd508120df8bdb3c0d5cfb05daf3925ad9bf6ffd\"},{\"acheneID\":\"http://dandelion.eu/resource/ee6509aff242d32725ed2eae8b3f540548c6de13\"},{\"acheneID\":\"http://dandelion.eu/resource/6d7cc93e79a7f60169eb4d12e4cf95832b4da7cf\"},{\"acheneID\":\"http://dandelion.eu/resource/071d4b62ebf202e2d685b31f9e17b236a9ec0b4e\"},{\"acheneID\":\"http://dandelion.eu/resource/abc4cb4a1895bee61ce0153d028bbdcf26131287\"},{\"acheneID\":\"http://dandelion.eu/resource/9a648a6d372e16c2dfe0de03c7a2793fe48e1de6\"},{\"acheneID\":\"http://dandelion.eu/resource/063dde609e896d8e1d91784105016a958af77e90\"},{\"acheneID\":\"http://dandelion.eu/resource/b8010efe9ac39c7a4a6ddd4749971df83e98f2ab\"},{\"acheneID\":\"http://dandelion.eu/resource/a46cb6214663669fe11cff3e01659fd1e7e3e602\"},{\"acheneID\":\"http://dandelion.eu/resource/088021492be545cbb714c31b0f2d73f6c2228e67\"},{\"acheneID\":\"http://dandelion.eu/resource/4b7e4a29763ff9130889113ad10c71f04335694f\"},{\"acheneID\":\"http://dandelion.eu/resource/264e06f178d1cbae4230f107f40989654f6bfac6\"},{\"acheneID\":\"http://dandelion.eu/resource/04c67672eea58376e025b91ea5b64d3045e361c4\"},{\"acheneID\":\"http://dandelion.eu/resource/2e521fe215f7e266f1022203841cd43b00515345\"},{\"acheneID\":\"http://dandelion.eu/resource/c94d412e222e10dd82981f6a43c3b457a3c516cd\"},{\"acheneID\":\"http://dandelion.eu/resource/5aacb2340adf55d6a176c20cc6d298405072fe11\"},{\"acheneID\":\"http://dandelion.eu/resource/75395164bb5d78e80191085fe3b57bcff82c7c81\"},{\"acheneID\":\"http://dandelion.eu/resource/3dc41a6da4001af5fc1b21545dedd22539108dee\"},{\"acheneID\":\"http://dandelion.eu/resource/070acff0aec015f106f4dc66d58c13fcd8998eac\"},{\"acheneID\":\"http://dandelion.eu/resource/3ef46cce03043b16730f35606bcb3258f85d9a7e\"},{\"acheneID\":\"http://dandelion.eu/resource/06b596a00fc5f31173bb3d24e617b3dff86a40ed\"},{\"acheneID\":\"http://dandelion.eu/resource/3f365da8e14787df1e58616f2f31693fea759356\"},{\"acheneID\":\"http://dandelion.eu/resource/377095baa487af0f7670a478d839ab62a321cefd\"},{\"acheneID\":\"http://dandelion.eu/resource/6fc59b89d191fabba5f81ea25abcbcfa3813bc0f\"},{\"acheneID\":\"http://dandelion.eu/resource/94b6352a2a2609ccecfe60accec957f70bf68bc9\"},{\"acheneID\":\"http://dandelion.eu/resource/35f51c5688d2cfa84528732c5b8cfc9260c4b4d3\"},{\"acheneID\":\"http://dandelion.eu/resource/b453a178037bc0fb8bc87cfaee29131a18f42145\"},{\"acheneID\":\"http://dandelion.eu/resource/0134515ab2bfeaf7b017a23e80ab0fbe5a1bfcf2\"},{\"acheneID\":\"http://dandelion.eu/resource/a149c1555060fefd145642fb7fa26094a801318d\"},{\"acheneID\":\"http://dandelion.eu/resource/94d1e28fb8dbb711c0a565a86bfdf42fe684121e\"},{\"acheneID\":\"http://dandelion.eu/resource/ac13e9395372915b9d19ed0456a7006da0f664aa\"},{\"acheneID\":\"http://dandelion.eu/resource/e77ada031d07a30ec3a39852131f756d3bdd96d6\"},{\"acheneID\":\"http://dandelion.eu/resource/f5ef6a7cfd95e2b744975b703d11c1b0cd1e3c5d\"},{\"acheneID\":\"http://dandelion.eu/resource/3eb2cbba4aaf4a96dd8b60a4f6ca14d8b592f89d\"},{\"acheneID\":\"http://dandelion.eu/resource/a1c4594958ee7d93a6c7f0a681b313d0ddf4a8c9\"},{\"acheneID\":\"http://dandelion.eu/resource/1a80cc3af6a00e97babdc0f0985c8f9ca61b8008\"},{\"acheneID\":\"http://dandelion.eu/resource/ac42f61436962dddfca2d3bb9d46e146a3e9573b\"},{\"acheneID\":\"http://dandelion.eu/resource/b9dcdfda716af51920410dbd9d02622c2e3d9a0b\"},{\"acheneID\":\"http://dandelion.eu/resource/fd955a8983ff05455e735df8f0ab43fc3c416d33\"},{\"acheneID\":\"http://dandelion.eu/resource/22690811f74827cc5102901fbcdb371dbf5f101b\"},{\"acheneID\":\"http://dandelion.eu/resource/b048bb814f2eea761db0445998afb31f73d0c25b\"},{\"acheneID\":\"http://dandelion.eu/resource/03812d7c0ac76e29ec9eec6e37dd09c2229ae2f2\"},{\"acheneID\":\"http://dandelion.eu/resource/6abe2c449edd346c8f3c1311c4ad62ae78a486fd\"},{\"acheneID\":\"http://dandelion.eu/resource/5dc783e9c3986486d3529f68be563b79ab81920b\"},{\"acheneID\":\"http://dandelion.eu/resource/e1ef541d6ae22c74136c190589bb49f4f069f0bc\"},{\"acheneID\":\"http://dandelion.eu/resource/e68fd866343ac2c4395985abbe564ce7b0841376\"},{\"acheneID\":\"http://dandelion.eu/resource/59090cc1b3d0b7810621ce1f42edc7b8437ea56a\"},{\"acheneID\":\"http://dandelion.eu/resource/4e08b0d2122e1ba4470f3670995c67ae30386b20\"},{\"acheneID\":\"http://dandelion.eu/resource/f092a81ca58c9869e67e6917d3c24832744bb0cb\"},{\"acheneID\":\"http://dandelion.eu/resource/eb6078c9d6cf790b932a099bf93ca6e134d3ca3f\"},{\"acheneID\":\"http://dandelion.eu/resource/306ff7e7e3eecc9c1f8cf8f3f481019a82bf066f\"},{\"acheneID\":\"http://dandelion.eu/resource/12bff97d63bdc14b81b235ff71e502eef843b404\"},{\"acheneID\":\"http://dandelion.eu/resource/57063d7ccf1e31298aea6977ceac486058bd4900\"},{\"acheneID\":\"http://dandelion.eu/resource/24b98f33e5bf923f2bb4753758e21dc534ca5adf\"},{\"acheneID\":\"http://dandelion.eu/resource/991d12eb7ce4912868faa3e6c28702a30dff269c\"},{\"acheneID\":\"http://dandelion.eu/resource/99dfb61ba941289efa26b82784aed43a746c9906\"},{\"acheneID\":\"http://dandelion.eu/resource/5fd2806fefc374d639a888e7f93cdbf90a00bb61\"},{\"acheneID\":\"http://dandelion.eu/resource/a79f0ff88f8a57fe2239caa78e996dbca90b62d6\"},{\"acheneID\":\"http://dandelion.eu/resource/27730722fca9c5859a4a07f2e0be8f0e7ca47636\"},{\"acheneID\":\"http://dandelion.eu/resource/9a2e848af583096d71a2ad87c4d5a3884b4783bc\"},{\"acheneID\":\"http://dandelion.eu/resource/f5e173e51965ab998cf68bd980c684a2ebae0b21\"},{\"acheneID\":\"http://dandelion.eu/resource/cdd9e0bf5e97b225373ad58aa0477c5db2e87818\"},{\"acheneID\":\"http://dandelion.eu/resource/d133fb8dc3bcc9111ae7ff2913a92171aa615680\"},{\"acheneID\":\"http://dandelion.eu/resource/a97c91cdd3ee7cd84672c131199f68896f18e751\"},{\"acheneID\":\"http://dandelion.eu/resource/f326ae9f1df50127bb0e8c518e89647217dd87a0\"},{\"acheneID\":\"http://dandelion.eu/resource/0c4b907a039ff498a12e423acd60f1a9a0f6bb68\"},{\"acheneID\":\"http://dandelion.eu/resource/9d4b7cc5dfd9c79b9b0b568d91bad55de1fb9a55\"},{\"acheneID\":\"http://dandelion.eu/resource/4766acf9f658a6e8d1beeafc60afbecfe625e8fb\"},{\"acheneID\":\"http://dandelion.eu/resource/bf41e51191679ddd730dfc4dd62532a19d76fcc4\"},{\"acheneID\":\"http://dandelion.eu/resource/87a2163ae6d10c4fbea8fa6524d5ad17174cacbb\"},{\"acheneID\":\"http://dandelion.eu/resource/ce900069c63efd88775b1f099e7e72348e6d7ad9\"},{\"acheneID\":\"http://dandelion.eu/resource/8d8d8b634fc9d1127655051f48bebef9841b65c7\"},{\"acheneID\":\"http://dandelion.eu/resource/73d0cd875fe50b1de6e5f43036c4585d2cada07b\"},{\"acheneID\":\"http://dandelion.eu/resource/4ee8271ada1c78b06d6b697d0719952bc3056123\"},{\"acheneID\":\"http://dandelion.eu/resource/7c63e32e42715df9ba09277ea28f8758f6e031c8\"},{\"acheneID\":\"http://dandelion.eu/resource/2ef758d0b538f73bf818cfbe440cf7d7f53db53a\"},{\"acheneID\":\"http://dandelion.eu/resource/dd87d6eb1a1bf162cd688a306648c1ba248fc2a6\"},{\"acheneID\":\"http://dandelion.eu/resource/8824a23765c3aca61d05ea7cb3b2afbec4bb47e5\"},{\"acheneID\":\"http://dandelion.eu/resource/c7d13527b76816bf0f936e946754e46dc1a16de6\"},{\"acheneID\":\"http://dandelion.eu/resource/44e3f69b165c9f6fca0b799f8f326a11f4f14fe1\"},{\"acheneID\":\"http://dandelion.eu/resource/5e81ce0072ce4ad1a93fd2f3fafe579d8d85558b\"},{\"acheneID\":\"http://dandelion.eu/resource/466e953bda939f072faa81448e83e27cbf0e73ed\"},{\"acheneID\":\"http://dandelion.eu/resource/3fd665cabbc57f05e6de0740ac912481b826832b\"},{\"acheneID\":\"http://dandelion.eu/resource/6ae8cd63625b7f1aad11a0be5ca0b65456c500eb\"},{\"acheneID\":\"http://dandelion.eu/resource/eed1f2a0b49bfe85b6801552d0be44e462319192\"},{\"acheneID\":\"http://dandelion.eu/resource/44df50374a2b2e1362e4fdbc01e1f045319611a3\"},{\"acheneID\":\"http://dandelion.eu/resource/272c876e5f4cc55cea95df1cd8ac5b9a8e8de5d2\"},{\"acheneID\":\"http://dandelion.eu/resource/f834409c34173f69b2f91d9a296189883bcc265a\"},{\"acheneID\":\"http://dandelion.eu/resource/96a77f22a1a4c1fbe44edcce05ff2b0cc834d7d6\"},{\"acheneID\":\"http://dandelion.eu/resource/5ed7d9dd1cfbc974119bcb3e23252b6461a06bba\"},{\"acheneID\":\"http://dandelion.eu/resource/6fbf065f75ebee5c8830b2f5ea81fc549103f566\"},{\"acheneID\":\"http://dandelion.eu/resource/906648df1fbf823fd7039fdc2bee40f69a725018\"},{\"acheneID\":\"http://dandelion.eu/resource/41c4fe7c0f026a48a0cee11d9e19f2ac471c8f00\"},{\"acheneID\":\"http://dandelion.eu/resource/1b71937699c22510211e87b42cd23cd4bb8cb0db\"},{\"acheneID\":\"http://dandelion.eu/resource/3406da0b9336516435e3fe11b7e1efe0ab0ae6af\"},{\"acheneID\":\"http://dandelion.eu/resource/f903d2f51022eedf91cdd9803bb0f17158bb6006\"},{\"acheneID\":\"http://dandelion.eu/resource/15b174073634a204f91afda45297d4295142e8b8\"},{\"acheneID\":\"http://dandelion.eu/resource/930793b155227308dc168026c0231af9535819b2\"},{\"acheneID\":\"http://dandelion.eu/resource/1534774b8be3e222e7664d93852cb3147ed50784\"},{\"acheneID\":\"http://dandelion.eu/resource/d9901112e949304435ea513f27574e5c6fdd413a\"},{\"acheneID\":\"http://dandelion.eu/resource/0a22c50059a03679caf9c07fadce3497e99af667\"},{\"acheneID\":\"http://dandelion.eu/resource/3a5e964c78eb445d0fd748297d15a866c5e24129\"},{\"acheneID\":\"http://dandelion.eu/resource/7920f3fc88d0a91a8edf1c669d26874abb647340\"},{\"acheneID\":\"http://dandelion.eu/resource/e42529149309ea10e56fc8ed3e4c9eafde15b249\"},{\"acheneID\":\"http://dandelion.eu/resource/c09a23525976d2ea5fba472006b7bff5ce218a57\"},{\"acheneID\":\"http://dandelion.eu/resource/4c54b56961df43fd7a6521f651578a8af3e0d37f\"},{\"acheneID\":\"http://dandelion.eu/resource/c6cb18592a30152d164bf9bee3087c7154c1a890\"},{\"acheneID\":\"http://dandelion.eu/resource/9b5c137fb1e47407dbe44394e54d9ae751fc8305\"},{\"acheneID\":\"http://dandelion.eu/resource/15b2498b84e0d1445a0744fd3afe6f773ff96c59\"},{\"acheneID\":\"http://dandelion.eu/resource/87d3388d92b071cd2707656e9ca08159024f7cc9\"},{\"acheneID\":\"http://dandelion.eu/resource/0f846c284fafa750429dd28dcb9f0de7679cc173\"},{\"acheneID\":\"http://dandelion.eu/resource/6d824754b2337ec80c61381c7e0c58ca0563a083\"},{\"acheneID\":\"http://dandelion.eu/resource/e7109f2ba6988ef80c40b8def76d63ae676e6b85\"},{\"acheneID\":\"http://dandelion.eu/resource/83ecb2514ec2e9278007a08fd06af1dc593af2b9\"},{\"acheneID\":\"http://dandelion.eu/resource/16a2d0d558ddaccd20eb43979661047fdfdb9254\"},{\"acheneID\":\"http://dandelion.eu/resource/0b7ca126471bf34a02ef4591b017367acab82757\"},{\"acheneID\":\"http://dandelion.eu/resource/d920bd4b731c6dc0a7bb2f9b954335c710c3d414\"},{\"acheneID\":\"http://dandelion.eu/resource/875cb0afb243762402ad669914fa9c77837ddb5b\"},{\"acheneID\":\"http://dandelion.eu/resource/a2412151a372a65c8f084a20c967d45aede40cf8\"},{\"acheneID\":\"http://dandelion.eu/resource/34b7facf7379931fda7f8449cd88bb0958ffb390\"},{\"acheneID\":\"http://dandelion.eu/resource/646a03f9636bedf3e73a21371e097439b6b7f6df\"},{\"acheneID\":\"http://dandelion.eu/resource/af3514b2b3c2af676dc6f3674b6402b2f317fca4\"},{\"acheneID\":\"http://dandelion.eu/resource/25fda8052ab50eaf875f2d6cf8c4a49c66018448\"},{\"acheneID\":\"http://dandelion.eu/resource/80efd65507bd4d3d0da6d60a2be851b0726e1204\"},{\"acheneID\":\"http://dandelion.eu/resource/4a0a7816366991b0200fd6bc3fce1f50bc5d26fc\"},{\"acheneID\":\"http://dandelion.eu/resource/dd4da75c0e9eee59f0eea569b1928bd6e7255d6d\"},{\"acheneID\":\"http://dandelion.eu/resource/11205fc9d10dd392f4e73559a2b433cb688000ce\"},{\"acheneID\":\"http://dandelion.eu/resource/67071accf53efec2d0bd3854e4229c5a68c3ace3\"},{\"acheneID\":\"http://dandelion.eu/resource/cb9f93400b6a18268b83ff1aa2226e46b61bf508\"},{\"acheneID\":\"http://dandelion.eu/resource/a8dacb385f951537fd43728abe8bf62cefd2fbeb\"},{\"acheneID\":\"http://dandelion.eu/resource/9d77a06e13301b6dafcf42c002a44788cb07b13f\"},{\"acheneID\":\"http://dandelion.eu/resource/d18fd89284559404a1dae108ba9c415ba50e719c\"},{\"acheneID\":\"http://dandelion.eu/resource/25ea6f66f03e16b02e71d1c44710c074b56da83a\"},{\"acheneID\":\"http://dandelion.eu/resource/37368b6bf2aa7f91337eccd7e05dc98bfee0cca2\"},{\"acheneID\":\"http://dandelion.eu/resource/978efd56ce7c702a11b7b180026cad5f573e8e99\"},{\"acheneID\":\"http://dandelion.eu/resource/e7bb696f3598b5ca4acc9e8d6deb0e0627a5f46a\"},{\"acheneID\":\"http://dandelion.eu/resource/2f3c103e78f454d8df86adbd5ccc27dab01168c0\"},{\"acheneID\":\"http://dandelion.eu/resource/178fb48bf211205df09358c407cbc2ee8b160906\"},{\"acheneID\":\"http://dandelion.eu/resource/12c4aeddbd6872866987d18d70d74007bd165826\"},{\"acheneID\":\"http://dandelion.eu/resource/efb4599a74be8bae75d6de42e91f452bcb9df5f1\"},{\"acheneID\":\"http://dandelion.eu/resource/01f4d92978727e3d350776917cd2be4d4ef8fee2\"},{\"acheneID\":\"http://dandelion.eu/resource/ee403cacba3422c1f618fcdc3eaa4af3f7b7b45d\"},{\"acheneID\":\"http://dandelion.eu/resource/935296a45a694fab857ebc4fd0707c04e10931ac\"},{\"acheneID\":\"http://dandelion.eu/resource/578408760a750fb5825302a2cb7097a3a251ac06\"},{\"acheneID\":\"http://dandelion.eu/resource/5f8dd4e2a4d24d27755b11ac3d54a943a8093047\"},{\"acheneID\":\"http://dandelion.eu/resource/5f234cf99b59ef7136b494ff97a8b1b51de84724\"},{\"acheneID\":\"http://dandelion.eu/resource/a60f26e07822eed1a92f97136f99ba8608161f55\"},{\"acheneID\":\"http://dandelion.eu/resource/6f012ee25166d1f776539f770dc3c5cf861ac0b0\"},{\"acheneID\":\"http://dandelion.eu/resource/8c90a08884bdb120764ef43d8e3afe52c329103c\"},{\"acheneID\":\"http://dandelion.eu/resource/d24bc6eb3c8f67eaf67c1eefb06fc30d14f4da57\"},{\"acheneID\":\"http://dandelion.eu/resource/8aa1bac4b7d7049f89fe499820d3a33baa35f380\"},{\"acheneID\":\"http://dandelion.eu/resource/62794f13568a3bcf51156cee2e67bab3ade21e12\"},{\"acheneID\":\"http://dandelion.eu/resource/db9d0dc6835725b9881dedea1332e806b10553d5\"},{\"acheneID\":\"http://dandelion.eu/resource/76beb929948cdfbafe1201d3db6d07ae8a1f1621\"},{\"acheneID\":\"http://dandelion.eu/resource/6c31d49f810c6fd21f6f571c3c4412fad49999a1\"},{\"acheneID\":\"http://dandelion.eu/resource/e6c2d1dc6e7d66c522389f59aaa5e56858be680a\"},{\"acheneID\":\"http://dandelion.eu/resource/0c56f9c90e3a75bf0ceda8baf9b52be4fd1159a8\"},{\"acheneID\":\"http://dandelion.eu/resource/0adb2b2aa9f279381a559d6560460d00dfb771ae\"},{\"acheneID\":\"http://dandelion.eu/resource/4ab1134fe837396f234136a374af1d4162bd867f\"}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_step": "{\"items\":[{\"acheneID\":\"http://dandelion.eu/resource/c59b12fe31ac36662552c95d51cbf15b792094c0\"},{\"acheneID\":\"http://dandelion.eu/resource/f5882e6af5c6391d36d7e5dece6688cb4ac203c5\"},{\"acheneID\":\"http://dandelion.eu/resource/0fe4f6bea944679a92aae439c564c0ddcc866bb6\"},{\"acheneID\":\"http://dandelion.eu/resource/23184225e583b78d38f4cfa46894bb3b42c29bee\"},{\"acheneID\":\"http://dandelion.eu/resource/0d33fdb63fd80f69fa00984bd829583ec71e08b2\"}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_version": "{\"items\":[{\"acheneID\":\"http://dandelion.eu/resource/c59b12fe31ac36662552c95d51cbf15b792094c0\"}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datagem_test_objects": "{\"items\":[{\"acheneID\":\"http://dandelion.eu/resource/c59b12fe31ac36662552c95d51cbf15b792094c0\"},{\"acheneID\":\"http://dandelion.eu/resource/f5882e6af5c6391d36d7e5dece6688cb4ac203c5\"},{\"acheneID\":\"http://dandelion.eu/resource/0fe4f6bea944679a92aae439c564c0ddcc866bb6\"},{\"acheneID\":\"http://dandelion.eu/resource/23184225e583b78d38f4cfa46894bb3b42c29bee\"},{\"acheneID\":\"http://dandelion.eu/resource/0d33fdb63fd80f69fa00984bd829583ec71e08b2\"}],\"count\":70343,\"datagem-version\":\"a0b4b0b4c12db9bca81b5313a9f3481d823b263f\"}", + "datatxt_test_nex": "{\"time\":1,\"annotations\":[{\"start\":9,\"end\":14,\"spot\":\"Apple\",\"confidence\":0.735,\"id\":856,\"title\":\"Apple Inc.\",\"uri\":\"http://en.wikipedia.org/wiki/Apple_Inc.\",\"label\":\"Apple\"},{\"start\":30,\"end\":37,\"spot\":\"Windows\",\"confidence\":0.6897,\"id\":18890,\"title\":\"Microsoft Windows\",\"uri\":\"http://en.wikipedia.org/wiki/Microsoft_Windows\",\"label\":\"Microsoft Windows\"}],\"lang\":\"en\",\"langConfidence\":1.0,\"timestamp\":\"2018-05-11T09:11:38.312\"}", + "datatxt_test_nex_with_min_confidence": "{\"time\":1,\"annotations\":[{\"start\":9,\"end\":14,\"spot\":\"Apple\",\"confidence\":0.735,\"id\":856,\"title\":\"Apple Inc.\",\"uri\":\"http://en.wikipedia.org/wiki/Apple_Inc.\",\"label\":\"Apple\"}],\"lang\":\"en\",\"langConfidence\":1.0,\"timestamp\":\"2018-05-11T09:56:22.473\"}", + "datatxt_test_nex_top_entities": "{\"time\":1,\"annotations\":[{\"start\":9,\"end\":14,\"spot\":\"Apple\",\"confidence\":0.735,\"id\":856,\"title\":\"Apple Inc.\",\"uri\":\"http://en.wikipedia.org/wiki/Apple_Inc.\",\"label\":\"Apple\"},{\"start\":30,\"end\":37,\"spot\":\"Windows\",\"confidence\":0.6897,\"id\":18890,\"title\":\"Microsoft Windows\",\"uri\":\"http://en.wikipedia.org/wiki/Microsoft_Windows\",\"label\":\"Microsoft Windows\"}],\"topEntities\":[{\"id\":856,\"score\":0.3768116,\"uri\":\"http://en.wikipedia.org/wiki/Apple_Inc.\"}],\"lang\":\"en\",\"langConfidence\":1.0,\"timestamp\":\"2018-05-11T09:57:32.380\"}", + "datatxt_test_sim": "{\"time\":3,\"similarity\":0.6602,\"lang\":\"en\",\"langConfidence\":1.0,\"timestamp\":\"2018-05-11T15:00:27.037\"}", + "datatxt_test_li": "{\"time\":1,\"detectedLangs\":[{\"lang\":\"it\",\"confidence\":1.0}],\"timestamp\":\"2018-05-11T15:06:25.311\"}", + "datatxt_test_can_set_host_1": "{\"time\":1,\"annotations\":[{\"start\":9,\"end\":14,\"spot\":\"Apple\",\"confidence\":0.735,\"id\":856,\"title\":\"Apple Inc.\",\"uri\":\"http://en.wikipedia.org/wiki/Apple_Inc.\",\"label\":\"Apple\"},{\"start\":30,\"end\":37,\"spot\":\"Windows\",\"confidence\":0.6897,\"id\":18890,\"title\":\"Microsoft Windows\",\"uri\":\"http://en.wikipedia.org/wiki/Microsoft_Windows\",\"label\":\"Microsoft Windows\"}],\"lang\":\"en\",\"langConfidence\":1.0,\"timestamp\":\"2018-05-11T09:11:38.312\"}", + "datatxt_test_can_set_host_2": "{\"time\":1,\"annotations\":[{\"start\":9,\"end\":14,\"spot\":\"Apple\",\"confidence\":0.735,\"id\":856,\"title\":\"Apple Inc.\",\"uri\":\"http://en.wikipedia.org/wiki/Apple_Inc.\",\"label\":\"Apple\"},{\"start\":30,\"end\":37,\"spot\":\"Windows\",\"confidence\":0.6897,\"id\":18890,\"title\":\"Microsoft Windows\",\"uri\":\"http://en.wikipedia.org/wiki/Microsoft_Windows\",\"label\":\"Microsoft Windows\"}],\"lang\":\"en\",\"langConfidence\":1.0,\"timestamp\":\"2018-05-11T09:11:38.312\"}", + "sentiment_test_sent": "{\"time\":0,\"sentiment\":{\"type\":\"negative\",\"score\":-0.8},\"lang\":\"en\",\"langConfidence\":1.0,\"timestamp\":\"2018-05-11T15:13:02.567\"}", + "sentiment_test_sent_with_language_parameter": "{\"time\":0,\"sentiment\":{\"type\":\"negative\",\"score\":-0.8},\"lang\":\"en\",\"langConfidence\":1.0,\"timestamp\":\"2018-05-11T15:13:02.567\"}" +} diff --git a/tests/datagem.py b/tests/datagem.py index 178c20b..6a35d52 100644 --- a/tests/datagem.py +++ b/tests/datagem.py @@ -1,19 +1,23 @@ from __future__ import unicode_literals +import json import os import warnings -from datetime import datetime from unittest import TestCase -from dandelion import DandelionException, Datagem, default_config +from mock import call, patch +from requests import sessions + +from dandelion import DandelionException, Datagem from dandelion.datagem import DatagemManager +from tests.utils import MockResponse class TestDatagemBase(TestCase): def setUp(self): - default_config['app_id'] = os.environ['APP_ID'] - default_config['app_key'] = os.environ['APP_KEY'] - self.datagem = Datagem('administrative-regions') + self.datagem = Datagem('administrative-regions', token='token') + f = open(os.path.join(os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__))), 'data.json')) + self.data = json.load(f, 'utf-8') @staticmethod def _achene(achene_id): @@ -22,183 +26,373 @@ def _achene(achene_id): class TestDatagem(TestDatagemBase): def test_select(self): - for item in self.datagem.items.select('name').where( - acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') - ): - self.assertEqual(item, dict(name='Trento')) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_select'])) as mock_method: + for item in self.datagem.items.select('name').where( + acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') + ): + self.assertEqual(item, dict(name='Trento')) + + mock_method.assert_called_once_with( + params={'$select': 'name', '$where': 'acheneID = "http://dandelion.eu/resource/05a192433bede90cd0f12652b1a12c428cb253d5"', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) def test_select_multiple(self): - for item in self.datagem.items.select('name', 'population').where( - acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') - ): - self.assertEqual( - item, dict(name='Trento', population={"2001": None, "2011": 114063}) - ) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_select_multiple'])) as mock_method: + for item in self.datagem.items.select('name', 'population').where( + acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') + ): + self.assertEqual( + item, dict(name='Trento', population={"2001": None, "2011": 114063}) + ) + + mock_method.assert_called_once_with( + params={'$select': 'name,population', '$where': 'acheneID = "http://dandelion.eu/resource/05a192433bede90cd0f12652b1a12c428cb253d5"', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) def test_select_concat(self): - items = self.datagem.items.select('name') - for item in items.select('population').where( - acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') - ): + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_select_concat'])) as mock_method: + items = self.datagem.items.select('name') + for item in items.select('population').where( + acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') + ): + self.assertEqual( + item, dict(name='Trento', population={"2001": None, "2011": 114063}) + ) + + mock_method.assert_called_once_with( + params={'$select': 'name,population', '$where': 'acheneID = "http://dandelion.eu/resource/05a192433bede90cd0f12652b1a12c428cb253d5"', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) + + def test_select_empty(self): + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_select_empty'])) as mock_method: self.assertEqual( - item, dict(population={"2001": None, "2011": 114063}) + list(self.datagem.items.select()[:1]), + list(self.datagem.items[:1]) ) - def test_select_empty(self): - self.assertEqual( - list(self.datagem.items.select()[:1]), - list(self.datagem.items[:1]) - ) + expected_arguments = [call( + params={'$select': '', '$offset': 0, '$limit': 1, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ), call( + params={'$offset': 0, '$limit': 1, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + )] + self.assertEqual(mock_method.call_args_list, expected_arguments) def test_group(self): - items = self.datagem.items.select('name', 'level', 'count()') - items = items.where(name='Trento') - self.assertEqual(sorted(items, key=lambda x: x['level']), [ - dict(name='Trento', level=50, count_1=1), - dict(name='Trento', level=60, count_1=1), - dict(name='Trento', level=70, count_1=3), - ]) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_group'])) as mock_method: + items = self.datagem.items.select('name', 'level', 'count()') + items = items.where(name='Trento') + self.assertEqual(sorted(items, key=lambda x: x['level']), [ + dict(name='Trento', level=50, count_1=1), + dict(name='Trento', level=60, count_1=1), + dict(name='Trento', level=70, count_1=3), + ]) + + mock_method.assert_called_once_with( + params={'$select': 'name,level,count()', '$group': 'name,level', '$where': 'name = "Trento"', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) def test_where(self): - for item in self.datagem.items.where(parentNames__municipality='Ala'): + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_where'])) as mock_method: + for item in self.datagem.items.where(parentNames__municipality='Ala'): + self.assertEqual( + item['parentNames']['municipality'], 'Ala' + ) + + mock_method.assert_called_once_with( + params={'$where': 'parentNames.municipality = "Ala"', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) + + def test_where_empty(self): + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_where_empty'])) as mock_method: self.assertEqual( - item['parentNames']['municipality'], 'Ala' + list(self.datagem.items.select('acheneID').where()[:5]), + list(self.datagem.items.select('acheneID')[:5]) ) - def test_where_empty(self): - self.assertEqual( - list(self.datagem.items.select('acheneID').where()[:5]), - list(self.datagem.items.select('acheneID')[:5]) - ) + expected_arguments = [call( + params={'$select': 'acheneID', '$offset': 0, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ), call( + params={'$select': 'acheneID', '$offset': 0, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + )] + self.assertEqual(mock_method.call_args_list, expected_arguments) def test_where_multiple(self): - for item in self.datagem.items.where(name='Trento', level=60): - self.assertEqual(item['name'], 'Trento') - self.assertEqual(item['level'], 60) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_where_multiple'])) as mock_method: + for item in self.datagem.items.where(name='Trento', level=60): + self.assertEqual(item['name'], 'Trento') + self.assertEqual(item['level'], 60) + + mock_method.assert_called_once_with( + params={'$where': 'name = "Trento" AND level = 60', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) def test_where_concat(self): - for item in self.datagem.items.where(name='Trento').where(level=60): - self.assertEqual(item['name'], 'Trento') - self.assertEqual(item['level'], 60) - - def test_where_greater_then_equal(self): - items = self.datagem.items.select('population') - items = items.order('population.2011') - items = list(items.where(population__2011__gte=114063)[:50]) - self.assertTrue( - all(x['population']['2011'] >= 114063 for x in items) - ) - self.assertTrue( - any(x['population']['2011'] == 114063 for x in items) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_where_concat'])) as mock_method: + for item in self.datagem.items.where(name='Trento').where(level=60): + self.assertEqual(item['name'], 'Trento') + self.assertEqual(item['level'], 60) + + mock_method.assert_called_once_with( + params={'$where': '(name = "Trento") AND (level = 60)', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' ) - def test_where_greater_then(self): - items = self.datagem.items.select('population') - items = items.order('population.2011') - items = list(items.where(population__2011__gt=114063)[:50]) - self.assertTrue( - all(x['population']['2011'] >= 114063 for x in items) - ) - self.assertFalse( - any(x['population']['2011'] == 114063 for x in items) - ) + def test_where_greater_than_equal(self): + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_where_greater_than_equal'])) as mock_method: + items = self.datagem.items.select('population') + items = items.order('population.2011') + items = list(items.where(population__2011__gte=114063)[:50]) + self.assertTrue( + all(x['population']['2011'] >= 114063 for x in items) + ) + self.assertTrue( + any(x['population']['2011'] == 114063 for x in items) + ) - def test_where_lower_then_equal(self): - items = self.datagem.items.select('population') - items = items.order('population.2011 DESC') - items = list(items.where(population__2011__lte=114063)[:50]) - self.assertTrue( - all(x['population']['2011'] <= 114063 for x in items) + mock_method.assert_called_once_with( + params={'$select': 'population', '$where': 'population.2011 >= 114063', '$order': 'population.2011', '$offset': 0, '$limit': 50, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' ) - self.assertTrue( - any(x['population']['2011'] == 114063 for x in items) + + def test_where_greater_than(self): + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_where_greater_than'])) as mock_method: + items = self.datagem.items.select('population') + items = items.order('population.2011') + items = list(items.where(population__2011__gt=114063)[:50]) + self.assertTrue( + all(x['population']['2011'] >= 114063 for x in items) + ) + self.assertFalse( + any(x['population']['2011'] == 114063 for x in items) + ) + + mock_method.assert_called_once_with( + params={'$select': 'population', '$where': 'population.2011 > 114063', '$order': 'population.2011', '$offset': 0, '$limit': 50, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' ) - def test_where_lower_then(self): - items = self.datagem.items.select('population') - items = items.order('population.2011 DESC') - items = list(items.where(population__2011__lt=114063)[:50]) - self.assertTrue( - all(x['population']['2011'] <= 114063 for x in items) + def test_where_lower_than_equal(self): + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_where_lower_than_equal'])) as mock_method: + items = self.datagem.items.select('population') + items = items.order('population.2011 DESC') + items = list(items.where(population__2011__lte=114063)[:50]) + self.assertTrue( + all(x['population']['2011'] <= 114063 for x in items) + ) + self.assertTrue( + any(x['population']['2011'] == 114063 for x in items) + ) + + mock_method.assert_called_once_with( + params={'$select': 'population', '$where': 'population.2011 <= 114063', '$order': 'population.2011 DESC', '$offset': 0, '$limit': 50, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' ) - self.assertFalse( - any(x['population']['2011'] == 114063 for x in items) + + def test_where_lower_than(self): + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_where_lower_than'])) as mock_method: + items = self.datagem.items.select('population') + items = items.order('population.2011 DESC') + items = list(items.where(population__2011__lt=114063)[:50]) + self.assertTrue( + all(x['population']['2011'] <= 114063 for x in items) + ) + self.assertFalse( + any(x['population']['2011'] == 114063 for x in items) + ) + + mock_method.assert_called_once_with( + params={'$select': 'population', '$where': 'population.2011 < 114063', '$order': 'population.2011 DESC', '$offset': 0, '$limit': 50, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' ) def test_where_not(self): - items = self.datagem.items.select('population') - items = items.order('population.2011 DESC') - items = items.where(population__2011__gte=110000) - items = list(items.where(population__2011__not=114063)[:50]) - self.assertTrue( - all(x['population']['2011'] != 114063 for x in items) - ) - self.assertTrue( - any(x['population']['2011'] > 114063 for x in items) - ) - self.assertTrue( - any(x['population']['2011'] < 114063 for x in items) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_where_not'])) as mock_method: + items = self.datagem.items.select('population') + items = items.order('population.2011 DESC') + items = items.where(population__2011__gte=110000) + items = list(items.where(population__2011__not=114063)[:50]) + self.assertTrue( + all(x['population']['2011'] != 114063 for x in items) + ) + self.assertTrue( + any(x['population']['2011'] > 114063 for x in items) + ) + self.assertTrue( + any(x['population']['2011'] < 114063 for x in items) + ) + + mock_method.assert_called_once_with( + params={'$select': 'population', '$where': '(population.2011 >= 110000) AND (population.2011 <> 114063)', '$order': 'population.2011 DESC', '$offset': 0, '$limit': 50, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' ) def test_get(self): - item = self.datagem.items.select('name').get( - acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_get'])) as mock_method: + item = self.datagem.items.select('name').get( + acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') + ) + self.assertEqual(item, dict(name='Trento')) + + mock_method.assert_called_once_with( + params={'$select': 'name', '$where': 'acheneID = "http://dandelion.eu/resource/05a192433bede90cd0f12652b1a12c428cb253d5"', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' ) - self.assertEqual(item, dict(name='Trento')) def test_get_item(self): - item = self.datagem.items.select('name').where( - acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') - )[0] - self.assertEqual(item, dict(name='Trento')) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_get_item'])) as mock_method: + item = self.datagem.items.select('name').where( + acheneID=self._achene('05a192433bede90cd0f12652b1a12c428cb253d5') + )[0] + self.assertEqual(item, dict(name='Trento')) + + mock_method.assert_called_once_with( + params={'$select': 'name', '$where': 'acheneID = "http://dandelion.eu/resource/05a192433bede90cd0f12652b1a12c428cb253d5"', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) def test_get_with_no_result(self): - with self.assertRaises(DandelionException) as context: - self.datagem.items.select('name').get( - acheneID=self._achene('42') + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_get_with_no_result'])) as mock_method: + with self.assertRaises(DandelionException) as context: + self.datagem.items.select('name').get( + acheneID=self._achene('42') + ) + self.assertEqual( + context.exception.message, 'The requested item does not exist' ) - self.assertEqual( - context.exception.message, 'The requested item does not exist' + + mock_method.assert_called_once_with( + params={'$select': 'name', '$where': 'acheneID = "http://dandelion.eu/resource/42"', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' ) def test_order(self): - items = self.datagem.items.select('population') - items = items.order('population.2011')[:5] + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_order'])) as mock_method: + items = self.datagem.items.select('population') + items = items.order('population.2011')[:5] - pops = [x['population']['2011'] for x in items] - self.assertEqual(pops, sorted(pops)) + pops = [x['population']['2011'] for x in items] + self.assertEqual(pops, sorted(pops)) - def test_order_desc(self): - items = self.datagem.items.select('population') - items = items.where(population__2011__not=None) - items = items.order('population.2011 DESC')[:5] + mock_method.assert_called_once_with( + params={'$select': 'population', '$order': 'population.2011', '$offset': 0, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) - pops = [x['population']['2011'] for x in items] - self.assertEqual(pops, sorted(pops, reverse=True)) + def test_order_desc(self): + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_order_desc'])) as mock_method: + items = self.datagem.items.select('population') + items = items.where(population__2011__not=None) + items = items.order('population.2011 DESC')[:5] + + pops = [x['population']['2011'] for x in items] + self.assertEqual(pops, sorted(pops, reverse=True)) + + mock_method.assert_called_once_with( + params={'$select': 'population', '$where': 'population.2011 <> null', '$order': 'population.2011 DESC', '$offset': 0, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) def test_limit(self): - objects = list(self.datagem.items[:5]) - self.assertEqual(len(objects), 5) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_limit'])) as mock_method: + objects = list(self.datagem.items[:5]) + self.assertEqual(len(objects), 5) + + mock_method.assert_called_once_with( + params={'$offset': 0, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) def test_offset(self): - first_half = list(self.datagem.items[:5]) - second_half = list(self.datagem.items[5:10]) - full_list = list(self.datagem.items[:10]) - self.assertEqual(first_half + second_half, full_list) + with patch.object(sessions.Session, 'get', side_effect=(MockResponse(True, self.data['datagem_test_offset_1']), MockResponse(True, self.data['datagem_test_offset_2']), MockResponse(True, self.data['datagem_test_offset_3']))) as mock_method: + first_half = list(self.datagem.items[:5]) + second_half = list(self.datagem.items[5:10]) + full_list = list(self.datagem.items[:10]) + self.assertEqual(first_half + second_half, full_list) + + expected_arguments = [call( + params={'$offset': 0, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ), call( + params={'$offset': 5, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ), call( + params={'$offset': 0, '$limit': 10, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + )] + self.assertEqual(mock_method.call_args_list, expected_arguments) def test_pagination(self): - page_size = DatagemManager.PAGINATE_BY - items = list(self.datagem.items.select('acheneID')[:page_size + 10]) - self.assertEqual(len(items), page_size + 10) - self.assertEqual( - # check pagination does not return the same item twice - len(items), len(frozenset(x['acheneID'] for x in items)) - ) + with patch.object(sessions.Session, 'get', side_effect=(MockResponse(True, self.data['datagem_test_pagination_1']), MockResponse(True, self.data['datagem_test_pagination_2']))) as mock_method: + page_size = DatagemManager.PAGINATE_BY + items = list(self.datagem.items.select('acheneID')[:(page_size+10)]) + self.assertEqual(len(items), page_size + 10) + self.assertEqual( + # check pagination does not return the same item twice + len(items), len(frozenset(x['acheneID'] for x in items)) + ) + + expected_arguments = [call( + params={'$select': 'acheneID', '$offset': 0, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ), call( + params={'$select': 'acheneID', '$offset': 500, '$limit': 500, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + )] + self.assertEqual(mock_method.call_args_list, expected_arguments) def test_step(self): - items = list(self.datagem.items.select('acheneID')[:5]) - some_items = list(self.datagem.items.select('acheneID')[:5:2]) - self.assertEqual(some_items, items[::2]) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_step'])) as mock_method: + items = list(self.datagem.items.select('acheneID')[:5]) + some_items = list(self.datagem.items.select('acheneID')[:5:2]) + self.assertEqual(some_items, items[::2]) + + expected_arguments = [call( + params={'$select': 'acheneID', '$offset': 0, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ), call( + params={'$select': 'acheneID', '$offset': 0, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + )] + self.assertEqual(mock_method.call_args_list, expected_arguments) def test_invalid_slice(self): for the_slice in ['key', [], {}]: @@ -235,28 +429,36 @@ def test_negative_index(self): ) def test_version(self): - now = datetime.now() - self.assertIsNotNone(self.datagem.version) - self.assertGreater((datetime.now() - now).total_seconds(), 0.3) - self.assertLess((datetime.now() - now).total_seconds(), 1.0) - - now = datetime.now() - self.assertEqual(len(self.datagem.version), 40) - self.assertLess((datetime.now() - now).total_seconds(), 0.01) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_version'])) as mock_method: + self.assertIsNotNone(self.datagem.version) + self.assertEqual(len(self.datagem.version), 40) + + mock_method.assert_called_once_with( + params={'$select': 'acheneID', '$offset': 0, '$limit': 1, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) class TestDeprecatedCode(TestDatagemBase): def test_objects(self): - with warnings.catch_warnings(record=True) as warn: - warnings.simplefilter("always") - - items = list(self.datagem.objects.select('acheneID')[:5]) - - # Verify some things - self.assertEqual(len(items), 5) - self.assertEqual(len(warn), 1) - self.assertEqual(warn[0].category, DeprecationWarning) - self.assertEqual( - '"objects" is deprecated, use "items" instead', - str(warn[0].message) - ) + with patch.object(sessions.Session, 'get', return_value=MockResponse(True, self.data['datagem_test_objects'])) as mock_method: + with warnings.catch_warnings(record=True) as warn: + warnings.simplefilter("always") + + items = list(self.datagem.objects.select('acheneID')[:5]) + + # Verify some things + self.assertEqual(len(items), 5) + self.assertEqual(len(warn), 1) + self.assertEqual(warn[0].category, DeprecationWarning) + self.assertEqual( + '"objects" is deprecated, use "items" instead', + str(warn[0].message) + ) + + mock_method.assert_called_once_with( + params={'$select': 'acheneID', '$offset': 0, '$limit': 5, 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datagem/administrative-regions/data/v1' + ) diff --git a/tests/datatxt.py b/tests/datatxt.py index 5a71c89..29d23f6 100644 --- a/tests/datatxt.py +++ b/tests/datatxt.py @@ -1,55 +1,182 @@ from __future__ import unicode_literals +import json import os from unittest import TestCase -from dandelion import DandelionException, DataTXT, default_config +from mock import patch +from requests import sessions + +from dandelion import DandelionException, DataTXT +from tests.utils import MockResponse class TestDatatxt(TestCase): def setUp(self): - default_config['app_id'] = os.environ['APP_ID'] - default_config['app_key'] = os.environ['APP_KEY'] - self.datatxt = DataTXT() + self.datatxt = DataTXT(token='token') + f = open(os.path.join(os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__))), 'data.json')) + self.data = json.load(f, 'utf-8') + + def test_nex_with_not_integer_top_entities(self): + with self.assertRaises(DandelionException) as context: + self.datatxt.nex('They say Apple is better than Windows', top_entities='a') - def test_nex(self): - res = self.datatxt.nex('They say Apple is better than Windows') self.assertEqual( - {annotation.uri for annotation in res.annotations}, - {'http://en.wikipedia.org/wiki/Apple_Inc.', - 'http://en.wikipedia.org/wiki/Microsoft_Windows'} + context.exception.message, 'The \'top-entities\' parameter must be an integer greater than or equal to 0' ) - def test_sim(self): - res = self.datatxt.sim( - 'Reports that the NSA eavesdropped on world leaders have "severely' - ' shaken" relations between Europe and the U.S., German Chancellor' - ' Angela Merkel said.', - # -- - 'Germany and France are to seek talks with the US to settle a row ' - 'over spying, as espionage claims continue to overshadow an EU ' - 'summit in Brussels.' + def test_nex_with_top_entities_illegal_value(self): + with self.assertRaises(DandelionException) as context: + self.datatxt.nex('They say Apple is better than Windows', top_entities=-8) + + self.assertEqual( + context.exception.message, 'The \'top-entities\' parameter must be an integer greater than or equal to 0' ) - self.assertGreater(res.similarity, 0.5) + def test_nex_with_not_float_min_confidence(self): + with self.assertRaises(DandelionException) as context: + self.datatxt.nex('They say Apple is better than Windows', min_confidence='b') - def test_li(self): - res = self.datatxt.li("Le nostre tre M sono: mafia, mamma, mandolino") + self.assertEqual( + context.exception.message, 'The \'top-entities\' parameter must be a float between 0.0 and 1.0' + ) + + def test_nex_with_min_confidence_illegal_values(self): + with self.assertRaises(DandelionException) as context: + self.datatxt.nex('They say Apple is better than Windows', min_confidence=-0.5) + + self.assertEqual( + context.exception.message, 'The \'top-entities\' parameter must be a float between 0.0 and 1.0' + ) + + with self.assertRaises(DandelionException) as context: + self.datatxt.nex('They say Apple is better than Windows', min_confidence=4.3) self.assertEqual( - [entry.lang for entry in res.detectedLangs], - ['it'] + context.exception.message, 'The \'top-entities\' parameter must be a float between 0.0 and 1.0' + ) + + def test_nex(self): + with patch.object(sessions.Session, 'post', return_value=MockResponse(True, self.data['datatxt_test_nex'])) as mock_method: + res = self.datatxt.nex('They say Apple is better than Windows') + self.assertEqual( + {annotation.uri for annotation in res.annotations}, + {'http://en.wikipedia.org/wiki/Apple_Inc.', + 'http://en.wikipedia.org/wiki/Microsoft_Windows'} + ) + + mock_method.assert_called_once_with( + data={'text': 'They say Apple is better than Windows', 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datatxt/nex/v1' ) - self.assertGreater(res.detectedLangs[0].confidence, 0.9999) + def test_nex_with_min_confidence(self): + with patch.object(sessions.Session, 'post', return_value=MockResponse(True, self.data['datatxt_test_nex_with_min_confidence'])) as mock_method: + res = self.datatxt.nex('They say Apple is better than Windows', min_confidence=0.7) + self.assertEqual( + len(res.annotations), 1 + ) + self.assertEqual( + res.annotations[0].confidence, 0.735 + ) + self.assertEqual( + res.annotations[0].uri, 'http://en.wikipedia.org/wiki/Apple_Inc.' + ) + + mock_method.assert_called_once_with( + data={'text': 'They say Apple is better than Windows', 'token': 'token', 'min_confidence': 0.7}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datatxt/nex/v1' + ) + + def test_nex_top_entities(self): + with patch.object(sessions.Session, 'post', return_value=MockResponse(True, self.data['datatxt_test_nex_top_entities'])) as mock_method: + res = self.datatxt.nex('They say Apple is better than Windows', top_entities=1) + self.assertEqual( + len(res.topEntities), 1 + ) + self.assertEqual( + res.topEntities[0].score, 0.3768116 + ) + self.assertEqual( + res.topEntities[0].uri, 'http://en.wikipedia.org/wiki/Apple_Inc.' + ) + + mock_method.assert_called_once_with( + data={'text': 'They say Apple is better than Windows', 'token': 'token', 'top_entities': 1}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datatxt/nex/v1' + ) + + def test_sim(self): + with patch.object(sessions.Session, 'post', return_value=MockResponse(True, self.data['datatxt_test_sim'])) as mock_method: + res = self.datatxt.sim( + 'Reports that the NSA eavesdropped on world leaders have "severely' + ' shaken" relations between Europe and the U.S., German Chancellor' + ' Angela Merkel said.', + # -- + 'Germany and France are to seek talks with the US to settle a row ' + 'over spying, as espionage claims continue to overshadow an EU ' + 'summit in Brussels.' + ) + self.assertGreater(res.similarity, 0.5) + + mock_method.assert_called_once_with( + data={'text1': 'Reports that the NSA eavesdropped on world leaders have "severely shaken" relations between Europe and the U.S., German Chancellor Angela Merkel said.', 'text2': 'Germany and France are to seek talks with the US to settle a row over spying, as espionage claims continue to overshadow an EU summit in Brussels.', 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datatxt/sim/v1' + ) + + def test_li(self): + with patch.object(sessions.Session, 'post', return_value=MockResponse(True, self.data['datatxt_test_li'])) as mock_method: + res = self.datatxt.li('Le nostre tre M sono: mafia, mamma, mandolino') + self.assertEqual( + [entry.lang for entry in res.detectedLangs], + ['it'] + ) + self.assertGreater(res.detectedLangs[0].confidence, 0.9999) + + mock_method.assert_called_once_with( + data={ + 'text': 'Le nostre tre M sono: mafia, mamma, mandolino', + 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datatxt/li/v1' + ) def test_raises_on_error(self): with self.assertRaises(DandelionException): self.datatxt.nex(text=None) def test_can_set_host(self): - self.datatxt = DataTXT(host="api.dandelion.eu") - self.test_nex() + self.datatxt = DataTXT(host="api.dandelion.eu", token='token') + + with patch.object(sessions.Session, 'post', return_value=MockResponse(True, self.data['datatxt_test_can_set_host_1'])) as mock_method: + res = self.datatxt.nex('They say Apple is better than Windows') + self.assertEqual( + {annotation.uri for annotation in res.annotations}, + {'http://en.wikipedia.org/wiki/Apple_Inc.', + 'http://en.wikipedia.org/wiki/Microsoft_Windows'} + ) - self.datatxt = DataTXT(host="http://api.dandelion.eu") - self.test_nex() + mock_method.assert_called_once_with( + data={'text': 'They say Apple is better than Windows', 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datatxt/nex/v1' + ) + + self.datatxt = DataTXT(host="http://api.dandelion.eu", token='token') + with patch.object(sessions.Session, 'post', return_value=MockResponse(True, self.data['datatxt_test_can_set_host_2'])) as mock_method: + res = self.datatxt.nex('They say Apple is better than Windows') + self.assertEqual( + {annotation.uri for annotation in res.annotations}, + {'http://en.wikipedia.org/wiki/Apple_Inc.', + 'http://en.wikipedia.org/wiki/Microsoft_Windows'} + ) + + mock_method.assert_called_once_with( + data={'text': 'They say Apple is better than Windows', 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='http://api.dandelion.eu/datatxt/nex/v1' + ) diff --git a/tests/sentiment.py b/tests/sentiment.py new file mode 100644 index 0000000..4b77b14 --- /dev/null +++ b/tests/sentiment.py @@ -0,0 +1,58 @@ +from __future__ import unicode_literals + +import json +import os +from unittest import TestCase + +from mock import patch +from requests import sessions + +from dandelion import DandelionException, Sentiment +from tests.utils import MockResponse + + +class TestSentiment(TestCase): + def setUp(self): + self.sentiment = Sentiment(token='token') + f = open(os.path.join(os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__))), 'data.json')) + self.data = json.load(f, 'utf-8') + + def test_sent_with_unsupported_language(self): + with self.assertRaises(DandelionException) as context: + self.sentiment.sent('The worst film I have ever seen', lang='es') + + self.assertEqual( + context.exception.message, 'Illegal \'lang\' parameter value!' + ) + + def test_sent(self): + with patch.object(sessions.Session, 'post', return_value=MockResponse(True, self.data['sentiment_test_sent'])) as mock_method: + res = self.sentiment.sent('The worst film I have ever seen') + self.assertEqual( + res.sentiment.type, 'negative' + ) + self.assertEqual( + res.sentiment.score, -0.8 + ) + + mock_method.assert_called_once_with( + data={'text': 'The worst film I have ever seen', 'token': 'token'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datatxt/sent/v1' + ) + + def test_sent_with_language_parameter(self): + with patch.object(sessions.Session, 'post', return_value=MockResponse(True, self.data['sentiment_test_sent_with_language_parameter'])) as mock_method: + res = self.sentiment.sent('worst', lang='en') + self.assertEqual( + res.sentiment.type, 'negative' + ) + self.assertEqual( + res.sentiment.score, -0.8 + ) + + mock_method.assert_called_once_with( + data={'text': 'worst', 'token': 'token', 'lang': 'en'}, + headers={'User-Agent': 'python-dandelion-eu/0.2.2'}, + url='https://api.dandelion.eu/datatxt/sent/v1' + ) diff --git a/tests/utils.py b/tests/utils.py new file mode 100644 index 0000000..a8df21f --- /dev/null +++ b/tests/utils.py @@ -0,0 +1,10 @@ +import json + + +class MockResponse: + def __init__(self, ok, resp_data): + self.ok = ok + self.resp_data = resp_data + + def json(self, object_hook=None): + return json.loads(self.resp_data, object_hook=object_hook)